Documentation
¶
Index ¶
- Constants
- Variables
- func GetLanguage(filename string, content []byte) (language string)
- func GetLanguageByAlias(alias string) (lang string, ok bool)
- func GetLanguageByClassifier(content []byte, candidates []string) (language string, safe bool)
- func GetLanguageByContent(content []byte) (language string, safe bool)
- func GetLanguageByEmacsModeline(content []byte) (language string, safe bool)
- func GetLanguageByExtension(filename string) (language string, safe bool)
- func GetLanguageByFilename(filename string) (language string, safe bool)
- func GetLanguageByModeline(content []byte) (language string, safe bool)
- func GetLanguageByShebang(content []byte) (language string, safe bool)
- func GetLanguageBySpecificClassifier(content []byte, candidates []string, classifier Classifier) (language string, safe bool)
- func GetLanguageByVimModeline(content []byte) (language string, safe bool)
- func GetLanguageExtensions(language string) []string
- func GetLanguages(filename string, content []byte) []string
- func GetLanguagesByClassifier(filename string, content []byte, candidates []string) (languages []string)
- func GetLanguagesByContent(filename string, content []byte, candidates []string) []string
- func GetLanguagesByEmacsModeline(filename string, content []byte, candidates []string) []string
- func GetLanguagesByExtension(filename string, content []byte, candidates []string) []string
- func GetLanguagesByFilename(filename string, content []byte, candidates []string) []string
- func GetLanguagesByModeline(filename string, content []byte, candidates []string) []string
- func GetLanguagesByShebang(filename string, content []byte, candidates []string) (languages []string)
- func GetLanguagesBySpecificClassifier(content []byte, candidates []string, classifier Classifier) (languages []string)
- func GetLanguagesByVimModeline(filename string, content []byte, candidates []string) []string
- func IsAuxiliaryLanguage(lang string) bool
- func IsBinary(data []byte) bool
- func IsConfiguration(path string) bool
- func IsDocumentation(path string) bool
- func IsDotFile(path string) bool
- func IsVendor(path string) bool
- type Classifier
- type Strategy
- type Type
Constants ¶
const OtherLanguage = ""
OtherLanguage is used as a zero value when a function can not return a specific language.
Variables ¶
var DefaultStrategies = []Strategy{ GetLanguagesByModeline, GetLanguagesByFilename, GetLanguagesByShebang, GetLanguagesByExtension, GetLanguagesByContent, GetLanguagesByClassifier, }
DefaultStrategies is the strategies' sequence GetLanguage uses to detect languages.
Functions ¶
func GetLanguage ¶
GetLanguage applies a sequence of strategies based on the given filename and content to find out the most probably language to return.
func GetLanguageByAlias ¶
GetLanguageByAlias returns either the language related to the given alias and ok set to true or Otherlanguage and ok set to false if the alias is not recognized.
func GetLanguageByClassifier ¶ added in v1.2.1
GetLanguageByClassifier returns the most probably language detected for the given content. It uses DefaultClassifier, if no candidates are provided it returns OtherLanguage.
func GetLanguageByContent ¶
GetLanguageByContent returns detected language. If there are more than one possibles languages it returns the first language by alphabetically order and safe to false.
func GetLanguageByEmacsModeline ¶
GetLanguageByEmacsModeline returns detected language. If there are more than one possibles languages it returns the first language by alphabetically order and safe to false.
func GetLanguageByExtension ¶
GetLanguageByExtension returns detected language. If there are more than one possibles languages it returns the first language by alphabetically order and safe to false.
func GetLanguageByFilename ¶
GetLanguageByFilename returns detected language. If there are more than one possibles languages it returns the first language by alphabetically order and safe to false.
func GetLanguageByModeline ¶
GetLanguageByModeline returns detected language. If there are more than one possibles languages it returns the first language by alphabetically order and safe to false.
func GetLanguageByShebang ¶
GetLanguageByShebang returns detected language. If there are more than one possibles languages it returns the first language by alphabetically order and safe to false.
func GetLanguageBySpecificClassifier ¶ added in v1.2.1
func GetLanguageBySpecificClassifier(content []byte, candidates []string, classifier Classifier) (language string, safe bool)
GetLanguageBySpecificClassifier returns the most probably language for the given content using classifier to detect language.
func GetLanguageByVimModeline ¶
GetLanguageByVimModeline returns detected language. If there are more than one possibles languages it returns the first language by alphabetically order and safe to false.
func GetLanguageExtensions ¶
GetLanguageExtensions returns the different extensions being used by the language.
func GetLanguages ¶ added in v1.2.1
GetLanguages applies a sequence of strategies based on the given filename and content to find out the most probably languages to return.
func GetLanguagesByClassifier ¶ added in v1.2.1
func GetLanguagesByClassifier(filename string, content []byte, candidates []string) (languages []string)
GetLanguagesByClassifier uses DefaultClassifier as a Classifier and returns a sorted slice of possible languages ordered by decreasing language's probability. If there are not candidates it returns nil. It is comply with the signature to be a Strategy type.
func GetLanguagesByContent ¶ added in v1.2.1
GetLanguagesByContent returns a slice of possible languages for the given content, filename and candidates will be ignored. It is comply with the signature to be a Strategy type.
func GetLanguagesByEmacsModeline ¶ added in v1.2.1
GetLanguagesByEmacsModeline returns a slice of possible languages for the given content, filename and candidates will be ignored. It is comply with the signature to be a Strategy type.
func GetLanguagesByExtension ¶ added in v1.2.1
GetLanguagesByExtension returns a slice of possible languages for the given filename, content and candidates will be ignored. It is comply with the signature to be a Strategy type.
func GetLanguagesByFilename ¶ added in v1.2.1
GetLanguagesByFilename returns a slice of possible languages for the given filename, content and candidates will be ignored. It is comply with the signature to be a Strategy type.
func GetLanguagesByModeline ¶ added in v1.2.1
GetLanguagesByModeline returns a slice of possible languages for the given content, filename will be ignored. It is comply with the signature to be a Strategy type.
func GetLanguagesByShebang ¶ added in v1.2.1
func GetLanguagesByShebang(filename string, content []byte, candidates []string) (languages []string)
GetLanguagesByShebang returns a slice of possible languages for the given content, filename and candidates will be ignored. It is comply with the signature to be a Strategy type.
func GetLanguagesBySpecificClassifier ¶ added in v1.2.1
func GetLanguagesBySpecificClassifier(content []byte, candidates []string, classifier Classifier) (languages []string)
GetLanguagesBySpecificClassifier returns a slice of possible languages. It takes in a Classifier to be used.
func GetLanguagesByVimModeline ¶ added in v1.2.1
GetLanguagesByVimModeline returns a slice of possible languages for the given content, filename and candidates will be ignored. It is comply with the signature to be a Strategy type.
func IsAuxiliaryLanguage ¶
IsAuxiliaryLanguage returns whether or not lang is an auxiliary language.
func IsBinary ¶
IsBinary detects if data is a binary value based on: http://git.kernel.org/cgit/git/git.git/tree/xdiff-interface.c?id=HEAD#n198
func IsConfiguration ¶
IsConfiguration returns whether or not path is using a configuration language.
func IsDocumentation ¶
IsDocumentation returns whether or not path is a documentation path.
Types ¶
type Classifier ¶ added in v1.2.1
type Classifier interface {
Classify(content []byte, candidates map[string]float64) (languages []string)
}
Classifier is the interface in charge to detect the possible languages of the given content based on a set of candidates. Candidates is a map which can be used to assign weights to languages dynamically.
var DefaultClassifier Classifier = &classifier{ languagesLogProbabilities: map[string]float64{ "1C Enterprise": -5.720858, "ABAP": -7.512618, "ABNF": -7.512618, "AGS Script": -6.126323, "AMPL": -6.819470, "API Blueprint": -6.414005, "APL": -6.414005, "ASN.1": -7.512618, "ATS": -5.315393, "Agda": -7.512618, "Alloy": -6.414005, "Alpine Abuild": -7.512618, "Ant Build System": -7.512618, "ApacheConf": -6.126323, "Apex": -5.720858, "Apollo Guidance Computer": -7.512618, "AppleScript": -5.566707, "Arduino": -6.819470, "AsciiDoc": -6.414005, "AspectJ": -6.819470, "Assembly": -5.720858, "AutoHotkey": -7.512618, "Awk": -7.512618, "BitBake": -6.819470, "Blade": -6.819470, "BlitzBasic": -6.414005, "BlitzMax": -7.512618, "Bluespec": -6.819470, "Brainfuck": -5.903180, "Brightscript": -7.512618, "C": -3.505284, "C#": -5.720858, "C++": -3.705955, "CLIPS": -6.819470, "CMake": -5.566707, "COBOL": -6.126323, "CSON": -6.126323, "CSS": -6.819470, "CSV": -7.512618, "CWeb": -7.512618, "CartoCSS": -7.512618, "Ceylon": -7.512618, "Chapel": -5.903180, "Charity": -7.512618, "Cirru": -5.315393, "Clarion": -6.126323, "Clean": -5.315393, "Click": -6.819470, "Clojure": -5.315393, "Closure Templates": -7.512618, "CoffeeScript": -5.210032, "ColdFusion": -7.512618, "ColdFusion CFC": -6.819470, "Common Lisp": -5.315393, "Component Pascal": -6.819470, "Cool": -6.819470, "Coq": -4.947668, "Creole": -7.512618, "Crystal": -6.414005, "Csound": -6.414005, "Csound Document": -6.414005, "Csound Score": -6.414005, "Cuda": -6.819470, "Cycript": -7.512618, "D": -5.315393, "DIGITAL Command Language": -6.126323, "DM": -7.512618, "DNS Zone": -6.819470, "DTrace": -6.414005, "Dart": -7.512618, "Diff": -7.512618, "Dockerfile": -7.512618, "Dogescript": -7.512618, "E": -5.566707, "EBNF": -6.126323, "ECL": -7.512618, "ECLiPSe": -7.512618, "EJS": -6.819470, "EQ": -6.414005, "Eagle": -6.819470, "Eiffel": -6.414005, "Elixir": -7.512618, "Elm": -6.414005, "Emacs Lisp": -5.114722, "EmberScript": -7.512618, "Erlang": -4.873560, "F#": -5.433176, "FLUX": -6.126323, "Filebench WML": -7.512618, "Filterscript": -6.819470, "Formatted": -6.414005, "Forth": -4.740029, "Fortran": -5.903180, "FreeMarker": -6.819470, "Frege": -6.126323, "G-code": -6.819470, "GAMS": -7.512618, "GAP": -5.315393, "GCC Machine Description": -7.512618, "GDB": -6.819470, "GDScript": -6.126323, "GLSL": -4.873560, "GN": -5.114722, "Game Maker Language": -5.114722, "Genie": -6.819470, "Gnuplot": -5.720858, "Go": -6.414005, "Golo": -4.216781, "Gosu": -5.903180, "Grace": -6.819470, "Gradle": -6.819470, "Grammatical Framework": -3.799045, "Graph Modeling Language": -7.512618, "GraphQL": -6.819470, "Graphviz (DOT)": -6.819470, "Groovy": -5.720858, "Groovy Server Pages": -6.126323, "HCL": -6.414005, "HLSL": -5.903180, "HTML": -5.720858, "HTML+Django": -7.512618, "HTML+ECR": -7.512618, "HTML+EEX": -7.512618, "HTML+ERB": -6.819470, "Hack": -4.180413, "Haml": -6.819470, "Handlebars": -6.819470, "Haskell": -5.903180, "Hy": -6.819470, "HyPhy": -5.433176, "IDL": -6.126323, "IGOR Pro": -6.819470, "INI": -6.414005, "Idris": -7.512618, "Inform 7": -6.819470, "Inno Setup": -7.512618, "Ioke": -7.512618, "Isabelle": -7.512618, "Isabelle ROOT": -7.512618, "J": -6.819470, "JFlex": -6.819470, "JSON": -5.315393, "JSON5": -6.414005, "JSONLD": -7.512618, "JSONiq": -6.819470, "JSX": -7.512618, "Jasmin": -5.433176, "Java": -5.315393, "JavaScript": -3.986257, "Jison": -6.414005, "Jison Lex": -6.819470, "Jolie": -5.903180, "Julia": -6.819470, "Jupyter Notebook": -7.512618, "KRL": -7.512618, "KiCad": -6.126323, "Kit": -7.512618, "Kotlin": -7.512618, "LFE": -6.126323, "LOLCODE": -7.512618, "LSL": -6.819470, "Lasso": -6.126323, "Latte": -6.819470, "Lean": -6.819470, "Less": -7.512618, "Lex": -7.512618, "Limbo": -6.414005, "Linker Script": -6.414005, "Linux Kernel Module": -6.414005, "Liquid": -6.819470, "Literate Agda": -7.512618, "Literate CoffeeScript": -7.512618, "LiveScript": -7.512618, "Logos": -7.512618, "Logtalk": -7.512618, "LookML": -6.414005, "LoomScript": -6.819470, "Lua": -6.126323, "M": -4.145322, "M4": -7.512618, "M4Sugar": -6.414005, "MAXScript": -6.126323, "MQL4": -6.414005, "MQL5": -6.414005, "MTML": -7.512618, "MUF": -6.819470, "Makefile": -5.027711, "Markdown": -6.126323, "Marko": -6.414005, "Mask": -7.512618, "Mathematica": -5.027711, "Matlab": -3.849056, "Maven POM": -7.512618, "Max": -6.414005, "MediaWiki": -6.819470, "Mercury": -5.210032, "Meson": -6.819470, "Metal": -7.512618, "Modelica": -5.027711, "Modula-2": -7.512618, "Module Management System": -5.903180, "Monkey": -7.512618, "Moocode": -6.414005, "MoonScript": -7.512618, "NCL": -4.740029, "NL": -6.819470, "NSIS": -6.819470, "Nemerle": -7.512618, "NetLinx": -6.819470, "NetLinx+ERB": -6.819470, "NetLogo": -7.512618, "NewLisp": -6.414005, "Nginx": -6.819470, "Nim": -7.512618, "Nit": -4.334564, "Nix": -7.512618, "Nu": -6.819470, "OCaml": -5.210032, "Objective-C": -4.421575, "Objective-C++": -6.819470, "Objective-J": -6.414005, "Omgrofl": -7.512618, "Opa": -6.819470, "Opal": -7.512618, "OpenCL": -6.819470, "OpenEdge ABL": -5.903180, "OpenRC runscript": -7.512618, "OpenSCAD": -6.819470, "Org": -7.512618, "Ox": -6.414005, "Oxygene": -7.512618, "Oz": -7.512618, "P4": -6.819470, "PAWN": -6.819470, "PHP": -4.622246, "PLSQL": -5.433176, "PLpgSQL": -5.720858, "POV-Ray SDL": -5.027711, "Pan": -7.512618, "Papyrus": -6.414005, "Parrot Assembly": -7.512618, "Parrot Internal Representation": -7.512618, "Pascal": -5.210032, "Pep8": -5.566707, "Perl": -4.516885, "Perl6": -4.421575, "Pic": -6.414005, "Pickle": -6.126323, "PicoLisp": -7.512618, "PigLatin": -7.512618, "Pike": -6.414005, "Pod": -6.819470, "PogoScript": -7.512618, "Pony": -5.720858, "PostScript": -7.512618, "PowerBuilder": -5.720858, "PowerShell": -6.414005, "Processing": -7.512618, "Prolog": -5.315393, "Propeller Spin": -5.210032, "Protocol Buffer": -7.512618, "Public Key": -5.566707, "Pug": -6.819470, "Puppet": -5.903180, "PureBasic": -6.819470, "PureScript": -6.126323, "Python": -4.334564, "QML": -7.512618, "QMake": -6.126323, "R": -5.433176, "RAML": -7.512618, "RDoc": -7.512618, "REXX": -6.126323, "RMarkdown": -7.512618, "RPM Spec": -6.414005, "RUNOFF": -6.126323, "Racket": -6.819470, "Ragel": -6.414005, "Rascal": -6.126323, "Reason": -5.903180, "Rebol": -5.720858, "Red": -6.819470, "Regular Expression": -6.126323, "Ren'Py": -7.512618, "RenderScript": -6.819470, "RobotFramework": -6.414005, "Roff": -5.566707, "Ruby": -4.046882, "Rust": -6.414005, "SAS": -6.414005, "SCSS": -7.512618, "SMT": -6.126323, "SPARQL": -6.819470, "SQF": -6.819470, "SQL": -5.027711, "SQLPL": -5.720858, "SRecode Template": -7.512618, "STON": -5.566707, "Sage": -7.512618, "SaltStack": -5.720858, "Sass": -7.512618, "Scala": -6.126323, "Scaml": -7.512618, "Scheme": -6.414005, "Scilab": -6.414005, "ShaderLab": -6.414005, "Shell": -3.751417, "ShellSession": -6.414005, "Shen": -6.414005, "Slash": -7.512618, "Slim": -7.512618, "Smali": -5.566707, "Smalltalk": -5.210032, "SourcePawn": -5.720858, "Squirrel": -7.512618, "Stan": -6.414005, "Standard ML": -5.903180, "Stata": -5.566707, "Stylus": -7.512618, "SubRip Text": -7.512618, "Sublime Text Config": -5.027711, "SuperCollider": -5.903180, "Swift": -3.751417, "SystemVerilog": -6.126323, "TI Program": -6.126323, "TLA": -6.819470, "TXL": -7.512618, "Tcl": -6.126323, "TeX": -5.566707, "Tea": -7.512618, "Terra": -6.414005, "Text": -4.254521, "Thrift": -7.512618, "Turing": -6.819470, "Turtle": -6.819470, "Type Language": -6.819470, "TypeScript": -5.720858, "Unity3D Asset": -5.903180, "Unix Assembly": -6.819470, "Uno": -6.414005, "UnrealScript": -6.819470, "UrWeb": -6.819470, "VCL": -6.819470, "VHDL": -7.512618, "Verilog": -4.947668, "Vim script": -5.903180, "Visual Basic": -6.414005, "Volt": -7.512618, "Vue": -6.819470, "Wavefront Material": -6.126323, "Wavefront Object": -5.903180, "Web Ontology Language": -7.512618, "WebAssembly": -5.720858, "WebIDL": -6.819470, "World of Warcraft Addon Data": -6.414005, "X10": -4.622246, "XC": -7.512618, "XCompose": -7.512618, "XML": -3.641417, "XPages": -6.819470, "XProc": -7.512618, "XQuery": -7.512618, "XS": -7.512618, "XSLT": -7.512618, "Xojo": -5.720858, "Xtend": -6.819470, "YAML": -5.566707, "YANG": -7.512618, "Zephir": -6.819470, "Zimpl": -7.512618, "desktop": -7.512618, "eC": -7.512618, "edn": -7.512618, "fish": -6.414005, "reStructuredText": -7.512618, "wisp": -7.512618, "xBase": -6.414005, }, tokensLogProbabilities: map[string]map[string]float64{ "1C Enterprise": map[string]float64{ "#": -8.978471, "&": -6.675886, "(": -4.065816, ")": -4.065816, "*": -9.671619, "+": -6.205883, ",": -5.086651, "-": -8.978471, ".": -3.957886, "/": -9.671619, "//": -8.573006, "//////////////////////////////////////////////////////////////////////////////": -8.978471, ";": -3.878605, "<": -6.781247, "=": -4.478662, ">": -6.727180, "?": -8.978471, "DOM": -8.978471, "DOM.": -9.671619, "HTML": -8.978471, "HTML.": -8.978471, "Null": -9.671619, "XML": -7.273723, "XML.": -7.725708, "_": -7.474394, "А": -8.285324, "Б": -8.062181, "В": -4.701805, "Г": -8.285324, "Д": -4.722859, "Е": -5.107270, "Ж": -9.671619, "З": -4.584022, "И": -5.289592, "К": -4.310326, "Л": -6.237631, "М": -6.270421, "Н": -4.590214, "О": -4.641181, "П": -4.001738, "Р": -5.842977, "С": -4.435177, "Т": -4.403760, "У": -6.060701, "Ф": -5.982739, "Х": -8.978471, "Ц": -5.611176, "Ч": -6.580576, "Ш": -6.627096, "Э": -5.821471, "а": -2.506125, "б": -4.291721, "в": -3.860478, "г": -4.804084, "д": -4.036829, "е": -2.541520, "ж": -5.139019, "з": -4.827431, "и": -2.859273, "й": -4.688012, "к": -3.479256, "л": -3.214849, "м": -4.073197, "н": -2.957448, "о": -2.573243, "п": -4.273456, "р": -3.199272, "с": -3.569060, "т": -2.863684, "у": -4.029711, "ф": -5.821471, "х": -6.237631, "ц": -4.319760, "ч": -4.654339, "ш": -7.369033, "щ": -5.528484, "ъ": -5.982739, "ы": -3.805150, "ь": -4.029711, "ю": -6.116270, "я": -4.565673, "\ufeff": -8.978471, }, "ABAP": map[string]float64{ "!": -4.637712, "\"": -7.202661, "(": -5.816367, ")": -5.816367, "*": -3.619142, "+": -5.005437, "-": -0.322277, ".": -5.005437, "<-()]>": -6.509514, "</SIGNATURE>": -6.509514, "<SIGNATURE>": -5.816367, "<line>": -6.104049, "=": -4.900076, ">": -5.123220, "ABAP_BOOL": -7.202661, "C": -7.202661, "CLASS": -6.509514, "CL_CSV_PARSER": -5.410902, "CONSTRUCTOR": -7.202661, "CSV": -7.202661, "CSVSTRING": -7.202661, "CX": -7.202661, "CX_CSV_PARSE_ERROR": -7.202661, "DEFINITION": -6.509514, "DELEGATE": -7.202661, "Get": -7.202661, "IF_CSV_PARSER_DELEGATE": -7.202661, "IMPLEMENTATION": -6.509514, "Instance": -6.509514, "Method": -6.509514, "Parse": -7.202661, "Private": -7.202661, "Public": -7.202661, "REF": -7.202661, "RETURNING": -7.202661, "SEPARATOR": -7.202661, "SIGNATURE": -6.509514, "SKIP_FIRST_LINE": -7.202661, "STRING": -7.202661, "STRINGTAB": -6.104049, "Space": -6.509514, "TO": -7.202661, "TYPE": -5.256751, "This": -7.202661, "[": -5.593223, "]": -5.816367, "_LINES": -7.202661, "_csvstring": -6.509514, "_delegate": -7.202661, "_lines": -7.202661, "_lines.": -7.202661, "_parse_line": -6.509514, "_separator": -7.202661, "_skip_first_line": -7.202661, "_textindicator": -7.202661, "`": -5.816367, "abap": -7.202661, "abap_bool": -6.509514, "abap_true.": -6.509514, "an": -7.202661, "append": -6.509514, "assigning": -7.202661, "at": -6.509514, "c": -6.509514, "char": -6.509514, "cl_abap_char_utilities": -7.202661, "cl_csv_parser": -6.509514, "cl_object": -7.202661, "class": -6.509514, "clear": -7.202661, "concatenate": -5.816367, "constants": -7.202661, "constructor": -6.509514, "constructor.": -7.202661, "cr_lf": -7.202661, "create": -7.202661, "csv": -7.202661, "csvstring": -7.202661, "csvstring.": -7.202661, "csvvalue": -5.410902, "csvvalue.": -5.593223, "csvvalues.": -6.509514, "cx_csv_parse_error": -6.509514, "data": -6.104049, "definition": -7.202661, "delegate": -7.202661, "delegate.": -7.202661, "do": -6.104049, "e": -7.202661, "else.": -5.816367, "endclass.": -7.202661, "endif.": -5.410902, "endmethod.": -6.509514, "endwhile.": -6.509514, "error": -7.202661, "exception": -7.202661, "exporting": -7.202661, "field": -7.202661, "files": -6.104049, "final": -7.202661, "formatting": -7.202661, "from": -7.202661, "here": -6.104049, "if_csv_parser_delegate": -7.202661, "implementation.": -7.202661, "importing": -7.202661, "in": -7.202661, "include": -6.104049, "indicates": -7.202661, "inheriting": -7.202661, "into": -5.410902, "is_first_line": -7.202661, "line": -7.202661, "lines": -5.816367, "loop": -7.202661, "message": -6.509514, "method": -6.509514, "methods": -6.509514, "msg.": -6.509514, "not": -6.104049, "of": -6.509514, "other": -6.104049, "parse": -6.509514, "pools": -7.202661, "pos": -6.509514, "private": -7.202661, "protected": -7.202661, "public": -6.104049, "raise": -7.202661, "raising": -7.202661, "ref": -7.202661, "returning.": -7.202661, "section.": -6.104049, "separator": -7.202661, "separator.": -7.202661, "skip_first_line": -7.202661, "skip_first_line.": -7.202661, "source": -6.104049, "split": -7.202661, "standard": -6.509514, "string": -7.202661, "string.": -6.104049, "super": -7.202661, "symbols": -7.202661, "table": -6.104049, "text_ended": -7.202661, "the": -6.104049, "to": -6.104049, "type": -4.804766, "value": -6.509514, "values": -6.509514, "|": -5.256751, }, "ABNF": map[string]float64{ "%": -3.171745, "'": -7.142037, "(": -4.251665, ")": -4.197598, "*": -4.944812, "*DIGIT": -7.142037, "*basic": -6.448889, "*literal": -7.142037, "*newline": -7.142037, "*non": -7.142037, "+": -4.744141, ",": -5.062595, "-": -1.785450, ".": -6.043424, "/": -2.983153, "//github.com/toml": -7.142037, "//www.ietf.org/rfc/rfc": -7.142037, ":": -5.755742, ";": -2.588160, "=": -2.747587, "A": -5.196126, "ABNF": -6.448889, "ALPHA": -6.448889, "Apostrophe": -7.142037, "Array": -6.448889, "B": -5.196126, "B.": -7.142037, "Basic": -6.043424, "Boolean": -7.142037, "Built": -7.142037, "C": -5.350277, "C.": -7.142037, "CRLF": -7.142037, "Comma": -6.448889, "Comment": -7.142037, "D": -4.839451, "D.": -6.448889, "DIGIT": -4.433986, "Datetime": -7.142037, "Double": -6.448889, "E": -5.755742, "Float": -7.142037, "HEXDIG": -6.043424, "Horizontal": -7.142037, "Inline": -7.142037, "Integer": -7.142037, "Key": -7.142037, "LF": -7.142037, "Left": -7.142037, "License": -7.142037, "Literal": -6.448889, "MIT": -7.142037, "Multiline": -6.448889, "Newline": -7.142037, "Period": -7.142037, "RFC": -6.448889, "Right": -7.142037, "See": -7.142037, "Source": -7.142037, "Space": -7.142037, "Standard": -7.142037, "String": -5.532599, "Strings": -7.142037, "TOML": -6.448889, "Table": -5.755742, "This": -7.142037, "U": -4.839451, "UXXXXXXXX": -7.142037, "Value": -7.142037, "Whitespace": -7.142037, "XXXX": -7.142037, "XXXXXXXX": -7.142037, "Z": -6.448889, "[": -4.577087, "\\": -6.448889, "]": -4.577087, "_": -6.448889, "a": -6.448889, "according": -7.142037, "an": -7.142037, "apostraphe": -5.350277, "array": -4.251665, "as": -7.142037, "attempt": -7.142037, "b": -7.142037, "backspace": -7.142037, "based": -6.448889, "basic": -4.502979, "body": -5.755742, "boolean": -6.448889, "bracket": -5.755742, "carriage": -7.142037, "char": -5.062595, "clarity": -7.142037, "close": -5.062595, "comment": -5.062595, "date": -4.839451, "decimal": -6.448889, "define": -7.142037, "defined": -6.448889, "delim": -5.350277, "digit": -6.448889, "e": -6.043424, "empty": -6.043424, "eol": -7.142037, "escape": -6.448889, "escaped": -7.142037, "exp": -6.043424, "expression": -6.043424, "f": -7.142037, "false": -6.043424, "feed": -6.448889, "float": -6.448889, "for": -7.142037, "form": -7.142037, "frac": -6.043424, "full": -5.755742, "fullyear": -6.448889, "grammar": -7.142037, "here": -7.142037, "hour": -6.043424, "http": -7.142037, "https": -7.142037, "in": -5.755742, "inline": -4.577087, "int": -5.755742, "integer": -5.755742, "is": -7.142037, "key": -4.433986, "keyval": -5.350277, "keyvals": -5.532599, "lang/toml": -7.142037, "leap": -7.142037, "left": -7.142037, "line": -7.142037, "literal": -4.657130, "mark": -4.944812, "mday": -6.448889, "minus": -6.448889, "minute": -6.043424, "ml": -4.146304, "month": -6.448889, "month/year": -7.142037, "n": -7.142037, "newline": -5.532599, "newlines": -5.532599, "non": -6.043424, "numoffset": -6.448889, "offset": -6.448889, "on": -6.448889, "open": -5.062595, "pairs": -7.142037, "partial": -6.448889, "plus": -6.448889, "point": -6.448889, "prefixable": -6.448889, "quotation": -4.944812, "quoted": -6.448889, "r": -7.142037, "reproduced": -7.142037, "return": -7.142037, "reverse": -7.142037, "right": -7.142037, "rules": -7.142037, "secfrac": -6.448889, "second": -6.043424, "sep": -4.657130, "solidus": -6.448889, "square": -5.755742, "start": -6.448889, "std": -5.350277, "string": -4.369448, "symbol": -6.448889, "t": -7.142037, "tab": -6.448889, "table": -3.740839, "terms": -7.142037, "the": -7.142037, "time": -4.146304, "to": -6.448889, "toml": -7.142037, "true": -6.043424, "txt": -7.142037, "uXXXX": -7.142037, "underscore": -6.043424, "unescaped": -6.043424, "unquoted": -6.448889, "val": -5.350277, "values": -6.043424, "ws": -4.006542, "x": -3.171745, "z": -6.448889, "zero": -6.448889, "{": -7.142037, "}": -7.142037, }, "AGS Script": map[string]float64{ "!": -5.850405, "#define": -7.236699, "&&": -6.138087, "(": -2.606836, ")": -2.606836, "*control": -4.710971, "*theGui": -7.929846, "+": -5.983936, ",": -3.978603, "-": -2.601970, "//": -5.531951, "//****************************************************************************************************": -5.850405, "//But": -7.929846, "//Ctrl": -7.929846, "//START": -7.929846, "//Use": -7.929846, "//if": -7.929846, ":": -7.236699, ";": -2.776555, "<": -7.929846, "=": -1.114206, ">": -7.236699, "CONTROL": -7.929846, "DISTANCE": -4.710971, "Debug": -6.543552, "DeleteSaveSlot": -7.929846, "Display": -6.543552, "ESC": -7.929846, "EventType": -7.929846, "FUNCTIONS": -7.929846, "GUI": -7.929846, "GUIControl": -4.710971, "IsGamePaused": -6.831234, "IsInterfaceEnabled": -7.236699, "IsKeyPressed": -5.096633, "IsSpeechVoxAvailable": -7.929846, "KeyboardMovement": -7.236699, "KeyboardMovement_CurrentDirection": -5.983936, "KeyboardMovement_Directions": -6.543552, "KeyboardMovement_KeyDown": -6.320409, "KeyboardMovement_KeyDownLeft": -6.831234, "KeyboardMovement_KeyDownRight": -6.831234, "KeyboardMovement_KeyLeft": -6.320409, "KeyboardMovement_KeyRight": -6.320409, "KeyboardMovement_KeyStop": -6.831234, "KeyboardMovement_KeyUp": -6.320409, "KeyboardMovement_KeyUpLeft": -6.831234, "KeyboardMovement_KeyUpRight": -6.831234, "KeyboardMovement_Mode": -6.543552, "KeyboardMovement_Modes": -6.543552, "KeyboardMovement_VERSION": -7.929846, "MouseButton": -4.838804, "OF": -7.929846, "PANEL": -7.929846, "ProcessClick": -7.929846, "QuitGame": -7.236699, "RestoreGameSlot": -7.929846, "SaveGameSlot": -7.929846, "SetMode": -7.236699, "SetVoiceMode": -6.543552, "System.SupportsGammaControl": -7.929846, "System.Volume": -7.929846, "W": -7.929846, "Wait": -6.831234, "[": -6.138087, "]": -6.138087, "appreciate.": -7.929846, "area": -7.929846, "as": -7.929846, "btnAbout_OnClick": -7.929846, "btnCancelRestore_OnClick": -7.929846, "btnCancelSave_OnClick": -7.929846, "btnDeleteSave_OnClick": -7.929846, "btnIconAbout_Click": -7.929846, "btnIconCurInv_Click": -7.929846, "btnIconExit_Click": -7.929846, "btnIconInv_Click": -7.929846, "btnIconLoad": -7.929846, "btnIconLoad_Click": -7.236699, "btnIconSave": -7.929846, "btnIconSave_Click": -7.236699, "btnInvDown_Click": -7.929846, "btnInvOK_Click": -7.929846, "btnInvSelect_Click": -7.929846, "btnInvUp_Click": -7.929846, "btnLoad_OnClick": -7.929846, "btnQuit_OnClick": -7.929846, "btnRestoreGame_OnClick": -7.929846, "btnResume_OnClick": -7.929846, "btnSaveGame_OnClick": -7.236699, "btnSave_OnClick": -7.929846, "btnVoice.Text": -5.983936, "btnVoice.Visible": -7.929846, "button": -4.751793, "cEgo_Interact": -7.929846, "cEgo_Look": -7.929846, "cEgo_Talk": -7.929846, "cancel": -7.929846, "close_restore_game_dialog": -6.831234, "close_save_game_dialog": -6.831234, "control": -7.929846, "data": -7.929846, "dx": -4.934114, "dy": -4.934114, "eEventLeaveRoom": -7.929846, "eKeyCtrlA": -7.929846, "eKeyCtrlS": -7.929846, "eKeyCtrlV": -7.929846, "eKeyCtrlW": -7.929846, "eKeyCtrlX": -7.929846, "eKeyEscape": -7.929846, "eKeyboardMovement_Down": -6.320409, "eKeyboardMovement_DownLeft": -6.320409, "eKeyboardMovement_DownRight": -6.320409, "eKeyboardMovement_Left": -6.320409, "eKeyboardMovement_None": -7.236699, "eKeyboardMovement_Pressing": -7.236699, "eKeyboardMovement_Right": -6.320409, "eKeyboardMovement_Stop": -5.732622, "eKeyboardMovement_Tapping": -7.236699, "eKeyboardMovement_Up": -6.320409, "eKeyboardMovement_UpLeft": -6.320409, "eKeyboardMovement_UpRight": -6.320409, "eModeInteract": -7.929846, "eModePickup": -7.929846, "eModePointer": -6.320409, "eModeTalkto": -7.929846, "eModeUseinv": -7.236699, "eModeWalkto": -7.929846, "eMouseLeft": -6.831234, "eMouseWheelNorth": -7.929846, "eNoBlock": -7.236699, "eSpeechTextOnly": -7.929846, "eSpeechVoiceAndText": -7.236699, "eSpeechVoiceOnly": -7.929846, "else": -4.292260, "enum": -7.236699, "event": -7.236699, "false": -4.985407, "function": -4.240967, "gControl_OnClick": -7.929846, "gIconbar.Visible": -5.627261, "gInventory.Visible": -7.929846, "gPanel.Centre": -7.929846, "gPanel.Visible": -5.983936, "gRestartYN.Centre": -7.929846, "gRestartYN.Visible": -7.236699, "gRestoreGame.Visible": -7.236699, "gSaveGame.Visible": -7.929846, "game.debug_mode": -7.929846, "gameSlotToSaveInto": -6.831234, "give": -7.929846, "i": -6.320409, "if": -3.835502, "import": -7.929846, "initialize_control_panel": -7.929846, "int": -5.096633, "interface": -7.929846, "interface_click": -7.929846, "invCustomInv.ScrollDown": -7.929846, "invCustomInv.ScrollUp": -7.929846, "is": -7.929846, "keyboard": -7.929846, "keycode": -4.985407, "lblVoice.Visible": -7.929846, "lstRestoreGamesList.FillSaveGameList": -7.929846, "lstRestoreGamesList.SaveGameSlots": -7.929846, "lstRestoreGamesList.SelectedIndex": -7.236699, "lstSaveGamesList.FillSaveGameList": -7.929846, "lstSaveGamesList.ItemCount": -7.236699, "lstSaveGamesList.Items": -6.831234, "lstSaveGamesList.SaveGameSlots": -7.236699, "lstSaveGamesList.SelectedIndex": -6.831234, "lstSaveGamesList_OnSelectionCh": -7.929846, "mode": -6.831234, "mouse.Mode": -6.320409, "mouse.UseDefaultGraphic": -5.983936, "mouse.UseModeGraphic": -6.320409, "mouse.x": -7.929846, "mouse.y": -7.929846, "move": -7.929846, "much": -7.929846, "newdirection": -4.168646, "null": -7.929846, "on_event": -7.929846, "on_key_press": -7.929846, "on_mouse_click": -7.929846, "player.ActiveInventory": -7.929846, "player.PlaceOnWalkableArea": -7.929846, "player.StopMoving": -6.831234, "player.WalkStraight": -7.236699, "player.on": -7.236699, "player.x": -7.236699, "player.y": -7.236699, "players": -7.929846, "repeatedly_execute": -7.929846, "restart.": -7.929846, "return": -7.236699, "shortcuts": -7.929846, "show_inventory_window": -7.929846, "show_restore_game_dialog": -7.236699, "show_save_game_dialog": -7.929846, "sldAudio.Value": -7.929846, "sldAudio_OnChange": -7.929846, "sldGamma_OnChange": -7.929846, "sldVoice.Visible": -7.929846, "sldVoice_OnChange": -7.929846, "some": -7.929846, "standard": -7.929846, "static": -7.236699, "struct": -7.929846, "this": -7.929846, "to": -7.236699, "true": -5.531951, "txtNewSaveName.Text": -6.320409, "txtNewSaveName_OnActivate": -7.929846, "very": -7.929846, "walkable": -7.929846, "while": -7.929846, "will": -7.236699, "you": -7.929846, "your": -7.929846, "{": -3.586041, "||": -5.531951, "}": -3.560399, }, "AMPL": map[string]float64{ "(": -3.988984, ")": -3.988984, "*": -4.276666, "+": -6.068426, ",": -2.667228, "-": -6.068426, "..": -4.969813, ":": -3.123987, ";": -2.602690, "<": -6.068426, "=": -3.072693, ">": -3.765840, "BEAMS": -4.122515, "COLUMNS": -4.276666, "I": -4.122515, "KnapsackBound": -4.969813, "ROWS": -4.276666, "S": -4.969813, "T": -4.969813, "Take": -4.969813, "TotalValue": -6.068426, "Value": -4.969813, "Weight": -4.969813, "WeightLimit": -6.068426, "X": -4.458988, "[": -3.178054, "]": -3.178054, "beam_values": -4.458988, "binary": -6.068426, "critical_area": -4.458988, "critical_limit": -6.068426, "critical_max": -5.375278, "critical_values": -5.375278, "data": -6.068426, "h": -3.072693, "i": -3.123987, "in": -3.123987, "integer": -5.375278, "k": -3.072693, "maximize": -5.375278, "minimize": -4.969813, "num_beams": -5.375278, "num_cols": -5.375278, "num_rows": -5.375278, "param": -3.503476, "s.t.": -6.068426, "set": -4.276666, "subject": -5.375278, "sum": -3.765840, "to": -5.375278, "total_critical_dosage": -6.068426, "total_critical_slack": -6.068426, "total_tumor_dosage": -6.068426, "total_tumor_slack": -6.068426, "tumor_area": -4.458988, "tumor_limit": -6.068426, "tumor_min": -5.375278, "tumor_values": -5.375278, "var": -4.682131, "{": -2.932931, "}": -2.932931, }, "API Blueprint": map[string]float64{ "!": -5.216746, "#": -4.369448, "##": -6.315358, "%": -3.319626, "'": -6.315358, "(": -3.057261, ")": -3.057261, "**": -6.315358, "**API": -6.315358, "**Note": -6.315358, "**parse**": -6.315358, "**real": -6.315358, "+": -3.096482, ",": -3.542769, "-": -3.917463, ".": -5.622211, "//github.com/apiaryio/drafter": -6.315358, "//github.com/apiaryio/drafter#bindings": -6.315358, "//raw.github.com/apiaryio/api": -4.929064, ":": -2.760010, "A": -4.523599, "API": -4.118133, "API.md": -5.622211, "APIs": -6.315358, "Action.md": -6.315358, "Actions": -5.622211, "Actions.md": -5.622211, "Advanced": -4.705920, "Also": -6.315358, "As": -6.315358, "Attributes": -5.216746, "Attributes.md": -5.216746, "Blueprint": -4.705920, "Blueprint**": -6.315358, "Blueprint**.": -6.315358, "Body": -6.315358, "Date": -6.315358, "FORMAT": -5.216746, "Github": -6.315358, "Hello": -6.315358, "ID.": -6.315358, "In": -6.315358, "JSON": -6.315358, "Markdown": -6.315358, "Model": -6.315358, "Model.md": -6.315358, "Next": -5.622211, "One": -6.315358, "Parameters": -4.929064, "Parameters.md": -6.315358, "Previous": -5.622211, "Raw": -4.929064, "Resource": -4.523599, "Response": -4.705920, "Retrieves": -6.315358, "Simplest": -5.622211, "The": -6.315358, "This": -4.369448, "Time": -6.315358, "We": -6.315358, "World": -6.315358, "[": -3.750409, "]": -3.750409, "a": -4.369448, "about": -6.315358, "action": -5.622211, "after": -6.315358, "also": -6.315358, "amount": -6.315358, "an": -6.315358, "and": -4.118133, "another": -5.622211, "application/json": -5.216746, "apply": -6.315358, "apply.": -6.315358, "as": -5.622211, "attributes": -5.622211, "avoid": -6.315358, "be": -6.315358, "between": -6.315358, "bindings": -6.315358, "blueprint/master/examples/": -4.929064, "body": -5.622211, "can": -5.622211, "case": -6.315358, "code": -6.315358, "combined": -6.315358, "complementary": -6.315358, "contains": -6.315358, "coupon": -4.929064, "course": -6.315358, "created": -6.315358, "customer.": -6.315358, "demonstrate": -6.315358, "demonstrates": -5.622211, "describe": -6.315358, "description": -6.315358, "descriptions.": -6.315358, "discount": -5.622211, "do": -6.315358, "duplicate": -6.315358, "duplicates": -6.315358, "every": -6.315358, "example": -4.705920, "examples": -6.315358, "explain": -6.315358, "fact": -6.315358, "false": -5.622211, "forget": -6.315358, "given": -6.315358, "going": -5.622211, "how": -5.216746, "https": -4.523599, "id": -5.216746, "in": -4.369448, "information": -6.315358, "installment": -6.315358, "integer": -6.315358, "is": -4.369448, "it": -5.622211, "its": -6.315358, "just": -6.315358, "keep": -6.315358, "longer": -6.315358, "message.": -6.315358, "method": -6.315358, "might": -6.315358, "mind": -6.315358, "next": -6.315358, "no": -6.315358, "not": -6.315358, "null": -6.315358, "number": -4.929064, "object": -6.315358, "of": -4.929064, "off": -5.622211, "on": -5.622211, "one": -5.622211, "opposed": -6.315358, "or": -5.216746, "output": -6.315358, "parser": -6.315358, "parser.": -6.315358, "percent": -6.315358, "percent_off": -6.315358, "plain": -6.315358, "please": -6.315358, "positive": -6.315358, "priority": -6.315358, "progress": -6.315358, "provided": -6.315358, "really": -6.315358, "redeem_by": -6.315358, "redeemed": -6.315358, "represents": -6.315358, "request": -6.315358, "resource": -5.216746, "resource.": -6.315358, "response": -6.315358, "reuse": -6.315358, "s": -6.315358, "section.": -6.315358, "see": -6.315358, "seeing": -6.315358, "simplest": -6.315358, "single": -6.315358, "stamp": -6.315358, "state": -5.216746, "status": -6.315358, "string": -4.929064, "such": -6.315358, "text/plain": -6.315358, "that": -5.216746, "the": -3.482145, "this": -5.622211, "through": -6.315358, "to": -3.917463, "transition": -5.622211, "transition.": -6.315358, "true": -6.315358, "view": -6.315358, "want": -6.315358, "we": -6.315358, "what": -5.622211, "which": -6.315358, "will": -5.216746, "with": -5.216746, "written": -6.315358, "you": -5.622211, "{": -4.929064, "}": -4.929064, "–": -5.622211, }, "APL": map[string]float64{ "!": -7.546446, "#": -7.546446, "#.": -6.853299, "#.DISPLAY": -7.546446, "#.Files.Dir": -7.546446, "#.UT.appdir": -6.447834, "#.UT.expect": -7.546446, "#.UT.run": -7.546446, "(": -3.521095, ")": -3.503395, "+": -5.061540, ",": -3.080538, "-": -5.349222, "/": -4.907389, "//tryapl.org/": -7.546446, "/C": -7.546446, "/Functions": -7.546446, "/Page": -7.546446, "/Z": -7.546446, "/config": -7.546446, "/input": -7.546446, "/lines": -7.546446, "/usr/local/bin/apl": -7.546446, ":": -3.341754, ";": -3.341754, "</cov>": -7.546446, "</html>": -7.546446, "</pre>": -7.546446, "</style>": -7.546446, "</uncov>": -6.853299, "<cov>": -7.546446, "<html>": -7.546446, "<meta>": -7.546446, "<pre>": -7.546446, "<style>": -7.546446, "<uncov>": -6.853299, "=": -5.600536, "?": -7.546446, "Argument": -4.250609, "ArrayRes": -6.160152, "C": -5.937008, "CMD": -7.546446, "COVER_file": -6.160152, "COVER_step": -6.160152, "CR": -6.853299, "CY": -6.853299, "Cause": -6.853299, "Code": -6.447834, "ColorizedCode": -6.447834, "Colors": -5.467005, "Conf": -5.148551, "CoverResult": -5.349222, "CoverResults": -5.600536, "CoverageText": -6.447834, "Covered": -6.160152, "DM": -7.546446, "Else": -5.148551, "ElseIf": -5.937008, "EndIf": -4.501924, "EndNameSpace": -7.546446, "EndTrap": -6.853299, "Ends": -5.467005, "FileNS": -6.447834, "FileNS.": -7.546446, "FilePath": -6.447834, "Finishes": -6.853299, "FromSpace": -5.349222, "Function": -6.160152, "FunctionName": -5.937008, "Functions": -6.447834, "HEADERS": -6.447834, "HHMMSS": -6.447834, "HTML": -6.447834, "Heading": -6.853299, "I": -6.853299, "IO": -6.853299, "If": -4.455404, "Indices": -6.447834, "ListOfNames": -6.853299, "Middles": -6.853299, "NA": -7.546446, "NAPPEND": -7.546446, "NC": -5.467005, "NCREATE": -6.853299, "NERASE": -7.546446, "NEWLINE": -6.853299, "NL": -7.546446, "NS": -6.160152, "NTIE": -7.546446, "NameSpace": -7.546446, "OFF": -7.546446, "POST_test": -6.160152, "PRE_test": -6.160152, "PROFILE": -6.160152, "Page": -4.773858, "Parts": -6.853299, "Percentage": -6.447834, "ProfileData": -5.600536, "Qualifiers": -6.853299, "R": -5.754687, "RSI": -7.546446, "Representations": -6.853299, "Return": -7.546446, "Rows": -6.447834, "SE.SALT.Load": -6.447834, "SH": -7.546446, "Simple_array": -6.853299, "Something": -5.937008, "Starts": -6.853299, "TEST_step": -5.754687, "TS": -4.838396, "Term": -6.853299, "TestFunctions": -6.160152, "TestName": -6.853299, "Test_files": -6.447834, "Text": -6.160152, "Timestamp": -6.447834, "ToCover": -5.754687, "Total": -6.160152, "Trap": -6.853299, "UCS": -6.160152, "UT": -7.546446, "W": -5.600536, "WG": -6.853299, "YYMMDD": -6.447834, "You": -7.546446, "Z": -3.202641, "[": -4.410952, "]": -4.410952, "align_and_join_message_parts": -6.853299, "at": -7.546446, "attr": -6.447834, "bit": -7.546446, "c": -6.853299, "can": -6.853299, "colorize_code_by_coverage": -6.853299, "config": -6.160152, "confparam": -6.160152, "content=": -7.546446, "covered_lines": -6.447834, "crash": -6.447834, "crashed": -5.754687, "crypto": -7.546446, "deepak": -6.853299, "determine_message": -6.853299, "determine_pass_crash_or_fail": -6.853299, "erf": -6.853299, "exception": -6.160152, "execute_function": -6.853299, "exists": -7.546446, "exp": -5.600536, "expect": -5.937008, "expect_orig": -6.447834, "explain": -7.546446, "expterm": -5.600536, "fail": -5.937008, "failure_message": -6.447834, "file": -7.546446, "file_test_function": -6.853299, "filename": -5.754687, "function": -5.937008, "functionlines": -6.160152, "functions": -6.447834, "generate_cover_result": -6.853299, "generate_coverage_page": -6.853299, "generate_html": -6.853299, "generate_timestamp_text": -6.853299, "get_file_name": -6.853299, "get_representation": -6.853299, "gfa": -7.546446, "got": -5.600536, "gotterm": -5.600536, "has": -6.447834, "hdr": -5.600536, "how": -7.546446, "http": -7.546446, "in": -6.160152, "input": -6.853299, "is_dir": -6.853299, "is_file": -6.853299, "is_function": -6.853299, "is_list_of_functions": -6.853299, "is_test": -6.853299, "language": -7.546446, "lines": -6.160152, "list_of_functions_test_function": -6.853299, "load_display_if_not_already_loaded": -6.853299, "load_salt_scripts_into_current_namespace_if_configured": -6.853299, "love": -7.546446, "message": -5.937008, "much": -7.546446, "name": -5.467005, "nc": -5.243861, "nexpect": -6.447834, "nexpect_orig": -6.853299, "not": -7.546446, "pass": -5.754687, "print_message_to_screen": -6.853299, "print_passed_crashed_failed": -6.447834, "r": -6.447834, "rep": -5.349222, "representation": -6.160152, "reset_UT_globals": -6.853299, "retrieve_coverables": -6.853299, "returned": -5.349222, "rf": -6.853299, "run": -7.546446, "run_ut": -6.160152, "sac": -6.853299, "script": -7.546446, "separator": -6.447834, "single_function_test_function": -6.853299, "strip": -6.853299, "suddenly": -7.546446, "t": -4.550714, "term_to_text": -6.447834, "test_dir_function": -6.853299, "test_files": -6.853299, "test_files_in_dir": -6.853299, "this": -6.853299, "tie": -5.754687, "time": -5.243861, "try": -7.546446, "ut_data": -5.754687, "write_html_to_page": -6.853299, "wsIndex": -6.447834, "z": -6.447834, "{": -4.179150, "}": -4.179150, "¨": -4.410952, "¯": -5.754687, "×": -7.546446, "÷": -7.546446, "←": -2.199339, "↑": -4.838396, "↓": -5.148551, "∇": -3.326939, "∊": -7.546446, "∘": -6.447834, "∨": -7.546446, "≠": -5.754687, "≡": -4.838396, "≢": -5.937008, "⊂": -4.112459, "⊃": -3.739784, "⊤": -7.546446, "⋄": -6.447834, "⌈": -7.546446, "⌽": -7.546446, "⍎": -6.447834, "⍕": -6.447834, "⍝": -5.754687, "⍪": -6.447834, "⍬": -4.179150, "⍳": -6.447834, "⍴": -4.501924, "⍵": -4.602007, "⍺": -6.447834, "⎕": -3.403312, "\ufeff": -7.546446, }, "ASN.1": map[string]float64{ "(": -1.972757, ")": -1.972757, ",": -2.452330, "..": -3.918668, ":": -2.532373, "=": -3.225520, "AUTOMATIC": -5.017280, "Address": -4.324133, "BEGIN": -5.017280, "BOOLEAN": -5.017280, "CustomerInfo": -4.324133, "DATE": -5.017280, "DEFINITIONS": -5.017280, "END": -5.017280, "FROM": -5.017280, "INTEGER": -3.630985, "Item": -4.324133, "ListOfItems": -4.324133, "MyShopPurchaseOrders": -5.017280, "NumericString": -4.324133, "OF": -5.017280, "OPTIONAL": -5.017280, "PurchaseOrder": -5.017280, "REAL": -5.017280, "SEQUENCE": -3.407842, "SIZE": -3.071370, "TAGS": -5.017280, "VisibleString": -3.407842, "^": -5.017280, "billingAddress": -5.017280, "city": -5.017280, "color": -5.017280, "companyName": -5.017280, "contactPhone": -5.017280, "customer": -5.017280, "dateOfOrder": -5.017280, "deliveryTime": -5.017280, "isTaxable": -5.017280, "itemCode": -5.017280, "items": -5.017280, "power": -5.017280, "quantity": -5.017280, "state": -5.017280, "street": -5.017280, "unitPrice": -5.017280, "zipCode": -5.017280, "{": -3.630985, "|": -3.407842, "}": -3.630985, }, "ATS": map[string]float64{ "!": -4.216328, "#": -8.000517, "#define": -8.693664, "#else": -8.693664, "#include": -7.084226, "#then": -8.693664, "$": -4.566530, "%": -8.000517, "&": -8.693664, "(": -2.093794, ")": -2.092434, "*": -8.693664, "*G": -8.693664, "+": -6.614223, ",": -2.714779, "-": -4.865023, ":": -3.129144, ";": -5.602622, "<": -5.138316, "<a>": -7.595052, "<b>": -7.595052, "<bool>": -8.000517, "<clo>": -8.693664, "<fork>": -8.000517, "<int>": -7.595052, "<mpz>": -5.985614, "<t>": -8.000517, "=": -3.003305, ">": -3.696452, "?": -8.693664, "@": -8.693664, "CoYoneda": -6.747754, "CoYoneda_phi": -8.000517, "CoYoneda_psi": -7.595052, "F": -5.167304, "FORK": -7.595052, "False": -6.614223, "G": -4.150370, "GMP": -8.693664, "GMP.mpz_abs": -8.693664, "GMP.mpz_add": -8.000517, "GMP.mpz_clear": -8.693664, "GMP.mpz_fdiv_uint": -8.693664, "GMP.mpz_get_int": -8.693664, "GMP.mpz_get_lint": -8.693664, "GMP.mpz_get_str_null": -8.693664, "GMP.mpz_init": -6.295769, "GMP.mpz_init_set_int": -8.693664, "GMP.mpz_init_set_lint": -8.693664, "GMP.mpz_init_set_uint": -8.693664, "GMP.mpz_init_set_ulint": -8.693664, "GMP.mpz_mul": -8.000517, "GMP.mpz_neg": -8.693664, "GMP.mpz_out_str": -8.693664, "GMP.mpz_pow_uint": -8.693664, "GMP.mpz_sub": -8.000517, "GMP.mpz_tdiv": -7.084226, "GMP.mpz_vt": -8.693664, "I": -6.747754, "List": -8.693664, "MYGRADING_HATS": -8.693664, "NPHIL": -7.084226, "Strptr": -7.084226, "True": -6.747754, "UN": -7.307370, "UN.cast": -5.697932, "UN.castvwtp": -8.693664, "UN.ptr": -8.000517, "Yoneda_bool_list": -7.595052, "Yoneda_phi": -7.595052, "Yoneda_phi_nat": -8.000517, "Yoneda_psi": -7.595052, "Yoneda_psi_nat": -8.000517, "[": -7.084226, "\\": -8.693664, "]": -7.084226, "_": -6.747754, "_addby": -8.693664, "_append": -8.693664, "_at": -7.595052, "_choose_l": -8.693664, "_choose_r": -8.693664, "_choose_tag": -8.693664, "_close": -8.693664, "_create_exn": -8.693664, "_get_group": -8.693664, "_get_nrole": -8.693664, "_int": -5.397827, "_intinf": -6.208758, "_link": -8.693664, "_link_elim": -8.693664, "_list": -8.693664, "_map": -7.595052, "_mpz": -7.595052, "_q_mpz": -8.693664, "_q_uint": -7.307370, "_recv": -8.693664, "_recv_val": -8.693664, "_repeat_": -8.000517, "_repeat_tag": -8.693664, "_send": -8.693664, "_set": -8.693664, "_skipex": -8.000517, "_skipin": -8.000517, "_vt": -8.693664, "_vtype": -7.595052, "a": -4.566530, "abs_intinf": -8.000517, "abstype": -8.000517, "absvtype": -8.693664, "add_int_intinf": -8.000517, "add_intinf": -6.496440, "addr": -8.693664, "addr@f": -8.693664, "addr@i": -8.693664, "ans": -6.208758, "append": -7.595052, "array_tabulate": -8.693664, "arrayref_tabulate": -8.693664, "assume": -8.000517, "b": -5.803293, "base": -7.084226, "base.": -8.693664, "bool": -4.980092, "c": -6.747754, "case": -8.000517, "cchannel": -7.307370, "ch": -6.901905, "ch_forktray": -8.000517, "ch_rfork": -8.693664, "chan": -7.307370, "channel": -4.616127, "channel_cap": -8.693664, "channel_create_exn": -8.000517, "channel_insert": -7.307370, "channel_takeout": -8.693664, "char": -7.307370, "char_at": -8.000517, "choose": -7.595052, "choosetag": -7.595052, "choosetag_l": -8.693664, "choosetag_r": -8.693664, "ckastloc_gintBtwe": -8.693664, "ckastloc_gintGte": -8.000517, "cleaner_loop": -7.595052, "cleaner_return": -7.595052, "cleaner_wash": -8.000517, "cloref": -7.595052, "compare_int_intinf": -8.693664, "compare_intinf_int": -8.693664, "compare_intinf_intinf": -8.693664, "cons": -8.000517, "csv_parse_line": -8.000517, "datatype": -7.307370, "datavtype": -8.693664, "div_intinf": -6.901905, "dynload": -7.595052, "else": -5.515611, "end": -5.082746, "eq_intinf_int": -8.693664, "eq_intinf_intinf": -8.693664, "exit_errmsg": -8.693664, "exp": -8.000517, "extern": -6.614223, "f": -5.474789, "false": -6.208758, "fopr": -8.693664, "fork": -6.614223, "fork_changet": -7.595052, "fork_get_num": -7.307370, "fork_vtype": -7.595052, "forktray_changet": -8.693664, "fprint": -8.000517, "fprint_intinf": -7.595052, "fprint_intinf_base": -8.000517, "fprint_val": -8.000517, "fprintln": -7.595052, "fserv": -8.000517, "ftor": -6.496440, "ftype": -6.128715, "fun": -5.515611, "functor": -6.208758, "functor_homres": -8.000517, "functor_list": -6.747754, "functor_option": -8.000517, "fx": -6.614223, "g": -7.595052, "get_i": -7.307370, "getpos": -7.595052, "gt_intinf_int": -8.693664, "gt_intinf_intinf": -8.693664, "gte_intinf_int": -8.693664, "gte_intinf_intinf": -8.693664, "i": -3.663226, "if": -5.515611, "ignoret": -8.000517, "implement": -4.239317, "in": -5.985614, "inc_i": -8.000517, "infixr": -8.000517, "int": -4.550530, "intBtw": -8.000517, "intGte": -8.000517, "int_int_uint": -8.693664, "intinf_free": -8.000517, "intinf_get_int": -8.693664, "intinf_get_lint": -8.693664, "intinf_get_strptr": -8.693664, "intinf_make_int": -8.693664, "intinf_make_lint": -8.693664, "intinf_make_uint": -8.693664, "intinf_make_ulint": -8.693664, "intinf_vtype": -8.693664, "intset": -8.000517, "is_end": -7.595052, "iset": -5.558170, "isful": -8.693664, "ismbr": -5.697932, "isnil": -8.000517, "j": -4.504010, "l": -7.307370, "lam": -5.697932, "lam@": -8.693664, "lemma_channel": -8.000517, "let": -5.138316, "lf": -7.595052, "lincloptr": -8.000517, "line": -7.307370, "list": -6.208758, "list_t": -8.693664, "list_vt_cons": -8.693664, "list_vt_nil": -8.693664, "list_vt_reverse": -8.693664, "llam": -7.307370, "local": -6.747754, "loop": -7.595052, "lt_intinf_int": -8.693664, "lt_intinf_intinf": -8.693664, "lte_intinf_int": -8.693664, "lte_intinf_intinf": -8.693664, "m": -7.307370, "macdef": -7.595052, "main": -7.595052, "mf": -7.307370, "mfree_gc_v": -8.693664, "mod": -8.693664, "mpz": -8.000517, "msg": -6.614223, "mul_int_intinf": -8.000517, "mul_intinf": -6.747754, "myboolist": -6.496440, "myintlist": -8.000517, "mythread_create_cloptr": -7.307370, "n": -3.914541, "nat": -6.054607, "natLt": -8.693664, "natrans": -7.595052, "ncomp": -8.693664, "ndiv_intinf": -8.000517, "neg_intinf": -6.747754, "neq_intinf_int": -8.693664, "neq_intinf_intinf": -8.693664, "nil": -7.084226, "nmod": -8.693664, "nmod_intinf": -8.000517, "nphil": -6.391079, "nr": -8.000517, "nrole": -8.693664, "nsz": -8.693664, "of": -6.747754, "ofg": -8.000517, "opt": -8.000517, "option": -7.307370, "out": -6.614223, "p": -6.295769, "p_i": -7.595052, "pfat": -8.000517, "pfgc": -8.000517, "phil_dine": -8.000517, "phil_left": -8.000517, "phil_loop": -6.901905, "phil_right": -7.595052, "phil_think": -8.000517, "pow_intinf_int": -8.693664, "praxi": -8.000517, "pred_intinf": -8.000517, "prerr_intinf": -8.693664, "print_intinf": -8.693664, "println": -6.614223, "ptr": -7.595052, "ptr_free": -8.693664, "r": -5.361460, "r.": -8.000517, "rand": -8.693664, "randsleep": -7.084226, "repeat": -7.084226, "res": -7.595052, "res_vt": -8.000517, "rf": -7.595052, "rmove": -7.307370, "rmove_while": -7.307370, "s": -8.000517, "session_append": -8.693664, "session_choose": -8.693664, "session_msg": -8.693664, "session_repeat": -8.693664, "session_sing": -8.693664, "set_i": -8.693664, "sgn": -5.030103, "sleep": -8.000517, "sortdef": -8.000517, "ssession_cons": -8.000517, "ssession_nil": -8.693664, "ssn": -4.324216, "ssn_chosen": -6.901905, "stadef": -8.693664, "staload": -5.474789, "stderr_ref": -8.693664, "stdout_ref": -7.307370, "string": -7.084226, "string_make_substring": -8.693664, "sub_int_intinf": -8.000517, "sub_intinf": -6.391079, "succ_intinf": -8.000517, "sz": -7.084226, "test": -7.307370, "the_forkarray": -8.000517, "the_forktray": -8.000517, "then": -5.515611, "true": -6.128715, "type": -4.534781, "typedef": -6.496440, "uInt": -8.693664, "val": -4.049273, "var": -8.693664, "void": -5.558170, "vt": -6.614223, "vt@ype": -8.000517, "vtypedef": -8.000517, "where": -5.435568, "while": -8.693664, "x": -3.957466, "x.": -5.602622, "xs": -7.307370, "y": -4.519277, "y.": -6.614223, "ype": -8.693664, "z": -6.128715, "z.": -5.860451, "{": -3.144588, "|": -5.558170, "}": -3.251247, "~": -5.860451, }, "Agda": map[string]float64{ "(": -2.579796, ")": -2.579796, "-": -3.330101, ".": -4.217405, ".n": -6.163315, ":": -3.167583, "=": -3.860730, "Data.Nat": -6.163315, "EasyCategory": -5.064703, "Nat": -6.163315, "NatCat": -6.163315, "Relation.Binary.PropositionalEquality": -6.163315, "Set": -5.470168, "_": -4.371555, "assoc": -5.470168, "cong": -6.163315, "id": -3.966090, "import": -5.470168, "inhabitant": -4.777020, "m": -4.371555, "module": -5.064703, "n": -3.524257, "obj": -4.777020, "open": -5.470168, "r": -2.905218, "refl": -4.371555, "s": -2.796019, "same": -4.553877, "single": -4.777020, "suc": -4.371555, "t": -4.371555, "trans": -4.553877, "w": -4.777020, "where": -5.470168, "x": -2.636954, "y": -2.831110, "z": -3.272943, "zero": -6.163315, "{": -3.860730, "}": -3.860730, "ʳ": -5.470168, "ˡ": -5.470168, "λ": -6.163315, "₁": -5.064703, "ℕ": -5.470168, "→": -3.390726, "∀": -4.217405, "∘": -3.455265, "≡": -4.553877, "≤": -2.831110, "⟶": -3.765420, }, "Alloy": map[string]float64{ "!": -6.095825, "#s.obj": -7.194437, "&": -7.194437, "&&": -6.501290, "(": -4.891852, ")": -5.248527, "*": -7.194437, "*/": -7.194437, "+": -4.709530, ",": -2.550046, "-": -4.198705, ".elts": -6.095825, ".freeList": -7.194437, ".freeList.*": -6.095825, ".lastRef": -6.501290, ".left": -5.584999, ".map": -6.095825, ".marked": -6.095825, ".reachable": -6.501290, ".right": -5.808142, ":": -3.020050, "<": -7.194437, "<:>": -7.194437, "=": -3.323236, ">": -3.936340, "?": -6.501290, "@contents.": -7.194437, "@entries": -7.194437, "@parent": -6.501290, "Completeness": -7.194437, "Cur": -7.194437, "Dir": -5.114995, "DirEntry": -6.501290, "File": -7.194437, "GC": -7.194437, "HeapState": -5.584999, "Iterator": -6.501290, "IteratorRef": -5.584999, "IteratorRef.hasNext": -7.194437, "IteratorRef.next": -7.194437, "IteratorRef.remove": -7.194437, "IteratorView": -6.095825, "KeySetView": -5.402677, "Map": -6.501290, "MapRef": -5.808142, "MapRef.put": -7.194437, "Name": -6.501290, "NoDirAliases": -6.095825, "Node": -4.891852, "Object": -4.891852, "OneParent_buggyVersion": -6.501290, "OneParent_correctVersion": -6.501290, "Ref": -4.421848, "Ref.map": -7.194437, "Root": -5.584999, "Set": -6.501290, "SetRef": -5.584999, "SetRef.iterator": -7.194437, "Soundness": -5.808142, "State": -4.421848, "State.dirty": -7.194437, "State.obj": -6.095825, "State.views": -7.194437, "ViewType": -5.114995, "[": -2.787718, "]": -2.812410, "^": -6.095825, "abstract": -6.501290, "all": -4.421848, "allocates": -5.584999, "an": -7.194437, "and": -7.194437, "as": -6.501290, "assert": -6.095825, "at": -7.194437, "b": -4.709530, "but": -7.194437, "check": -5.402677, "clearMarks": -7.194437, "conds": -7.194437, "contents": -6.501290, "contents.d": -7.194437, "d": -6.095825, "d.entries.contents": -7.194437, "d.parent": -6.501290, "dirty": -6.095825, "dom": -7.194437, "done": -6.095825, "e": -5.402677, "elts": -6.095825, "entries": -6.095825, "examples/systems/file_system": -7.194437, "examples/systems/marksweepgc": -7.194437, "examples/systems/views": -7.194437, "expect": -5.402677, "extends": -4.891852, "fact": -5.808142, "for": -5.402677, "frame": -7.194437, "freeList": -7.194437, "from": -6.501290, "fun": -7.194437, "h": -4.997212, "h.GC": -7.194437, "h.reachable": -7.194437, "h.right": -7.194437, "handle": -7.194437, "hs": -4.421848, "hs.left": -6.501290, "hs.marked": -7.194437, "hs.reachable": -7.194437, "hs.right": -6.095825, "i": -5.248527, "i.done": -7.194437, "i.lastRef": -7.194437, "i.left": -6.095825, "in": -4.304065, "iterRef": -5.808142, "its": -7.194437, "k": -5.584999, "keys": -6.095825, "ki": -6.501290, "ki.hasNext": -7.194437, "ki.remove": -7.194437, "ki.this/next": -7.194437, "ks": -6.095825, "ks.iterator": -7.194437, "lastRef": -6.501290, "left": -6.095825, "let": -5.584999, "limit": -7.194437, "live": -6.095825, "lone": -5.402677, "m": -6.095825, "m.put": -7.194437, "map": -6.501290, "mark": -7.194437, "marked": -7.194437, "modifies": -5.584999, "modifying": -7.194437, "mods": -6.095825, "module": -6.095825, "n": -5.584999, "n.": -7.194437, "name": -6.095825, "no": -5.402677, "non": -7.194437, "none": -5.808142, "o": -7.194437, "o.": -7.194437, "obj": -7.194437, "object": -7.194437, "of": -7.194437, "once": -7.194437, "one": -5.114995, "open": -6.501290, "parent": -6.095825, "possibility": -7.194437, "post": -4.555380, "post.dirty": -7.194437, "post.obj": -5.248527, "post.refs": -7.194437, "post.views": -5.808142, "pre": -4.486387, "pre.dirty": -7.194437, "pre.obj": -4.891852, "pre.refs": -5.402677, "pre.views": -5.114995, "precondition": -6.501290, "pred": -4.421848, "r": -6.095825, "reachable": -7.194437, "ref": -6.095825, "refs": -5.402677, "rel": -7.194437, "right": -7.194437, "root": -5.584999, "rs": -5.808142, "rs.*vr": -7.194437, "s": -3.530875, "s.obj": -7.194437, "s.refs": -6.095825, "s.views": -6.501290, "set": -4.891852, "setFreeList": -7.194437, "setRefs": -7.194437, "should": -7.194437, "sig": -4.198705, "so": -7.194437, "so/first": -7.194437, "so/next": -5.248527, "some": -6.095825, "t": -4.555380, "this": -4.555380, "this.": -5.808142, "to": -7.194437, "util/ordering": -7.194437, "util/relation": -7.194437, "v": -4.058943, "vi": -6.501290, "vi.hasNext": -7.194437, "vi.remove": -7.194437, "vi.this/next": -7.194437, "view": -7.194437, "viewFrame": -5.808142, "views": -7.194437, "vr": -7.194437, "vs": -6.095825, "vs.iterator": -7.194437, "we": -7.194437, "zippishOK": -6.501290, "{": -3.224145, "|": -4.249998, "}": -3.116899, "~": -5.584999, }, "Alpine Abuild": map[string]float64{ "$": -3.828641, "%": -5.214936, "(": -3.605498, ")": -3.423176, "*.patch": -5.214936, "-": -2.649986, "/": -5.214936, "/etc/abuild.conf": -5.214936, "/usr/bin": -4.521789, "/usr/bin/": -4.521789, "/usr/bin/apkbuild": -4.521789, "/var/cache/distfiles": -5.214936, ";": -3.828641, "<ncopa@alpinelinux.org>": -4.521789, "=": -1.813738, "DESTDIR": -5.214936, "[": -5.214936, "]": -5.214936, "_builddir": -5.214936, "_git*": -5.214936, "_ver": -5.214936, "abuild": -4.521789, "abuild.conf": -4.521789, "arch": -4.116323, "build": -5.214936, "case": -5.214936, "cd": -4.116323, "cpan": -4.521789, "d": -5.214936, "depends": -3.828641, "do": -5.214936, "done": -5.214936, "e": -5.214936, "esac": -5.214936, "fi": -5.214936, "for": -5.214936, "g": -5.214936, "gem": -5.214936, "gems": -5.214936, "i": -3.605498, "if": -5.214936, "in": -4.521789, "install": -3.828641, "license": -5.214936, "m": -4.521789, "make": -4.521789, "makedepends": -5.214936, "makedepends_build": -5.214936, "makedepends_host": -5.214936, "md": -5.214936, "mkdir": -4.521789, "msg": -5.214936, "mv": -4.521789, "options": -5.214936, "p": -4.116323, "package": -5.214936, "patch": -5.214936, "pkgdesc": -4.116323, "pkggroups": -5.214936, "pkgname": -5.214936, "pkgrel": -5.214936, "pkgver": -4.521789, "prepare": -5.214936, "resolver": -5.214936, "return": -3.605498, "sed": -5.214936, "sha": -4.521789, "source": -4.521789, "subpackages": -5.214936, "sums": -4.116323, "then": -5.214936, "url": -5.214936, "{": -3.423176, "||": -3.605498, "}": -3.423176, }, "Ant Build System": map[string]float64{ "/": -2.161022, "</project>": -6.073045, "</target>": -6.073045, "<?xml>": -6.073045, "<basename>": -6.073045, "<dirname>": -6.073045, "<echoproperties/>": -6.073045, "<import>": -3.300456, "<project>": -6.073045, "<property>": -3.239831, "<target>": -3.364994, "<tstamp>": -6.073045, "=": -1.529750, ">": -2.102753, "?": -6.073045, "Build": -6.073045, "Production": -6.073045, "build": -6.073045, "cdn": -5.379897, "conditions": -6.073045, "copy": -6.073045, "css": -4.974432, "cssembed": -6.073045, "define": -4.974432, "depends": -3.364994, "depends=": -3.364994, "description": -3.993603, "description=": -3.993603, "devlive": -6.073045, "encoding": -6.073045, "encoding=": -6.073045, "file": -3.128606, "file=": -5.379897, "finalize": -5.379897, "fonts": -6.073045, "img": -6.073045, "inline": -6.073045, "js": -4.686750, "jsclasspath": -6.073045, "location": -3.300456, "location=": -3.300456, "name": -2.607309, "name=": -6.073045, "property": -5.379897, "rename": -4.974432, "setup": -3.993603, "swf": -6.073045, "tools": -6.073045, "version": -6.073045, "work": -6.073045, "yui": -4.974432, "yuicompressor": -6.073045, }, "ApacheConf": map[string]float64{ "#####################": -6.643790, "######################": -6.643790, "#AddEncoding": -6.643790, "#AddHandler": -6.643790, "#AddOutputFilter": -6.643790, "#Block": -6.643790, "#EnableSendfile": -5.950643, "#ErrorDocument": -5.257495, "#Include": -3.810576, "#MaxRanges": -6.643790, "$": -6.643790, "%": -2.618438, "(": -4.078840, ")": -4.004732, "*": -6.643790, ",": -3.871201, "-": -3.178054, ".": -4.341205, ".*": -5.950643, "./": -6.643790, ".gz": -5.950643, ".shtml": -6.643790, ".tgz": -5.950643, "/": -5.545177, "//www.example.com/subscription_info.html": -6.643790, "/etc/apache": -4.245894, "/extra/httpd": -3.552747, "/missing.html": -6.643790, "/other/*.conf": -6.643790, "/private/etc/apache": -4.158883, ":": -5.545177, ";": -5.950643, "<": -6.643790, "</Directory>": -4.697880, "</DirectoryMatch>": -6.643790, "</Files>": -6.643790, "</FilesMatch>": -5.950643, "</IfModule>": -3.810576, "</VirtualHost>": -6.643790, "<Directory>": -4.446565, "<DirectoryMatch>": -6.643790, "<Files>": -6.643790, "<FilesMatch>": -5.950643, "<IfModule>": -3.810576, "<VirtualHost>": -3.810576, "<|>": -4.852030, ">": -4.245894, "A": -4.852030, "AddType": -6.643790, "Agent": -5.950643, "All": -6.643790, "Allow": -5.950643, "AllowOverride": -5.950643, "C": -5.034352, "D": -4.852030, "DELETE": -6.643790, "DirectoryIndex": -6.643790, "DocumentRoot": -6.643790, "E": -5.034352, "F": -6.643790, "FollowSymLinks": -6.643790, "HEAD": -6.643790, "HOSTNAME": -6.643790, "HTTP_COOKIE": -6.643790, "HTTP_REFERER": -6.643790, "HTTP_USER_AGENT": -5.034352, "HTTrack": -6.643790, "INCLUDES": -6.643790, "Include": -4.852030, "Indexes": -6.643790, "LogFormat": -5.257495, "MultiViews": -6.643790, "NC": -4.078840, "None": -5.950643, "OR": -4.004732, "Off": -6.643790, "Options": -5.950643, "Order": -5.950643, "PORT": -6.643790, "QUERY_STRING": -5.034352, "REQUEST_METHOD": -6.643790, "REQUEST_URI": -6.643790, "Referer": -5.950643, "RewriteCond": -3.935740, "RewriteRule": -6.643790, "SSLRandomSeed": -5.257495, "ServerAdmin": -6.643790, "ServerName": -6.643790, "ServerSignature": -6.643790, "THE_REQUEST": -6.643790, "TRACE": -6.643790, "TRACK": -6.643790, "TraceEnable": -6.643790, "User": -5.950643, "[": -3.810576, "\\": -3.311585, "]": -3.810576, "^": -5.257495, "a": -6.643790, "alias_module": -5.950643, "all": -5.950643, "allow": -5.950643, "application/x": -6.643790, "archiver": -6.643790, "autoindex.conf": -5.950643, "benchmark": -6.643790, "builtin": -5.257495, "cast": -6.643790, "cgid_module": -6.643790, "clshttp": -6.643790, "combinedio": -5.950643, "common": -5.950643, "connect": -5.950643, "curl": -5.950643, "dav.conf": -5.950643, "declare": -6.643790, "default.conf": -5.950643, "deny": -5.950643, "drop": -6.643790, "email": -6.643790, "errordoc.conf": -5.950643, "extract": -6.643790, "from": -5.950643, "grab": -6.643790, "gzip": -5.950643, "harvest": -6.643790, "http": -6.643790, "i": -5.257495, "index.php": -5.950643, "info.conf": -5.950643, "injects": -6.643790, "insert": -6.643790, "java": -6.643790, "languages.conf": -5.950643, "libwww": -6.643790, "loader": -6.643790, "localhost": -6.643790, "log_config_module": -5.950643, "logio_module": -5.950643, "loopback": -6.643790, "manual.conf": -5.950643, "map": -6.643790, "md": -6.643790, "mime_module": -6.643790, "miner": -6.643790, "mpm.conf": -5.950643, "multilang": -5.950643, "mySQL": -6.643790, "n": -6.643790, "nikto": -6.643790, "off": -5.545177, "patrick@heysparkbox.com": -6.643790, "perl": -6.643790, "python": -6.643790, "r": -5.034352, "scan": -6.643790, "select": -6.643790, "set": -6.643790, "ssl.conf": -5.950643, "startup": -5.950643, "type": -6.643790, "union": -6.643790, "unlimited": -6.643790, "update": -6.643790, "userdir.conf": -5.950643, "var": -6.643790, "vhosts.conf": -5.950643, "wget": -5.950643, "winhttp": -6.643790, "x": -6.643790, "z": -6.643790, "{": -3.648057, "|": -2.261763, "}": -3.648057, "’": -5.034352, "”": -5.545177, }, "Apex": map[string]float64{ "!": -4.922259, "&": -8.100313, "&&": -4.922259, "(": -2.636481, ")": -2.638602, "+": -4.666326, ",": -2.223979, "-": -5.797728, ".AccountSid__c": -8.793460, ".AuthToken__c": -8.793460, ".get": -7.407166, ".getAccount": -8.100313, ".getAccountSid": -8.793460, ".getHeaders": -8.793460, ".getParameters": -8.100313, ".getSid": -8.100313, ".length": -8.100313, ".split": -8.793460, ".toString": -8.793460, "/": -7.407166, "//": -8.100313, "//Chinese": -8.100313, "//Converts": -8.793460, "//Czech": -8.793460, "//Danish": -8.793460, "//Dutch": -8.793460, "//English": -8.793460, "//FOR": -8.100313, "//Finnish": -8.793460, "//French": -8.793460, "//German": -8.793460, "//Hungarian": -8.793460, "//Indonesian": -8.793460, "//Italian": -8.793460, "//Japanese": -8.793460, "//Korean": -8.793460, "//LIST/ARRAY": -8.793460, "//Polish": -8.793460, "//Portuguese": -8.793460, "//Returns": -8.793460, "//Russian": -8.793460, "//Spanish": -8.793460, "//Swedish": -8.793460, "//Thai": -8.793460, "//Throws": -8.793460, "//Turkish": -8.793460, "//check": -8.100313, "//dash": -8.793460, "//the": -8.100313, "//underscore": -8.793460, ":": -5.574585, ";": -3.099728, "<": -5.267100, "<Attachment>": -8.100313, "<Id>": -8.793460, "<Messaging.EmailFileAttachment>": -7.694848, "<Object>": -5.461256, "<SObject>": -5.702418, "<String,>": -8.100313, "<String,String>": -5.426165, "<String>": -5.327724, "=": -1.964748, ">": -2.423559, "?": -7.184022, "@isTest": -8.793460, "Account": -8.100313, "ApexPages.currentPage": -7.407166, "ArrayUtils": -8.793460, "ArrayUtils.toString": -6.308554, "Attachment": -8.100313, "Boolean": -5.155874, "BooleanUtils": -8.793460, "Brazilian": -8.793460, "DEFAULTS": -8.793460, "DEFAULTS.containsKey": -7.694848, "DEFAULTS.get": -7.694848, "DEFAULT_LANGUAGE_CODE": -7.694848, "Double": -8.793460, "EMPTY_STRING_ARRAY": -8.793460, "ERROR": -8.793460, "EmailUtils": -8.793460, "Exception": -8.793460, "FORCE.COM": -8.793460, "FROM": -8.793460, "G_GEO_BAD_KEY": -8.793460, "G_GEO_BAD_REQUEST": -8.793460, "G_GEO_MISSING_ADDRESS": -8.793460, "G_GEO_SERVER_ERROR": -8.793460, "G_GEO_SUCCESS": -8.793460, "G_GEO_TOO_MANY_QUERIES": -8.793460, "G_GEO_UNAVAILABLE_ADDRESS": -8.793460, "G_GEO_UNKNOWN_ADDRESS": -8.793460, "G_GEO_UNKNOWN_DIRECTIONS": -8.793460, "GeoUtils": -8.793460, "GeoUtils.generateFromContent": -8.793460, "HTTP_LANGUAGE_CODE_PARAMETER_KEY": -8.100313, "ID": -8.793460, "IN": -8.793460, "ISObjectComparator": -7.694848, "Id": -8.793460, "IllegalArgumentException": -7.184022, "Integer": -5.267100, "LANGUAGES_FROM_BROWSER_AS_LIST": -7.694848, "LANGUAGES_FROM_BROWSER_AS_LIST.size": -8.793460, "LANGUAGES_FROM_BROWSER_AS_STRING": -8.100313, "LANGUAGE_CODE_SET": -8.793460, "LANGUAGE_HTTP_PARAMETER": -6.847550, "LanguageUtils": -8.793460, "List": -4.530780, "MAX_NUMBER_OF_ELEMENTS_IN_LIST": -7.184022, "Map": -5.359473, "Messaging.EmailFileAttachment": -8.100313, "Messaging.SingleEmailMessage": -7.694848, "Messaging.sendEmail": -8.793460, "MissingTwilioConfigCustomSettingsException": -8.100313, "OBJECTS": -8.793460, "Object": -5.657966, "ObjectComparator": -7.694848, "PRIMITIVES": -8.793460, "Page.kmlPreviewTemplate": -8.793460, "PageReference": -8.100313, "PrimitiveComparator": -8.100313, "SALESFORCE": -8.793460, "SELECT": -8.793460, "SORTING": -8.793460, "SObject": -5.849021, "SUPPORTED_LANGUAGE_CODES": -8.100313, "SUPPORTED_LANGUAGE_CODES.contains": -8.100313, "Set": -7.001701, "Simplified": -8.793460, "String": -4.733017, "StringUtils.defaultString": -7.407166, "StringUtils.equalsIgnoreCase": -8.793460, "StringUtils.isNotBlank": -8.793460, "StringUtils.length": -8.793460, "StringUtils.lowerCase": -7.694848, "StringUtils.replaceChars": -8.100313, "StringUtils.split": -8.793460, "StringUtils.substring": -8.793460, "System.assert": -7.001701, "System.assertEquals": -7.184022, "Test.isRunningTest": -8.793460, "Test.setCurrentPage": -8.793460, "Traditional": -8.793460, "TwilioAPI": -8.100313, "TwilioAPI.client": -8.100313, "TwilioAPI.getDefaultAccount": -8.793460, "TwilioAPI.getDefaultClient": -8.100313, "TwilioAPI.getTwilioConfig": -8.100313, "TwilioAccount": -8.793460, "TwilioCapability": -8.100313, "TwilioConfig__c": -7.184022, "TwilioConfig__c.getOrgDefaults": -8.793460, "TwilioRestClient": -7.184022, "UserInfo.getLanguage": -8.793460, "WHERE": -8.793460, "[": -4.188290, "\\": -7.184022, "]": -4.188290, "a": -7.407166, "aList": -7.407166, "accountAddressString": -8.793460, "accountSid": -8.100313, "activity.": -8.793460, "actual": -6.020872, "actual.size": -8.100313, "adr": -7.407166, "adr.replaceAll": -8.100313, "amp": -8.793460, "an": -8.100313, "anArray": -6.154403, "anArray.size": -8.100313, "array": -5.657966, "as": -8.793460, "assertArraysAreEqual": -8.100313, "attachment": -8.793460, "attachment.Body": -8.793460, "attachment.Name": -8.793460, "attachmentIDs": -8.100313, "authToken": -8.100313, "billingcity": -8.793460, "billingcountry": -8.793460, "billingpostalcode": -8.793460, "billingstate": -8.793460, "billingstreet": -8.793460, "body": -6.714019, "bool": -5.327724, "boolArray": -7.407166, "boolArray.size": -8.793460, "boolean": -8.793460, "but": -8.100313, "class": -6.847550, "client": -8.100313, "comparator": -6.154403, "comparator.compare": -6.308554, "conversion": -8.793460, "count": -6.490875, "createCapability": -8.793460, "createClient": -8.793460, "defaultVal": -8.100313, "displayLanguageCode": -6.228511, "elmt": -6.714019, "else": -5.574585, "email": -8.793460, "emailSubject": -6.490875, "etc.": -8.793460, "expected": -6.020872, "expected.size": -7.407166, "extends": -8.793460, "false": -6.228511, "falseString": -8.100313, "falseValue": -8.100313, "fieldName": -7.694848, "fieldName.trim": -8.100313, "fileAttachment": -8.100313, "fileAttachment.setBody": -8.793460, "fileAttachment.setFileName": -8.793460, "fileAttachments": -7.184022, "fileAttachments.add": -8.793460, "fileAttachments.size": -8.793460, "filterLanguageCode": -7.407166, "final": -7.001701, "firstItem": -8.100313, "for": -5.615407, "generateFromContent": -8.793460, "get": -7.694848, "getAllLanguages": -7.694848, "getDefaultAccount": -8.793460, "getDefaultClient": -8.100313, "getLangCodeByBrowser": -7.407166, "getLangCodeByBrowserOrIfNullThenHttpParam": -8.793460, "getLangCodeByBrowserOrIfNullThenUser": -8.793460, "getLangCodeByHttpParam": -7.407166, "getLangCodeByHttpParamOrIfNullThenBrowser": -8.793460, "getLangCodeByHttpParamOrIfNullThenUser": -8.793460, "getLangCodeByUser": -7.694848, "getLanguageName": -8.793460, "getSuppLangCodeSet": -8.100313, "getTwilioConfig": -7.694848, "global": -4.544965, "header": -8.100313, "hi": -4.733017, "htmlBody": -8.100313, "i": -4.823168, "id": -8.793460, "if": -4.304824, "insert": -8.793460, "instanceof": -8.793460, "int": -8.793460, "is": -7.184022, "isEmpty": -6.847550, "isFalse": -8.793460, "isNotEmpty": -7.407166, "isNotFalse": -8.793460, "isNotTrue": -8.793460, "isNotValidEmailAddress": -8.793460, "isTrue": -8.793460, "isValidEmailAddress": -8.100313, "j": -6.490875, "langCode": -7.694848, "langCodes": -8.100313, "langCodes.add": -8.793460, "languageCode": -8.100313, "languageFromBrowser": -7.001701, "list": -5.267100, "lo": -4.922259, "lowerCase": -8.793460, "mail": -8.100313, "mail.setBccSender": -8.793460, "mail.setFileAttachments": -8.793460, "mail.setHtmlBody": -8.793460, "mail.setPlainTextBody": -8.793460, "mail.setSaveAsActivity": -8.793460, "mail.setSubject": -8.793460, "mail.setToAddresses": -8.793460, "mail.setUseSignature": -8.793460, "merg": -8.100313, "merged": -7.001701, "merged.add": -8.100313, "mergex": -8.100313, "n": -8.793460, "name": -8.100313, "negate": -8.793460, "new": -4.733017, "not": -7.694848, "null": -4.293651, "obj": -7.694848, "objectArray": -6.085410, "objectArray.size": -7.001701, "objectToString": -8.793460, "objects": -7.694848, "objects.size": -8.793460, "one": -8.100313, "other": -8.100313, "pageRef": -7.694848, "param": -8.100313, "pivot": -6.154403, "pluck": -8.793460, "plucked": -7.694848, "pr": -8.793460, "pr.getContent": -8.793460, "private": -6.490875, "prs": -6.714019, "public": -6.714019, "qsort": -5.903089, "r": -8.793460, "recipients": -6.395565, "recipients.size": -8.793460, "ret": -7.694848, "ret.replaceAll": -8.793460, "return": -4.139500, "returnList": -6.395565, "returnList.add": -6.714019, "returnValue": -5.702418, "returnValue.add": -7.694848, "reverse": -8.100313, "sObj": -7.407166, "sObjects": -8.793460, "saved": -8.793460, "see": -8.100313, "sendEmail": -7.407166, "sendEmailWithStandardAttachments": -7.694848, "sendHTMLEmail": -8.793460, "sendTextEmail": -8.793460, "size": -6.020872, "sortAsc": -5.615407, "specifying": -8.793460, "split": -7.184022, "split.size": -8.100313, "splitAndFilterAcceptLanguageHeader": -8.100313, "startIndex": -6.596236, "static": -4.399011, "stdAttachments": -7.407166, "str": -6.490875, "str.split": -8.793460, "str.toLowerCase": -8.793460, "str.toUpperCase": -8.793460, "str.trim": -7.694848, "strToBoolean": -8.793460, "string": -7.694848, "strings": -7.694848, "strings.add": -8.793460, "strs": -6.596236, "strs.size": -7.694848, "subset": -7.001701, "system.assert": -8.793460, "system.assertEquals": -8.793460, "system.debug": -8.793460, "t": -8.793460, "test_TwilioAPI": -8.793460, "testmethod": -8.793460, "textBody": -8.100313, "the": -8.100313, "theList": -4.516794, "theList.size": -8.100313, "throw": -7.001701, "tmp": -7.001701, "to": -7.694848, "toBoolean": -8.100313, "toBooleanDefaultIfNull": -8.793460, "toInteger": -8.793460, "toString": -7.694848, "toStringYN": -8.793460, "toStringYesNo": -8.793460, "token": -7.001701, "token.contains": -8.793460, "token.indexOf": -8.793460, "token.substring": -8.793460, "tokens": -7.694848, "translatedLanguageNames": -8.793460, "translatedLanguageNames.containsKey": -8.793460, "translatedLanguageNames.get": -8.100313, "trim": -8.793460, "true": -6.308554, "trueString": -8.100313, "trueValue": -8.100313, "try": -8.793460, "twilioCfg": -6.847550, "twilioCfg.AccountSid__c": -7.694848, "twilioCfg.AuthToken__c": -7.694848, "upperCase": -8.793460, "useHTML": -7.001701, "value": -6.596236, "values.": -8.793460, "void": -6.596236, "while": -6.714019, "xor": -8.793460, "{": -3.418182, "||": -6.308554, "}": -3.422822, }, "Apollo Guidance Computer": map[string]float64{ "#": -4.050994, "$": -4.146304, "+": -5.062595, "-": -4.502979, "/KILL": -5.755742, "/P": -5.350277, "<br>": -5.755742, "<info@sandroid.org>": -6.448889, "=": -4.050994, "?": -5.755742, "A": -5.755742, "ABRTIGN": -6.448889, "AD": -5.062595, "ADRES": -4.050994, "ADRSCAN": -5.755742, "ADS": -4.839451, "AOSQ": -5.755742, "AOSR": -6.448889, "APSFLBIT": -6.448889, "ASTNBIT": -6.448889, "ASTNFLAG": -5.755742, "ATMAGADR": -6.448889, "AVEGEXIT": -6.448889, "AVGEXIT": -5.755742, "BANK": -4.251665, "BANKCALL": -6.448889, "BBANK": -6.448889, "BBCON": -6.448889, "BIT": -4.839451, "BLOCK": -6.448889, "BZF": -4.839451, "CA": -3.963983, "CADR": -4.050994, "CAF": -4.050994, "CCS": -5.350277, "CHAN": -6.448889, "CHECKMM": -6.448889, "CNTDNDEX": -6.448889, "COMFAIL": -4.839451, "COMMON": -6.448889, "COUNT*": -4.839451, "CS": -3.453157, "DAPBOOLS": -5.062595, "DAS": -6.448889, "DCA": -4.251665, "DEAD": -5.350277, "DEC": -5.755742, "DEX": -5.755742, "DISPCHNG": -5.755742, "DISPDEX": -4.839451, "DOWNFLAG": -4.502979, "DRIFTBIT": -6.448889, "DSALMOUT": -5.755742, "DSP": -6.448889, "DTCB": -6.448889, "DVCNTR": -4.839451, "DVMONCON": -6.448889, "DXCH": -4.146304, "EBANK": -3.809832, "ENDOFJOB": -5.755742, "ENGONBIT": -6.448889, "EQUALS": -6.448889, "EXTEND": -3.504450, "FFTAG": -6.448889, "FINDVAC": -6.448889, "FIXDELAY": -6.448889, "FLAGWRD": -3.740839, "FLATOUT": -6.448889, "FLGWRD": -6.448889, "FLPASS": -6.448889, "FLUNDBIT": -6.448889, "FLUNDISP": -5.755742, "FOUR": -6.448889, "IBNKCALL": -6.448889, "IDLEFLAG": -5.350277, "IGN": -4.369448, "IGNAOSQ": -6.448889, "IGNAOSR": -6.448889, "IGNFLAG": -5.755742, "IGNFLBIT": -6.448889, "IGNITION": -6.448889, "IGNYET": -5.755742, "IMPLBURN": -6.448889, "IMPULBIT": -6.448889, "INCR": -5.350277, "INDEX": -4.251665, "INHINT": -5.755742, "ITEMP": -4.251665, "KILLBB": -5.755742, "KILLDEAD": -5.755742, "KILLTASK": -5.755742, "KILLTSK": -5.350277, "L": -4.502979, "LETABBIT": -6.448889, "LETITLIV": -5.755742, "LOW": -5.350277, "LST": -4.839451, "LSTLIM": -5.755742, "LUNLANAD": -5.755742, "LUNLAND": -6.448889, "LXCH": -5.350277, "MASK": -3.740839, "NEG": -5.755742, "NOTHRBIT": -6.448889, "NOULLAGE": -6.448889, "NOVAC": -6.448889, "OCT": -3.809832, "ONULLAGE": -6.448889, "P": -3.453157, "PHASCHNG": -4.251665, "PHASE": -4.839451, "PHSCHNG": -5.755742, "POSTJUMP": -5.755742, "PREREAD": -6.448889, "PRIO": -5.350277, "PULSES": -6.448889, "Q": -5.755742, "QXCH": -6.448889, "RAND": -6.448889, "S": -4.839451, "SAVET": -6.448889, "SEC": -6.448889, "SETLOC": -4.839451, "SJUNK": -6.448889, "STCLOK": -6.448889, "SU": -6.448889, "SWANDBIT": -5.755742, "TASKOVER": -4.839451, "TBASE": -6.448889, "TC": -2.893541, "TCF": -3.313395, "TCTSKOVR": -6.448889, "TEVENT": -6.448889, "TGO": -6.448889, "THREE": -5.755742, "THRUST": -6.448889, "TIG": -4.657130, "TIGNOW": -6.448889, "TIGTASK": -5.350277, "TIME": -5.062595, "TRKMKCNT": -6.448889, "TS": -3.270836, "TSTFBANK": -5.755742, "TTOGO": -6.448889, "TWIDDLE": -5.755742, "TWO": -6.448889, "ULLAGOFF": -6.448889, "ULLGTASK": -5.350277, "UPFLAG": -5.755742, "VB": -5.755742, "WAITABIT": -6.448889, "WAITLIST": -5.755742, "WANTAPS": -6.448889, "WCHPHASE": -6.448889, "WCHPHOLD": -6.448889, "WHICH": -4.657130, "WOR": -6.448889, "WRITE": -6.448889, "Z": -5.350277, "ZERO": -6.448889, "ZL": -6.448889, "ZOOM": -4.839451, "ZOOMA": -5.350277, "ZOOMTIME": -5.755742, }, "AppleScript": map[string]float64{ "&": -3.545953, "(": -3.087378, ")": -3.098939, ",": -2.908896, "-": -4.119299, "/": -6.860139, ":": -5.068380, "<": -6.860139, ">": -6.860139, "AppleScript": -7.553287, "Enable": -7.553287, "FS": -5.250702, "FinderSelection": -6.166992, "I": -6.860139, "Ideally": -6.860139, "If": -6.860139, "JavaScript": -6.860139, "MyPath": -6.166992, "POSIX": -6.166992, "SelectionCount": -5.761527, "Terminal": -7.553287, "UI": -7.553287, "URL": -7.553287, "\\": -5.607376, "a": -6.166992, "access": -7.553287, "account": -7.553287, "accountMailboxes": -6.454674, "activate": -6.454674, "alias": -5.473845, "amPM": -6.166992, "and": -5.607376, "answer": -6.454674, "application": -4.780698, "application/pdf": -7.553287, "application/postscript": -7.553287, "as": -4.257450, "assistive": -7.553287, "be": -6.860139, "bounds": -6.860139, "button": -6.454674, "buttons": -6.454674, "character": -6.860139, "characters": -7.553287, "choose": -6.860139, "click": -7.553287, "clicked": -6.860139, "color": -7.553287, "contains": -7.553287, "content": -6.860139, "convertCommand": -6.166992, "could": -6.860139, "count": -5.473845, "crazyTextMessage": -6.860139, "current": -6.454674, "currentDate": -6.454674, "currentHour": -5.356062, "currentMinutes": -6.166992, "currentTime": -6.454674, "currently": -6.860139, "cursor": -7.553287, "date": -7.553287, "day": -7.553287, "default": -6.166992, "delay": -6.454674, "delimiters": -7.553287, "desktop": -7.553287, "desktopBottom": -7.553287, "desktopLeft": -7.553287, "desktopRight": -7.553287, "desktopTop": -6.860139, "devices": -7.553287, "dialog": -6.166992, "display": -6.166992, "displayString": -6.166992, "do": -6.166992, "document": -6.860139, "double": -6.860139, "drawer": -6.860139, "droplet": -6.860139, "eachAccount": -6.454674, "eachCharacter": -6.166992, "eachMailbox": -6.166992, "elements": -7.553287, "else": -4.914229, "enabled": -7.553287, "end": -3.348594, "equal": -6.860139, "error": -6.454674, "every": -6.454674, "everyAccount": -6.860139, "exit": -7.553287, "extension": -6.166992, "extension_list": -5.761527, "false": -5.356062, "field": -7.553287, "fieldLength": -6.166992, "file": -5.761527, "first": -7.553287, "folder": -5.250702, "folders": -6.860139, "font": -6.860139, "fontList": -6.860139, "for": -5.943849, "from": -5.356062, "frontmost": -7.553287, "get": -7.553287, "getMessageCountsForMailboxes": -6.166992, "greater": -5.943849, "group": -7.553287, "h": -6.166992, "handled": -6.860139, "handler": -6.860139, "highFontSize": -5.761527, "html": -6.860139, "i": -5.250702, "if": -3.641264, "in": -4.988337, "info": -6.166992, "integer": -6.860139, "invisibles": -6.860139, "is": -3.942369, "isRunning": -6.454674, "isRunningWithAppleScript": -6.454674, "isVoiceOverRunning": -6.454674, "isVoiceOverRunningWithAppleScript": -6.454674, "item": -4.988337, "item_info": -4.375233, "length": -7.553287, "list": -5.473845, "localMailboxes": -6.454674, "lowFontSize": -5.356062, "m": -6.860139, "mailbox": -6.860139, "mailboxName": -6.860139, "make": -6.860139, "me": -6.860139, "message": -6.860139, "messageCount": -6.860139, "messageCountDisplay": -5.943849, "messageText": -6.166992, "messages": -7.553287, "minimumFontSize": -6.166992, "minutes": -7.553287, "my": -6.454674, "myFrontMost": -6.454674, "name": -5.473845, "need": -7.553287, "new": -6.860139, "newFileName": -6.860139, "newFontSize": -5.761527, "not": -5.943849, "number": -5.761527, "of": -3.304791, "on": -4.720073, "open": -5.473845, "or": -5.943849, "outgoing": -6.860139, "output": -7.553287, "outputMessage": -6.860139, "padString": -6.454674, "paddedString": -5.943849, "paddingLength": -6.860139, "pane": -6.166992, "pass": -7.553287, "passed": -6.860139, "path": -5.761527, "position": -7.553287, "process": -5.943849, "processFile": -5.473845, "processFolder": -5.473845, "processes": -6.860139, "prompt": -6.860139, "properties": -6.860139, "property": -5.607376, "radio": -7.553287, "random": -6.166992, "repeat": -4.608848, "result": -6.860139, "return": -4.780698, "returned": -6.166992, "run": -6.166992, "s": -6.454674, "say": -7.553287, "screen_height": -6.860139, "screen_width": -6.860139, "script": -6.860139, "selection": -6.860139, "set": -2.880458, "shell": -6.860139, "size": -5.943849, "some": -7.553287, "space": -7.553287, "string": -4.914229, "stringLength": -6.454674, "subject": -7.553287, "tab": -7.553287, "tell": -3.864407, "terminalCommand": -5.761527, "text": -4.988337, "than": -5.943849, "the": -3.527935, "theFilePath": -5.473845, "theFolder": -5.761527, "theMailboxes": -6.860139, "thePOSIXFileName": -6.166992, "thePOSIXFilePath": -5.473845, "theString": -6.166992, "theText": -6.454674, "then": -4.221082, "these_items": -4.662915, "thesefiles": -6.860139, "this": -6.860139, "this_item": -4.914229, "times": -7.553287, "to": -2.717005, "true": -5.473845, "try": -5.250702, "type": -5.761527, "type_list": -5.761527, "unread": -7.553287, "unreadCount": -6.860139, "userInput": -6.454674, "userPicksFolder": -5.761527, "value": -7.553287, "visible": -6.860139, "vo": -7.553287, "w": -5.943849, "whose": -7.553287, "window": -5.943849, "windowHeight": -6.454674, "windowWidth": -6.454674, "with": -5.155391, "without": -6.860139, "x": -7.553287, "{": -4.087551, "}": -4.087551, }, "Arduino": map[string]float64{ "(": -2.687324, ")": -2.767367, ",": -3.172832, "0": -3.460514, "1": -3.460514, "7": -5.252273, "9600": -5.252273, ";": -2.767367, "<sizeof(buttons)/sizeof(int);i++){>": -5.252273, "=": -3.642836, "HIGH": -5.252273, "INPUT": -4.153661, "LOW": -4.153661, "OUTPUT": -5.252273, "Serial": -4.559126, "Serial.begin": -5.252273, "Serial.print": -4.559126, "Serial.println": -5.252273, "[": -4.153661, "]": -4.153661, "begin": -5.252273, "break": -5.252273, "buttons": -3.460514, "const": -4.559126, "delay": -5.252273, "digitalRead": -4.153661, "digitalWrite": -4.559126, "else": -5.252273, "for": -3.642836, "i": -2.256541, "if": -3.642836, "int": -2.854378, "loop": -4.559126, "octaves": -3.642836, "output": -3.306363, "output=": -5.252273, "pinMode": -3.865979, "print": -5.252273, "setup": -4.559126, "sizeof": -3.460514, "void": -3.865979, "wait": -5.252273, "{": -3.306363, "}": -3.172832, }, "AsciiDoc": map[string]float64{ "*": -3.960813, "*Section": -4.248495, ",": -5.347108, "-": -3.401197, ".Section": -5.347108, "//github.com/foo": -5.347108, ":": -3.267666, "<thedoc@asciidoctor.org>": -5.347108, "=": -1.633535, "A": -4.653960, "A*": -4.653960, "Articles": -5.347108, "AsciiDoc": -4.248495, "B": -4.653960, "B*": -5.347108, "Codierungen": -5.347108, "Doc": -5.347108, "Document": -5.347108, "Example": -5.347108, "Gregory": -4.653960, "Home": -5.347108, "Item": -3.555348, "NOTE": -5.347108, "Page": -5.347108, "Preamble": -5.347108, "Redmine": -4.653960, "Rom": -4.653960, "Ruby": -5.347108, "Section": -4.248495, "Subsection": -5.347108, "This": -5.347108, "Title": -4.653960, "Versionen": -5.347108, "Writer": -5.347108, "[": -4.653960, "]": -4.653960, "`": -4.653960, "a": -5.347108, "an": -4.653960, "application.": -4.653960, "auf": -5.347108, "berschrift": -5.347108, "ckt": -5.347108, "end": -5.347108, "for": -4.653960, "gif": -5.347108, "has": -4.653960, "https": -5.347108, "id_": -5.347108, "idprefix": -5.347108, "is": -5.347108, "list": -5.347108, "lteren": -5.347108, "management": -4.653960, "only": -5.347108, "paragraph.": -3.960813, "plugin": -4.653960, "project": -4.653960, "rom": -4.653960, "sind": -5.347108, "tag": -5.347108, "test": -5.347108, "test.": -5.347108, "the": -4.653960, "users/foo": -5.347108, "verr": -5.347108, "vicmd": -5.347108, "von": -5.347108, "written": -4.653960, "~": -2.574519, "Ü": -5.347108, "ä": -5.347108, "é": -3.960813, "ü": -5.347108, "、": -5.347108, "。": -5.347108, "い": -5.347108, "し": -5.347108, "す": -5.347108, "て": -4.653960, "で": -5.347108, "と": -5.347108, "へ": -5.347108, "み": -4.653960, "る": -5.347108, "を": -5.347108, "ア": -5.347108, "キ": -5.347108, "シ": -5.347108, "ッ": -5.347108, "ニ": -5.347108, "プ": -5.347108, "マ": -5.347108, "メ": -5.347108, "ョ": -5.347108, "ン": -5.347108, "ー": -4.653960, "試": -5.347108, "足": -5.347108, }, "AspectJ": map[string]float64{ "!": -5.117994, "&&": -5.117994, "(": -1.982500, ")": -1.982500, "*": -5.117994, "+": -3.865231, ",": -4.424847, "..": -5.811141, ":": -3.865231, ";": -2.443845, "<String,>": -5.117994, "=": -4.019382, ">": -5.117994, "@Cachable": -5.811141, "@SuppressWarnings": -4.712529, "@annotation": -5.811141, "Cachable": -5.117994, "CacheAspect": -5.811141, "JoinPoint": -5.811141, "Map": -4.712529, "Object": -3.103091, "OptimizeRecursionCache": -5.117994, "String": -4.712529, "System.out.println": -4.201703, "WeakHashMap": -5.811141, "_cache": -5.117994, "_cache.get": -5.811141, "_cache.put": -5.811141, "_cache.size": -5.811141, "abstract": -4.712529, "after": -5.117994, "around": -5.117994, "aspect": -5.117994, "aspectj.cache": -5.811141, "aspectj.cache.marker.Cachable": -5.811141, "aspects.caching": -5.811141, "before": -5.811141, "cachable": -4.201703, "cachable.scriptKey": -5.811141, "cache": -4.712529, "cache.containsKey": -5.811141, "cache.put": -5.811141, "cachedValue": -4.424847, "cflowbelow": -5.811141, "com.blogspot.miguelinlas": -5.117994, "evaluateKey": -5.811141, "evaluatedKey": -4.019382, "execution": -5.811141, "getCache": -5.117994, "if": -5.117994, "import": -4.201703, "java.util.Map": -5.117994, "java.util.WeakHashMap": -5.811141, "joinPoint": -5.811141, "key": -5.117994, "new": -5.811141, "null": -5.811141, "o": -3.038552, "operation": -4.424847, "org.aspectj.lang.JoinPoint": -5.811141, "package": -5.117994, "pointcut": -4.712529, "private": -5.811141, "proceed": -5.117994, "protected": -5.117994, "public": -4.019382, "result": -4.712529, "return": -4.201703, "returning": -5.117994, "this.cache.get": -5.811141, "this.evaluateKey": -5.811141, "thisJoinPoint": -5.811141, "topLevelOperation": -4.424847, "value": -4.712529, "{": -3.413246, "}": -3.413246, }, "Assembly": map[string]float64{ "!": -8.700098, "#": -6.397513, "#IN": -9.393245, "#MPYDLY": -9.393245, "#MPYDLYWRTEN": -9.393245, "#SUMEXT": -9.393245, "#byte": -9.393245, "#start": -9.393245, "#step": -8.700098, "$": -6.215191, "%": -3.900184, "&": -4.281257, "&&": -7.601486, "'": -8.700098, "(": -4.510443, ")": -4.541215, "*": -5.782327, "+": -5.116579, ",": -2.108424, "-": -2.377533, ".": -6.685195, "./forth": -9.393245, ".align": -8.700098, ".begin": -8.700098, ".byte": -8.700098, ".concat": -8.006951, ".data": -9.393245, ".define": -7.783807, ".else": -7.447335, ".elseif": -9.393245, ".endif": -7.090660, ".endmacro": -6.448806, ".error": -9.393245, ".hibytes": -9.393245, ".ident": -8.006951, ".if": -7.601486, ".ifblank": -9.393245, ".ifndef": -8.294633, ".ifp": -9.393245, ".left": -8.294633, ".lobytes": -9.393245, ".local": -7.783807, ".macro": -6.448806, ".match": -8.294633, ".popseg": -9.393245, ".pushseg": -9.393245, ".res": -8.294633, ".right": -8.294633, ".segment": -9.393245, ".string": -7.783807, ".tcount": -8.294633, ".text": -9.393245, "0": -8.700098, "1": -7.783807, "16": -9.393245, "255": -9.393245, "256": -8.700098, ":": -4.495405, ";": -1.894929, "<": -6.995350, "<((end)+(step))>": -8.700098, "<(.right(>": -8.700098, "<(start)>": -9.393245, "<(word)>": -9.393245, "<Addr>": -9.393245, "<Imm>": -9.393245, "<asm/unistd.h>": -8.700098, "<file>": -9.393245, "<limit>": -8.700098, "<source>": -9.393245, "<word>": -8.294633, "=": -6.397513, ">": -6.448806, "?": -7.196021, "@Skip": -7.601486, "@for_loop": -8.006951, "@for_loop_skip": -8.006951, "@r": -6.302203, "A": -6.560032, "ADDDSP": -5.332802, "ADDR": -9.393245, "ADDRSP": -7.447335, "ALIGNREG": -9.393245, "ALU": -9.393245, "Addr": -6.174369, "Addr.": -8.006951, "Adds": -9.393245, "After": -9.393245, "Ah": -6.995350, "All": -9.393245, "Allows": -9.393245, "Arg": -7.313804, "BASE": -9.393245, "BLARGG_MACROS_INCLUDED": -9.393245, "BLK": -9.393245, "BS": -9.393245, "BSS": -8.700098, "BUILD_NSF": -9.393245, "Bh": -8.700098, "Bool": -8.294633, "CHARBUF": -9.393245, "CJNE": -8.700098, "CONSTANT": -9.393245, "CPU": -9.393245, "CTL": -8.700098, "Calls": -8.700098, "Chris": -9.393245, "CloseHandle": -9.393245, "Copies": -8.700098, "Copyright": -9.393245, "Counter": -9.393245, "CreateFile": -9.393245, "D": -8.006951, "DATA_STACK_SIZE": -8.700098, "DEFAULT": -9.393245, "DELAY": -7.783807, "DJNZ": -8.006951, "DP": -9.393245, "DP_ALIGN": -8.294633, "Destination": -9.393245, "Dh": -6.685195, "DispAL": -7.783807, "DispInt": -9.393245, "DispReturn": -9.393245, "DispStr": -8.700098, "EA": -9.393245, "EMIT": -9.393245, "END": -9.393245, "EQ/NE": -9.393245, "EX": -9.393245, "Enable": -8.700098, "Example": -9.393245, "Examples": -9.393245, "ExitProcess": -9.393245, "External": -8.700098, "Extra": -8.006951, "FETCHRSP": -8.700098, "FF": -8.700098, "FLASH": -8.700098, "FORTH.": -9.393245, "FROMRSP": -8.294633, "F_HIDDEN": -8.700098, "F_IMMED": -8.294633, "F_LENMASK": -8.006951, "False": -8.294633, "Forth": -8.700098, "Forths": -8.006951, "GETDSP": -8.700098, "GETRSP": -8.006951, "Get": -9.393245, "GetCommandLine": -8.700098, "GetEnvironmentVariable": -9.393245, "GetStdHandle": -9.393245, "GetSystemTime": -9.393245, "GetTickCount": -8.294633, "GlobalMemoryStatus": -9.393245, "Grysztar.": -9.393245, "H": -5.704366, "H_HLINK": -8.700098, "H_LLINK": -8.700098, "H_NAME": -8.006951, "H_NSIZE": -8.006951, "Hinsley": -9.393245, "IMMEDIATE": -9.393245, "IN": -9.393245, "INT": -8.006951, "INTERPNAME": -9.393245, "IP": -9.393245, "IT": -9.393245, "If": -8.294633, "Imm": -8.006951, "Increments": -8.700098, "Initializes": -9.393245, "Interrupt": -8.700098, "Interrut": -9.393245, "Is": -9.393245, "JMP": -8.700098, "LATEST": -8.700098, "LCALL": -7.196021, "LEFT": -8.294633, "LF": -8.700098, "LINESIZE": -9.393245, "LOADTOS": -6.620656, "LOOP": -8.006951, "Label": -7.783807, "Line": -8.006951, "Loads": -9.393245, "MAC": -6.061041, "MAX_LINE_SIZE": -7.601486, "MOV": -7.196021, "MPY": -8.006951, "MemCpy": -9.393245, "NASM": -9.393245, "NES": -9.393245, "NULL": -8.294633, "NUM_HASH_CHAINS": -8.700098, "NVRAM": -9.393245, "Name": -7.601486, "Name.": -9.393245, "Negates": -9.393245, "OP": -5.481222, "ORG": -7.447335, "O_*": -9.393245, "Operand": -8.700098, "Otherwise": -9.393245, "Out": -8.006951, "P": -8.006951, "PAGE_SIZE": -8.700098, "PE": -9.393245, "PICKDSP": -4.768272, "PICKRSP": -7.196021, "POPDSP": -6.448806, "POPRSP": -8.294633, "PPUCTRL": -9.393245, "PROT_ALL": -8.700098, "PROT_EXEC": -8.700098, "PROT_READ": -8.700098, "PROT_WRITE": -8.700098, "PUSHDSP": -6.560032, "PUSHRSP": -8.700098, "PUTDSP": -5.522044, "PUTRSP": -8.006951, "Points": -8.700098, "Preserved": -7.313804, "QUIT": -8.700098, "R": -6.908338, "RES": -5.089180, "RET": -7.601486, "RETI": -7.783807, "RIGHT": -8.294633, "RL": -9.393245, "RODATA": -9.393245, "RR": -9.393245, "ReadFile": -9.393245, "Reserves": -9.393245, "S": -8.294633, "SECTION": -8.700098, "SELECT": -9.393245, "SETB": -8.294633, "SETDSP": -8.294633, "SETRSP": -8.700098, "SJMP": -8.294633, "SLASH": -8.700098, "SOURCEFD": -9.393245, "STACK": -9.393245, "STAR": -8.700098, "START": -8.700098, "STATE": -9.393245, "STD_OUTPUT_HANDLE": -9.393245, "SUMEXT": -7.090660, "SYS_*": -9.393245, "SYS_close": -8.700098, "SYS_exit": -8.700098, "SYS_fstat": -8.700098, "SYS_fsync": -8.700098, "SYS_ftruncate": -8.700098, "SYS_lseek": -8.700098, "SYS_mprotect": -8.700098, "SYS_open": -8.700098, "SYS_read": -8.294633, "SYS_rename": -8.700098, "SYS_stat": -8.700098, "SYS_unlink": -8.700098, "SYS_write": -8.700098, "Same": -8.700098, "Segment": -7.447335, "Set": -9.393245, "SetFilePointer": -9.393245, "Shortcuts": -9.393245, "Single": -9.393245, "Size": -7.783807, "Source": -9.393245, "Splits": -9.393245, "Src": -6.348723, "Stores": -8.294633, "Subsequent": -8.700098, "Switches": -9.393245, "T": -8.006951, "TORSP": -7.447335, "TOS": -9.393245, "The": -6.397513, "Time": -9.393245, "Tomasz": -9.393245, "True": -8.700098, "UART_ISR": -8.700098, "USER_DEFS_SIZE": -8.700098, "VERSION": -9.393245, "VERSION_NUM": -8.700098, "VERSION_STRING": -9.393245, "VM": -9.393245, "Value": -8.700098, "Various": -9.393245, "VirtualAlloc": -9.393245, "VirtualFree": -9.393245, "WORD": -8.700098, "WORDBUF": -9.393245, "WORD_ABS": -9.393245, "WORD_ACCEPT": -9.393245, "WORD_ADD": -8.006951, "WORD_ADDBYTE": -9.393245, "WORD_ADDSTORE": -9.393245, "WORD_AND": -9.393245, "WORD_BASE": -9.393245, "WORD_BLANK": -9.393245, "WORD_BLK": -9.393245, "WORD_BRANCH": -9.393245, "WORD_CALL_COMMA": -6.560032, "WORD_CHARBUF": -9.393245, "WORD_CMOVE": -9.393245, "WORD_CMOVEB": -9.393245, "WORD_D": -8.700098, "WORD_DABS": -9.393245, "WORD_DECR": -8.006951, "WORD_DEQ": -9.393245, "WORD_DIV": -9.393245, "WORD_DIVMOD": -9.393245, "WORD_DLT": -9.393245, "WORD_DMAX": -9.393245, "WORD_DMIN": -9.393245, "WORD_DMINUS": -9.393245, "WORD_DMULSTAR": -9.393245, "WORD_DNEGATE": -8.700098, "WORD_DNEQ": -9.393245, "WORD_DP": -9.393245, "WORD_DPLUS": -9.393245, "WORD_DROP": -7.196021, "WORD_DSPFETCH": -9.393245, "WORD_DSPSTORE": -9.393245, "WORD_DTOS": -9.393245, "WORD_DULT": -9.393245, "WORD_DUP": -8.700098, "WORD_DZEQ": -9.393245, "WORD_DZLT": -9.393245, "WORD_DZNEQ": -9.393245, "WORD_EQ": -9.393245, "WORD_ERASE": -9.393245, "WORD_EXECUTE": -9.393245, "WORD_EXIT": -9.393245, "WORD_EXIT_COMMA": -8.700098, "WORD_FETCH": -8.700098, "WORD_FETCHBYTE": -9.393245, "WORD_FETCHSHORT": -9.393245, "WORD_FILL": -9.393245, "WORD_FMDIVMOD": -9.393245, "WORD_FROMR": -8.700098, "WORD_GT": -9.393245, "WORD_GTEQ": -9.393245, "WORD_INCR": -7.601486, "WORD_INHASH": -8.700098, "WORD_INLINE_COMMA": -4.648313, "WORD_INTERPRET": -9.393245, "WORD_INVERT": -9.393245, "WORD_KEY": -8.700098, "WORD_LATEST": -9.393245, "WORD_LBRAC": -9.393245, "WORD_LINESIZE": -9.393245, "WORD_LSHIFT": -9.393245, "WORD_LT": -9.393245, "WORD_LTEQ": -9.393245, "WORD_MAX": -9.393245, "WORD_MIN": -9.393245, "WORD_MMINUS": -9.393245, "WORD_MOD": -9.393245, "WORD_MOVE": -9.393245, "WORD_MPLUS": -9.393245, "WORD_MSLASH": -9.393245, "WORD_MULDIV": -9.393245, "WORD_MULL": -8.700098, "WORD_MULSTAR": -9.393245, "WORD_NE": -9.393245, "WORD_NEGATE": -9.393245, "WORD_NFROMR": -9.393245, "WORD_NIP": -8.006951, "WORD_NQDUP": -9.393245, "WORD_NROT": -8.700098, "WORD_NTOR": -9.393245, "WORD_OR": -9.393245, "WORD_OVER": -7.196021, "WORD_O_APPEND": -9.393245, "WORD_O_CREAT": -9.393245, "WORD_O_EXCL": -9.393245, "WORD_O_NONBLOCK": -9.393245, "WORD_O_RDONLY": -9.393245, "WORD_O_RDWR": -9.393245, "WORD_O_TRUNC": -9.393245, "WORD_O_WRONLY": -9.393245, "WORD_PICK": -9.393245, "WORD_QDUP": -9.393245, "WORD_RDROP": -8.700098, "WORD_READCHAR": -8.294633, "WORD_READLINE": -8.700098, "WORD_RFETCH": -8.700098, "WORD_ROT": -8.700098, "WORD_RSHIFT": -9.393245, "WORD_RSPFETCH": -9.393245, "WORD_RSPSTORE": -9.393245, "WORD_RSTORE": -9.393245, "WORD_RZ": -9.393245, "WORD_SMDIVREM": -9.393245, "WORD_SOURCEFD": -9.393245, "WORD_STARSMOD": -9.393245, "WORD_STATE": -9.393245, "WORD_STOD": -9.393245, "WORD_STORE": -8.006951, "WORD_STOREBYTE": -8.294633, "WORD_STORESHORT": -9.393245, "WORD_SUB": -8.294633, "WORD_SUBSTORE": -9.393245, "WORD_SWAP": -7.313804, "WORD_SYSCALL": -9.393245, "WORD_SYS_CLOSE": -9.393245, "WORD_SYS_EXIT": -9.393245, "WORD_SYS_FSTAT": -9.393245, "WORD_SYS_FSYNC": -9.393245, "WORD_SYS_FTRUNCATE": -9.393245, "WORD_SYS_LSEEK": -9.393245, "WORD_SYS_OPEN": -8.700098, "WORD_SYS_READ": -9.393245, "WORD_SYS_RENAME": -9.393245, "WORD_SYS_STAT": -9.393245, "WORD_SYS_UNLINK": -9.393245, "WORD_SYS_WRITE": -9.393245, "WORD_SZ": -9.393245, "WORD_TEST": -9.393245, "WORD_TICKS": -9.393245, "WORD_TOIN": -8.700098, "WORD_TONUMBER": -9.393245, "WORD_TOR": -8.700098, "WORD_TUCK": -8.294633, "WORD_TWODIV": -9.393245, "WORD_TWOMUL": -9.393245, "WORD_UDIVMOD": -9.393245, "WORD_UGT": -9.393245, "WORD_UGTEQ": -9.393245, "WORD_ULT": -9.393245, "WORD_ULTEQ": -9.393245, "WORD_UMDIVMOD": -9.393245, "WORD_UMULSTAR": -8.700098, "WORD_VERSION": -9.393245, "WORD_WORDBUF": -9.393245, "WORD_XOR": -9.393245, "WORD_ZBRANCH": -9.393245, "WORD_ZEQ": -9.393245, "WORD_ZGT": -9.393245, "WORD_ZGTEQ": -9.393245, "WORD_ZLT": -9.393245, "WORD_ZLTEQ": -9.393245, "WORD_ZNE": -9.393245, "WORD__F_HIDDEN": -9.393245, "WORD__F_IMMED": -9.393245, "WORD__F_LENMASK": -9.393245, "WORD__H_NAME": -9.393245, "WORD__H_NSIZE": -9.393245, "WORD__XT_BODY": -9.393245, "WORD__XT_COMPILE": -9.393245, "WORD__XT_LENGTH": -9.393245, "WORD__XT_SIZE": -9.393245, "When": -9.393245, "Win": -9.393245, "Words": -8.294633, "WriteFile": -9.393245, "X": -7.601486, "XT_BODY": -8.294633, "XT_COMPILE": -8.294633, "XT_LENGTH": -8.294633, "XT_SIZE": -8.294633, "XY": -8.700098, "Y": -7.447335, "YX": -9.393245, "YX.": -9.393245, "Z": -9.393245, "ZEROPAGE": -9.393245, "[": -4.572964, "]": -4.572964, "_CloseHandle": -8.700098, "_CreateFileA": -8.700098, "_ExitProcess": -8.700098, "_GetCommandLineA": -8.700098, "_GetEnvironmentVariable": -8.700098, "_GetStdHandle": -8.700098, "_GetSystemTime": -8.700098, "_GetTickCount": -8.700098, "_GlobalMemoryStatus": -8.700098, "_ISR": -7.313804, "_ReadFile": -8.700098, "_SetFilePointer": -8.700098, "_VirtualAlloc": -8.700098, "_VirtualFree": -8.700098, "_WriteFile": -8.700098, "_bytes_suffix": -8.700098, "_copyright": -9.393245, "_logo": -8.700098, "_lsyscall": -9.393245, "_main": -8.294633, "_memory_prefix": -8.700098, "_memory_suffix": -8.700098, "_passes_suffix": -8.700098, "_seconds_suffix": -8.700098, "_syscall": -8.700098, "_usage": -8.700098, "a": -7.313804, "accept_l": -7.601486, "action": -9.393245, "acts": -9.393245, "actual": -9.393245, "adc": -6.828296, "add": -5.367893, "additional_memory": -9.393245, "additional_memory_end": -9.393245, "addr": -7.196021, "address": -7.601486, "addresses": -9.393245, "adds": -9.393245, "addw": -9.393245, "addw_": -8.700098, "adjust": -8.700098, "after": -8.700098, "ah": -8.294633, "al": -5.130565, "align": -7.313804, "all": -9.393245, "all_params": -7.783807, "allow": -9.393245, "alu": -9.393245, "an": -9.393245, "and": -6.560032, "appropriately": -9.393245, "are": -9.393245, "area": -9.393245, "as": -8.006951, "assembler": -8.294633, "at": -7.783807, "ax": -8.006951, "b": -7.313804, "bad_params": -6.995350, "base": -8.700098, "based": -8.700098, "bcc": -8.700098, "bcs": -9.393245, "be": -7.601486, "begins": -8.700098, "beq": -9.393245, "bic": -9.393245, "bis": -9.393245, "bit": -7.601486, "bl": -5.404261, "block": -9.393245, "bne": -7.783807, "body": -8.700098, "bootfile": -8.700098, "booting": -9.393245, "break": -9.393245, "breakif": -9.393245, "bss": -9.393245, "bss_res": -9.393245, "buffer": -7.196021, "buffer.": -8.294633, "building": -9.393245, "built": -8.006951, "but": -9.393245, "bx": -9.393245, "by": -8.006951, "byte": -5.927509, "byte.": -8.700098, "bytes": -8.700098, "bytes_count": -9.393245, "c": -8.006951, "ca": -8.700098, "call": -4.950594, "calls": -8.700098, "can": -7.783807, "carry": -9.393245, "case": -8.294633, "cdq": -8.006951, "chain": -9.393245, "change": -9.393245, "char": -9.393245, "character": -9.393245, "check": -9.393245, "checking": -9.393245, "cl": -8.294633, "clc": -7.447335, "cld": -8.006951, "clocks": -9.393245, "clone": -9.393245, "clr": -6.502873, "cmp": -5.315708, "code": -8.006951, "code_end": -8.700098, "codeing": -9.393245, "codes": -9.393245, "comparision": -8.700098, "compile": -8.700098, "compiled": -9.393245, "compiler": -9.393245, "compiling": -8.700098, "con_handle": -8.700098, "console": -9.393245, "constant": -9.393245, "constants": -9.393245, "continue": -9.393245, "control": -9.393245, "copied": -9.393245, "copy": -9.393245, "copy_param": -8.700098, "counts": -8.700098, "cpy": -8.700098, "cur": -7.601486, "current": -7.447335, "current_pass": -9.393245, "data": -6.502873, "db": -5.679673, "dd": -3.848068, "dec": -7.447335, "defconst": -5.896738, "define": -5.809726, "defined": -9.393245, "defvar": -6.828296, "defword": -4.495405, "defword_end": -4.495405, "descriptor.": -8.700098, "dey": -9.393245, "dic_": -9.393245, "dic_WORD_ABS": -9.393245, "dic_WORD_ACCEPT": -9.393245, "dic_WORD_ADD": -9.393245, "dic_WORD_ADDBYTE": -9.393245, "dic_WORD_ADDSTORE": -9.393245, "dic_WORD_ALIGNDP": -9.393245, "dic_WORD_AND": -9.393245, "dic_WORD_BASE": -9.393245, "dic_WORD_BLANK": -9.393245, "dic_WORD_BLK": -9.393245, "dic_WORD_BRANCH": -9.393245, "dic_WORD_BUCKET": -9.393245, "dic_WORD_CALL_COMMA": -9.393245, "dic_WORD_CHARBUF": -9.393245, "dic_WORD_CHAR_COMMA": -9.393245, "dic_WORD_CLITS": -9.393245, "dic_WORD_CMOVE": -9.393245, "dic_WORD_CMOVEB": -9.393245, "dic_WORD_COLON": -9.393245, "dic_WORD_COMMA": -9.393245, "dic_WORD_COMPARE": -9.393245, "dic_WORD_COMPAREI": -9.393245, "dic_WORD_COMPILE_COMMA": -9.393245, "dic_WORD_COUNT": -9.393245, "dic_WORD_CREATE": -9.393245, "dic_WORD_D": -8.700098, "dic_WORD_DABS": -9.393245, "dic_WORD_DECR": -8.294633, "dic_WORD_DEQ": -9.393245, "dic_WORD_DIV": -9.393245, "dic_WORD_DIVMOD": -9.393245, "dic_WORD_DLT": -9.393245, "dic_WORD_DMAX": -9.393245, "dic_WORD_DMIN": -9.393245, "dic_WORD_DMINUS": -9.393245, "dic_WORD_DMULSTAR": -9.393245, "dic_WORD_DNEGATE": -9.393245, "dic_WORD_DNEQ": -9.393245, "dic_WORD_DODOES": -9.393245, "dic_WORD_DOES": -9.393245, "dic_WORD_DP": -9.393245, "dic_WORD_DPLUS": -9.393245, "dic_WORD_DROP": -8.700098, "dic_WORD_DSPFETCH": -9.393245, "dic_WORD_DSPSTORE": -9.393245, "dic_WORD_DTOS": -9.393245, "dic_WORD_DULT": -9.393245, "dic_WORD_DUP": -8.700098, "dic_WORD_DZEQ": -9.393245, "dic_WORD_DZLT": -9.393245, "dic_WORD_DZNEQ": -9.393245, "dic_WORD_EMIT": -9.393245, "dic_WORD_EQ": -9.393245, "dic_WORD_ERASE": -9.393245, "dic_WORD_EXECUTE": -9.393245, "dic_WORD_EXIT": -9.393245, "dic_WORD_FETCH": -8.700098, "dic_WORD_FETCHBYTE": -9.393245, "dic_WORD_FETCHSHORT": -9.393245, "dic_WORD_FILL": -9.393245, "dic_WORD_FIND": -9.393245, "dic_WORD_FIND_DICT": -9.393245, "dic_WORD_FMDIVMOD": -9.393245, "dic_WORD_FROMR": -8.700098, "dic_WORD_GT": -9.393245, "dic_WORD_GTEQ": -9.393245, "dic_WORD_HEADER_COMMA": -9.393245, "dic_WORD_HIDDEN": -9.393245, "dic_WORD_IMMEDIATE": -9.393245, "dic_WORD_INCR": -8.294633, "dic_WORD_INHASH": -9.393245, "dic_WORD_INLINE_COMMA": -9.393245, "dic_WORD_INTERP": -9.393245, "dic_WORD_INTERPNAME": -9.393245, "dic_WORD_INTERPRET": -9.393245, "dic_WORD_INVERT": -9.393245, "dic_WORD_ISNOTSPACE": -9.393245, "dic_WORD_ISSPACE": -9.393245, "dic_WORD_KEY": -9.393245, "dic_WORD_LATEST": -9.393245, "dic_WORD_LBRAC": -9.393245, "dic_WORD_LINESIZE": -9.393245, "dic_WORD_LIT_COMMA": -9.393245, "dic_WORD_LSHIFT": -9.393245, "dic_WORD_LSYSCALL": -9.393245, "dic_WORD_LT": -9.393245, "dic_WORD_LTEQ": -9.393245, "dic_WORD_MAX": -9.393245, "dic_WORD_MIN": -9.393245, "dic_WORD_MMINUS": -9.393245, "dic_WORD_MOD": -9.393245, "dic_WORD_MOVE": -9.393245, "dic_WORD_MPLUS": -9.393245, "dic_WORD_MSLASH": -9.393245, "dic_WORD_MULDIV": -9.393245, "dic_WORD_MULL": -9.393245, "dic_WORD_MULSTAR": -9.393245, "dic_WORD_NE": -9.393245, "dic_WORD_NEGATE": -9.393245, "dic_WORD_NFROMR": -9.393245, "dic_WORD_NIP": -8.700098, "dic_WORD_NQDUP": -9.393245, "dic_WORD_NROT": -9.393245, "dic_WORD_NTOR": -9.393245, "dic_WORD_OR": -9.393245, "dic_WORD_OVER": -8.700098, "dic_WORD_O_APPEND": -9.393245, "dic_WORD_O_CREAT": -9.393245, "dic_WORD_O_EXCL": -9.393245, "dic_WORD_O_NONBLOCK": -9.393245, "dic_WORD_O_RDONLY": -9.393245, "dic_WORD_O_RDWR": -9.393245, "dic_WORD_O_TRUNC": -9.393245, "dic_WORD_O_WRONLY": -9.393245, "dic_WORD_PARSENAME": -9.393245, "dic_WORD_PICK": -9.393245, "dic_WORD_POSTPONE": -9.393245, "dic_WORD_QDUP": -9.393245, "dic_WORD_RBRAC": -9.393245, "dic_WORD_RDROP": -8.700098, "dic_WORD_READCHAR": -9.393245, "dic_WORD_READLINE": -9.393245, "dic_WORD_REFILL": -9.393245, "dic_WORD_RFETCH": -8.700098, "dic_WORD_ROT": -8.700098, "dic_WORD_RSHIFT": -9.393245, "dic_WORD_RSPFETCH": -9.393245, "dic_WORD_RSPSTORE": -9.393245, "dic_WORD_RSTORE": -9.393245, "dic_WORD_RZ": -9.393245, "dic_WORD_SEMICOLON": -9.393245, "dic_WORD_SLITS": -9.393245, "dic_WORD_SMDIVREM": -9.393245, "dic_WORD_SOURCE": -9.393245, "dic_WORD_SOURCEFD": -9.393245, "dic_WORD_SSTRING": -9.393245, "dic_WORD_STARSMOD": -9.393245, "dic_WORD_STATE": -9.393245, "dic_WORD_STOD": -9.393245, "dic_WORD_STORE": -8.700098, "dic_WORD_STOREBYTE": -9.393245, "dic_WORD_STORESHORT": -9.393245, "dic_WORD_SUB": -9.393245, "dic_WORD_SUBSTORE": -9.393245, "dic_WORD_SWAP": -8.700098, "dic_WORD_SYSCALL": -9.393245, "dic_WORD_SYS_CLOSE": -9.393245, "dic_WORD_SYS_EXIT": -9.393245, "dic_WORD_SYS_FSTAT": -9.393245, "dic_WORD_SYS_FSYNC": -9.393245, "dic_WORD_SYS_FTRUNCATE": -9.393245, "dic_WORD_SYS_LSEEK": -9.393245, "dic_WORD_SYS_OPEN": -9.393245, "dic_WORD_SYS_READ": -9.393245, "dic_WORD_SYS_RENAME": -9.393245, "dic_WORD_SYS_STAT": -9.393245, "dic_WORD_SYS_UNLINK": -9.393245, "dic_WORD_SYS_WRITE": -9.393245, "dic_WORD_SZ": -9.393245, "dic_WORD_TABSTOSPACES": -9.393245, "dic_WORD_TCFA": -9.393245, "dic_WORD_TEST": -9.393245, "dic_WORD_TICKS": -9.393245, "dic_WORD_TOIN": -9.393245, "dic_WORD_TONUMBER": -9.393245, "dic_WORD_TOR": -8.700098, "dic_WORD_TOSNUMBER": -9.393245, "dic_WORD_TRAILING": -9.393245, "dic_WORD_TUCK": -8.700098, "dic_WORD_TWODIV": -9.393245, "dic_WORD_TWOMUL": -9.393245, "dic_WORD_TYPE": -9.393245, "dic_WORD_TYPE_FD": -9.393245, "dic_WORD_UDIVMOD": -9.393245, "dic_WORD_UGT": -9.393245, "dic_WORD_UGTEQ": -9.393245, "dic_WORD_ULT": -9.393245, "dic_WORD_ULTEQ": -9.393245, "dic_WORD_UMDIVMOD": -9.393245, "dic_WORD_UMULSTAR": -9.393245, "dic_WORD_UNUSED": -9.393245, "dic_WORD_VERSION": -9.393245, "dic_WORD_WORDBUF": -9.393245, "dic_WORD_WORDNAME": -9.393245, "dic_WORD_XOR": -9.393245, "dic_WORD_XTSKIP": -9.393245, "dic_WORD_ZBRANCH": -9.393245, "dic_WORD_ZEQ": -9.393245, "dic_WORD_ZGT": -9.393245, "dic_WORD_ZGTEQ": -9.393245, "dic_WORD_ZLT": -9.393245, "dic_WORD_ZLTEQ": -9.393245, "dic_WORD_ZNE": -9.393245, "dic_WORD__F_HIDDEN": -9.393245, "dic_WORD__F_IMMED": -9.393245, "dic_WORD__F_LENMASK": -9.393245, "dic_WORD__H_NAME": -9.393245, "dic_WORD__H_NSIZE": -9.393245, "dic_WORD__XT_BODY": -9.393245, "dic_WORD__XT_COMPILE": -9.393245, "dic_WORD__XT_LENGTH": -9.393245, "dic_WORD__XT_SIZE": -9.393245, "dictionary": -7.601486, "dictionary.": -9.393245, "dictionary_end": -8.700098, "dictionary_start": -8.294633, "dint": -9.393245, "directive": -9.393245, "discardable": -9.393245, "display_bytes_count": -8.700098, "display_character": -9.393245, "display_number": -7.783807, "display_string": -7.447335, "display_user_messages": -9.393245, "displayed_count": -9.393245, "div": -7.783807, "dl": -8.294633, "doesn": -9.393245, "double": -8.700098, "down": -9.393245, "ds": -9.393245, "dw": -6.754188, "dwDispPos": -7.601486, "dx": -9.393245, "e": -9.393245, "eax": -4.228459, "ebp": -5.332802, "ebx": -3.686135, "ecx": -5.062512, "edge": -9.393245, "edi": -5.218858, "edx": -5.049440, "eint": -9.393245, "eip": -9.393245, "elif": -8.006951, "elifctx": -9.393245, "else": -6.754188, "emit_scratch": -9.393245, "end": -7.090660, "endif": -5.992048, "endm": -6.174369, "endmacro": -6.995350, "ends": -9.393245, "entire": -9.393245, "entry": -8.700098, "eor": -9.393245, "errmsg": -9.393245, "errmsgend": -9.393245, "errmsgnl": -9.393245, "error": -8.294633, "es": -9.393245, "esi": -5.564604, "esp": -6.135149, "etc.": -9.393245, "except": -8.700098, "executable": -9.393245, "executed": -9.393245, "executing": -8.700098, "exit_program": -8.700098, "expands": -9.393245, "extra": -9.393245, "f": -9.393245, "falling": -9.393245, "fd": -8.294633, "fetch": -9.393245, "few": -9.393245, "field": -8.006951, "file": -9.393245, "find_command_start": -8.700098, "find_param": -7.447335, "find_symbols_file_name": -8.700098, "fixups": -9.393245, "flag": -7.783807, "flags": -8.700098, "flags/len": -8.700098, "flags/modes.": -9.393245, "flat": -9.393245, "flow": -9.393245, "follows": -9.393245, "foo": -9.393245, "foo_count": -9.393245, "foo_h": -9.393245, "foo_l": -9.393245, "for": -7.601486, "for_loop": -7.313804, "for_loop16": -9.393245, "format": -8.700098, "formatter": -9.393245, "forth": -9.393245, "forth.nasm": -9.393245, "forth.o": -9.393245, "forth_end": -8.700098, "forth_start": -8.294633, "free": -9.393245, "from": -7.196021, "function": -9.393245, "functions": -9.393245, "g": -9.393245, "ge": -8.700098, "get": -8.294633, "get_option_digit": -8.700098, "get_option_value": -8.294633, "get_output_file": -8.700098, "get_params": -8.700098, "global": -9.393245, "go": -9.393245, "gs": -8.294633, "h": -6.025949, "hash": -8.294633, "hash_buckets": -8.700098, "help": -9.393245, "here.": -9.393245, "high": -8.294633, "i_jmp": -8.294633, "i_ret": -8.294633, "idiv": -7.313804, "if": -5.896738, "ifctx": -8.700098, "ifend": -8.700098, "ifnot": -8.294633, "immediate": -8.294633, "import": -9.393245, "imul": -7.601486, "in": -6.828296, "inc": -7.090660, "include": -6.685195, "incw": -9.393245, "information": -8.700098, "init": -9.393245, "init_cpu_regs": -9.393245, "init_memory": -9.393245, "initial": -9.393245, "input": -7.783807, "input_file": -8.006951, "insensative": -9.393245, "instruction": -9.393245, "int": -8.294633, "intep_name_buf": -9.393245, "interface": -9.393245, "interpret": -9.393245, "interpreter": -8.700098, "into": -7.783807, "invalid_option_value": -7.783807, "inx": -8.700098, "inxy": -9.393245, "iny": -8.700098, "is": -9.393245, "it": -7.783807, "it.": -9.393245, "its": -9.393245, "j": -8.294633, "ja": -8.294633, "jae": -9.393245, "jc": -8.294633, "je": -6.174369, "jmp": -6.025949, "jne": -8.294633, "jnz": -9.393245, "jo": -9.393245, "jsr": -8.294633, "jump": -9.393245, "just": -9.393245, "jz": -6.397513, "kernel_name": -8.700098, "kernel_table": -8.700098, "key": -9.393245, "keyboard": -9.393245, "l": -8.294633, "last": -8.700098, "last_displayed": -9.393245, "lastcall": -8.700098, "latest": -9.393245, "layed": -9.393245, "ld": -9.393245, "lda": -6.560032, "ldx": -8.006951, "ldxy": -9.393245, "ldy": -8.294633, "le": -9.393245, "lea": -7.313804, "len": -8.294633, "length": -7.601486, "like": -9.393245, "line": -9.393245, "link": -8.294633, "list": -8.700098, "load": -8.294633, "lodsb": -6.685195, "lodsd": -9.393245, "long": -8.006951, "loop": -7.601486, "loop_exit": -8.006951, "loop_n_times": -8.700098, "loop_start": -8.006951, "loopend": -8.700098, "loopstart": -8.294633, "low": -9.393245, "lower": -8.700098, "mS": -9.393245, "macho": -9.393245, "macro": -5.809726, "macros": -8.294633, "make": -9.393245, "mask": -9.393245, "max": -9.393245, "memory": -9.393245, "memory.": -9.393245, "memory_end": -9.393245, "memory_option": -8.006951, "memory_setting": -8.294633, "memory_start": -9.393245, "message": -9.393245, "might": -9.393245, "mixed": -9.393245, "modified": -9.393245, "most": -9.393245, "mov": -3.640672, "move": -8.700098, "movsb": -8.006951, "movsd": -8.700098, "movw": -9.393245, "movzx": -6.174369, "mprotect": -9.393245, "mul": -8.700098, "n": -7.313804, "name": -8.700098, "nasm": -9.393245, "nd": -9.393245, "near": -8.700098, "neg": -6.097408, "newword": -9.393245, "next": -9.393245, "non": -9.393245, "nop": -9.393245, "not": -7.447335, "num": -9.393245, "number.": -9.393245, "numbers.": -9.393245, "numeric": -9.393245, "nv_res": -9.393245, "nz": -7.783807, "o": -9.393245, "octal": -9.393245, "of": -6.257751, "offset.": -7.601486, "omitted": -9.393245, "on": -7.601486, "one": -9.393245, "onto": -9.393245, "operand": -9.393245, "operations": -9.393245, "option_param": -8.700098, "option_value_ok": -8.006951, "options": -9.393245, "or": -6.620656, "ordering": -8.700098, "output_file": -8.294633, "over": -9.393245, "overwrite": -8.700098, "padding": -9.393245, "pages": -8.294633, "param": -8.700098, "param_end": -7.601486, "parameter": -9.393245, "params": -8.700098, "parser": -9.393245, "part": -9.393245, "passes_limit": -8.700098, "passes_option": -8.006951, "pha": -7.783807, "pla": -7.783807, "places": -9.393245, "point": -9.393245, "pointer": -9.393245, "pointer.": -9.393245, "pop": -6.215191, "positions": -9.393245, "precision": -7.783807, "preprocessor": -9.393245, "printf": -9.393245, "printing": -9.393245, "process_param": -8.294633, "pszInfo": -9.393245, "push": -5.959258, "q": -9.393245, "r": -4.330650, "rb": -8.006951, "rcl": -9.393245, "rcr": -9.393245, "rd": -9.393245, "rdtsc": -9.393245, "read": -8.700098, "read/write": -9.393245, "read/write/execute": -9.393245, "readable": -8.006951, "reading": -9.393245, "readline_l": -7.090660, "real": -9.393245, "reasonable": -9.393245, "recently": -9.393245, "reg": -9.393245, "register": -9.393245, "registers": -9.393245, "rep": -7.196021, "repeat": -8.294633, "repl": -9.393245, "reserved.": -9.393245, "reserves": -9.393245, "result": -9.393245, "result.": -9.393245, "resulting": -9.393245, "ret": -4.416511, "return": -6.754188, "returns.": -8.700098, "rights": -9.393245, "room": -9.393245, "routine": -6.754188, "run": -9.393245, "runs": -9.393245, "rva": -6.620656, "s": -8.700098, "sar": -8.294633, "save": -8.700098, "saved": -9.393245, "saving": -9.393245, "sbb": -7.313804, "scratch": -9.393245, "sec": -9.393245, "section": -7.783807, "seg_data": -7.783807, "seg_res": -7.783807, "sei": -9.393245, "set": -8.006951, "seta": -9.393245, "setae": -9.393245, "setb": -8.294633, "setbe": -9.393245, "sete": -9.393245, "setg": -8.700098, "setge": -8.700098, "setl": -8.006951, "setle": -8.700098, "setne": -9.393245, "setnz": -8.294633, "sets": -8.700098, "setw": -9.393245, "setz": -8.294633, "shl": -8.006951, "shr": -7.601486, "single": -8.700098, "size": -9.393245, "size.": -9.393245, "sizes": -9.393245, "skip_name": -8.700098, "skip_quoted_name": -8.294633, "some": -9.393245, "source": -9.393245, "sp_res": -9.393245, "space": -9.393245, "split_words": -8.700098, "sta": -6.754188, "stack": -6.302203, "stack.": -8.700098, "stacks": -9.393245, "start": -6.828296, "start_time": -8.294633, "state": -9.393245, "static": -8.700098, "stc": -8.700098, "std": -8.700098, "stdin": -9.393245, "step": -6.754188, "store": -9.393245, "stosb": -7.313804, "strcmpi": -9.393245, "strcmpi_l": -8.700098, "strcpyi": -9.393245, "strcpyi_l": -8.700098, "strhashi": -8.700098, "strhashi_l": -8.700098, "strict": -8.700098, "string": -9.393245, "string_param": -8.294633, "string_param_end": -8.700098, "strlen": -9.393245, "stx": -9.393245, "sub": -6.257751, "subaf": -9.393245, "sycall": -9.393245, "symbols_file": -8.700098, "symbols_option": -8.294633, "syscall": -8.294633, "syscallret": -9.393245, "syscalls.": -9.393245, "szReturn": -9.393245, "t": -9.393245, "table": -9.393245, "tables": -9.393245, "takes": -9.393245, "tax": -8.700098, "tay": -8.700098, "temp": -9.393245, "terminal": -9.393245, "test": -6.397513, "the": -6.348723, "there.": -9.393245, "this": -8.006951, "tib_buffer": -8.294633, "tick": -9.393245, "till": -8.700098, "time.": -8.700098, "times": -7.783807, "times.": -9.393245, "to": -6.348723, "to_lower": -7.783807, "tonumber_l": -8.294633, "top": -8.006951, "triggered": -9.393245, "txs": -9.393245, "tya": -8.700098, "ud": -8.700098, "unnecessary": -9.393245, "until": -8.700098, "up": -9.393245, "use": -8.700098, "used": -9.393245, "user": -8.700098, "uses": -8.700098, "uses.": -9.393245, "value": -7.313804, "value.": -8.294633, "values": -9.393245, "var_": -8.006951, "var_WORD_CHARBUF": -8.294633, "var_WORD_DP": -8.294633, "var_WORD_LATEST": -9.393245, "var_WORD_RZ": -9.393245, "var_WORD_SZ": -8.700098, "variables": -9.393245, "various": -8.700098, "vars": -9.393245, "version": -8.700098, "we": -8.700098, "where": -8.700098, "will": -9.393245, "with": -8.006951, "word": -6.908338, "word.": -9.393245, "word_buf": -8.700098, "words": -6.908338, "words.": -9.393245, "writeable": -8.700098, "written": -9.393245, "written_size": -9.393245, "xchg": -9.393245, "xor": -6.685195, "xt": -7.601486, "z": -8.006951, "zero": -9.393245, "zeropage": -9.393245, "zp_byte": -9.393245, "zp_res": -8.700098, "{": -6.995350, "|": -8.700098, "||": -9.393245, "}": -6.995350, "~": -9.393245, "┃": -8.700098, "┓": -9.393245, "┛": -9.393245, "┣": -9.393245, "一": -9.393245, "为": -9.393245, "值": -9.393245, "减": -9.393245, "出": -9.393245, "函": -9.393245, "判": -9.393245, "动": -9.393245, "吗": -9.393245, "器": -8.294633, "回": -8.294633, "字": -8.294633, "底": -8.700098, "循": -9.393245, "数": -8.006951, "断": -9.393245, "时": -9.393245, "是": -9.393245, "束": -7.601486, "灰": -9.393245, "环": -9.393245, "白": -9.393245, "移": -9.393245, "结": -7.601486, "节": -9.393245, "计": -8.294633, "跳": -9.393245, "车": -9.393245, "返": -8.700098, "逐": -9.393245, "零": -9.393245, "黑": -8.700098, ",": -9.393245, }, "AutoHotkey": map[string]float64{ "!": -1.945910, ",": -1.252763, "Hello": -1.945910, "MsgBox": -1.945910, "World": -1.945910, "`": -1.945910, }, "Awk": map[string]float64{ "!": -5.783825, "#": -5.783825, "$": -2.200306, "(": -3.144768, ")": -3.144768, "-": -4.685213, "/": -4.685213, "/Average/": -5.783825, "/all/": -5.783825, "/bin/awk": -5.783825, "/eth": -5.783825, "/proc": -5.783825, ";": -2.046156, "=": -2.648331, ">": -2.382628, "BEGIN": -5.783825, "END": -5.783825, "FILENAME": -2.487988, "SHEBANG#!awk": -5.783825, "[": -5.783825, "]": -5.783825, "cswch": -5.783825, "else": -4.397531, "f": -5.783825, "if": -3.144768, "kbmemfree": -5.783825, "last": -3.298919, "n": -3.704384, "network_max_bandwidth_in_byte": -4.685213, "network_max_packet_per_second": -4.685213, "next": -5.783825, "print": -2.487988, "printf": -5.783825, "totsck/": -5.783825, "tps": -5.783825, "{": -2.950612, "|": -4.397531, "}": -2.950612, "~": -4.174387, }, "BitBake": map[string]float64{ "$": -2.926739, "(": -4.025352, ")": -4.025352, "-": -2.926739, ".inc": -4.025352, "/syncqt": -4.025352, "=": -1.945910, "D": -4.025352, "LIBAV_EXTRA_CONFIGURE_COMMON_ARG": -4.025352, "LIC_FILES_CHKSUM": -4.025352, "OE_QMAKE_PATH_QT_BINS": -4.025352, "PN": -4.025352, "QT_MODULE_BRANCH": -4.025352, "S": -4.025352, "SRCREV": -4.025352, "SRC_URI": -2.926739, "[": -3.332205, "]": -3.332205, "do_install_append": -4.025352, "git.inc": -4.025352, "gstreamer": -4.025352, "include": -4.025352, "libav.inc": -4.025352, "ln": -4.025352, "md": -4.025352, "qt": -4.025352, "require": -3.332205, "sf": -4.025352, "sha": -4.025352, "sum": -3.332205, "syncqt.pl": -4.025352, "{": -2.639057, "}": -2.639057, }, "Blade": map[string]float64{ "!": -2.602690, "$": -2.602690, "(": -2.197225, ")": -2.197225, ",": -3.988984, "<!DOCTYPE>": -3.988984, "</body>": -3.988984, "</head>": -3.988984, "</html>": -3.988984, "</li>": -3.988984, "</title>": -3.988984, "</ul>": -3.988984, "<body>": -3.988984, "<head>": -3.988984, "<html>": -3.988984, "<li>": -3.988984, "<title>": -3.988984, "<ul>": -3.988984, ">": -3.988984, "@endforeach": -3.988984, "@foreach": -3.988984, "@include": -3.988984, "@stack": -3.295837, "@yield": -3.295837, "as": -3.988984, "bar": -3.295837, "foo": -3.988984, "html": -3.988984, "raw_content": -3.988984, "{": -2.890372, "}": -2.890372, }, "BlitzBasic": map[string]float64{ "#": -5.270432, "#A#": -7.909489, "#B": -7.909489, "#BD#C": -7.909489, "#CC": -7.909489, "#E": -7.909489, "#EF#F": -7.909489, "#F": -7.909489, "$": -5.606904, "%": -6.117730, "'": -7.909489, "(": -3.081176, ")": -3.073208, "*": -7.216342, "+": -5.511594, ",": -3.398630, "-": -4.731436, ".label": -7.909489, ":": -5.344540, ";": -3.866438, "<": -5.019118, "=": -2.257000, ">": -4.913757, "A#": -7.216342, "Abs": -7.909489, "And": -5.830048, "Append": -7.909489, "Attach": -7.909489, "B#": -7.216342, "B#A": -7.909489, "BankSize": -7.909489, "Before": -6.810877, "Beyond": -7.909489, "Bin": -6.523195, "C#": -7.909489, "C#Blitz": -6.810877, "Call": -7.909489, "ClearList": -7.216342, "CopyList.LList": -7.909489, "Count": -7.909489, "Create": -6.523195, "CreateBank": -6.300052, "CreateList": -7.216342, "CreateList.LList": -7.909489, "D": -6.810877, "D#": -7.909489, "Data": -7.909489, "Delete": -6.117730, "Disconnect": -7.909489, "Double": -7.216342, "DoubleAdd": -7.909489, "DoubleDiv": -7.909489, "DoubleGT": -7.909489, "DoubleLT": -7.909489, "DoubleMul": -7.909489, "DoubleOut": -7.909489, "DoubleSub": -7.909489, "DoubleToFloat#": -7.909489, "Double_CBank_": -7.909489, "E#": -7.909489, "EachIn": -6.300052, "Editor": -6.810877, "Else": -5.963579, "ElseIf": -7.909489, "End": -3.849046, "EndIf": -5.963579, "Exit": -7.909489, "F#": -7.216342, "F#E": -7.909489, "FF": -7.216342, "FToI": -7.216342, "False": -6.810877, "Field": -5.606904, "First": -7.909489, "FloatToDouble": -7.909489, "FloatToHalf": -6.810877, "For": -6.117730, "Free": -7.909489, "FreeList": -7.909489, "Function": -3.294369, "Get": -7.909489, "GetIterator": -6.810877, "Global": -7.216342, "Half": -7.909489, "HalfAdd": -7.909489, "HalfDiv": -7.909489, "HalfGT": -7.909489, "HalfLT": -7.909489, "HalfMul": -7.909489, "HalfSub": -7.909489, "HalfToFloat": -7.909489, "HalfToFloat#": -7.909489, "Half_CBank_": -5.344540, "Handle": -7.216342, "Hex": -7.216342, "IDEal": -6.810877, "If": -4.690614, "Insert": -6.810877, "InsertAfterNode.ListNode": -7.909489, "InsertBeforeNode.ListNode": -7.909489, "IntToDouble": -7.909489, "Iterator": -7.216342, "IteratorBreak": -7.909489, "IteratorRemove": -7.909489, "LList": -6.810877, "Last": -7.909489, "ListAddFirst.ListNode": -7.909489, "ListAddLast": -7.216342, "ListAddLast.ListNode": -7.909489, "ListContains": -7.909489, "ListFindNode": -7.216342, "ListFindNode.ListNode": -7.909489, "ListFirst": -7.909489, "ListFromBank.LList": -7.909489, "ListLast": -7.909489, "ListLength": -7.216342, "ListNode": -5.830048, "ListNodeAtIndex": -6.810877, "ListNodeAtIndex.ListNode": -7.909489, "ListRemove": -7.909489, "ListRemoveFirst": -7.909489, "ListRemoveLast": -7.909489, "ListToBank": -7.909489, "Local": -4.383129, "MakeSum": -7.216342, "MilliSecs": -6.523195, "MusicianKool": -6.810877, "Negative": -7.909489, "New": -5.511594, "Next": -5.963579, "No": -7.909489, "Null": -5.201439, "Obj": -5.424583, "Object.Sum": -7.909489, "Or": -6.523195, "Parameters": -6.810877, "PeekFloat": -7.909489, "PeekInt": -6.523195, "PokeFloat": -6.810877, "PokeInt": -7.216342, "Print": -5.344540, "Read": -7.909489, "Remove": -5.963579, "RemoveListNode": -6.117730, "RemoveNodeAtIndex": -7.909489, "Replace": -7.909489, "ReplaceValueAtIndex": -7.909489, "Restore": -7.909489, "Retrieve": -7.216342, "Return": -4.325971, "Reverse": -7.909489, "ReverseList": -7.909489, "Search": -7.909489, "SefToDouble": -7.909489, "Sgn": -7.909489, "Shl": -5.963579, "Shr": -6.810877, "Step": -7.216342, "Still": -7.909489, "Sum": -5.606904, "Swap": -7.909489, "SwapLists": -7.909489, "Then": -5.019118, "These": -7.909489, "This": -7.909489, "To": -6.117730, "True": -6.523195, "Type": -5.830048, "Use": -7.909489, "Value": -4.298572, "ValueAtIndex": -7.909489, "WaitKey": -7.216342, "Wend": -6.117730, "While": -5.963579, "[": -7.216342, "\\": -2.689134, "]": -7.216342, "_": -7.216342, "a": -4.080848, "a.Sum": -7.909489, "a_": -7.216342, "added": -7.216342, "aft": -5.963579, "aft.ListNode": -7.909489, "after": -7.909489, "all": -6.810877, "an": -6.523195, "and": -5.712265, "any": -7.909489, "anything": -7.909489, "argument": -7.909489, "arithmetic": -7.216342, "as": -7.216342, "at": -6.300052, "available": -7.909489, "b": -5.963579, "backward": -7.909489, "backwards": -7.216342, "bank": -5.830048, "be": -7.909489, "bef": -5.963579, "bef.ListNode": -7.909489, "before": -7.216342, "bit": -7.216342, "bk": -6.810877, "breaking": -7.909489, "but": -7.909489, "by": -6.810877, "c": -5.963579, "caps": -7.909489, "class": -7.909489, "cn_": -5.424583, "cn_.ListNode": -7.909489, "cni_": -5.830048, "concept": -7.909489, "container": -7.909489, "containing": -6.810877, "contains": -7.909489, "contents": -7.909489, "count": -7.909489, "create": -7.909489, "currently": -7.909489, "d": -7.909489, "disconnect": -7.909489, "does": -7.909489, "e": -6.523195, "element": -6.523195, "elements": -6.523195, "elems": -6.523195, "end": -6.300052, "especial": -7.909489, "exponent": -4.818447, "f": -6.810877, "f#": -6.810877, "fBits": -5.830048, "fast": -7.216342, "ff": -7.909489, "first": -6.300052, "fixes": -7.909489, "foo": -7.909489, "for": -6.810877, "fraction": -5.712265, "free": -7.909489, "freely": -7.909489, "from": -5.201439, "function": -7.909489, "given": -5.963579, "h": -6.523195, "has": -7.909489, "having": -7.909489, "head_": -4.354141, "head_.ListNode": -7.909489, "i": -4.017669, "i.Iterator": -6.117730, "if": -7.216342, "in": -6.523195, "index": -5.344540, "into": -7.216342, "intvalues": -7.909489, "invalid": -7.909489, "isActive": -6.523195, "issue": -7.909489, "ist": -7.216342, "istNode": -7.216342, "it": -7.909489, "items": -7.909489, "iterate": -7.216342, "iterator": -6.523195, "its": -7.216342, "l": -3.366195, "l.LList": -4.913757, "l_": -5.963579, "l_.LList": -7.909489, "label": -7.909489, "last": -7.216342, "less": -7.909489, "library": -7.216342, "linked": -7.216342, "list": -4.443754, "ln": -7.216342, "ln.LList": -7.909489, "lo": -7.909489, "lo.LList": -7.909489, "loop": -7.216342, "make": -7.909489, "means": -7.909489, "meh": -7.909489, "members": -7.909489, "moment": -7.909489, "more": -7.909489, "most": -7.909489, "n": -3.704797, "n.ListNode": -5.424583, "negative": -7.216342, "new": -6.523195, "node": -5.830048, "not": -6.523195, "number": -7.909489, "nx": -7.909489, "nx.ListNode": -7.909489, "nx_": -4.412982, "nx_.ListNode": -7.909489, "object": -7.216342, "objects": -7.909489, "occurence": -7.909489, "of": -5.136901, "one": -7.909489, "or": -6.523195, "order": -7.909489, "out": -7.909489, "over": -7.909489, "p": -5.963579, "pointed": -7.909489, "position": -6.523195, "precision": -7.216342, "programs": -7.909489, "pv_": -4.613653, "pv_.ListNode": -7.909489, "r": -5.424583, "reached": -7.909489, "reason": -7.909489, "result": -6.523195, "retrieve": -7.909489, "return": -5.963579, "return_": -7.216342, "s": -5.424583, "s.Sum": -7.216342, "safe": -7.909489, "same": -7.909489, "signBit": -6.117730, "size": -6.523195, "slow": -6.810877, "specified": -7.216342, "start": -5.344540, "t": -7.909489, "tail_": -4.383129, "tail_.ListNode": -7.909489, "temp": -7.909489, "temp.ListNode": -7.909489, "tempH": -7.909489, "tempH.ListNode": -7.909489, "tempT": -7.909489, "tempT.ListNode": -7.909489, "thanks": -7.909489, "that": -7.909489, "the": -3.958246, "then": -7.909489, "there": -7.909489, "this": -7.216342, "tmp": -6.523195, "tmp.ListNode": -7.909489, "to": -5.511594, "tval": -6.810877, "two": -7.909489, "use": -7.909489, "val": -6.117730, "valid": -7.216342, "value": -5.136901, "values": -6.523195, "wasn": -7.909489, "why": -7.909489, "with": -6.810877, "won": -7.909489, "~": -5.606904, }, "BlitzMax": map[string]float64{ "(": -2.261763, ")": -2.261763, ":": -2.484907, "=": -3.871201, "?": -2.772589, "A": -3.871201, "Brl.StandardIO": -3.871201, "End": -3.178054, "Field": -3.871201, "Framework": -3.871201, "Function": -3.871201, "Global": -3.871201, "Linux": -3.871201, "Method": -3.871201, "SuperStrict": -3.871201, "TMyType": -2.772589, "Type": -3.178054, "Win": -3.871201, "do": -3.871201, "int": -2.772589, "my": -3.871201, "my.A": -3.178054, "my.B": -3.178054, "new": -3.871201, "nothing": -3.871201, "param": -3.871201, "property": -3.871201, }, "Bluespec": map[string]float64{ "!": -5.128418, "$": -5.416100, "&&": -5.821566, "(": -2.445686, ")": -2.412069, "*": -7.207860, "+": -5.598422, ",": -3.949763, ".changed": -7.207860, "0": -5.010635, "1": -5.598422, "10": -6.514713, "11": -6.514713, "12": -7.207860, "12_000": -7.207860, "16": -7.207860, "2": -6.514713, "3": -6.514713, "4": -6.514713, "5": -6.514713, "5000": -7.207860, "6": -6.514713, "6500": -7.207860, "7": -6.514713, "8": -6.514713, "9": -6.514713, ":": -5.010635, ";": -2.428736, "<": -4.809965, "<->": -6.514713, "=": -2.730523, ">": -6.514713, "Action": -4.212128, "AllRed": -5.821566, "AmberE": -5.598422, "AmberNS": -5.598422, "AmberPed": -6.109248, "AmberW": -5.598422, "Bit": -7.207860, "Bits": -7.207860, "Bool": -3.742124, "CtrSize": -6.109248, "E": -6.109248, "Eq": -7.207860, "False": -5.010635, "GreenE": -5.128418, "GreenNS": -5.010635, "GreenPed": -5.821566, "GreenW": -5.128418, "Integer": -6.109248, "Lamp": -6.109248, "NS": -6.109248, "Ped": -6.109248, "Reg": -4.642911, "Reg#": -6.109248, "Rules": -5.598422, "String": -7.207860, "TL": -5.416100, "TLstates": -4.722953, "TbTL": -7.207860, "Time": -5.261950, "Time32": -6.514713, "True": -5.416100, "UInt#": -6.514713, "W": -6.109248, "[": -4.722953, "]": -4.722953, "action": -6.109248, "addRules": -7.207860, "allRedDelay": -6.514713, "amber": -5.821566, "amberDelay": -6.514713, "amber_state": -6.514713, "any_changes": -6.514713, "b": -4.722953, "carE": -6.514713, "carN": -5.821566, "carS": -6.514713, "carW": -6.514713, "car_is_present": -6.514713, "car_present": -5.821566, "car_present_E": -5.821566, "car_present_N": -6.109248, "car_present_NS": -6.109248, "car_present_S": -6.109248, "car_present_W": -5.821566, "case": -6.514713, "changed": -6.109248, "clocks_per_sec": -6.514713, "ctr": -5.128418, "cycle_ctr": -5.416100, "dec_cycle_ctr": -7.207860, "delay": -6.514713, "deriving": -7.207860, "detect_cars": -7.207860, "display": -6.514713, "do_it": -5.821566, "do_offs": -6.514713, "do_ons": -6.514713, "do_reset": -6.514713, "dumpvars": -7.207860, "dut": -4.263421, "else": -5.821566, "endaction": -6.109248, "endcase": -6.514713, "endfunction": -5.261950, "endinterface": -6.514713, "endmethod": -4.809965, "endmodule": -5.821566, "endpackage": -6.514713, "endrule": -4.905275, "endrules": -5.821566, "enum": -7.207860, "ewGreenDelay": -6.109248, "f": -6.514713, "finish": -7.207860, "for": -6.109248, "fromAllRed": -6.514713, "from_amber": -7.207860, "from_green": -7.207860, "function": -4.905275, "go": -7.207860, "green": -5.821566, "green_seq": -5.261950, "green_state": -6.514713, "high_priority_rules": -5.821566, "hprs": -4.905275, "i": -4.499810, "if": -4.809965, "import": -7.207860, "inc_sec": -7.207860, "interface": -6.514713, "l": -6.109248, "l.reset": -7.207860, "l.show_offs": -7.207860, "l.show_ons": -7.207860, "lamp": -5.010635, "lampAmberE": -6.109248, "lampAmberNS": -6.109248, "lampAmberPed": -6.109248, "lampAmberW": -6.109248, "lampGreenE": -6.109248, "lampGreenNS": -6.109248, "lampGreenPed": -6.109248, "lampGreenW": -6.109248, "lampRedE": -6.109248, "lampRedNS": -6.109248, "lampRedPed": -6.109248, "lampRedW": -6.109248, "lamps": -4.499810, "let": -6.514713, "low_priority_rule": -6.514713, "make_from_amber_rule": -5.598422, "make_from_green_rule": -5.598422, "method": -3.379218, "mkLamp": -4.722953, "mkLamp#": -7.207860, "mkReg": -4.499810, "mkTest": -6.514713, "module": -5.821566, "name": -5.598422, "next_green": -5.010635, "next_state": -5.128418, "ng": -6.514713, "noAction": -7.207860, "ns": -5.821566, "nsGreenDelay": -6.514713, "off": -7.207860, "on": -7.207860, "package": -6.514713, "pedAmberDelay": -7.207860, "pedGreenDelay": -7.207860, "ped_button_push": -5.821566, "ped_button_pushed": -5.821566, "preempts": -7.207860, "prev": -5.010635, "rJoin": -7.207860, "red": -5.821566, "reset": -6.109248, "return": -5.010635, "rule": -4.905275, "rules": -5.821566, "secs": -5.261950, "set_car_state_E": -6.109248, "set_car_state_N": -6.109248, "set_car_state_S": -6.109248, "set_car_state_W": -6.109248, "show": -7.207860, "show_offs": -6.109248, "show_ons": -6.109248, "start": -7.207860, "state": -4.163337, "stop": -7.207860, "synthesize": -7.207860, "sysTL": -6.109248, "time": -7.207860, "typedef": -6.109248, "write": -5.821566, "x": -5.128418, "{": -7.207860, "||": -5.416100, "}": -7.207860, }, "Brainfuck": map[string]float64{ "(": -6.540068, ")": -6.540068, "*": -4.570627, "+": -1.809734, ",": -7.233215, "-": -2.440183, ".": -4.999622, "..": -7.638680, "/": -6.722389, "1": -8.331827, "13": -8.331827, "2": -8.331827, "3": -8.331827, "32": -8.331827, ":": -6.722389, ";": -6.945533, "<": -3.613328, "<+++++++++++++++.>": -8.331827, "<+++++++++>": -8.331827, "<+++++>": -7.638680, "<++++>": -8.331827, "<+>": -4.237482, "<--------->": -7.638680, "<->": -5.692770, "<-[>": -7.638680, "<-]>": -6.134602, "<.+++.------.--------.>": -8.331827, "<.>": -8.331827, "<<": -1.995001, "<[+>": -7.638680, "<[+[+[+[+[+[+[+[+[+[[-]>": -8.331827, "<[+]+>": -8.331827, "<[->": -4.866091, "<[-]+>": -8.331827, "<[-]>": -6.945533, "<[-]]>": -7.638680, "<[>": -5.692770, "<[[->": -8.331827, "<[[>": -8.331827, "<]->": -7.233215, "<]>": -4.694241, "<]]]]]]]]]]]>": -6.945533, ">": -1.145683, "Add": -8.331827, "Brian": -8.331827, "C": -8.331827, "Clear": -8.331827, "Copyright": -8.331827, "Decrease": -7.638680, "Decrement": -7.233215, "End": -6.385917, "GNU": -8.331827, "General": -8.331827, "If": -8.331827, "Increase": -8.331827, "LAYOUT": -7.233215, "License": -8.331827, "MEMORY": -7.233215, "Normal": -7.638680, "Output": -8.331827, "Public": -8.331827, "ROT": -8.331827, "Raiter": -8.331827, "Read": -7.638680, "Reduce": -8.331827, "Set": -7.233215, "Skip": -7.638680, "Special": -7.638680, "Zero": -6.722389, "[": -2.933664, "]": -3.079554, "a": -7.638680, "above": -8.331827, "add": -8.331827, "an": -8.331827, "and": -5.441455, "arbitrarily": -8.331827, "back": -7.233215, "break": -8.331827, "by": -7.638680, "case": -6.945533, "character": -6.385917, "check": -7.638680, "clear": -8.331827, "copies": -7.638680, "copy": -6.385917, "decrement": -8.331827, "difference": -8.331827, "digits": -8.331827, "display": -6.945533, "divide": -8.331827, "dividend": -5.933932, "division": -6.029242, "divisor": -5.441455, "double": -8.331827, "ed": -8.331827, "end": -8.331827, "enter": -8.331827, "examine": -8.331827, "factor": -8.331827, "first": -7.638680, "flag": -6.540068, "for": -6.722389, "former": -8.331827, "forward": -6.945533, "from": -6.945533, "get": -8.331827, "halve": -8.331827, "here": -8.331827, "if": -6.029242, "in": -8.331827, "increase": -6.945533, "increment": -7.638680, "initialize": -7.233215, "integer": -8.331827, "is": -7.233215, "it": -7.638680, "jump": -8.331827, "large": -8.331827, "larger": -8.331827, "loop": -5.073730, "main": -7.638680, "make": -7.638680, "minus": -7.638680, "move": -7.638680, "next": -8.331827, "nonnegative": -8.331827, "nonzero": -8.331827, "normalize": -8.331827, "not": -8.331827, "number": -6.385917, "of": -7.233215, "or": -7.233215, "out": -8.331827, "outer": -7.638680, "partially": -8.331827, "positive": -8.331827, "quotient": -5.336095, "read": -8.331827, "reading": -7.638680, "reduce": -8.331827, "remainder": -6.029242, "replace": -7.638680, "reuse": -8.331827, "second": -7.638680, "set": -8.331827, "skip": -6.945533, "skipped": -8.331827, "space": -8.331827, "start": -8.331827, "subtract": -7.638680, "than": -8.331827, "that": -7.638680, "the": -5.112951, "then": -7.638680, "to": -6.252385, "two": -7.638680, "under": -8.331827, "unless": -7.638680, "until": -7.638680, "up": -6.945533, "useful": -8.331827, "variable": -6.029242, "was": -6.134602, "with": -8.331827, "x": -8.331827, "zero": -5.933932, }, "Brightscript": map[string]float64{ "\"": -6.529419, "%": -4.449977, "(": -3.063683, ")": -3.095432, "**": -3.696205, "******************************************************": -5.143124, "**********************************************************": -6.529419, "************************************************************": -5.836272, "********************************************************************": -6.529419, "+": -6.529419, ",": -3.756830, "-": -3.821369, ".Title": -6.529419, "/": -3.890362, "//upload.wikimedia.org/wikipedia/commons/": -4.449977, "//upload.wikimedia.org/wikipedia/commons/thumb/": -5.143124, "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/": -5.836272, "/Dunkery_Hill.jpg/": -5.836272, "/Gold_star_on_blue.gif": -5.836272, "/Kane_George_Gurnett.jpg": -5.836272, "/Martin_Luther_King_": -5.836272, ":": -3.310543, ";": -4.226834, "<": -6.529419, "=": -3.095432, ">": -6.529419, "All": -5.430807, "App": -6.529419, "As": -5.430807, "C": -5.143124, "Channel": -6.529419, "Configure": -6.529419, "ContentMetaData": -6.529419, "Copyright": -6.529419, "CreateObject": -5.836272, "Demonstration": -6.529419, "Dream": -6.529419, "Dunkery_Hill.jpg": -5.836272, "End": -5.143124, "Flat": -4.737659, "For": -6.529419, "Function": -4.919981, "Grid": -5.836272, "HD": -4.737659, "I": -5.836272, "Inc.": -6.529419, "Landscape": -6.529419, "Logo": -6.529419, "Main": -6.529419, "Movie": -5.836272, "Netflix": -6.529419, "Object": -5.836272, "PG": -6.529419, "Perform": -6.529419, "Portrait": -6.529419, "Reserved.": -6.529419, "Return": -6.529419, "Rights": -6.529419, "Roku": -6.529419, "SD": -4.919981, "SQUARE_SHAPE.svg.png": -5.836272, "Screen": -5.836272, "Screens": -6.529419, "Set": -6.529419, "Simple": -6.529419, "Square": -6.529419, "Store": -6.529419, "StyleButtons": -5.430807, "Sub": -5.836272, "The": -6.529419, "[": -5.430807, "]": -5.143124, "_March_on_Washington.jpg": -5.836272, "_first_step.jpg": -5.836272, "a": -5.143124, "add": -6.529419, "adjustments": -6.529419, "all": -6.529419, "an": -6.529419, "and": -5.143124, "any": -6.529419, "app": -6.529419, "application": -6.529419, "are": -5.836272, "artwork": -5.836272, "as": -5.836272, "attributes": -5.836272, "attributes.": -6.529419, "back": -6.529419, "background": -6.529419, "be": -5.836272, "but": -5.836272, "buttons": -6.529419, "by": -5.836272, "c": -6.529419, "can": -5.836272, "categories": -6.529419, "categories.": -6.529419, "category": -6.529419, "category.": -6.529419, "categoryList": -5.143124, "categoryList.count": -5.836272, "character.": -6.529419, "cheat": -6.529419, "children": -6.529419, "code": -6.529419, "color": -6.529419, "colors": -6.529419, "come": -6.529419, "configurable": -6.529419, "content": -5.836272, "cran_TV_plat.svg.png": -5.836272, "cran_TV_plat.svg/": -5.836272, "create": -6.529419, "custom": -6.529419, "data": -5.836272, "day": -6.529419, "default": -6.529419, "description": -6.529419, "display": -5.836272, "do": -6.529419, "does": -6.529419, "dream": -6.529419, "dynamic": -6.529419, "dynamically": -6.529419, "e/Apollo_": -5.836272, "each": -6.529419, "else": -6.529419, "end": -5.836272, "endif": -6.529419, "example": -6.529419, "example.": -6.529419, "filter": -6.529419, "for": -4.226834, "four": -6.529419, "function": -6.529419, "get": -6.529419, "getCategoryList": -6.529419, "getGridControlButtons": -6.529419, "getShowsForCategoryItem": -6.529419, "getmessageport": -6.529419, "giant": -6.529419, "go": -6.529419, "greyscales": -6.529419, "gridscreen": -6.529419, "gridstyle": -4.583509, "have": -5.836272, "http": -3.890362, "i": -5.430807, "ideally": -6.529419, "if": -5.430807, "in": -5.430807, "individual": -6.529419, "is": -6.529419, "judged": -6.529419, "just": -5.836272, "leap": -6.529419, "list": -6.529419, "little": -6.529419, "live": -6.529419, "m.port": -5.430807, "make": -6.529419, "man": -6.529419, "mankind.": -6.529419, "msg": -5.430807, "msg.GetIndex": -5.430807, "msg.GetMessage": -6.529419, "msg.getData": -5.836272, "msg.isListItemFocused": -6.529419, "msg.isListItemSelected": -6.529419, "my": -6.529419, "nation": -6.529419, "new": -6.529419, "not": -5.836272, "nothing": -6.529419, "now": -6.529419, "objects": -6.529419, "of": -4.919981, "offsets": -6.529419, "on": -6.529419, "one": -5.430807, "overhang": -6.529419, "own": -6.529419, "passing": -6.529419, "posters": -5.430807, "preShowGridScreen": -5.836272, "print": -4.583509, "prior": -6.529419, "px": -4.737659, "retreiving": -6.529419, "return": -4.919981, "roAssociativeArray": -5.836272, "row": -5.836272, "s": -6.529419, "screen": -4.919981, "screen.": -6.529419, "screen.SetContentList": -5.836272, "screen.SetListNames": -6.529419, "screen.SetMessagePort": -6.529419, "screen.Show": -6.529419, "screen.setupLists": -6.529419, "selection": -5.430807, "set": -5.836272, "show": -6.529419, "showGridScreen": -5.836272, "shows": -6.529419, "skin": -6.529419, "slight": -6.529419, "small": -6.529419, "so": -5.836272, "specific": -6.529419, "springboard": -5.836272, "started": -6.529419, "startup/initialization": -6.529419, "static": -6.529419, "step": -6.529419, "string": -5.430807, "stuff": -6.529419, "style": -4.737659, "sufficient": -6.529419, "that": -6.529419, "the": -3.696205, "their": -5.836272, "theme": -5.430807, "theme.CounterSeparator": -6.529419, "theme.CounterTextLeft": -6.529419, "theme.CounterTextRight": -6.529419, "theme.GridScreenBackgroundColor": -6.529419, "theme.GridScreenDescriptionOffsetHD": -6.529419, "theme.GridScreenDescriptionOffsetSD": -6.529419, "theme.GridScreenFocusBorderHD": -6.529419, "theme.GridScreenFocusBorderSD": -6.529419, "theme.GridScreenListNameColor": -6.529419, "theme.GridScreenLogoHD": -6.529419, "theme.GridScreenLogoOffsetHD_X": -6.529419, "theme.GridScreenLogoOffsetHD_Y": -6.529419, "theme.GridScreenLogoOffsetSD_X": -6.529419, "theme.GridScreenLogoOffsetSD_Y": -6.529419, "theme.GridScreenLogoSD": -6.529419, "theme.GridScreenMessageColor": -6.529419, "theme.GridScreenOverhangHeightHD": -6.529419, "theme.GridScreenOverhangHeightSD": -6.529419, "theme.GridScreenRetrievingColor": -6.529419, "then": -5.430807, "these": -6.529419, "they": -6.529419, "this": -5.430807, "time": -6.529419, "to": -4.226834, "true": -6.529419, "type": -5.836272, "use": -6.529419, "used": -6.529419, "wait": -6.529419, "we": -5.430807, "where": -6.529419, "while": -5.143124, "will": -5.430807, "with": -5.836272, "work": -6.529419, "x": -3.964469, "yes": -6.529419, "you": -6.529419, "your": -6.529419, "}": -6.529419, }, "C": map[string]float64{ "!": -5.399953, "#": -10.901211, "#define": -4.097706, "#elif": -8.262153, "#else": -6.557405, "#endif": -5.476261, "#endif//include": -10.901211, "#error": -9.514916, "#if": -6.347334, "#ifdef": -7.030010, "#ifndef": -6.435303, "#include": -5.352135, "#pragma": -7.765717, "#string": -10.901211, "#undef": -9.291773, "&": -5.458793, "&&": -5.883931, "(": -2.543013, ")": -2.542310, "*": -4.653168, "**": -8.336261, "***argv": -10.208064, "***tail": -10.901211, "**/": -10.901211, "**__pyx_pyargnames": -10.208064, "**argnames": -10.901211, "**argv": -8.955301, "**array": -10.208064, "**commit_graft": -10.901211, "**commit_list_append": -10.208064, "**encoding_p": -10.901211, "**error_pointer": -10.208064, "**iter": -10.901211, "**list": -9.291773, "**msg_p": -10.208064, "**next": -10.208064, "**orig_argv": -10.901211, "**p": -10.901211, "**pathspec": -10.901211, "**pptr": -10.901211, "**references": -9.802599, "**s": -10.901211, "**stack": -10.208064, "**subject": -10.208064, "**tb": -10.901211, "**twos": -10.901211, "**type": -10.901211, "**value": -10.901211, "*PGPU_DEVICE": -10.901211, "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/": -10.901211, "*VGAPIX": -9.109451, "*X_data_ptr": -10.901211, "*X_indices_ptr": -10.901211, "*X_indptr_ptr": -10.901211, "*Y_data_ptr": -10.901211, "*__Pyx_GetItemInt_Fast": -10.901211, "*__Pyx_GetItemInt_Generic": -10.901211, "*__Pyx_GetItemInt_List_Fast": -10.901211, "*__Pyx_GetItemInt_Tuple_Fast": -10.901211, "*__Pyx_GetName": -10.901211, "*__Pyx_Import": -10.901211, "*__Pyx_ImportModule": -10.901211, "*__Pyx_ImportType": -10.901211, "*__Pyx_RefNanny": -10.901211, "*__Pyx_RefNannyImportAPI": -10.901211, "*__array_alloc": -10.208064, "*__pyx_args": -9.109451, "*__pyx_b": -10.901211, "*__pyx_builtin_NotImplementedError": -10.901211, "*__pyx_builtin_RuntimeError": -10.901211, "*__pyx_builtin_ValueError": -10.901211, "*__pyx_builtin_range": -10.901211, "*__pyx_empty_bytes": -10.901211, "*__pyx_empty_tuple": -10.901211, "*__pyx_f": -10.901211, "*__pyx_f_": -10.901211, "*__pyx_filename": -9.291773, "*__pyx_find_code_object": -10.901211, "*__pyx_int_": -10.901211, "*__pyx_k_codeobj_": -10.901211, "*__pyx_k_tuple_": -8.821769, "*__pyx_kp_s_": -9.291773, "*__pyx_kp_u_": -9.109451, "*__pyx_kwds": -9.109451, "*__pyx_m": -10.901211, "*__pyx_n_s_": -10.901211, "*__pyx_n_s__C": -10.901211, "*__pyx_n_s__NotImplementedError": -10.901211, "*__pyx_n_s__RuntimeError": -10.901211, "*__pyx_n_s__ValueError": -10.901211, "*__pyx_n_s____main__": -10.901211, "*__pyx_n_s____test__": -10.901211, "*__pyx_n_s__alpha": -10.901211, "*__pyx_n_s__any": -10.901211, "*__pyx_n_s__c": -10.901211, "*__pyx_n_s__class_weight": -10.901211, "*__pyx_n_s__count": -10.901211, "*__pyx_n_s__dataset": -10.901211, "*__pyx_n_s__dloss": -10.901211, "*__pyx_n_s__dtype": -10.901211, "*__pyx_n_s__epoch": -10.901211, "*__pyx_n_s__epsilon": -10.901211, "*__pyx_n_s__eta": -10.208064, "*__pyx_n_s__fit_intercept": -10.901211, "*__pyx_n_s__float": -10.901211, "*__pyx_n_s__i": -10.901211, "*__pyx_n_s__intercept": -10.901211, "*__pyx_n_s__intercept_decay": -10.901211, "*__pyx_n_s__is_hinge": -10.901211, "*__pyx_n_s__isinf": -10.901211, "*__pyx_n_s__isnan": -10.901211, "*__pyx_n_s__learning_rate": -10.901211, "*__pyx_n_s__loss": -10.901211, "*__pyx_n_s__n_features": -10.901211, "*__pyx_n_s__n_iter": -10.901211, "*__pyx_n_s__n_samples": -10.901211, "*__pyx_n_s__nonzero": -10.901211, "*__pyx_n_s__np": -10.901211, "*__pyx_n_s__numpy": -10.901211, "*__pyx_n_s__order": -10.901211, "*__pyx_n_s__p": -10.901211, "*__pyx_n_s__penalty_type": -10.901211, "*__pyx_n_s__plain_sgd": -10.901211, "*__pyx_n_s__power_t": -10.901211, "*__pyx_n_s__q": -10.901211, "*__pyx_n_s__q_data_ptr": -10.901211, "*__pyx_n_s__range": -10.901211, "*__pyx_n_s__rho": -10.901211, "*__pyx_n_s__sample_weight": -10.901211, "*__pyx_n_s__seed": -10.901211, "*__pyx_n_s__shape": -10.901211, "*__pyx_n_s__shuffle": -10.901211, "*__pyx_n_s__sumloss": -10.901211, "*__pyx_n_s__sys": -10.901211, "*__pyx_n_s__t": -10.901211, "*__pyx_n_s__t_start": -10.901211, "*__pyx_n_s__threshold": -10.901211, "*__pyx_n_s__time": -10.901211, "*__pyx_n_s__u": -10.901211, "*__pyx_n_s__update": -10.901211, "*__pyx_n_s__verbose": -10.901211, "*__pyx_n_s__w": -10.901211, "*__pyx_n_s__weight_neg": -10.901211, "*__pyx_n_s__weight_pos": -10.901211, "*__pyx_n_s__weights": -10.901211, "*__pyx_n_s__x_data_ptr": -10.901211, "*__pyx_n_s__x_ind_ptr": -10.901211, "*__pyx_n_s__xnnz": -10.901211, "*__pyx_n_s__y": -10.901211, "*__pyx_n_s__zeros": -10.901211, "*__pyx_pf_": -7.404703, "*__pyx_ptype_": -7.856688, "*__pyx_pw_": -9.109451, "*__pyx_r": -9.514916, "*__pyx_refnanny": -10.901211, "*__pyx_self": -10.901211, "*__pyx_t_": -8.598626, "*__pyx_v_dataset": -10.901211, "*__pyx_v_info": -10.208064, "*__pyx_v_loss": -10.901211, "*__pyx_v_seed": -10.901211, "*__pyx_v_self": -7.051063, "*__pyx_v_weights": -10.901211, "*__pyx_vtab": -10.901211, "*__pyx_vtabptr_": -9.109451, "*a": -9.802599, "*add_arg": -9.802599, "*addr": -10.901211, "*after_subject": -10.901211, "*and": -10.208064, "*arg": -10.901211, "*argc": -10.901211, "*argcp": -9.514916, "*argv": -9.109451, "*array": -9.109451, "*author": -10.208064, "*autolink": -9.514916, "*barrier": -10.901211, "*blob_type": -10.208064, "*buf": -8.598626, "*buffer": -8.416304, "*bufferSize": -10.901211, "*bufptr": -10.901211, "*byteLength": -9.291773, "*c": -9.291773, "*cache": -10.901211, "*callee": -10.208064, "*cancellable": -10.901211, "*cause": -10.901211, "*char_trigger": -10.901211, "*check_commit": -10.901211, "*class_name": -10.901211, "*cmd": -8.821769, "*code": -10.208064, "*codepoints": -9.802599, "*command": -10.901211, "*commandTable": -10.901211, "*commit": -8.598626, "*commit_buffer": -10.208064, "*commit_list_get_next": -10.901211, "*commit_list_insert": -10.901211, "*commit_list_insert_by_date": -10.901211, "*commit_type": -10.208064, "*compiled": -10.901211, "*cond": -10.208064, "*contents": -10.901211, "*context": -10.901211, "*cow_src_addr": -10.901211, "*create_window": -10.901211, "*ctx": -8.067997, "*current": -10.901211, "*custom_ext_find": -10.901211, "*custom_extension": -10.901211, "*data": -7.643114, "*dateptr": -10.901211, "*db": -10.901211, "*de": -10.901211, "*denominator": -10.901211, "*desc": -10.208064, "*destroy": -10.901211, "*destroy_window": -10.901211, "*dict": -9.514916, "*display_name": -10.901211, "*doc": -10.208064, "*dst": -10.901211, "*elem": -10.901211, "*empty_list": -10.901211, "*encoding": -10.208064, "*encodingP": -10.901211, "*end": -10.208064, "*endself": -10.208064, "*endtarget": -10.208064, "*env": -9.514916, "*envchanged": -10.901211, "*eof": -10.208064, "*eol": -10.901211, "*error": -10.901211, "*escape_chars": -10.901211, "*eval_proc": -10.901211, "*ext": -9.514916, "*extension": -10.208064, "*extensions": -10.208064, "*extra": -10.901211, "*f": -9.514916, "*false": -10.901211, "*feature_indices": -10.901211, "*feature_indices_ptr": -10.901211, "*file": -9.802599, "*file_data": -10.901211, "*file_monitor": -10.901211, "*file_name": -10.901211, "*file_type": -10.901211, "*filename": -10.208064, "*first": -10.901211, "*fmt": -10.901211, "*fn": -10.901211, "*format": -9.109451, "*format_subject": -10.901211, "*from_list": -10.901211, "*frst": -10.901211, "*funcname": -10.901211, "*function": -10.901211, "*g_functions": -10.901211, "*g_input_stream_read_completely": -10.901211, "*get_merge_bases": -10.901211, "*get_merge_bases_many": -10.901211, "*get_merge_parent": -10.901211, "*get_millis": -10.901211, "*get_octopus_merge_bases": -10.901211, "*get_shallow_commits": -10.901211, "*get_var": -10.901211, "*global_enviroment": -10.901211, "*graft": -9.802599, "*hGpu": -10.901211, "*head": -9.802599, "*heads": -10.208064, "*http_errno_description": -10.901211, "*http_errno_name": -10.901211, "*http_method_str": -10.901211, "*image_loader_stream_file": -10.901211, "*in": -10.901211, "*index": -10.901211, "*index_data_ptr": -10.901211, "*init": -10.901211, "*input_stream": -10.901211, "*instruction": -10.901211, "*internal": -10.901211, "*isInvertible": -10.208064, "*item": -8.262153, "*iter": -10.208064, "*keepLength": -10.901211, "*key": -10.208064, "*keyobj": -10.901211, "*kwds": -10.208064, "*l": -10.901211, "*let": -10.208064, "*line": -10.901211, "*line_separator": -10.901211, "*link": -10.901211, "*link_ref": -10.901211, "*list": -9.514916, "*load_images_handle_parameter_add_file": -10.901211, "*logmsg_reencode": -10.901211, "*lookupCommand": -10.901211, "*lookupCommandByCString": -10.901211, "*lookup_blob": -10.208064, "*lookup_commit": -10.208064, "*lookup_commit_graft": -10.901211, "*lookup_commit_or_die": -10.208064, "*lookup_commit_reference": -10.208064, "*lookup_commit_reference_by_name": -10.208064, "*lookup_commit_reference_gently": -10.208064, "*m": -10.901211, "*maxBarriers": -10.901211, "*maybe_add_begin": -10.901211, "*md": -10.901211, "*memory_context": -10.901211, "*message": -10.901211, "*method_strings": -10.901211, "*modname": -10.901211, "*module_name": -10.901211, "*msc": -9.802599, "*msg": -8.703986, "*nNumFormats": -10.208064, "*name": -8.262153, "*new": -10.901211, "*new_parent": -10.208064, "*next": -8.703986, "*next_event": -10.901211, "*node": -10.901211, "*o": -9.291773, "*oa": -9.802599, "*ob": -7.810168, "*obj": -8.703986, "*one": -10.901211, "*op": -10.208064, "*opaque": -10.208064, "*optimized_code": -10.208064, "*optionsP": -10.208064, "*or": -10.208064, "*out_alert": -9.802599, "*out_index": -10.208064, "*output_encoding": -10.208064, "*p": -9.802599, "*pAddress": -10.901211, "*pLastMissedUsage": -10.901211, "*pMissedFrames": -10.901211, "*pSize": -10.901211, "*parNP": -10.901211, "*params": -9.802599, "*parent": -10.901211, "*parents": -9.514916, "*parse_arg": -9.802599, "*parse_item_list": -10.901211, "*parser": -9.291773, "*patch_mode": -10.901211, "*path": -10.901211, "*pfAttribFList": -10.208064, "*pfValues": -10.208064, "*pg": -10.208064, "*phGpu": -10.901211, "*phGpuList": -10.901211, "*phys_addr": -9.802599, "*piFormats": -10.208064, "*piValues": -10.208064, "*pipe": -8.821769, "*pointer": -10.901211, "*pool": -10.901211, "*pop_commit": -10.901211, "*pop_most_recent_commit": -10.901211, "*pp": -9.514916, "*prefix": -9.802599, "*private": -10.901211, "*puBlue": -10.208064, "*puGreen": -10.208064, "*pulCounterOutputVideo": -10.901211, "*r": -8.821769, "*rad": -10.208064, "*rcbuffer": -10.901211, "*read_commit_extra_header_lines": -10.901211, "*read_commit_extra_headers": -10.901211, "*read_graft_line": -10.901211, "*reduce_heads": -10.901211, "*reencode_commit_message": -10.901211, "*ref": -10.208064, "*ref_name": -10.208064, "*reflog_info": -10.901211, "*refs": -10.901211, "*render_method": -10.901211, "*res": -10.208064, "*result": -10.901211, "*ret": -10.208064, "*retval": -10.901211, "*rev": -10.208064, "*revision": -10.901211, "*rndr": -7.810168, "*s": -8.262153, "*sample_weight_data": -10.901211, "*sb": -8.955301, "*sbc": -9.802599, "*scnd": -10.901211, "*script": -9.514916, "*scroll": -10.901211, "*second": -10.901211, "*self": -8.703986, "*setCursor": -10.901211, "*settings": -10.901211, "*sha": -8.128622, "*shape": -10.901211, "*sign_commit": -10.208064, "*signature": -10.901211, "*sleep": -10.901211, "*sp": -10.901211, "*src": -10.901211, "*ssl": -9.514916, "*stack": -8.503316, "*start": -10.901211, "*state": -9.109451, "*strdup_printf": -10.901211, "*strides": -10.901211, "*subject": -10.901211, "*suboffsets": -10.901211, "*swap_buffers": -10.901211, "*t": -10.208064, "*tail": -10.208064, "*task": -10.901211, "*tb": -10.208064, "*test_router_exception_ce": -10.901211, "*text": -10.208064, "*title": -10.901211, "*tmp": -10.208064, "*tokensN": -10.901211, "*tree": -9.802599, "*true": -10.901211, "*type": -9.514916, "*u": -10.901211, "*uMaxPixelDelay": -10.901211, "*utf": -9.109451, "*util": -10.901211, "*v": -10.901211, "*val": -10.208064, "*value": -9.291773, "*values": -10.901211, "*var": -9.514916, "*vectors": -8.821769, "*ver_major": -10.208064, "*ver_minor": -10.208064, "*ver_revision": -10.208064, "*vfs_read_callback_t": -10.901211, "*vfs_read_dir_callback_t": -10.901211, "*view": -10.208064, "*virt_addr": -9.802599, "*vmem_get_cache": -10.901211, "*vmem_get_page": -10.901211, "*vmem_get_page_phys": -10.901211, "*vmem_get_page_virt": -10.901211, "*vmem_new": -10.901211, "*vmem_new_page": -10.901211, "*vmem_rm_page_phys": -10.901211, "*vmem_rm_page_virt": -10.901211, "*vtable": -10.901211, "*w": -10.901211, "*what": -10.901211, "*word": -10.901211, "*work": -9.514916, "*x": -10.901211, "+": -4.594936, ",": -2.658191, "-": -3.940863, ".": -10.901211, "...": -7.905479, ".asize": -10.208064, ".dict": -9.514916, ".expires": -9.514916, ".imag": -9.802599, ".item": -10.208064, ".off": -10.901211, ".real": -9.802599, ".size": -9.291773, "/": -7.723157, "//#define": -10.901211, "///": -8.193161, "///Fseek": -10.901211, "///closing": -10.901211, "//void": -10.901211, "/base": -10.901211, "/size": -10.901211, "/sizeof": -10.208064, "/slots": -10.901211, "/usr/bin/tcc": -10.901211, "0": -9.802599, "4": -9.291773, "5": -9.109451, ":": -5.383758, ";": -2.607161, "<": -5.730727, "<(*tokensN);i++)>": -10.901211, "</b>": -7.810168, "</i>": -10.901211, "</tag>": -10.901211, "<<": -7.605374, "<Arduino.h>": -10.901211, "<Code>": -9.291773, "<Context>": -9.291773, "<Deoptimizer::BailoutType>": -10.901211, "<EXTERNAL>": -10.901211, "<GLKit/GLKMathTypes.h>": -10.901211, "<GLKit/GLKQuaternion.h>": -10.901211, "<IO/rf_unicode.h>": -10.901211, "<JSFunction>": -9.514916, "<LanguageMode>": -10.901211, "<Object>": -9.291773, "<Preprocessor/rf_xmacro_argcount.h>": -10.901211, "<SharedFunctionInfo>": -10.208064, "<String/rfc_string.h>": -10.208064, "<String/rfc_stringx.h>": -10.901211, "<String>": -10.208064, "<TargetConditionals.h>": -10.901211, "<TimerEventDeoptimizeCode>": -10.901211, "<Zend/zend_exceptions.h>": -10.901211, "<Zend/zend_interfaces.h>": -10.901211, "<Zend/zend_operators.h>": -10.901211, "<antirez>": -10.901211, "<any>": -10.901211, "<args>": -10.901211, "<arm_neon.h>": -10.901211, "<arpa/inet.h>": -10.901211, "<array.h>": -10.901211, "<assert.h>": -8.821769, "<b>": -7.856688, "<command>": -10.208064, "<complex.h>": -10.901211, "<complex>": -10.901211, "<conio.h>": -10.901211, "<console/color.h>": -10.901211, "<console/driver.h>": -10.208064, "<console/filter.h>": -10.901211, "<console/info.h>": -9.802599, "<crt_externs.h>": -10.901211, "<ctype.h>": -9.514916, "<dpmi.h>": -10.901211, "<errno.h>": -9.291773, "<fcntl.h>": -10.208064, "<float.h>": -10.901211, "<fmpz.h>": -10.901211, "<fmpz_poly.h>": -10.901211, "<fudge.h>": -10.901211, "<gio/gio.h>": -10.901211, "<glib.h>": -10.901211, "<gtk/gtk.h>": -10.901211, "<http://www.gnu.org/licenses/>": -8.128622, "<hw/cpu.h>": -10.901211, "<i>": -10.901211, "<jni.h>": -10.901211, "<keepLength;>": -10.901211, "<kernel.h>": -10.901211, "<lib/generic.h>": -8.336261, "<lib/stdint.h>": -10.901211, "<limits.h>": -10.208064, "<math.h>": -8.955301, "<megabytes>": -10.901211, "<memory/vmem.h>": -10.901211, "<milan>": -10.901211, "<mmagallo[]debian>": -10.901211, "<modules/system/system.h>": -10.901211, "<name>": -9.514916, "<net/net.h>": -10.901211, "<no>": -10.208064, "<omp.h>": -10.901211, "<openssl/bytestring.h>": -10.901211, "<openssl/err.h>": -10.901211, "<openssl/mem.h>": -10.901211, "<openssl/ssl.h>": -10.901211, "<openssl/stack.h>": -10.901211, "<path>": -9.802599, "<php.h>": -10.901211, "<poll.h>": -10.901211, "<readline/readline.h>": -10.901211, "<rf_io.h>": -10.901211, "<rf_localmem.h>": -10.208064, "<rf_options.h>": -10.901211, "<rf_setup.h>": -10.208064, "<rf_utils.h>": -10.208064, "<signal.h>": -10.901211, "<stdarg.h>": -10.208064, "<stdbool.h>": -10.208064, "<stddef.h>": -9.802599, "<stdint.h>": -10.901211, "<stdio.h>": -8.598626, "<stdlib.h>": -9.291773, "<string.h>": -8.955301, "<strings.h>": -10.901211, "<sys/resource.h>": -9.802599, "<sys/stat.h>": -10.901211, "<sys/time.h>": -10.901211, "<sys/types.h>": -10.208064, "<sys/uio.h>": -10.901211, "<sys/utsname.h>": -10.901211, "<sys/wait.h>": -10.208064, "<tasks/scheduler.h>": -10.901211, "<tasks/syscall.h>": -10.901211, "<thisstr->": -10.901211, "<time.h>": -10.208064, "<type>": -10.901211, "<unistd.h>": -10.901211, "<windows.h>": -10.901211, "=": -3.317963, ">": -4.219102, "?": -7.435475, "@endcode": -10.901211, "@param": -9.802599, "ADDRESS_SPACE_LIMIT": -10.901211, "ARDUINO_CATS_ARDUINO": -10.208064, "ARRAY_H": -10.208064, "ARRAY_SIZE": -10.901211, "ASSIGN_RETURN_ON_EXCEPTION_VALUE": -10.901211, "ATTRIBUTE_PRINTF": -9.802599, "ActivationsFinder": -9.802599, "Add": -9.802599, "Advance": -10.901211, "AllowHeapAllocation": -10.208064, "Alternatively": -10.901211, "Arguments": -8.193161, "Array": -9.109451, "ArrayWithTranslation": -10.208064, "ArrowLeft": -9.802599, "Attempted": -10.901211, "BE": -9.514916, "BLOB_H": -10.208064, "BOOL": -6.470394, "BOOL*": -9.802599, "BOOTSTRAP_H": -10.208064, "BOSNode": -10.901211, "BOT_PRINT": -10.901211, "BUFFER_BLOCK": -9.109451, "BUFFER_INITIALIZER": -10.901211, "BUFFER_SPAN": -8.416304, "BailoutType": -10.901211, "Bitflag": -10.901211, "Buffer": -10.901211, "BufferSize": -10.208064, "ByteLength": -9.109451, "C": -9.802599, "CALLBACK_DATA": -10.901211, "CALLBACK_DATA_": -10.208064, "CALLBACK_DATA_NOADVANCE": -10.901211, "CALLBACK_NOTIFY": -9.109451, "CALLBACK_NOTIFY_": -10.208064, "CAPS": -10.901211, "CBB": -9.802599, "CBB_add_bytes": -10.901211, "CBB_add_u": -10.208064, "CBB_flush": -10.901211, "CBS": -10.208064, "CBS_data": -10.208064, "CBS_len": -10.208064, "CB_body": -10.901211, "CB_header_field": -10.901211, "CB_header_value": -10.901211, "CB_headers_complete": -10.901211, "CB_message_begin": -10.901211, "CB_message_complete": -10.901211, "CB_url": -10.901211, "CHAR": -10.208064, "CHECKOUT": -10.208064, "CHUNKED": -10.901211, "CLOSE": -10.901211, "CLOSED_CONNECTION": -10.901211, "CMIT_FMT_DEFAULT": -10.901211, "CMIT_FMT_EMAIL": -10.901211, "CMIT_FMT_FULL": -10.901211, "CMIT_FMT_FULLER": -10.901211, "CMIT_FMT_MEDIUM": -10.208064, "CMIT_FMT_ONELINE": -10.901211, "CMIT_FMT_RAW": -10.901211, "CMIT_FMT_SHORT": -10.901211, "CMIT_FMT_UNSPECIFIED": -10.901211, "CMIT_FMT_USERFORMAT": -10.901211, "COLORS": -8.416304, "COMMIT_H": -10.208064, "CONCURRENT": -10.901211, "CONNECT": -10.208064, "CONNECTION": -10.901211, "CONSOLE_COLOR_BLACK": -10.901211, "CONSOLE_COLOR_BLUE": -10.901211, "CONSOLE_COLOR_BROWN": -10.901211, "CONSOLE_COLOR_CYAN": -10.901211, "CONSOLE_COLOR_DGREY": -10.901211, "CONSOLE_COLOR_GREEN": -10.901211, "CONSOLE_COLOR_LBLUE": -10.901211, "CONSOLE_COLOR_LCYAN": -10.901211, "CONSOLE_COLOR_LGREEN": -10.901211, "CONSOLE_COLOR_LGREY": -10.901211, "CONSOLE_COLOR_LMAGENTA": -10.901211, "CONSOLE_COLOR_LRED": -10.901211, "CONSOLE_COLOR_MAGENTA": -10.901211, "CONSOLE_COLOR_RED": -10.901211, "CONSOLE_COLOR_WHITE": -10.901211, "CONSOLE_COLOR_YELLOW": -10.901211, "CONSOLE_DRV_CAP_CLEAR": -10.901211, "CONSOLE_DRV_CAP_SCROLL": -10.901211, "CONSOLE_DRV_CAP_SET_CURSOR": -10.901211, "CONTENT_LENGTH": -10.901211, "CONVERT_ARG_HANDLE_CHECKED": -9.291773, "CONVERT_SMI_ARG_CHECKED": -10.901211, "COPY": -10.208064, "CR": -9.802599, "CTLs": -10.901211, "CYTHON_CCOMPLEX": -8.416304, "CYTHON_COMPILING_IN_CPYTHON": -9.109451, "CYTHON_COMPILING_IN_PYPY": -9.802599, "CYTHON_FORMAT_SSIZE_T": -10.208064, "CYTHON_INLINE": -6.726824, "CYTHON_PEP": -10.208064, "CYTHON_REFNANNY": -9.802599, "CYTHON_UNUSED": -8.503316, "CYTHON_WITHOUT_ASSERTIONS": -10.901211, "Can": -10.901211, "Check_Type": -10.208064, "Classification_": -10.901211, "Classification_loss": -10.901211, "Code": -10.901211, "Code*": -10.208064, "CodeGenerationFromStringsAllowed": -10.901211, "Command": -10.901211, "Compile": -10.901211, "CompileBaseline": -10.901211, "CompileGlobalEval": -10.901211, "CompileOptimized": -10.208064, "Compiler": -8.821769, "Context": -10.901211, "CrossProduct": -10.208064, "Cython": -10.901211, "D": -6.228382, "DCHECK": -8.193161, "DCHECK_EQ": -9.514916, "DEBUG": -10.901211, "DECLARE_HANDLE": -9.109451, "DECREF": -10.901211, "DELETE": -10.208064, "DFX": -10.208064, "DFX_multisample": -9.291773, "DGFX": -10.208064, "DICT_HT_INITIAL_SIZE": -10.208064, "DICT_OK": -10.901211, "DL": -8.955301, "DLPROC": -10.208064, "DL_EXPORT": -10.208064, "DL_IMPORT": -10.208064, "DL_stereo_control": -9.291773, "DPMI_REGS": -10.901211, "DPROC": -6.806866, "DWORD": -9.291773, "DWORD*": -10.901211, "D_ARB": -10.208064, "D_digital_video_control": -9.291773, "D_exit": -10.208064, "D_gamma": -9.291773, "D_genlock": -9.291773, "D_image_buffer": -9.291773, "D_init": -10.208064, "D_swap_frame_lock": -9.291773, "D_swap_frame_usage": -9.291773, "Default": -10.208064, "Deoptimizer": -9.514916, "Deoptimizer*": -10.208064, "DeviceName": -10.901211, "DeviceString": -10.901211, "DotProduct": -9.802599, "E": -8.821769, "EINTR": -10.901211, "ELF_ARCH_": -10.901211, "ELF_ARCH_NONE": -10.901211, "ELF_TYPE_CORE": -10.901211, "ELF_TYPE_DYN": -10.901211, "ELF_TYPE_EXEC": -10.901211, "ELF_TYPE_NONE": -10.901211, "ELF_TYPE_REL": -10.901211, "ELF_VERSION_CURRENT": -10.901211, "END_HEAD": -10.208064, "ENOENT": -10.208064, "ENOMEM": -10.208064, "EOF": -10.208064, "ER": -10.208064, "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": -10.901211, "ERROR_INVALID_PIXEL_TYPE_ARB": -10.901211, "ERROR_INVALID_PIXEL_TYPE_EXT": -10.901211, "ERROR_INVALID_PROFILE_ARB": -10.901211, "ERROR_INVALID_VERSION_ARB": -10.901211, "ERR_R_INTERNAL_ERROR": -10.901211, "ERR_add_error_dataf": -9.291773, "EXIT_FAILURE": -10.901211, "EpsilonInsensitive_": -9.802599, "EpsilonInsensitive___init__": -10.901211, "ErrorMessageForCodeGenerationFromStrings": -10.901211, "Exception": -10.901211, "FILE*": -7.345863, "FILE*f": -10.901211, "FILE_FLAGS_ANIMATION": -10.901211, "FILE_FLAGS_MEMORY_IMAGE": -10.901211, "FLAG_trace_deopt": -10.901211, "FLAG_trace_lazy": -10.901211, "FLEX_ARRAY": -10.901211, "FLOAT": -9.514916, "FOR": -9.109451, "FOR##_mark": -9.802599, "F_CHUNKED": -8.703986, "F_CONNECTION_CLOSE": -10.901211, "F_CONNECTION_KEEP_ALIVE": -10.901211, "F_SKIPBODY": -9.802599, "F_TRAILING": -10.208064, "F_UPGRADE": -10.901211, "FinishContext": -10.901211, "Flags": -10.901211, "For": -10.208064, "Ftelll": -10.901211, "Function": -8.193161, "GBytes": -10.208064, "GCancellable": -10.901211, "GET": -10.208064, "GError": -10.208064, "GFileMonitor": -10.901211, "GIT_VERSION": -10.901211, "GIVEREF": -10.901211, "GInputStream": -10.208064, "GLEWAPI": -9.109451, "GLEW_MX": -9.514916, "GLEW_STATIC": -10.901211, "GLKMatrix": -5.180899, "GLKQuaternion": -10.208064, "GLKQuaternionNormalize": -10.901211, "GLKVector": -6.379422, "GLKit/GLKVector": -10.208064, "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": -10.901211, "GL_RGBA_FLOAT_MODE_ATI": -10.901211, "GLbitfield": -10.901211, "GLboolean": -6.930919, "GLenum": -8.821769, "GLfloat": -9.802599, "GLint": -8.010839, "GLsizei": -9.514916, "GLuint": -8.703986, "GLuint*": -9.802599, "GLushort": -9.802599, "GLushort*": -10.901211, "GOTREF": -10.901211, "GPERF_CASE_STRNCMP": -10.901211, "GPERF_DOWNCASE": -10.901211, "GPU_DEVICE": -10.901211, "GetColumn": -10.208064, "GetFunctionFromEval": -10.901211, "GetMatrix": -9.514916, "GetRow": -10.208064, "Give": -10.901211, "Grab": -10.208064, "HANDLE": -8.262153, "HANDLE*": -9.802599, "HAVE_CONFIG_H": -10.901211, "HDC": -6.726824, "HEAD": -10.208064, "HEADER_OVERFLOW": -10.901211, "HELLO": -10.901211, "HELLOWORLD": -10.901211, "HELLO_H": -10.208064, "HGLRC": -8.262153, "HGPUNV": -9.291773, "HPBUFFERARB": -8.416304, "HPBUFFEREXT": -9.109451, "HPE_##n": -10.901211, "HPE_CB_##FOR": -10.901211, "HPE_CB_headers_complete": -10.901211, "HPE_INVALID_CHUNK_SIZE": -10.208064, "HPE_INVALID_CONTENT_LENGTH": -10.901211, "HPE_INVALID_INTERNAL_STATE": -10.901211, "HPE_OK": -9.291773, "HPE_PAUSED": -10.208064, "HPVIDEODEV": -9.514916, "HPVIDEODEV*": -10.901211, "HTTP_##name": -10.901211, "HTTP_BOTH": -10.901211, "HTTP_ERRNO_GEN": -9.802599, "HTTP_ERRNO_MAP": -10.208064, "HTTP_MAX_HEADER_SIZE": -10.901211, "HTTP_METHOD_MAP": -9.802599, "HTTP_PARSER_DEBUG": -9.514916, "HTTP_PARSER_ERRNO": -9.109451, "HTTP_PARSER_ERRNO_LINE": -10.208064, "HTTP_PARSER_STRICT": -10.208064, "HTTP_PARSER_VERSION_MAJOR": -10.901211, "HTTP_PARSER_VERSION_MINOR": -10.901211, "HTTP_REQUEST": -10.208064, "HTTP_RESPONSE": -10.901211, "HUGE_VAL": -10.901211, "HVIDEOINPUTDEVICENV": -9.291773, "HVIDEOINPUTDEVICENV*": -10.901211, "HVIDEOOUTPUTDEVICENV": -10.208064, "HVIDEOOUTPUTDEVICENV*": -10.901211, "Handle": -8.821769, "HandleScope": -8.821769, "Here": -10.208064, "Hinge_": -9.802599, "Hinge___init__": -10.901211, "Huber_": -9.802599, "Huber___init__": -10.901211, "INCREF": -10.901211, "INT": -7.643114, "INT_MAX": -10.901211, "INT_MIN": -10.901211, "INVALID_CHUNK_SIZE": -10.901211, "INVALID_CONSTANT": -10.901211, "INVALID_CONTENT_LENGTH": -10.901211, "INVALID_EOF_STATE": -10.901211, "INVALID_FRAGMENT": -10.901211, "INVALID_HEADER_TOKEN": -10.901211, "INVALID_HOST": -10.901211, "INVALID_INTERNAL_STATE": -10.901211, "INVALID_METHOD": -10.901211, "INVALID_PATH": -10.901211, "INVALID_PORT": -10.901211, "INVALID_QUERY_STRING": -10.901211, "INVALID_STATUS": -10.901211, "INVALID_URL": -10.901211, "INVALID_VERSION": -10.901211, "IP": -10.901211, "IRC": -10.901211, "IS_UNSIGNED": -10.901211, "ITEM_FLOAT": -10.208064, "ITEM_HEADER": -9.802599, "ITEM_INTEGER": -10.208064, "ITEM_LIST": -8.821769, "ITEM_STRING": -9.802599, "ITEM_WORD": -10.208064, "I_KEEPSTR_": -10.208064, "Identity": -9.802599, "If": -9.802599, "Ileggal": -10.901211, "Illegal": -8.262153, "Implementations": -10.901211, "In": -10.901211, "Init_rdiscount": -10.901211, "Initializes": -9.802599, "Internal": -10.901211, "Invert": -10.901211, "InvertAndTranspose": -10.901211, "IsAllowed": -10.208064, "IsFalse": -10.901211, "IsSmi": -10.208064, "IsString": -10.901211, "Isolate*": -10.901211, "IterateArchivedThreads": -10.901211, "JNICALL": -9.109451, "JNIEXPORT": -9.109451, "JNIEnv": -9.109451, "JSFunction": -9.291773, "JavaScriptFrame*": -9.802599, "JavaScriptFrameIterator": -9.514916, "JavaScriptFrameIterator*": -10.901211, "Java_jni_JniLayer_jni_": -9.109451, "KB": -9.514916, "KEEP_ALIVE": -10.901211, "KEEP_EXCEPTION": -10.901211, "LAZY": -10.901211, "LF": -9.802599, "LF_EXPECTED": -10.901211, "LOCK": -10.208064, "LOG_ERROR": -7.856688, "LONG_LONG": -10.901211, "LPVOID": -9.802599, "LPVOID*": -10.901211, "LanguageMode": -10.901211, "Length": -10.901211, "M": -10.901211, "MAKE_UINT": -9.802599, "MARK": -9.514916, "MAX_NUM_CUSTOM_EXTENSIONS": -10.208064, "MD_CHAR_AUTOLINK_EMAIL": -10.901211, "MD_CHAR_AUTOLINK_URL": -10.901211, "MD_CHAR_AUTOLINK_WWW": -10.901211, "MD_CHAR_CODESPAN": -10.901211, "MD_CHAR_EMPHASIS": -10.901211, "MD_CHAR_ENTITITY": -10.901211, "MD_CHAR_ESCAPE": -10.901211, "MD_CHAR_LANGLE": -10.901211, "MD_CHAR_LINEBREAK": -10.901211, "MD_CHAR_LINK": -10.901211, "MD_CHAR_NONE": -10.901211, "MD_CHAR_SUPERSCRIPT": -10.901211, "MERGE": -10.208064, "MIN": -9.802599, "MKACTIVITY": -10.208064, "MKCOL": -10.208064, "MKDA_EMAIL": -10.901211, "MKDA_NORMAL": -10.901211, "MKDA_NOT_AUTOLINK": -10.208064, "MKDEXT_NO_INTRA_EMPHASIS": -10.901211, "MKD_AUTOLINK": -10.901211, "MKD_LI_END": -10.901211, "MKD_NOHEADER": -10.901211, "MKD_NOHTML": -10.901211, "MKD_NOIMAGE": -10.901211, "MKD_NOLINKS": -10.901211, "MKD_NOPANTS": -10.901211, "MKD_NOTABLES": -10.901211, "MKD_NO_EXT": -10.901211, "MKD_SAFELINK": -10.901211, "MKD_STRICT": -10.901211, "MKD_TABSTOP": -10.901211, "MKD_TOC": -10.901211, "MMIOT": -10.208064, "MOVE": -10.208064, "MSEARCH": -10.901211, "MS_WINDOWS": -10.208064, "MULTIBOOT_FLAG_AOUT": -10.901211, "MULTIBOOT_FLAG_APM": -10.901211, "MULTIBOOT_FLAG_CMDLINE": -10.901211, "MULTIBOOT_FLAG_CONFIG": -10.901211, "MULTIBOOT_FLAG_DEVICE": -10.901211, "MULTIBOOT_FLAG_ELF": -10.901211, "MULTIBOOT_FLAG_LOADER": -10.901211, "MULTIBOOT_FLAG_MEM": -10.901211, "MULTIBOOT_FLAG_MMAP": -10.901211, "MULTIBOOT_FLAG_MODS": -10.901211, "MULTIBOOT_FLAG_VBE": -10.901211, "MULTIBOOT_KERNELMAGIC": -10.901211, "Make": -8.703986, "MakeAndTranspose": -10.208064, "MakeFrustum": -10.208064, "MakeLookAt": -10.208064, "MakeOrtho": -10.208064, "MakePerspective": -10.208064, "MakeRotation": -9.291773, "MakeScale": -10.208064, "MakeTranslation": -10.208064, "MakeWithArray": -10.208064, "MakeWithArrayAndTranspose": -10.208064, "MakeWithColumns": -10.208064, "MakeWithQuaternion": -10.208064, "MakeWithRows": -10.901211, "MakeXRotation": -9.802599, "MakeYRotation": -9.802599, "MakeZRotation": -9.802599, "Maps": -10.901211, "MaterializeHeapObjects": -10.901211, "MaybeHandle": -10.901211, "Memory": -10.901211, "Message": -10.901211, "MessageTemplate": -10.901211, "ModifiedHuber_": -10.208064, "ModifiedHuber_loss": -10.901211, "Multiply": -8.821769, "MultiplyAndProjectVector": -9.291773, "MultiplyScalar": -10.901211, "MultiplyVector": -8.010839, "Must": -10.901211, "NEED_WORK_TREE": -8.010839, "NENUM": -10.901211, "NEW_MESSAGE": -9.291773, "NMEX": -10.901211, "NOTIFY": -10.208064, "NOT_CONCURRENT": -10.901211, "NO_PARSE_RESTRICTION": -10.901211, "NPos": -10.208064, "NSTRUCT": -10.208064, "NTS": -10.901211, "NULL": -6.219080, "NWMan": -10.208064, "NWMan_destroy": -10.901211, "NWMan_event": -9.802599, "NWMan_event*": -10.901211, "NWMan_event_new": -10.901211, "NWMan_event_type": -9.802599, "NWMan_init": -10.901211, "N_": -10.901211, "N_ELEMENTS": -10.208064, "N_WMAN_FOCUS": -10.901211, "N_WMAN_KEYBOARD": -10.901211, "N_WMAN_MOUSE_BUTTON": -10.901211, "N_WMAN_MOUSE_LEFT": -10.901211, "N_WMAN_MOUSE_MIDDLE": -10.901211, "N_WMAN_MOUSE_MOVE": -10.901211, "N_WMAN_MOUSE_RIGHT": -10.901211, "N_WMAN_MOUSE_WHEEL": -10.901211, "N_WMAN_QUIT": -10.901211, "N_WMAN_RESIZE": -10.901211, "N_WMan": -10.901211, "Negate": -9.514916, "NewEvalError": -10.901211, "Normalize": -9.802599, "Number": -8.010839, "OBJ_BLOB": -9.802599, "OBJ_COMMIT": -9.291773, "OK": -10.901211, "OPENSSL_PUT_ERROR": -9.291773, "OPENSSL_free": -10.901211, "OPENSSL_malloc": -10.901211, "OPTIMIZED_FUNCTION": -10.901211, "OPTIONS": -10.208064, "O_RDONLY": -10.901211, "O_RDWR": -10.901211, "PAGE_SIZE": -10.208064, "PARSE_ERROR_EOF": -10.901211, "PARSE_ERROR_INVALID_INPUT": -10.901211, "PARSE_ERROR_MEMORY": -10.208064, "PATCH": -10.208064, "PAUSED": -10.901211, "PFNWGLALLOCATEMEMORYNVPROC": -10.208064, "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI": -10.208064, "PFNWGLBEGINFRAMETRACKINGI": -10.208064, "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": -10.208064, "PFNWGLBINDSWAPBARRIERNVPROC": -10.208064, "PFNWGLBINDTEXIMAGEARBPROC": -10.208064, "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": -10.208064, "PFNWGLBINDVIDEODEVICENVPROC": -10.208064, "PFNWGLBINDVIDEOIMAGENVPROC": -10.208064, "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": -10.208064, "PFNWGLCHOOSEPIXELFORMATARBPROC": -10.208064, "PFNWGLCHOOSEPIXELFORMATEXTPROC": -10.208064, "PFNWGLCOPYIMAGESUBDATANVPROC": -10.208064, "PFNWGLCREATEAFFINITYDCNVPROC": -10.208064, "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": -10.208064, "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": -10.208064, "PFNWGLCREATEBUFFERREGIONARBPROC": -10.208064, "PFNWGLCREATECONTEXTATTRIBSARBPROC": -10.208064, "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": -10.208064, "PFNWGLCREATEIMAGEBUFFERI": -10.208064, "PFNWGLCREATEPBUFFERARBPROC": -10.208064, "PFNWGLCREATEPBUFFEREXTPROC": -10.208064, "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": -10.208064, "PFNWGLDELETEBUFFERREGIONARBPROC": -10.208064, "PFNWGLDELETEDCNVPROC": -10.208064, "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": -10.208064, "PFNWGLDESTROYIMAGEBUFFERI": -10.208064, "PFNWGLDESTROYPBUFFERARBPROC": -10.208064, "PFNWGLDESTROYPBUFFEREXTPROC": -10.208064, "PFNWGLDISABLEFRAMELOCKI": -10.208064, "PFNWGLDISABLEGENLOCKI": -10.208064, "PFNWGLDXCLOSEDEVICENVPROC": -10.208064, "PFNWGLDXLOCKOBJECTSNVPROC": -10.208064, "PFNWGLDXOBJECTACCESSNVPROC": -10.208064, "PFNWGLDXOPENDEVICENVPROC": -10.208064, "PFNWGLDXREGISTEROBJECTNVPROC": -10.208064, "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": -10.208064, "PFNWGLDXUNLOCKOBJECTSNVPROC": -10.208064, "PFNWGLDXUNREGISTEROBJECTNVPROC": -10.208064, "PFNWGLENABLEFRAMELOCKI": -10.208064, "PFNWGLENABLEGENLOCKI": -10.208064, "PFNWGLENDFRAMETRACKINGI": -10.208064, "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": -10.208064, "PFNWGLENUMERATEVIDEODEVICESNVPROC": -10.208064, "PFNWGLENUMGPUDEVICESNVPROC": -10.208064, "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": -10.208064, "PFNWGLENUMGPUSNVPROC": -10.208064, "PFNWGLFREEMEMORYNVPROC": -10.208064, "PFNWGLGENLOCKSAMPLERATEI": -10.208064, "PFNWGLGENLOCKSOURCEDELAYI": -10.208064, "PFNWGLGENLOCKSOURCEEDGEI": -10.208064, "PFNWGLGENLOCKSOURCEI": -10.208064, "PFNWGLGETCONTEXTGPUIDAMDPROC": -10.208064, "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": -10.208064, "PFNWGLGETCURRENTREADDCARBPROC": -10.208064, "PFNWGLGETCURRENTREADDCEXTPROC": -10.208064, "PFNWGLGETDIGITALVIDEOPARAMETERSI": -10.208064, "PFNWGLGETEXTENSIONSSTRINGARBPROC": -10.208064, "PFNWGLGETEXTENSIONSSTRINGEXTPROC": -10.208064, "PFNWGLGETFRAMEUSAGEI": -10.208064, "PFNWGLGETGAMMATABLEI": -10.208064, "PFNWGLGETGAMMATABLEPARAMETERSI": -10.208064, "PFNWGLGETGENLOCKSAMPLERATEI": -10.208064, "PFNWGLGETGENLOCKSOURCEDELAYI": -10.208064, "PFNWGLGETGENLOCKSOURCEEDGEI": -10.208064, "PFNWGLGETGENLOCKSOURCEI": -10.208064, "PFNWGLGETGPUIDSAMDPROC": -10.208064, "PFNWGLGETGPUINFOAMDPROC": -10.208064, "PFNWGLGETMSCRATEOMLPROC": -10.208064, "PFNWGLGETPBUFFERDCARBPROC": -10.208064, "PFNWGLGETPBUFFERDCEXTPROC": -10.208064, "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": -10.208064, "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": -10.208064, "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": -10.208064, "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": -10.208064, "PFNWGLGETSWAPINTERVALEXTPROC": -10.208064, "PFNWGLGETSYNCVALUESOMLPROC": -10.208064, "PFNWGLGETVIDEODEVICENVPROC": -10.208064, "PFNWGLGETVIDEOINFONVPROC": -10.208064, "PFNWGLISENABLEDFRAMELOCKI": -10.208064, "PFNWGLISENABLEDGENLOCKI": -10.208064, "PFNWGLJOINSWAPGROUPNVPROC": -10.208064, "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": -10.208064, "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": -10.208064, "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": -10.208064, "PFNWGLMAKECONTEXTCURRENTARBPROC": -10.208064, "PFNWGLMAKECONTEXTCURRENTEXTPROC": -10.208064, "PFNWGLQUERYCURRENTCONTEXTNVPROC": -10.208064, "PFNWGLQUERYFRAMECOUNTNVPROC": -10.208064, "PFNWGLQUERYFRAMELOCKMASTERI": -10.208064, "PFNWGLQUERYFRAMETRACKINGI": -10.208064, "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI": -10.208064, "PFNWGLQUERYMAXSWAPGROUPSNVPROC": -10.208064, "PFNWGLQUERYPBUFFERARBPROC": -10.208064, "PFNWGLQUERYPBUFFEREXTPROC": -10.208064, "PFNWGLQUERYSWAPGROUPNVPROC": -10.208064, "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": -10.208064, "PFNWGLRELEASEIMAGEBUFFEREVENTSI": -10.208064, "PFNWGLRELEASEPBUFFERDCARBPROC": -10.208064, "PFNWGLRELEASEPBUFFERDCEXTPROC": -10.208064, "PFNWGLRELEASETEXIMAGEARBPROC": -10.208064, "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": -10.208064, "PFNWGLRELEASEVIDEODEVICENVPROC": -10.208064, "PFNWGLRELEASEVIDEOIMAGENVPROC": -10.208064, "PFNWGLRESETFRAMECOUNTNVPROC": -10.208064, "PFNWGLRESTOREBUFFERREGIONARBPROC": -10.208064, "PFNWGLSAVEBUFFERREGIONARBPROC": -10.208064, "PFNWGLSENDPBUFFERTOVIDEONVPROC": -10.208064, "PFNWGLSETDIGITALVIDEOPARAMETERSI": -10.208064, "PFNWGLSETGAMMATABLEI": -10.208064, "PFNWGLSETGAMMATABLEPARAMETERSI": -10.208064, "PFNWGLSETPBUFFERATTRIBARBPROC": -10.208064, "PFNWGLSETSTEREOEMITTERSTATE": -10.208064, "PFNWGLSWAPBUFFERSMSCOMLPROC": -10.208064, "PFNWGLSWAPINTERVALEXTPROC": -10.208064, "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": -10.208064, "PFNWGLWAITFORMSCOMLPROC": -10.208064, "PFNWGLWAITFORSBCOMLPROC": -10.208064, "PGPU_DEVICE": -10.901211, "POLLHUP": -10.901211, "POLLIN": -10.901211, "POST": -10.208064, "PQC_ENCRYPT_H": -10.208064, "PQIV_VERSION": -10.208064, "PROPFIND": -10.208064, "PROPPATCH": -10.208064, "PROXY_CONNECTION": -10.901211, "PURGE": -10.208064, "PUT": -10.208064, "PYPY_VERSION": -10.901211, "PYREX_WITHOUT_ASSERTIONS": -10.901211, "PY_FORMAT_SIZE_T": -10.901211, "PY_LONG_LONG": -9.291773, "PY_MAJOR_VERSION": -8.336261, "PY_MINOR_VERSION": -10.901211, "PY_SSIZE_T_CLEAN": -10.901211, "PY_SSIZE_T_MAX": -10.901211, "PY_SSIZE_T_MIN": -10.901211, "PY_VERSION_HEX": -8.503316, "ParseRestriction": -10.901211, "PrintF": -9.514916, "PrintName": -10.208064, "Prototypes": -10.901211, "PyArrayObject": -9.291773, "PyArray_Descr": -10.901211, "PyBUF_ANY_CONTIGUOUS": -10.901211, "PyBUF_C_CONTIGUOUS": -10.901211, "PyBUF_FORMAT": -9.802599, "PyBUF_FULL": -10.901211, "PyBUF_F_CONTIGUOUS": -10.901211, "PyBUF_INDIRECT": -10.208064, "PyBUF_ND": -10.208064, "PyBUF_RECORDS": -10.901211, "PyBUF_SIMPLE": -10.901211, "PyBUF_STRIDES": -9.109451, "PyBUF_WRITABLE": -9.802599, "PyBaseString_Type": -10.901211, "PyBoolObject": -10.901211, "PyBuffer_Release": -10.901211, "PyBytesObject": -10.901211, "PyBytes_AS_STRING": -10.901211, "PyBytes_AsString": -10.208064, "PyBytes_AsStringAndSize": -10.901211, "PyBytes_Check": -10.901211, "PyBytes_CheckExact": -10.901211, "PyBytes_Concat": -10.901211, "PyBytes_ConcatAndDel": -10.901211, "PyBytes_DecodeEscape": -10.901211, "PyBytes_FromFormat": -10.901211, "PyBytes_FromString": -10.208064, "PyBytes_FromStringAndSize": -10.901211, "PyBytes_GET_SIZE": -10.901211, "PyBytes_Repr": -10.901211, "PyBytes_Size": -10.901211, "PyBytes_Type": -10.901211, "PyCFunction": -10.208064, "PyCFunction_Check": -10.208064, "PyCFunction_GET_FUNCTION": -10.208064, "PyCodeObject": -10.901211, "PyCodeObject*": -10.208064, "PyCode_New": -10.208064, "PyComplex_Check": -10.901211, "PyDict_GetItem": -9.514916, "PyDict_Size": -10.208064, "PyErr_Format": -9.514916, "PyErr_Occurred": -9.109451, "PyErr_SetString": -9.802599, "PyErr_Warn": -10.901211, "PyErr_WarnEx": -10.901211, "PyExc_SystemError": -9.802599, "PyExc_TypeError": -9.514916, "PyFloat_AS_DOUBLE": -10.901211, "PyFloat_AsDouble": -10.208064, "PyFloat_Check": -10.208064, "PyFloat_CheckExact": -10.901211, "PyFloat_FromDouble": -9.109451, "PyFrozenSet_Check": -10.901211, "PyFrozenSet_Type": -10.901211, "PyGILState_Ensure": -10.901211, "PyGILState_Release": -10.901211, "PyGILState_STATE": -10.901211, "PyIndex_Check": -10.208064, "PyInstanceMethod_New": -10.901211, "PyIntObject": -10.901211, "PyInt_AS_LONG": -10.901211, "PyInt_AsLong": -10.208064, "PyInt_AsSsize_t": -9.802599, "PyInt_AsUnsignedLongLongMask": -10.901211, "PyInt_AsUnsignedLongMask": -10.901211, "PyInt_Check": -10.901211, "PyInt_CheckExact": -10.901211, "PyInt_FromLong": -9.802599, "PyInt_FromSize_t": -10.901211, "PyInt_FromSsize_t": -9.109451, "PyInt_FromString": -10.901211, "PyInt_FromUnicode": -10.901211, "PyInt_Type": -10.901211, "PyList_CheckExact": -10.901211, "PyList_GET_ITEM": -9.802599, "PyList_GET_SIZE": -9.291773, "PyLongObject": -10.208064, "PyLong_AS_LONG": -10.901211, "PyLong_AsLong": -10.901211, "PyLong_AsSsize_t": -10.901211, "PyLong_AsUnsignedLongLongMask": -10.901211, "PyLong_AsUnsignedLongMask": -10.901211, "PyLong_Check": -10.901211, "PyLong_CheckExact": -10.901211, "PyLong_FromLong": -10.901211, "PyLong_FromSize_t": -10.901211, "PyLong_FromSsize_t": -10.901211, "PyLong_FromString": -10.901211, "PyLong_FromUnicode": -10.901211, "PyLong_Type": -10.901211, "PyMethod_New": -10.208064, "PyNumber_Check": -10.208064, "PyNumber_Divide": -10.901211, "PyNumber_InPlaceDivide": -10.901211, "PyNumber_InPlaceTrueDivide": -10.901211, "PyNumber_Index": -10.901211, "PyNumber_Int": -10.901211, "PyNumber_TrueDivide": -10.901211, "PyObjec": -10.901211, "PyObject": -5.383758, "PyObject*": -7.765717, "PyObject_Call": -9.514916, "PyObject_DelAttrString": -10.208064, "PyObject_GetAttr": -10.208064, "PyObject_GetAttrString": -10.208064, "PyObject_GetBuffer": -10.901211, "PyObject_GetItem": -10.901211, "PyObject_HEAD": -10.901211, "PyObject_HEAD_INIT": -10.901211, "PyObject_SetAttrString": -10.208064, "PyObject_TypeCheck": -9.802599, "PySequenceMethods": -10.901211, "PySequence_Check": -10.901211, "PySequence_DelSlice": -10.208064, "PySequence_GetItem": -9.802599, "PySequence_GetSlice": -10.208064, "PySequence_SetSlice": -10.208064, "PySet_Check": -10.901211, "PySet_CheckExact": -10.208064, "PySet_Type": -10.208064, "PyStringObject": -10.208064, "PyString_AS_STRING": -10.901211, "PyString_AsString": -10.901211, "PyString_AsStringAndSize": -10.901211, "PyString_Check": -10.208064, "PyString_CheckExact": -10.208064, "PyString_Concat": -10.901211, "PyString_ConcatAndDel": -10.901211, "PyString_DecodeEscape": -10.901211, "PyString_FromFormat": -10.901211, "PyString_FromString": -10.208064, "PyString_FromStringAndSize": -10.901211, "PyString_GET_SIZE": -10.901211, "PyString_Repr": -10.901211, "PyString_Size": -10.901211, "PyString_Type": -10.208064, "PyTuple_CheckExact": -10.901211, "PyTuple_GET_ITEM": -8.503316, "PyTuple_GET_SIZE": -8.503316, "PyTuple_New": -10.208064, "PyTuple_SET_ITEM": -9.514916, "PyTypeObject": -7.682335, "PyType_Modified": -10.901211, "PyUnicodeObject": -10.901211, "PyUnicode_AS_UNICODE": -10.901211, "PyUnicode_Check": -10.901211, "PyUnicode_CheckExact": -10.901211, "PyUnicode_Decode": -10.901211, "PyUnicode_FromString": -10.208064, "PyUnicode_GET_LENGTH": -10.901211, "PyUnicode_GET_SIZE": -10.901211, "PyUnicode_IS_READY": -10.901211, "PyUnicode_KIND": -10.901211, "PyUnicode_READ": -10.901211, "PyUnicode_READ_CHAR": -10.901211, "PyUnicode_Type": -10.208064, "PyVarObject*": -10.901211, "PyVarObject_HEAD_INIT": -10.901211, "Py_DECREF": -10.208064, "Py_False": -10.208064, "Py_HUGE_VAL": -10.208064, "Py_INCREF": -8.598626, "Py_None": -9.109451, "Py_PYTHON_H": -10.901211, "Py_REFCNT": -10.901211, "Py_SIZE": -10.901211, "Py_TPFLAGS_CHECKTYPES": -10.901211, "Py_TPFLAGS_HAVE_INDEX": -10.901211, "Py_TPFLAGS_HAVE_NEWBUFFER": -10.901211, "Py_TYPE": -9.109451, "Py_True": -10.208064, "Py_UCS": -10.208064, "Py_UNICODE*": -10.901211, "Py_XDECREF": -10.901211, "Py_XINCREF": -10.901211, "Py_buffer": -9.109451, "Py_buffer*": -10.208064, "Py_hash_t": -10.901211, "Py_ssize_t": -7.500013, "Python": -10.208064, "Python.": -10.901211, "Qtrue": -8.598626, "READLINE_READLINE_CATS": -10.208064, "READ_VSNPRINTF_ARGS": -10.208064, "RECT": -10.901211, "REDIS_AOF_OFF": -10.901211, "REDIS_CMD_ADMIN": -10.901211, "REDIS_CMD_DENYOOM": -10.901211, "REDIS_CMD_FORCE_REPLICATION": -10.901211, "REDIS_CMD_NOSCRIPT": -10.901211, "REDIS_CMD_PUBSUB": -10.901211, "REDIS_CMD_RANDOM": -10.901211, "REDIS_CMD_READONLY": -10.901211, "REDIS_CMD_SORT_FOR_SCRIPT": -10.901211, "REDIS_CMD_WRITE": -10.208064, "REDIS_ERR": -10.901211, "REDIS_EXPIRELOOKUPS_PER_CRON": -10.208064, "REDIS_HT_MINFILL": -10.901211, "REDIS_MAXMEMORY_NO_EVICTION": -10.901211, "REDIS_NOTICE": -10.208064, "REDIS_OK": -10.901211, "REDIS_PROPAGATE_AOF": -10.901211, "REDIS_PROPAGATE_REPL": -10.901211, "REDIS_VERBOSE": -10.901211, "REDIS_WARNING": -10.901211, "REFU_IO_H": -10.208064, "REFU_USTRING_H": -10.208064, "REFU_WIN": -10.901211, "REF_TABLE_SIZE": -9.802599, "REPORT": -10.208064, "RE_FILE_WRITE": -10.901211, "RE_LOCALMEMSTACK_INSUFFICIENT": -8.821769, "RE_STRING_INIT_FAILURE": -9.514916, "RE_UTF": -8.703986, "RFS_": -10.208064, "RF_BIG_ENDIAN": -9.514916, "RF_BITFLAG_ON": -9.802599, "RF_CASE_IGNORE": -9.802599, "RF_COMPILE_ERROR": -8.193161, "RF_CR": -10.208064, "RF_FAILURE": -8.416304, "RF_HEXEQ_C": -9.802599, "RF_IAMHERE_FOR_DOXYGEN": -8.503316, "RF_LF": -9.514916, "RF_LITTLE_ENDIAN": -8.416304, "RF_LMS": -9.109451, "RF_MALLOC": -7.905479, "RF_MATCH_WORD": -9.514916, "RF_MODULE_STRINGS": -10.901211, "RF_NEWLINE_CRLF": -10.208064, "RF_OPTION_DEFAULT_ARGUMENTS": -9.109451, "RF_OPTION_FGETS_READBYTESN": -9.109451, "RF_OPTION_SOURCE_ENCODING": -7.500013, "RF_REALLOC": -10.901211, "RF_SELECT_FUNC": -9.514916, "RF_SELECT_FUNC_IF_NARGGT": -9.514916, "RF_STRING_INDEX_OUT_OF_BOUNDS": -10.901211, "RF_STRING_ITERATEB_END": -10.901211, "RF_STRING_ITERATEB_START": -10.901211, "RF_STRING_ITERATE_END": -9.802599, "RF_STRING_ITERATE_START": -9.514916, "RF_SUCCESS": -9.291773, "RF_String": -8.067997, "RF_String*": -6.494492, "RF_String**": -10.901211, "RF_UTF": -7.317692, "RSTRING_LEN": -10.208064, "RSTRING_PTR": -10.208064, "RUNTIME_FUNCTION": -8.821769, "RUN_CLEAN_ON_EXIT": -10.901211, "RUN_SETUP": -6.506762, "RUN_SETUP_GENTLY": -8.128622, "RUN_SILENT_EXEC_FAILURE": -10.901211, "R_Nan": -10.901211, "R_NegInf": -10.901211, "R_PosInf": -10.901211, "R_Zero": -10.901211, "Rebuild": -10.901211, "Refu": -10.901211, "Regression_": -9.291773, "Regression_loss": -9.514916, "ReplaceCode": -10.901211, "Returned": -10.901211, "Returns": -10.901211, "Rotate": -10.208064, "RotateWithVector": -9.514916, "RotateX": -10.208064, "RotateY": -10.208064, "RotateZ": -10.208064, "Router": -10.901211, "Runtime_CompileBaseline": -10.901211, "Runtime_CompileForOnStackReplacement": -10.901211, "Runtime_CompileLazy": -10.901211, "Runtime_CompileOptimized_Concurrent": -10.901211, "Runtime_CompileOptimized_NotConcurrent": -10.901211, "Runtime_NotifyDeoptimized": -10.901211, "Runtime_NotifyStubFailure": -10.901211, "Runtime_ResolvePossiblyDirectEval": -10.901211, "SCHEDULER_MAXNAME": -9.802599, "SCHEDULER_TASK_PATH_MAX": -10.208064, "SEARCH": -9.802599, "SELECTOR": -10.901211, "SET_ERRNO": -8.703986, "SHEBANG#!tcc": -10.901211, "SPAWN_WAIT_EXEC": -9.291773, "SSL": -8.598626, "SSL_AD_DECODE_ERROR": -10.208064, "SSL_CTX": -10.208064, "SSL_CTX_add_client_custom_ext": -10.901211, "SSL_CTX_add_server_custom_ext": -10.901211, "SSL_CUSTOM_EXTENSION": -8.703986, "SSL_CUSTOM_EXTENSION_free": -9.802599, "SSL_R_CUSTOM_EXTENSION_ERROR": -9.802599, "SSL_R_UNEXPECTED_EXTENSION": -10.901211, "SSL_custom_ext_add_cb": -9.802599, "SSL_custom_ext_free_cb": -9.802599, "SSL_custom_ext_parse_cb": -9.802599, "SSL_extension_supported": -10.901211, "STACK_OF": -10.208064, "START_HEAD": -10.208064, "STRBUF_INIT": -10.901211, "STRICT": -10.901211, "STRICT_CHECK": -9.514916, "STRIP_EXTENSION": -10.901211, "SUBSCRIBE": -10.208064, "SUCCESS": -10.901211, "SUNDOWN_VER_MAJOR": -10.901211, "SUNDOWN_VER_MINOR": -10.901211, "SUNDOWN_VER_REVISION": -10.901211, "SYSCALL_OR_NUM": -9.802599, "SYSTEM_NODETYPE_GROUP": -9.802599, "SYSTEM_NODETYPE_MULTI": -10.901211, "SYSTEM_NODETYPE_NORMAL": -10.208064, "SYS_exit": -10.901211, "SYS_fork": -10.901211, "SYS_restart_syscall": -10.901211, "S_ISFIFO": -10.901211, "S_ISSOCK": -10.901211, "Scale": -10.208064, "ScaleWithVector": -9.514916, "SetColumn": -10.208064, "SetRow": -10.208064, "SetupContext": -9.802599, "SquaredEpsilonInsensitive_": -9.802599, "SquaredEpsilonInsensitive___init__": -10.901211, "SquaredHinge_": -9.802599, "SquaredHinge___init__": -10.901211, "SquaredLoss_": -10.208064, "SquaredLoss_loss": -10.901211, "StackLimitCheck": -9.514916, "StackOverflow": -9.514916, "String": -9.109451, "StringX": -9.291773, "Strings": -10.901211, "Substring": -10.901211, "Subtract": -10.208064, "T": -10.208064, "TARGET_OS_IPHONE": -10.901211, "TASK_STATE_BLOCKING": -10.901211, "TASK_STATE_KILLED": -10.901211, "TASK_STATE_RUNNING": -10.901211, "TASK_STATE_STOPPED": -10.901211, "TASK_STATE_TERMINATED": -10.901211, "TASK_STATUS_BLOCKED": -10.208064, "TRACE": -10.208064, "TRACE_EVENT": -10.901211, "TRANSFER_ENCODING": -10.901211, "TSRMLS_C": -10.901211, "T_STRING": -10.208064, "Test": -10.901211, "Test_Router_Exception": -10.208064, "The": -8.703986, "This": -10.901211, "ThreadLocalTop*": -10.901211, "ThreadVisitor": -10.901211, "Throw": -10.901211, "TimerEventScope": -10.901211, "Translate": -10.208064, "TranslateWithVector": -9.514916, "Transpose": -10.208064, "UF_FRAGMENT": -10.208064, "UF_HOST": -10.208064, "UF_MAX": -10.208064, "UF_PATH": -10.208064, "UF_PORT": -9.514916, "UF_QUERY": -10.208064, "UF_SCHEMA": -10.208064, "UINT": -7.500013, "UINT*": -9.109451, "ULLONG_MAX": -9.291773, "ULONG": -10.901211, "UNKNOWN": -10.901211, "UNLOCK": -10.208064, "UNSUBSCRIBE": -10.208064, "UPGRADE": -10.901211, "USE_PAGER": -9.802599, "USHORT": -9.514916, "USHORT*": -10.208064, "UV_CREATE_PIPE": -10.208064, "UV_PROCESS": -10.901211, "UV_PROCESS_DETACHED": -10.208064, "UV_PROCESS_SETGID": -10.208064, "UV_PROCESS_SETUID": -10.208064, "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": -10.901211, "UV_STREAM_READABLE": -10.208064, "UV_STREAM_WRITABLE": -10.208064, "UV__F_NONBLOCK": -10.901211, "VALUE": -8.336261, "VFS_SEEK_CUR": -10.901211, "VFS_SEEK_END": -10.901211, "VFS_SEEK_SET": -10.901211, "VGAPIX": -10.901211, "VMEM_ALIGN": -10.208064, "VMEM_ALIGN_DOWN": -10.901211, "VMEM_SECTION_CODE": -10.901211, "VMEM_SECTION_DATA": -10.901211, "VMEM_SECTION_HEAP": -10.901211, "VMEM_SECTION_KERNEL": -10.901211, "VMEM_SECTION_MMAP": -10.901211, "VMEM_SECTION_STACK": -10.901211, "VMEM_SECTION_UNMAPPED": -10.901211, "VOID": -9.109451, "VisitFrames": -10.208064, "VisitThread": -10.901211, "WEXITSTATUS": -10.901211, "WGLEWContext": -10.901211, "WGLEWContext*": -10.208064, "WGLEWContextStruct": -10.208064, "WGLEW_": -10.208064, "WGLEW_AMD_gpu_association": -10.901211, "WGLEW_ARB_buffer_region": -10.901211, "WGLEW_ARB_create_context": -10.901211, "WGLEW_ARB_create_context_profile": -10.901211, "WGLEW_ARB_create_context_robustness": -10.901211, "WGLEW_ARB_extensions_string": -10.901211, "WGLEW_ARB_framebuffer_sRGB": -10.901211, "WGLEW_ARB_make_current_read": -10.901211, "WGLEW_ARB_multisample": -10.901211, "WGLEW_ARB_pbuffer": -10.901211, "WGLEW_ARB_pixel_format": -10.901211, "WGLEW_ARB_pixel_format_float": -10.901211, "WGLEW_ARB_render_texture": -10.901211, "WGLEW_ATI_pixel_format_float": -10.901211, "WGLEW_ATI_render_texture_rectangle": -10.901211, "WGLEW_EXPORT": -5.783217, "WGLEW_EXT_create_context_es": -10.901211, "WGLEW_EXT_depth_float": -10.901211, "WGLEW_EXT_display_color_table": -10.901211, "WGLEW_EXT_extensions_string": -10.901211, "WGLEW_EXT_framebuffer_sRGB": -10.901211, "WGLEW_EXT_make_current_read": -10.901211, "WGLEW_EXT_multisample": -10.901211, "WGLEW_EXT_pbuffer": -10.901211, "WGLEW_EXT_pixel_format": -10.901211, "WGLEW_EXT_pixel_format_packed_float": -10.901211, "WGLEW_EXT_swap_control": -10.901211, "WGLEW_GET_FUN": -6.113719, "WGLEW_GET_VAR": -7.009390, "WGLEW_I": -9.109451, "WGLEW_NV_DX_interop": -10.901211, "WGLEW_NV_copy_image": -10.901211, "WGLEW_NV_float_buffer": -10.901211, "WGLEW_NV_gpu_affinity": -10.901211, "WGLEW_NV_multisample_coverage": -10.901211, "WGLEW_NV_present_video": -10.901211, "WGLEW_NV_render_depth_texture": -10.901211, "WGLEW_NV_render_texture_rectangle": -10.901211, "WGLEW_NV_swap_group": -10.901211, "WGLEW_NV_vertex_array_range": -10.901211, "WGLEW_NV_video_capture": -10.901211, "WGLEW_NV_video_output": -10.901211, "WGLEW_OML_sync_control": -10.901211, "WGL_": -9.514916, "WGL_ACCELERATION_ARB": -10.901211, "WGL_ACCELERATION_EXT": -10.901211, "WGL_ACCESS_READ_ONLY_NV": -10.901211, "WGL_ACCESS_READ_WRITE_NV": -10.901211, "WGL_ACCESS_WRITE_DISCARD_NV": -10.901211, "WGL_ACCUM_ALPHA_BITS_ARB": -10.901211, "WGL_ACCUM_ALPHA_BITS_EXT": -10.901211, "WGL_ACCUM_BITS_ARB": -10.901211, "WGL_ACCUM_BITS_EXT": -10.901211, "WGL_ACCUM_BLUE_BITS_ARB": -10.901211, "WGL_ACCUM_BLUE_BITS_EXT": -10.901211, "WGL_ACCUM_GREEN_BITS_ARB": -10.901211, "WGL_ACCUM_GREEN_BITS_EXT": -10.901211, "WGL_ACCUM_RED_BITS_ARB": -10.901211, "WGL_ACCUM_RED_BITS_EXT": -10.901211, "WGL_ALPHA_BITS_ARB": -10.901211, "WGL_ALPHA_BITS_EXT": -10.901211, "WGL_ALPHA_SHIFT_ARB": -10.901211, "WGL_ALPHA_SHIFT_EXT": -10.901211, "WGL_AMD_gpu_association": -10.208064, "WGL_ARB_buffer_region": -10.208064, "WGL_ARB_create_context": -10.208064, "WGL_ARB_create_context_profile": -10.208064, "WGL_ARB_create_context_robustness": -10.208064, "WGL_ARB_extensions_string": -10.208064, "WGL_ARB_framebuffer_sRGB": -10.208064, "WGL_ARB_make_current_read": -10.208064, "WGL_ARB_multisample": -10.208064, "WGL_ARB_pbuffer": -10.208064, "WGL_ARB_pixel_format": -10.208064, "WGL_ARB_pixel_format_float": -10.208064, "WGL_ARB_render_texture": -10.208064, "WGL_ATI_pixel_format_float": -10.208064, "WGL_ATI_render_texture_rectangle": -10.208064, "WGL_AUX": -8.598626, "WGL_AUX_BUFFERS_ARB": -10.901211, "WGL_AUX_BUFFERS_EXT": -10.901211, "WGL_BACK_COLOR_BUFFER_BIT_ARB": -10.901211, "WGL_BACK_LEFT_ARB": -10.901211, "WGL_BACK_RIGHT_ARB": -10.901211, "WGL_BIND_TO_TEXTURE_DEPTH_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": -10.901211, "WGL_BIND_TO_TEXTURE_RGBA_ARB": -10.901211, "WGL_BIND_TO_TEXTURE_RGB_ARB": -10.901211, "WGL_BIND_TO_VIDEO_RGBA_NV": -10.901211, "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": -10.901211, "WGL_BIND_TO_VIDEO_RGB_NV": -10.901211, "WGL_BLUE_BITS_ARB": -10.901211, "WGL_BLUE_BITS_EXT": -10.901211, "WGL_BLUE_SHIFT_ARB": -10.901211, "WGL_BLUE_SHIFT_EXT": -10.901211, "WGL_COLOR_BITS_ARB": -10.901211, "WGL_COLOR_BITS_EXT": -10.901211, "WGL_COLOR_SAMPLES_NV": -10.901211, "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": -10.901211, "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": -10.901211, "WGL_CONTEXT_DEBUG_BIT_ARB": -10.901211, "WGL_CONTEXT_ES": -10.901211, "WGL_CONTEXT_FLAGS_ARB": -10.901211, "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": -10.901211, "WGL_CONTEXT_LAYER_PLANE_ARB": -10.901211, "WGL_CONTEXT_MAJOR_VERSION_ARB": -10.901211, "WGL_CONTEXT_MINOR_VERSION_ARB": -10.901211, "WGL_CONTEXT_PROFILE_MASK_ARB": -10.901211, "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": -10.901211, "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": -10.901211, "WGL_COVERAGE_SAMPLES_NV": -10.901211, "WGL_CUBE_MAP_FACE_ARB": -10.901211, "WGL_DEPTH_BITS_ARB": -10.901211, "WGL_DEPTH_BITS_EXT": -10.901211, "WGL_DEPTH_BUFFER_BIT_ARB": -10.901211, "WGL_DEPTH_COMPONENT_NV": -10.901211, "WGL_DEPTH_FLOAT_EXT": -10.901211, "WGL_DEPTH_TEXTURE_FORMAT_NV": -10.901211, "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I": -10.901211, "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I": -10.901211, "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I": -10.901211, "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I": -10.901211, "WGL_DOUBLE_BUFFER_ARB": -10.901211, "WGL_DOUBLE_BUFFER_EXT": -10.901211, "WGL_DRAW_TO_BITMAP_ARB": -10.901211, "WGL_DRAW_TO_BITMAP_EXT": -10.901211, "WGL_DRAW_TO_PBUFFER_ARB": -10.901211, "WGL_DRAW_TO_PBUFFER_EXT": -10.901211, "WGL_DRAW_TO_WINDOW_ARB": -10.901211, "WGL_DRAW_TO_WINDOW_EXT": -10.901211, "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": -10.901211, "WGL_ERROR_MISSING_AFFINITY_MASK_NV": -10.901211, "WGL_EXT_create_context_es": -10.208064, "WGL_EXT_depth_float": -10.208064, "WGL_EXT_display_color_table": -10.208064, "WGL_EXT_extensions_string": -10.208064, "WGL_EXT_framebuffer_sRGB": -10.208064, "WGL_EXT_make_current_read": -10.208064, "WGL_EXT_multisample": -10.208064, "WGL_EXT_pbuffer": -10.208064, "WGL_EXT_pixel_format": -10.208064, "WGL_EXT_pixel_format_packed_float": -10.208064, "WGL_EXT_swap_control": -10.208064, "WGL_FLOAT_COMPONENTS_NV": -10.901211, "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": -10.901211, "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": -10.901211, "WGL_FRONT_COLOR_BUFFER_BIT_ARB": -10.901211, "WGL_FRONT_LEFT_ARB": -10.901211, "WGL_FRONT_RIGHT_ARB": -10.901211, "WGL_FULL_ACCELERATION_ARB": -10.901211, "WGL_FULL_ACCELERATION_EXT": -10.901211, "WGL_GAMMA_EXCLUDE_DESKTOP_I": -10.901211, "WGL_GAMMA_TABLE_SIZE_I": -10.901211, "WGL_GENERIC_ACCELERATION_ARB": -10.901211, "WGL_GENERIC_ACCELERATION_EXT": -10.901211, "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I": -10.901211, "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I": -10.901211, "WGL_GENLOCK_SOURCE_EDGE_BOTH_I": -10.901211, "WGL_GENLOCK_SOURCE_EDGE_FALLING_I": -10.901211, "WGL_GENLOCK_SOURCE_EDGE_RISING_I": -10.901211, "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I": -10.901211, "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I": -10.901211, "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I": -10.901211, "WGL_GENLOCK_SOURCE_MULTIVIEW_I": -10.901211, "WGL_GPU_CLOCK_AMD": -10.901211, "WGL_GPU_FASTEST_TARGET_GPUS_AMD": -10.901211, "WGL_GPU_NUM_PIPES_AMD": -10.901211, "WGL_GPU_NUM_RB_AMD": -10.901211, "WGL_GPU_NUM_SIMD_AMD": -10.901211, "WGL_GPU_NUM_SPI_AMD": -10.901211, "WGL_GPU_OPENGL_VERSION_STRING_AMD": -10.901211, "WGL_GPU_RAM_AMD": -10.901211, "WGL_GPU_RENDERER_STRING_AMD": -10.901211, "WGL_GPU_VENDOR_AMD": -10.901211, "WGL_GREEN_BITS_ARB": -10.901211, "WGL_GREEN_BITS_EXT": -10.901211, "WGL_GREEN_SHIFT_ARB": -10.901211, "WGL_GREEN_SHIFT_EXT": -10.901211, "WGL_I": -8.416304, "WGL_IMAGE_BUFFER_LOCK_I": -10.901211, "WGL_IMAGE_BUFFER_MIN_ACCESS_I": -10.901211, "WGL_LOSE_CONTEXT_ON_RESET_ARB": -10.901211, "WGL_MAX_PBUFFER_HEIGHT_ARB": -10.901211, "WGL_MAX_PBUFFER_HEIGHT_EXT": -10.901211, "WGL_MAX_PBUFFER_PIXELS_ARB": -10.901211, "WGL_MAX_PBUFFER_PIXELS_EXT": -10.901211, "WGL_MAX_PBUFFER_WIDTH_ARB": -10.901211, "WGL_MAX_PBUFFER_WIDTH_EXT": -10.901211, "WGL_MIPMAP_LEVEL_ARB": -10.901211, "WGL_MIPMAP_TEXTURE_ARB": -10.901211, "WGL_NEED_PALETTE_ARB": -10.901211, "WGL_NEED_PALETTE_EXT": -10.901211, "WGL_NEED_SYSTEM_PALETTE_ARB": -10.901211, "WGL_NEED_SYSTEM_PALETTE_EXT": -10.901211, "WGL_NO_ACCELERATION_ARB": -10.901211, "WGL_NO_ACCELERATION_EXT": -10.901211, "WGL_NO_RESET_NOTIFICATION_ARB": -10.901211, "WGL_NO_TEXTURE_ARB": -10.208064, "WGL_NUMBER_OVERLAYS_ARB": -10.901211, "WGL_NUMBER_OVERLAYS_EXT": -10.901211, "WGL_NUMBER_PIXEL_FORMATS_ARB": -10.901211, "WGL_NUMBER_PIXEL_FORMATS_EXT": -10.901211, "WGL_NUMBER_UNDERLAYS_ARB": -10.901211, "WGL_NUMBER_UNDERLAYS_EXT": -10.901211, "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": -10.901211, "WGL_NUM_VIDEO_SLOTS_NV": -10.901211, "WGL_NV_DX_interop": -10.208064, "WGL_NV_copy_image": -10.208064, "WGL_NV_float_buffer": -10.208064, "WGL_NV_gpu_affinity": -10.208064, "WGL_NV_multisample_coverage": -10.208064, "WGL_NV_present_video": -10.208064, "WGL_NV_render_depth_texture": -10.208064, "WGL_NV_render_texture_rectangle": -10.208064, "WGL_NV_swap_group": -10.208064, "WGL_NV_vertex_array_range": -10.208064, "WGL_NV_video_capture": -10.208064, "WGL_NV_video_output": -10.208064, "WGL_OML_sync_control": -10.208064, "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": -10.901211, "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": -10.901211, "WGL_PBUFFER_HEIGHT_ARB": -10.901211, "WGL_PBUFFER_HEIGHT_EXT": -10.901211, "WGL_PBUFFER_LARGEST_ARB": -10.901211, "WGL_PBUFFER_LARGEST_EXT": -10.901211, "WGL_PBUFFER_LOST_ARB": -10.901211, "WGL_PBUFFER_WIDTH_ARB": -10.901211, "WGL_PBUFFER_WIDTH_EXT": -10.901211, "WGL_PIXEL_TYPE_ARB": -10.901211, "WGL_PIXEL_TYPE_EXT": -10.901211, "WGL_RED_BITS_ARB": -10.901211, "WGL_RED_BITS_EXT": -10.901211, "WGL_RED_SHIFT_ARB": -10.901211, "WGL_RED_SHIFT_EXT": -10.901211, "WGL_SAMPLES_": -10.901211, "WGL_SAMPLES_ARB": -10.901211, "WGL_SAMPLES_EXT": -10.901211, "WGL_SAMPLE_BUFFERS_": -10.901211, "WGL_SAMPLE_BUFFERS_ARB": -10.901211, "WGL_SAMPLE_BUFFERS_EXT": -10.901211, "WGL_SHARE_ACCUM_ARB": -10.901211, "WGL_SHARE_ACCUM_EXT": -10.901211, "WGL_SHARE_DEPTH_ARB": -10.901211, "WGL_SHARE_DEPTH_EXT": -10.901211, "WGL_SHARE_STENCIL_ARB": -10.901211, "WGL_SHARE_STENCIL_EXT": -10.901211, "WGL_STENCIL_BITS_ARB": -10.901211, "WGL_STENCIL_BITS_EXT": -10.901211, "WGL_STENCIL_BUFFER_BIT_ARB": -10.901211, "WGL_STEREO_ARB": -10.901211, "WGL_STEREO_EMITTER_DISABLE_": -10.901211, "WGL_STEREO_EMITTER_ENABLE_": -10.901211, "WGL_STEREO_EXT": -10.901211, "WGL_STEREO_POLARITY_INVERT_": -10.901211, "WGL_STEREO_POLARITY_NORMAL_": -10.901211, "WGL_SUPPORT_GDI_ARB": -10.901211, "WGL_SUPPORT_GDI_EXT": -10.901211, "WGL_SUPPORT_OPENGL_ARB": -10.901211, "WGL_SUPPORT_OPENGL_EXT": -10.901211, "WGL_SWAP_COPY_ARB": -10.901211, "WGL_SWAP_COPY_EXT": -10.901211, "WGL_SWAP_EXCHANGE_ARB": -10.901211, "WGL_SWAP_EXCHANGE_EXT": -10.901211, "WGL_SWAP_LAYER_BUFFERS_ARB": -10.901211, "WGL_SWAP_LAYER_BUFFERS_EXT": -10.901211, "WGL_SWAP_METHOD_ARB": -10.901211, "WGL_SWAP_METHOD_EXT": -10.901211, "WGL_SWAP_UNDEFINED_ARB": -10.901211, "WGL_SWAP_UNDEFINED_EXT": -10.901211, "WGL_TEXTURE_": -10.208064, "WGL_TEXTURE_CUBE_MAP_ARB": -10.901211, "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": -10.901211, "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": -10.901211, "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": -10.901211, "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": -10.901211, "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": -10.901211, "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": -10.901211, "WGL_TEXTURE_DEPTH_COMPONENT_NV": -10.901211, "WGL_TEXTURE_FLOAT_RGBA_NV": -10.901211, "WGL_TEXTURE_FLOAT_RGB_NV": -10.901211, "WGL_TEXTURE_FLOAT_RG_NV": -10.901211, "WGL_TEXTURE_FLOAT_R_NV": -10.901211, "WGL_TEXTURE_FORMAT_ARB": -10.901211, "WGL_TEXTURE_RECTANGLE_ATI": -10.901211, "WGL_TEXTURE_RECTANGLE_NV": -10.901211, "WGL_TEXTURE_RGBA_ARB": -10.901211, "WGL_TEXTURE_RGB_ARB": -10.901211, "WGL_TEXTURE_TARGET_ARB": -10.901211, "WGL_TRANSPARENT_ALPHA_VALUE_ARB": -10.901211, "WGL_TRANSPARENT_ARB": -10.901211, "WGL_TRANSPARENT_BLUE_VALUE_ARB": -10.901211, "WGL_TRANSPARENT_EXT": -10.901211, "WGL_TRANSPARENT_GREEN_VALUE_ARB": -10.901211, "WGL_TRANSPARENT_INDEX_VALUE_ARB": -10.901211, "WGL_TRANSPARENT_RED_VALUE_ARB": -10.901211, "WGL_TRANSPARENT_VALUE_EXT": -10.901211, "WGL_TYPE_COLORINDEX_ARB": -10.901211, "WGL_TYPE_COLORINDEX_EXT": -10.901211, "WGL_TYPE_RGBA_ARB": -10.901211, "WGL_TYPE_RGBA_EXT": -10.901211, "WGL_TYPE_RGBA_FLOAT_ARB": -10.901211, "WGL_TYPE_RGBA_FLOAT_ATI": -10.901211, "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": -10.901211, "WGL_UNIQUE_ID_NV": -10.901211, "WGL_VIDEO_OUT_ALPHA_NV": -10.901211, "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": -10.901211, "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": -10.901211, "WGL_VIDEO_OUT_COLOR_NV": -10.901211, "WGL_VIDEO_OUT_DEPTH_NV": -10.901211, "WGL_VIDEO_OUT_FIELD_": -10.208064, "WGL_VIDEO_OUT_FRAME": -10.901211, "WGL_VIDEO_OUT_STACKED_FIELDS_": -10.208064, "WIFSIGNALED": -10.901211, "WIN": -10.208064, "WINAPI": -6.122087, "WITH_THREAD": -10.901211, "WNOHANG": -10.901211, "WTERMSIG": -10.901211, "WithTranslation": -9.802599, "XX": -6.758076, "YA_FREE": -10.208064, "YA_MALLOC": -10.901211, "ZEPHIR_INIT_CLASS": -10.208064, "ZEPHIR_REGISTER_CLASS_EX": -10.901211, "[": -3.803662, "\\": -5.573335, "]": -3.806146, "^": -9.802599, "_": -7.094548, "_AL_FATAL": -10.901211, "_ARB": -8.598626, "_BE": -8.262153, "_Complex": -10.208064, "_Complex_I": -9.802599, "_Decode": -9.514916, "_Decode_swap": -9.514916, "_ENABLED": -10.208064, "_ENCODING": -9.514916, "_Encode": -9.802599, "_FromCodepoint": -10.901211, "_GPU_DEVICE": -10.901211, "_H": -10.208064, "_INVALID_SEQUENCE": -9.291773, "_Included_jni_JniLayer": -10.208064, "_IsContinuationByte": -9.514916, "_LE": -8.262153, "_MSC_VER": -9.291773, "_NMEX_NIGHTMARE_H": -10.208064, "_NME_WMAN_H": -10.208064, "_OPENMP": -10.901211, "_PQIV_H_INCLUDED": -10.208064, "_PROFILE_BIT_EXT": -10.901211, "_PyUnicode_Ready": -10.901211, "_TOS_ICMP": -10.901211, "_USE_MATH_DEFINES": -10.901211, "_VERSION": -10.901211, "_VerifySequence": -9.291773, "_WIN": -9.802599, "_XOPEN_SOURCE": -10.901211, "__": -9.514916, "__APPLE__": -10.208064, "__ARM_NEON__": -8.336261, "__FILE__": -9.514916, "__GLK_MATRIX_": -10.208064, "__GNUC_MINOR__": -10.901211, "__GNUC__": -8.821769, "__LINE__": -7.317692, "__MINGW": -10.901211, "__PYX_BUF_FLAGS_PACKED_STRUCT": -10.901211, "__PYX_BUILD_PY_SSIZE_T": -10.208064, "__PYX_EXTERN_C": -9.802599, "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": -10.901211, "__PYX_HAVE__sklearn__linear_model__sgd_fast": -10.901211, "__Pyx_AddTraceback": -9.291773, "__Pyx_ArgTypeTest": -10.901211, "__Pyx_BUILTIN_MODULE_NAME": -10.208064, "__Pyx_BufFmt_Context": -10.901211, "__Pyx_BufFmt_StackElem": -10.901211, "__Pyx_BufFmt_StackElem*": -10.208064, "__Pyx_Buf_DimInfo": -10.208064, "__Pyx_Buffer": -10.208064, "__Pyx_CIMAG": -9.514916, "__Pyx_CLEAR": -10.901211, "__Pyx_CREAL": -9.514916, "__Pyx_CodeObjectCache": -10.208064, "__Pyx_CodeObjectCacheEntry": -10.901211, "__Pyx_CodeObjectCacheEntry*": -10.208064, "__Pyx_DECREF": -8.193161, "__Pyx_DOCSTR": -10.208064, "__Pyx_DelAttrString": -10.208064, "__Pyx_ErrFetch": -10.901211, "__Pyx_ErrRestore": -10.901211, "__Pyx_GIVEREF": -8.955301, "__Pyx_GOTREF": -8.067997, "__Pyx_GetAttrString": -10.208064, "__Pyx_GetBuffer": -10.208064, "__Pyx_GetBufferAndValidate": -10.901211, "__Pyx_GetItemInt": -10.901211, "__Pyx_GetItemInt_Fast": -10.901211, "__Pyx_GetItemInt_Generic": -9.109451, "__Pyx_GetItemInt_List": -10.901211, "__Pyx_GetItemInt_List_Fast": -10.901211, "__Pyx_GetItemInt_Tuple": -10.901211, "__Pyx_GetItemInt_Tuple_Fast": -10.901211, "__Pyx_GetVtable": -10.901211, "__Pyx_INCREF": -9.291773, "__Pyx_InitStrings": -10.901211, "__Pyx_IterFinish": -10.901211, "__Pyx_IternextUnpackEndCheck": -10.901211, "__Pyx_LocalBuf_ND": -10.901211, "__Pyx_MODULE_NAME": -10.901211, "__Pyx_NAMESTR": -10.208064, "__Pyx_Owned_Py_None": -10.901211, "__Pyx_ParseOptionalKeywords": -9.802599, "__Pyx_Print": -10.901211, "__Pyx_PrintOne": -10.901211, "__Pyx_PyBool_FromLong": -10.901211, "__Pyx_PyBytes_AsUString": -10.901211, "__Pyx_PyBytes_FromUString": -10.901211, "__Pyx_PyCode_New": -10.208064, "__Pyx_PyIdentifier_FromString": -9.802599, "__Pyx_PyIndex_AsSsize_t": -10.901211, "__Pyx_PyIndex_Check": -9.802599, "__Pyx_PyInt_AsChar": -10.901211, "__Pyx_PyInt_AsHash_t": -10.208064, "__Pyx_PyInt_AsInt": -10.208064, "__Pyx_PyInt_AsLong": -10.901211, "__Pyx_PyInt_AsLongDouble": -10.901211, "__Pyx_PyInt_AsLongLong": -10.901211, "__Pyx_PyInt_AsShort": -10.901211, "__Pyx_PyInt_AsSignedChar": -10.901211, "__Pyx_PyInt_AsSignedInt": -10.901211, "__Pyx_PyInt_AsSignedLong": -10.901211, "__Pyx_PyInt_AsSignedLongLong": -10.901211, "__Pyx_PyInt_AsSignedShort": -10.901211, "__Pyx_PyInt_AsSize_t": -10.901211, "__Pyx_PyInt_AsUnsignedChar": -10.901211, "__Pyx_PyInt_AsUnsignedInt": -10.901211, "__Pyx_PyInt_AsUnsignedLong": -10.901211, "__Pyx_PyInt_AsUnsignedLongLong": -10.901211, "__Pyx_PyInt_AsUnsignedShort": -10.901211, "__Pyx_PyInt_FromHash_t": -10.208064, "__Pyx_PyInt_FromSize_t": -10.901211, "__Pyx_PyNumber_Divide": -10.208064, "__Pyx_PyNumber_InPlaceDivide": -10.208064, "__Pyx_PyNumber_Int": -10.901211, "__Pyx_PyObject_IsTrue": -10.901211, "__Pyx_PySequence_DelSlice": -10.208064, "__Pyx_PySequence_GetSlice": -10.208064, "__Pyx_PySequence_SetSlice": -10.208064, "__Pyx_PyUnicode_GET_LENGTH": -10.208064, "__Pyx_PyUnicode_READ": -10.208064, "__Pyx_PyUnicode_READY": -10.208064, "__Pyx_PyUnicode_READ_CHAR": -10.208064, "__Pyx_Raise": -9.802599, "__Pyx_RaiseArgtupleInvalid": -9.291773, "__Pyx_RaiseBufferFallbackError": -10.901211, "__Pyx_RaiseDoubleKeywordsError": -10.901211, "__Pyx_RaiseImportError": -10.901211, "__Pyx_RaiseNeedMoreValuesError": -10.901211, "__Pyx_RaiseNoneNotIterableError": -10.901211, "__Pyx_RaiseTooManyValuesError": -10.901211, "__Pyx_RefNanny": -8.821769, "__Pyx_RefNannyAPIStruct": -9.802599, "__Pyx_RefNannyDeclarations": -8.821769, "__Pyx_RefNannyFinishContext": -8.598626, "__Pyx_RefNannySetupContext": -8.703986, "__Pyx_ReleaseBuffer": -10.208064, "__Pyx_SET_CIMAG": -10.208064, "__Pyx_SET_CREAL": -10.208064, "__Pyx_SafeReleaseBuffer": -10.901211, "__Pyx_SetAttrString": -10.208064, "__Pyx_SetVtable": -10.901211, "__Pyx_StringTabEntry": -10.208064, "__Pyx_StructField": -10.208064, "__Pyx_StructField*": -10.901211, "__Pyx_StructField_": -10.208064, "__Pyx_StructField_*": -10.901211, "__Pyx_TypeCheck": -10.901211, "__Pyx_TypeInfo": -10.208064, "__Pyx_TypeInfo*": -10.208064, "__Pyx_TypeInfo_nn___pyx_t_": -10.901211, "__Pyx_TypeTest": -10.901211, "__Pyx_WriteUnraisable": -9.802599, "__Pyx_XCLEAR": -10.901211, "__Pyx_XDECREF": -8.262153, "__Pyx_XGIVEREF": -9.514916, "__Pyx_XGOTREF": -10.208064, "__Pyx_XINCREF": -10.208064, "__Pyx_c_abs": -9.802599, "__Pyx_c_absf": -9.802599, "__Pyx_c_conj": -9.802599, "__Pyx_c_conjf": -9.802599, "__Pyx_c_diff": -10.208064, "__Pyx_c_difff": -10.208064, "__Pyx_c_eq": -10.208064, "__Pyx_c_eqf": -10.208064, "__Pyx_c_is_zero": -9.802599, "__Pyx_c_is_zerof": -9.802599, "__Pyx_c_neg": -10.208064, "__Pyx_c_negf": -10.208064, "__Pyx_c_pow": -9.802599, "__Pyx_c_powf": -9.802599, "__Pyx_c_prod": -10.208064, "__Pyx_c_prodf": -10.208064, "__Pyx_c_quot": -10.208064, "__Pyx_c_quotf": -10.208064, "__Pyx_c_sum": -10.208064, "__Pyx_c_sumf": -10.208064, "__Pyx_check_binary_version": -10.901211, "__Pyx_minusones": -10.901211, "__Pyx_zeros": -10.901211, "__STDC_VERSION__": -10.208064, "__SUNPRO_C": -10.901211, "__VA_ARGS__": -8.821769, "__WGLEW_": -9.514916, "__WGLEW_AMD_gpu_association": -10.208064, "__WGLEW_ARB_buffer_region": -10.208064, "__WGLEW_ARB_create_context": -10.208064, "__WGLEW_ARB_create_context_profile": -10.208064, "__WGLEW_ARB_create_context_robustness": -10.208064, "__WGLEW_ARB_extensions_string": -10.208064, "__WGLEW_ARB_framebuffer_sRGB": -10.208064, "__WGLEW_ARB_make_current_read": -10.208064, "__WGLEW_ARB_multisample": -10.208064, "__WGLEW_ARB_pbuffer": -10.208064, "__WGLEW_ARB_pixel_format": -10.208064, "__WGLEW_ARB_pixel_format_float": -10.208064, "__WGLEW_ARB_render_texture": -10.208064, "__WGLEW_ATI_pixel_format_float": -10.208064, "__WGLEW_ATI_render_texture_rectangle": -10.208064, "__WGLEW_EXT_create_context_es": -10.208064, "__WGLEW_EXT_depth_float": -10.208064, "__WGLEW_EXT_display_color_table": -10.208064, "__WGLEW_EXT_extensions_string": -10.208064, "__WGLEW_EXT_framebuffer_sRGB": -10.208064, "__WGLEW_EXT_make_current_read": -10.208064, "__WGLEW_EXT_multisample": -10.208064, "__WGLEW_EXT_pbuffer": -10.208064, "__WGLEW_EXT_pixel_format": -10.208064, "__WGLEW_EXT_pixel_format_packed_float": -10.208064, "__WGLEW_EXT_swap_control": -10.208064, "__WGLEW_H__": -10.901211, "__WGLEW_I": -8.416304, "__WGLEW_NV_DX_interop": -10.208064, "__WGLEW_NV_copy_image": -10.208064, "__WGLEW_NV_float_buffer": -10.208064, "__WGLEW_NV_gpu_affinity": -10.208064, "__WGLEW_NV_multisample_coverage": -10.208064, "__WGLEW_NV_present_video": -10.208064, "__WGLEW_NV_render_depth_texture": -10.208064, "__WGLEW_NV_render_texture_rectangle": -10.208064, "__WGLEW_NV_swap_group": -10.208064, "__WGLEW_NV_vertex_array_range": -10.208064, "__WGLEW_NV_video_capture": -10.208064, "__WGLEW_NV_video_output": -10.208064, "__WGLEW_OML_sync_control": -10.208064, "__aligned__": -10.901211, "__array_alloc": -10.901211, "__array_header": -9.514916, "__array_resize": -9.291773, "__array_search": -10.208064, "__arrayallocated": -10.901211, "__attribute__": -8.503316, "__builtin_expect": -10.208064, "__bump_up": -9.802599, "__cdecl": -10.208064, "__cplusplus": -7.810168, "__fastcall": -10.208064, "__header": -9.291773, "__i": -10.901211, "__imag__": -10.901211, "__inline": -10.901211, "__inline__": -6.357916, "__int": -8.703986, "__pyx_L": -6.840768, "__pyx_PyFloat_AsDouble": -8.703986, "__pyx_PyFloat_AsFloat": -10.901211, "__pyx_args": -8.262153, "__pyx_base": -8.503316, "__pyx_base.__pyx_vtab": -10.901211, "__pyx_base.loss": -10.901211, "__pyx_bisect_code_objects": -10.901211, "__pyx_builtin_NotImplementedError": -10.208064, "__pyx_cfilenm": -10.901211, "__pyx_clineno": -7.237649, "__pyx_code_cache": -10.901211, "__pyx_doc_": -10.901211, "__pyx_empty_tuple": -10.208064, "__pyx_f": -7.569006, "__pyx_f_": -9.109451, "__pyx_filename": -7.374850, "__pyx_gilstate_save": -10.208064, "__pyx_insert_code_object": -10.901211, "__pyx_k_": -8.416304, "__pyx_k__B": -10.901211, "__pyx_k__C": -10.901211, "__pyx_k__H": -10.901211, "__pyx_k__I": -10.901211, "__pyx_k__L": -10.901211, "__pyx_k__NotImplementedError": -10.901211, "__pyx_k__O": -10.901211, "__pyx_k__Q": -10.901211, "__pyx_k__RuntimeError": -10.901211, "__pyx_k__ValueError": -10.901211, "__pyx_k__Zd": -10.901211, "__pyx_k__Zf": -10.901211, "__pyx_k__Zg": -10.901211, "__pyx_k____main__": -10.901211, "__pyx_k____test__": -10.901211, "__pyx_k__alpha": -10.901211, "__pyx_k__any": -10.901211, "__pyx_k__b": -10.901211, "__pyx_k__c": -10.901211, "__pyx_k__class_weight": -10.901211, "__pyx_k__count": -10.901211, "__pyx_k__d": -10.901211, "__pyx_k__dataset": -10.901211, "__pyx_k__dloss": -10.901211, "__pyx_k__dtype": -10.901211, "__pyx_k__epoch": -10.901211, "__pyx_k__epsilon": -10.901211, "__pyx_k__eta": -10.208064, "__pyx_k__f": -10.901211, "__pyx_k__fit_intercept": -10.901211, "__pyx_k__float": -10.901211, "__pyx_k__g": -10.901211, "__pyx_k__h": -10.901211, "__pyx_k__i": -10.901211, "__pyx_k__intercept": -10.901211, "__pyx_k__intercept_decay": -10.901211, "__pyx_k__is_hinge": -10.901211, "__pyx_k__isinf": -10.901211, "__pyx_k__isnan": -10.901211, "__pyx_k__l": -10.901211, "__pyx_k__learning_rate": -10.901211, "__pyx_k__loss": -10.901211, "__pyx_k__n_features": -10.901211, "__pyx_k__n_iter": -10.901211, "__pyx_k__n_samples": -10.901211, "__pyx_k__nonzero": -10.901211, "__pyx_k__np": -10.901211, "__pyx_k__numpy": -10.901211, "__pyx_k__order": -10.901211, "__pyx_k__p": -10.901211, "__pyx_k__penalty_type": -10.901211, "__pyx_k__plain_sgd": -10.901211, "__pyx_k__power_t": -10.901211, "__pyx_k__q": -10.901211, "__pyx_k__q_data_ptr": -10.901211, "__pyx_k__range": -10.901211, "__pyx_k__rho": -10.901211, "__pyx_k__sample_weight": -10.901211, "__pyx_k__seed": -10.901211, "__pyx_k__shape": -10.901211, "__pyx_k__shuffle": -10.901211, "__pyx_k__sumloss": -10.901211, "__pyx_k__sys": -10.901211, "__pyx_k__t": -10.901211, "__pyx_k__t_start": -10.901211, "__pyx_k__threshold": -10.901211, "__pyx_k__time": -10.901211, "__pyx_k__u": -10.901211, "__pyx_k__update": -10.901211, "__pyx_k__verbose": -10.901211, "__pyx_k__w": -10.901211, "__pyx_k__weight_neg": -10.901211, "__pyx_k__weight_pos": -10.901211, "__pyx_k__weights": -10.901211, "__pyx_k__x_data_ptr": -10.901211, "__pyx_k__x_ind_ptr": -10.901211, "__pyx_k__xnnz": -10.901211, "__pyx_k__y": -10.901211, "__pyx_k__zeros": -10.901211, "__pyx_kwds": -8.598626, "__pyx_lineno": -7.237649, "__pyx_module_is_main_sklearn__linear_model__sgd_fast": -10.901211, "__pyx_n_s__dloss": -10.901211, "__pyx_n_s__loss": -10.901211, "__pyx_n_s__p": -9.514916, "__pyx_n_s__y": -9.514916, "__pyx_obj_": -6.583723, "__pyx_pf_": -8.703986, "__pyx_print": -10.901211, "__pyx_print_kwargs": -10.901211, "__pyx_pw_": -10.208064, "__pyx_pyargnames": -10.208064, "__pyx_r": -7.643114, "__pyx_refnanny": -8.821769, "__pyx_skip_dispatch": -9.514916, "__pyx_t_": -5.819806, "__pyx_t_double_complex": -7.605374, "__pyx_t_double_complex_from_parts": -10.901211, "__pyx_t_float_complex": -7.605374, "__pyx_t_float_complex_from_parts": -10.901211, "__pyx_v_C": -10.901211, "__pyx_v_alpha": -10.901211, "__pyx_v_c": -10.901211, "__pyx_v_epsilon": -10.208064, "__pyx_v_eta": -10.901211, "__pyx_v_fit_intercept": -10.901211, "__pyx_v_flags": -10.901211, "__pyx_v_intercept": -10.901211, "__pyx_v_intercept_decay": -10.901211, "__pyx_v_learning_rate": -10.901211, "__pyx_v_n_iter": -10.901211, "__pyx_v_p": -7.263625, "__pyx_v_penalty_type": -10.901211, "__pyx_v_power_t": -10.901211, "__pyx_v_rho": -10.901211, "__pyx_v_self": -8.598626, "__pyx_v_shuffle": -10.901211, "__pyx_v_t": -10.901211, "__pyx_v_threshold": -10.208064, "__pyx_v_verbose": -10.901211, "__pyx_v_weight_neg": -10.901211, "__pyx_v_weight_pos": -10.901211, "__pyx_v_y": -7.263625, "__pyx_vtab": -10.901211, "__pyx_vtabstruct_": -7.956772, "__real__": -10.901211, "__reduce__": -8.821769, "__releasebuffer__": -10.901211, "__stdcall": -10.208064, "__sun__": -10.901211, "__wglewAllocateMemoryNV": -10.208064, "__wglewAssociateImageBufferEventsI": -10.208064, "__wglewBeginFrameTrackingI": -10.208064, "__wglewBindDisplayColorTableEXT": -10.208064, "__wglewBindSwapBarrierNV": -10.208064, "__wglewBindTexImageARB": -10.208064, "__wglewBindVideoCaptureDeviceNV": -10.208064, "__wglewBindVideoDeviceNV": -10.208064, "__wglewBindVideoImageNV": -10.208064, "__wglewBlitContextFramebufferAMD": -10.208064, "__wglewChoosePixelFormatARB": -10.208064, "__wglewChoosePixelFormatEXT": -10.208064, "__wglewCopyImageSubDataNV": -10.208064, "__wglewCreateAffinityDCNV": -10.208064, "__wglewCreateAssociatedContextAMD": -10.208064, "__wglewCreateAssociatedContextAttribsAMD": -10.208064, "__wglewCreateBufferRegionARB": -10.208064, "__wglewCreateContextAttribsARB": -10.208064, "__wglewCreateDisplayColorTableEXT": -10.208064, "__wglewCreateImageBufferI": -10.208064, "__wglewCreatePbufferARB": -10.208064, "__wglewCreatePbufferEXT": -10.208064, "__wglewDXCloseDeviceNV": -10.208064, "__wglewDXLockObjectsNV": -10.208064, "__wglewDXObjectAccessNV": -10.208064, "__wglewDXOpenDeviceNV": -10.208064, "__wglewDXRegisterObjectNV": -10.208064, "__wglewDXSetResourceShareHandleNV": -10.208064, "__wglewDXUnlockObjectsNV": -10.208064, "__wglewDXUnregisterObjectNV": -10.208064, "__wglewDeleteAssociatedContextAMD": -10.208064, "__wglewDeleteBufferRegionARB": -10.208064, "__wglewDeleteDCNV": -10.208064, "__wglewDestroyDisplayColorTableEXT": -10.208064, "__wglewDestroyImageBufferI": -10.208064, "__wglewDestroyPbufferARB": -10.208064, "__wglewDestroyPbufferEXT": -10.208064, "__wglewDisableFrameLockI": -10.208064, "__wglewDisableGenlockI": -10.208064, "__wglewEnableFrameLockI": -10.208064, "__wglewEnableGenlockI": -10.208064, "__wglewEndFrameTrackingI": -10.208064, "__wglewEnumGpuDevicesNV": -10.208064, "__wglewEnumGpusFromAffinityDCNV": -10.208064, "__wglewEnumGpusNV": -10.208064, "__wglewEnumerateVideoCaptureDevicesNV": -10.208064, "__wglewEnumerateVideoDevicesNV": -10.208064, "__wglewFreeMemoryNV": -10.208064, "__wglewGenlockSampleRateI": -10.208064, "__wglewGenlockSourceDelayI": -10.208064, "__wglewGenlockSourceEdgeI": -10.208064, "__wglewGenlockSourceI": -10.208064, "__wglewGetContextGPUIDAMD": -10.208064, "__wglewGetCurrentAssociatedContextAMD": -10.208064, "__wglewGetCurrentReadDCARB": -10.208064, "__wglewGetCurrentReadDCEXT": -10.208064, "__wglewGetDigitalVideoParametersI": -10.208064, "__wglewGetExtensionsStringARB": -10.208064, "__wglewGetExtensionsStringEXT": -10.208064, "__wglewGetFrameUsageI": -10.208064, "__wglewGetGPUIDsAMD": -10.208064, "__wglewGetGPUInfoAMD": -10.208064, "__wglewGetGammaTableI": -10.208064, "__wglewGetGammaTableParametersI": -10.208064, "__wglewGetGenlockSampleRateI": -10.208064, "__wglewGetGenlockSourceDelayI": -10.208064, "__wglewGetGenlockSourceEdgeI": -10.208064, "__wglewGetGenlockSourceI": -10.208064, "__wglewGetMscRateOML": -10.208064, "__wglewGetPbufferDCARB": -10.208064, "__wglewGetPbufferDCEXT": -10.208064, "__wglewGetPixelFormatAttribfvARB": -10.208064, "__wglewGetPixelFormatAttribfvEXT": -10.208064, "__wglewGetPixelFormatAttribivARB": -10.208064, "__wglewGetPixelFormatAttribivEXT": -10.208064, "__wglewGetSwapIntervalEXT": -10.208064, "__wglewGetSyncValuesOML": -10.208064, "__wglewGetVideoDeviceNV": -10.208064, "__wglewGetVideoInfoNV": -10.208064, "__wglewIsEnabledFrameLockI": -10.208064, "__wglewIsEnabledGenlockI": -10.208064, "__wglewJoinSwapGroupNV": -10.208064, "__wglewLoadDisplayColorTableEXT": -10.208064, "__wglewLockVideoCaptureDeviceNV": -10.208064, "__wglewMakeAssociatedContextCurrentAMD": -10.208064, "__wglewMakeContextCurrentARB": -10.208064, "__wglewMakeContextCurrentEXT": -10.208064, "__wglewQueryCurrentContextNV": -10.208064, "__wglewQueryFrameCountNV": -10.208064, "__wglewQueryFrameLockMasterI": -10.208064, "__wglewQueryFrameTrackingI": -10.208064, "__wglewQueryGenlockMaxSourceDelayI": -10.208064, "__wglewQueryMaxSwapGroupsNV": -10.208064, "__wglewQueryPbufferARB": -10.208064, "__wglewQueryPbufferEXT": -10.208064, "__wglewQuerySwapGroupNV": -10.208064, "__wglewQueryVideoCaptureDeviceNV": -10.208064, "__wglewReleaseImageBufferEventsI": -10.208064, "__wglewReleasePbufferDCARB": -10.208064, "__wglewReleasePbufferDCEXT": -10.208064, "__wglewReleaseTexImageARB": -10.208064, "__wglewReleaseVideoCaptureDeviceNV": -10.208064, "__wglewReleaseVideoDeviceNV": -10.208064, "__wglewReleaseVideoImageNV": -10.208064, "__wglewResetFrameCountNV": -10.208064, "__wglewRestoreBufferRegionARB": -10.208064, "__wglewSaveBufferRegionARB": -10.208064, "__wglewSendPbufferToVideoNV": -10.208064, "__wglewSetDigitalVideoParametersI": -10.208064, "__wglewSetGammaTableI": -10.208064, "__wglewSetGammaTableParametersI": -10.208064, "__wglewSetPbufferAttribARB": -10.208064, "__wglewSetStereoEmitterState": -10.208064, "__wglewSwapBuffersMscOML": -10.208064, "__wglewSwapIntervalEXT": -10.208064, "__wglewSwapLayerBuffersMscOML": -10.208064, "__wglewWaitForMscOML": -10.208064, "__wglewWaitForSbcOML": -10.208064, "__wglew_h__": -10.208064, "__wglext_h_": -10.208064, "_addr_t": -9.802599, "_argtuple_error": -8.821769, "_argument_unpacking_done": -9.514916, "_end": -10.208064, "_error": -7.374850, "_exit": -9.291773, "_file": -10.901211, "_fseeki": -10.901211, "_ftelli": -10.901211, "_header_t": -10.901211, "_hex": -10.208064, "_icmp_header_t": -10.901211, "_isspace": -8.703986, "_length_prefixed": -10.901211, "_profile": -9.291773, "_read": -9.514916, "_receive": -10.901211, "_send_alert": -10.901211, "_start": -10.208064, "_state_st": -10.901211, "_strnicmp": -10.901211, "_t": -5.066400, "_t*": -7.856688, "_to_hex": -8.821769, "_write": -9.514916, "a": -6.790337, "a_date": -10.208064, "abbrev": -10.901211, "abs": -9.802599, "accepts": -8.193161, "access": -10.208064, "accum": -10.208064, "acontains": -10.901211, "acquire_gil": -9.514916, "action": -9.802599, "activations_finder": -10.208064, "activations_finder.VisitFrames": -10.901211, "activations_finder.has_code_activations_": -10.901211, "activeExpireCycle": -10.901211, "active_char": -10.208064, "addReply": -10.901211, "add_arg": -8.955301, "add_callback": -10.208064, "add_cb": -8.703986, "add_link_ref": -10.901211, "added": -10.901211, "addr": -9.802599, "aforeach": -10.901211, "afree": -10.901211, "afs": -8.821769, "afsBuffer": -9.802599, "afterstr": -9.802599, "afterstrP": -10.208064, "ainsert": -10.901211, "alength": -8.703986, "alert": -9.802599, "alias_command": -9.514916, "align": -10.901211, "alignment": -10.901211, "alloc": -8.598626, "alloc_blob_node": -10.901211, "alloc_commit_node": -10.901211, "alloc_failure": -9.802599, "alloc_nr": -10.901211, "allocated": -8.821769, "allocation": -10.901211, "allowComments": -9.514916, "allow_code_gen_from_strings": -10.901211, "alsoPropagate": -10.901211, "alt": -10.901211, "ambda": -10.901211, "an": -9.802599, "analog": -10.901211, "analog_": -10.901211, "and": -9.291773, "any": -10.208064, "aoutSym": -10.901211, "ap": -8.503316, "apmTable": -10.901211, "apop": -10.901211, "append_merge_tag_headers": -10.901211, "apush": -10.901211, "aq": -9.514916, "arch_multiboot_printInfo": -10.901211, "are": -10.901211, "aremove": -10.208064, "argList": -9.514916, "argc": -7.723157, "args": -8.503316, "args...": -8.821769, "args.at": -9.802599, "args.length": -8.821769, "args.smi_at": -9.514916, "argument": -10.901211, "arguments": -8.193161, "argv": -7.263625, "array": -7.345863, "arraysize": -10.901211, "as": -9.802599, "asize": -10.901211, "asm": -10.901211, "aspect": -9.802599, "assert": -7.533915, "at": -10.901211, "atscntrb_readline_readline": -10.901211, "atscntrb_readline_rl_library_version": -10.901211, "attribList": -10.208064, "auto_echo": -10.901211, "axisVector": -9.514916, "axisVector.v": -9.109451, "ayer_": -9.109451, "b": -7.009390, "bBlock": -10.901211, "bIndex": -9.514916, "bIndex/": -10.901211, "b__": -9.802599, "b_date": -9.802599, "b_index_": -9.802599, "back": -10.901211, "background": -10.901211, "backgroundRewriteDoneHandler": -10.901211, "backgroundSaveDoneHandler": -10.901211, "backs": -10.901211, "bailout_type": -10.901211, "barrier": -10.901211, "base": -9.291773, "be": -9.514916, "before": -10.208064, "between": -10.208064, "bin": -10.901211, "bioInit": -10.901211, "bit_cte": -10.208064, "bitmap": -9.291773, "bitmap_clear": -10.901211, "bitmap_clearAll": -10.901211, "bitmap_findFirstClear": -10.901211, "bitmap_get": -10.901211, "bitmap_init": -10.901211, "bitmap_set": -10.901211, "bitmap_t": -8.955301, "bitnum": -9.802599, "bits": -10.901211, "blink": -10.901211, "blob": -9.109451, "body": -9.291773, "body_mark": -10.901211, "bold": -10.901211, "bool": -7.317692, "bootDevice": -10.901211, "bootLoaderName": -10.901211, "bottom": -8.821769, "bounds": -10.901211, "bracket": -10.901211, "break": -6.435303, "brief": -10.208064, "bt": -9.291773, "buf": -6.494492, "buf.len": -10.208064, "buf.memory_failure": -10.901211, "buf.s": -10.208064, "buf_size": -10.208064, "buff": -7.317692, "buffAllocated": -8.598626, "buffSize": -10.901211, "buffer": -7.533915, "bufferSize": -10.208064, "buffer_append": -9.291773, "buffer_append_c": -8.955301, "buffer_init": -10.208064, "buffer_rcfifo": -10.901211, "buffer_wcfifo": -10.901211, "buflen": -10.901211, "bufnew": -10.901211, "bufptr": -8.416304, "bufput": -10.208064, "bufputc": -9.802599, "bufrelease": -9.291773, "button": -10.901211, "by": -10.901211, "bysignal": -9.514916, "byteI": -9.802599, "byteIndex_": -8.703986, "byteLength": -6.390351, "bytePos": -9.514916, "bytePositions": -9.514916, "bytepos": -8.703986, "bytes": -6.390351, "bytesConsumed": -10.208064, "bytesN": -7.345863, "c": -6.519184, "c.cmd": -10.901211, "c.value": -9.802599, "c.want": -10.208064, "c_index_": -10.208064, "c_line": -10.901211, "cabs": -10.901211, "cabsf": -10.901211, "call": -10.901211, "callback": -10.901211, "callbacks": -9.802599, "callee": -10.901211, "caller_code": -10.901211, "calling": -10.901211, "calloc": -10.901211, "calls": -10.901211, "capabilities": -10.901211, "case": -6.412574, "cast": -10.208064, "category": -10.208064, "cb": -10.208064, "cb.codespan": -10.208064, "cb.doc_footer": -10.208064, "cb.double_emphasis": -10.901211, "cb.emphasis": -10.208064, "cb.linebreak": -10.901211, "cb.normal_text": -9.514916, "cb.strikethrough": -10.901211, "cb.triple_emphasis": -10.208064, "cc": -9.514916, "cell": -9.514916, "centerX": -9.802599, "centerY": -9.802599, "centerZ": -9.802599, "ch": -8.598626, "chain": -10.901211, "changes": -10.208064, "char": -4.966317, "char*": -6.494492, "char**": -8.128622, "char*utf": -9.802599, "charBLength": -9.291773, "charPos": -9.802599, "charValue": -8.821769, "char_autolink_email": -10.208064, "char_autolink_url": -10.208064, "char_autolink_www": -10.208064, "char_codespan": -9.802599, "char_emphasis": -9.802599, "char_entity": -10.208064, "char_escape": -9.802599, "char_langle_tag": -10.208064, "char_linebreak": -9.802599, "char_link": -10.208064, "char_superscript": -10.208064, "char_trigger": -10.901211, "character": -9.514916, "characterLength": -8.416304, "characterPos_": -9.802599, "characterUnicodeValue_": -9.802599, "characters": -10.901211, "charsN": -10.208064, "chdir": -10.208064, "check": -9.514916, "check.JsHasOverflowed": -9.514916, "checkUTF": -10.901211, "check_commit": -10.208064, "check_pager_config": -9.802599, "check_stack": -8.821769, "check_type": -9.291773, "checksum": -10.208064, "chg": -10.901211, "child": -10.901211, "child_fd": -9.802599, "child_watcher": -9.802599, "child_watcher.data": -10.901211, "class": -10.901211, "clean": -10.901211, "cleanup": -8.416304, "clear_commit_marks": -10.901211, "clear_commit_marks_for_object_array": -10.901211, "client_custom_extensions": -10.208064, "clientsCron": -10.901211, "clineno": -10.901211, "clone": -9.802599, "clone.child": -10.901211, "clone_child": -10.208064, "close": -8.821769, "clusterInit": -10.901211, "clusterNodesDictType": -10.901211, "cmd": -7.765717, "cmd.buf": -10.901211, "cmdLine": -10.208064, "cmd_add": -10.208064, "cmd_annotate": -10.901211, "cmd_apply": -10.901211, "cmd_archive": -10.901211, "cmd_bisect__helper": -10.901211, "cmd_blame": -10.208064, "cmd_branch": -10.901211, "cmd_bundle": -10.901211, "cmd_cat_file": -10.901211, "cmd_check_attr": -10.901211, "cmd_check_ref_format": -10.901211, "cmd_checkout": -10.901211, "cmd_checkout_index": -10.901211, "cmd_cherry": -10.901211, "cmd_cherry_pick": -10.901211, "cmd_clean": -10.901211, "cmd_clone": -10.901211, "cmd_column": -10.901211, "cmd_commit": -10.901211, "cmd_commit_tree": -10.901211, "cmd_config": -10.901211, "cmd_count_objects": -10.901211, "cmd_describe": -10.901211, "cmd_diff": -10.901211, "cmd_diff_files": -10.901211, "cmd_diff_index": -10.901211, "cmd_diff_tree": -10.901211, "cmd_fast_export": -10.901211, "cmd_fetch": -10.901211, "cmd_fetch_pack": -10.901211, "cmd_fmt_merge_msg": -10.901211, "cmd_for_each_ref": -10.901211, "cmd_format_patch": -10.901211, "cmd_fsck": -10.208064, "cmd_gc": -10.901211, "cmd_get_tar_commit_id": -10.901211, "cmd_grep": -10.901211, "cmd_hash_object": -10.901211, "cmd_help": -10.901211, "cmd_index_pack": -10.901211, "cmd_init_db": -10.208064, "cmd_log": -10.901211, "cmd_ls_files": -10.901211, "cmd_ls_remote": -10.208064, "cmd_ls_tree": -10.901211, "cmd_mailinfo": -10.901211, "cmd_mailsplit": -10.901211, "cmd_merge": -10.901211, "cmd_merge_base": -10.901211, "cmd_merge_file": -10.901211, "cmd_merge_index": -10.901211, "cmd_merge_ours": -10.901211, "cmd_merge_recursive": -9.514916, "cmd_merge_tree": -10.901211, "cmd_mktag": -10.901211, "cmd_mktree": -10.901211, "cmd_mv": -10.901211, "cmd_name_rev": -10.901211, "cmd_notes": -10.901211, "cmd_pack_objects": -10.901211, "cmd_pack_redundant": -10.901211, "cmd_pack_refs": -10.901211, "cmd_patch_id": -10.901211, "cmd_prune": -10.901211, "cmd_prune_packed": -10.901211, "cmd_push": -10.901211, "cmd_read_tree": -10.901211, "cmd_receive_pack": -10.901211, "cmd_reflog": -10.901211, "cmd_remote": -10.901211, "cmd_remote_ext": -10.901211, "cmd_remote_fd": -10.901211, "cmd_replace": -10.901211, "cmd_repo_config": -10.901211, "cmd_rerere": -10.901211, "cmd_reset": -10.901211, "cmd_rev_list": -10.901211, "cmd_rev_parse": -10.901211, "cmd_revert": -10.901211, "cmd_rm": -10.901211, "cmd_send_pack": -10.901211, "cmd_shortlog": -10.901211, "cmd_show": -10.901211, "cmd_show_branch": -10.901211, "cmd_show_ref": -10.901211, "cmd_status": -10.901211, "cmd_stripspace": -10.901211, "cmd_struct": -9.514916, "cmd_symbolic_ref": -10.901211, "cmd_tag": -10.901211, "cmd_tar_tree": -10.901211, "cmd_unpack_file": -10.901211, "cmd_unpack_objects": -10.901211, "cmd_update_index": -10.901211, "cmd_update_ref": -10.901211, "cmd_update_server_info": -10.901211, "cmd_upload_archive": -10.901211, "cmd_upload_archive_writer": -10.901211, "cmd_var": -10.901211, "cmd_verify_pack": -10.901211, "cmd_verify_tag": -10.901211, "cmd_version": -10.901211, "cmd_whatchanged": -10.901211, "cmd_write_tree": -10.901211, "cmit_fmt": -9.802599, "cmp": -9.802599, "code": -8.067997, "codePoint": -8.262153, "code_": -9.802599, "code_line": -9.514916, "code_object": -10.208064, "codepoints": -7.533915, "col": -7.956772, "column": -7.163541, "columns": -10.901211, "com": -10.901211, "command": -9.514916, "commands": -9.802599, "commit": -6.858160, "commit_buffer": -10.901211, "commit_extra_header": -8.955301, "commit_graft": -8.336261, "commit_graft_alloc": -9.514916, "commit_graft_nr": -9.291773, "commit_graft_pos": -10.208064, "commit_list": -7.345863, "commit_list_count": -10.901211, "commit_list_insert": -10.208064, "commit_list_set_next": -10.901211, "commit_list_sort_by_date": -10.208064, "commit_pager_choice": -9.514916, "commit_tree": -10.901211, "commit_tree_extended": -10.901211, "compile": -10.901211, "compiled": -10.208064, "compiled_code": -10.901211, "complex": -10.208064, "config": -9.514916, "configTable": -10.901211, "conj": -9.802599, "conjf": -10.901211, "console": -9.109451, "console_clear": -10.901211, "console_color_t": -9.802599, "console_driver_t": -10.901211, "console_driver_t*": -10.208064, "console_filter": -10.208064, "console_filter*": -10.901211, "console_filter_t": -10.901211, "console_filter_t*": -10.208064, "console_info_t": -10.208064, "console_info_t*": -10.208064, "console_init": -10.901211, "console_modifiers_t": -10.901211, "console_modifiers_t*": -10.901211, "console_read": -10.901211, "console_read_t": -10.901211, "console_scroll": -10.901211, "console_t": -10.901211, "console_t*": -9.291773, "console_write": -9.802599, "const": -5.463131, "container": -8.955301, "contains": -10.901211, "content_length": -7.956772, "contents": -9.514916, "contents_cbb": -9.802599, "contents_len": -9.291773, "context": -9.109451, "context_free": -10.901211, "context_init": -10.901211, "continue": -8.262153, "control_left": -10.901211, "control_right": -10.901211, "cos": -8.193161, "cosf": -9.514916, "cosp": -8.598626, "cotan": -9.802599, "count": -7.467224, "counters.process_init": -10.901211, "cover": -10.901211, "cow": -10.901211, "cpow": -10.901211, "cpowf": -10.901211, "cpu_state_t*": -9.802599, "cpython_": -10.901211, "createStringObject": -10.901211, "create_object": -10.208064, "ctx": -6.875859, "current": -8.821769, "current_color": -10.901211, "current_index": -10.901211, "current_scale_level": -10.901211, "cursor": -10.208064, "cursor_x": -10.901211, "cursor_y": -10.901211, "custom_ext_add_clienthello": -10.901211, "custom_ext_add_hello": -10.208064, "custom_ext_add_serverhello": -10.901211, "custom_ext_append": -9.802599, "custom_ext_find": -9.802599, "custom_ext_parse_clienthello": -10.901211, "custom_ext_parse_serverhello": -10.901211, "custom_extension": -10.901211, "cut_word": -9.514916, "cv": -10.208064, "cwd": -10.901211, "d": -9.514916, "data": -6.147621, "data.stream": -10.208064, "dataType": -10.901211, "date": -9.514916, "date_mode": -10.208064, "date_mode_explicit": -10.901211, "dateptr": -10.208064, "db": -9.109451, "dbDelete": -10.901211, "dbid": -8.821769, "de": -9.802599, "decodeBuf": -10.208064, "decoration": -10.901211, "decrRefCount": -10.208064, "default": -8.193161, "default_add_callback": -10.208064, "default_color": -10.901211, "default_console": -10.901211, "defaults": -10.901211, "define": -8.416304, "define_var": -10.901211, "defined": -7.072569, "definitions": -10.901211, "defn": -8.821769, "deinitialized": -10.901211, "del": -10.208064, "delay": -10.208064, "delay_int": -10.901211, "delay_ulint": -10.901211, "delete": -10.208064, "deleted": -10.901211, "denoting": -10.901211, "deoptimizer": -8.821769, "depth": -10.208064, "deref_tag": -10.901211, "desc": -9.514916, "determine": -10.901211, "development": -10.901211, "dict": -9.802599, "dictAdd": -10.901211, "dictDisableResize": -10.901211, "dictEnableResize": -10.901211, "dictEntry": -10.901211, "dictFetchValue": -10.208064, "dictGetKey": -10.901211, "dictGetRandomKey": -10.901211, "dictGetSignedIntegerVal": -10.901211, "dictIsRehashing": -10.208064, "dictListDestructor": -10.901211, "dictObjHash": -10.901211, "dictObjKeyCompare": -10.901211, "dictRedisObjectDestructor": -10.901211, "dictRehashMilliseconds": -10.208064, "dictResize": -10.208064, "dictSdsDestructor": -10.901211, "dictSdsHash": -10.901211, "dictSdsKeyCompare": -10.901211, "dictSize": -10.208064, "dictSlots": -10.208064, "dictType": -10.208064, "die": -9.514916, "die_errno": -9.802599, "diff": -9.802599, "difference": -9.802599, "diminfo": -10.901211, "dir": -10.901211, "dirty": -9.514916, "discard": -9.514916, "discard_this": -9.802599, "disregarding": -10.901211, "divisor": -9.802599, "dloss": -8.193161, "do": -8.262153, "doc": -9.109451, "does": -10.208064, "done": -10.901211, "done_alias": -10.901211, "done_help": -9.802599, "dot": -10.901211, "double": -6.256820, "double*": -10.901211, "dpmi_get_sel_base": -10.901211, "dpmi_simulate_real_interrupt": -10.901211, "drivesAddr": -10.901211, "drivesLength": -10.901211, "drw_chdis": -9.514916, "drw_circl": -10.901211, "drw_cirl": -10.901211, "drw_line": -9.109451, "drw_pix": -10.208064, "drw_rectf": -10.208064, "drw_rectl": -10.208064, "drw_tex": -10.208064, "ds": -10.901211, "dst": -8.193161, "dstCtx": -10.901211, "dstLevel": -10.901211, "dstName": -10.901211, "dstTarget": -10.901211, "dstX": -9.802599, "dstY": -9.802599, "dstZ": -10.901211, "dtype": -10.901211, "dup": -10.901211, "duration": -10.208064, "dwSize": -10.901211, "dx": -9.802599, "dxDevice": -10.901211, "dxObject": -10.208064, "dy": -10.208064, "e": -9.109451, "each": -10.208064, "each_commit_graft_fn": -10.901211, "effectively": -10.901211, "ehsize": -10.901211, "elem": -8.821769, "elfSec": -10.901211, "elf_ident_t": -10.208064, "elf_load": -10.901211, "elf_load_file": -10.901211, "elf_program_t": -10.901211, "elf_t": -10.901211, "elf_t*": -10.901211, "else": -6.638531, "enc_count": -10.901211, "enc_packmode": -10.901211, "enc_type": -10.901211, "encoding": -8.821769, "encodingP": -10.901211, "end": -6.711556, "endcpp": -10.901211, "endianess": -7.905479, "endif": -10.208064, "endinternal": -10.901211, "endself": -9.802599, "endtarget": -9.514916, "english": -10.901211, "entries": -10.208064, "entry": -9.802599, "enum": -7.404703, "environ": -8.821769, "eof": -7.263625, "epsilon": -10.208064, "err": -9.109451, "errno": -8.503316, "error": -7.435475, "error_is_fatal": -10.901211, "error_lineno": -9.802599, "error_message": -10.208064, "escape_chars": -10.901211, "ev": -8.955301, "ev_child_init": -10.901211, "ev_child_start": -10.901211, "ev_child_stop": -10.901211, "eval_err": -10.901211, "eval_position": -10.901211, "eval_scope_position": -10.901211, "event": -10.901211, "exact": -9.514916, "example": -10.901211, "except": -10.901211, "exception": -9.109451, "execute": -10.208064, "execv_dashed_external": -10.901211, "execvp": -10.901211, "exist": -10.901211, "existing": -10.901211, "exists": -9.291773, "exit": -8.703986, "exit_cb": -10.901211, "exitcode": -9.802599, "expected": -10.208064, "expired": -9.802599, "expires": -9.802599, "explicit": -10.901211, "ext": -7.212331, "ext_flags": -10.208064, "extension": -9.514916, "extension_value": -8.703986, "extensions": -9.109451, "extern": -7.140011, "eyeX": -9.802599, "eyeY": -9.802599, "eyeZ": -9.802599, "f": -6.930919, "f_begin": -8.821769, "f_end": -8.955301, "factory": -10.901211, "failed": -10.208064, "false": -7.030010, "fan": -9.514916, "farZ": -8.193161, "fclose": -10.901211, "fd": -9.514916, "fds": -9.802599, "feedAppendOnlyFile": -10.901211, "ferror": -10.901211, "fflush": -10.901211, "fgets": -10.901211, "field": -10.901211, "field_data": -10.208064, "field_set": -10.208064, "fields": -10.901211, "file_flags": -10.901211, "file_free": -10.901211, "file_t": -9.514916, "file_type_handler_struct_t": -10.901211, "file_type_handler_t": -9.802599, "file_type_handlers": -10.901211, "fileno": -10.901211, "filesize": -10.901211, "filter": -10.901211, "find": -10.208064, "find_commit_subject": -10.208064, "find_emph_char": -9.514916, "find_link_ref": -10.901211, "first": -9.802599, "flag": -10.208064, "flags": -6.711556, "fline": -9.514916, "float": -5.344383, "float*": -10.901211, "fmpz_poly_t": -9.109451, "fmt": -10.208064, "fmt_offset": -10.901211, "fn": -8.416304, "fn_call": -10.901211, "fn_cat": -10.901211, "fn_cons": -10.901211, "fn_dip": -10.901211, "fn_drop": -10.901211, "fn_dup": -10.901211, "fn_swap": -10.901211, "fn_unit": -10.901211, "foff_rft": -10.208064, "for": -6.806866, "for_each_commit_graft": -10.901211, "foreground": -10.901211, "fork": -10.901211, "format": -8.703986, "format_commit_message": -10.901211, "found": -8.598626, "fovyRadians": -9.802599, "fp": -10.208064, "fprintf": -10.208064, "frame": -9.109451, "free": -6.989188, "free_callback": -9.291773, "free_cb": -9.109451, "free_commit_extra_headers": -10.901211, "free_commit_list": -10.901211, "free_function": -10.901211, "free_link_refs": -10.208064, "free_runtime_library": -10.901211, "from": -8.010839, "frst": -10.208064, "fseeko": -10.901211, "fsn": -9.109451, "fstat": -10.901211, "ftello": -10.901211, "fuPlanes": -10.901211, "func": -9.802599, "func_name": -10.208064, "function": -7.533915, "function_name": -10.901211, "functions": -10.901211, "fv": -9.514916, "fwrite": -9.291773, "g_functions": -10.901211, "g_prefix": -10.901211, "gboolean": -10.901211, "gchar": -10.208064, "gdouble": -10.901211, "get_commit_format": -10.901211, "get_config": -10.901211, "get_float": -10.901211, "get_integer": -10.901211, "get_list": -9.291773, "get_sha": -9.802599, "get_string": -10.901211, "gets": -10.901211, "git_config": -10.901211, "git_config_maybe_bool": -10.901211, "git_more_info_string": -10.208064, "git_startup_info": -10.901211, "git_usage_string": -10.208064, "git_version_string": -10.901211, "give": -10.901211, "given": -9.109451, "global_eval_fun": -10.901211, "gmail": -10.901211, "goto": -6.726824, "gperf_case_strncmp": -10.901211, "graft": -8.598626, "grafts_replace_parents": -10.901211, "group": -9.802599, "growth": -9.802599, "guards": -10.901211, "guint": -9.291773, "h": -8.262153, "hAffinityDC": -10.901211, "hDC": -7.404703, "hDc": -9.109451, "hDevice": -8.703986, "hDrawDC": -10.208064, "hDstRC": -10.901211, "hGpu": -10.901211, "hObject": -10.208064, "hObjects": -10.208064, "hPbuffer": -8.262153, "hReadDC": -10.208064, "hRegion": -9.802599, "hShareContext": -10.208064, "hSrcRC": -10.901211, "hVideoDevice": -9.514916, "hand": -7.569006, "handle": -8.598626, "handle_backspace": -10.901211, "handle_internal_command": -10.901211, "handle_options": -10.901211, "handler": -10.208064, "handler_fn": -10.901211, "happen": -10.901211, "has_code_activations_": -9.802599, "has_non_ascii": -10.901211, "hash": -8.703986, "hash_link_ref": -9.802599, "hashcmp": -10.208064, "have": -10.208064, "have_repository": -10.901211, "hdc": -8.128622, "head": -9.109451, "header_state": -10.901211, "headers": -10.901211, "heap": -8.821769, "height": -9.514916, "hello": -10.901211, "help": -9.514916, "help_unknown_cmd": -10.901211, "here": -10.901211, "hglrc": -9.291773, "hi": -9.291773, "hl": -10.901211, "hold": -10.208064, "hpVideoDevice": -10.901211, "htNeedsResize": -9.802599, "http_cb": -9.802599, "http_data_cb": -9.514916, "http_errno": -8.821769, "http_major": -10.901211, "http_message_needs_eof": -10.901211, "http_method": -10.208064, "http_minor": -10.901211, "http_parser": -8.821769, "http_parser_execute": -10.901211, "http_parser_h": -10.208064, "http_parser_init": -10.901211, "http_parser_parse_url": -10.901211, "http_parser_pause": -10.208064, "http_parser_settings": -9.514916, "http_parser_type": -10.208064, "http_parser_url": -10.208064, "http_parser_url_fields": -10.901211, "http_should_keep_alive": -10.901211, "i": -4.769984, "i/": -10.208064, "iAttribute": -8.821769, "iBuffer": -10.208064, "iBufferType": -10.901211, "iDeviceIndex": -10.901211, "iEntries": -10.208064, "iGpuIndex": -10.208064, "iHeight": -10.208064, "iLayerPlane": -9.291773, "iMatrix": -9.514916, "iMatrix.val": -7.569006, "iMatrixLeft": -9.802599, "iMatrixLeft.val": -7.723157, "iMatrixRight": -9.802599, "iMatrixRight.val": -7.723157, "iPixelFormat": -9.109451, "iVideoBuffer": -10.208064, "iWidth": -10.208064, "i_CMD_": -10.208064, "i_DECLIMEX_": -6.969385, "i_ENCODING_": -9.514916, "i_FILE_": -8.128622, "i_LEFTSTR_": -9.109451, "i_MODE_": -10.208064, "i_NPSELECT_RF_STRING_BETWEEN": -10.901211, "i_NPSELECT_RF_STRING_BETWEEN0": -10.901211, "i_NPSELECT_RF_STRING_BETWEEN1": -10.901211, "i_NPSELECT_RF_STRING_FWRITE": -9.802599, "i_NPSELECT_RF_STRING_REMOVE": -9.802599, "i_NPSELECT_RF_STRING_REPLACE": -9.802599, "i_NUMBER_": -8.416304, "i_NVrfString_Create": -10.901211, "i_NVrfString_CreateLocal": -10.901211, "i_OFFSET_": -9.514916, "i_OPTIONS_": -8.416304, "i_OTHERSTR_": -9.514916, "i_PLUSB_WIN": -10.208064, "i_REPSTR_": -8.128622, "i_RESULT_": -9.109451, "i_RFI": -8.503316, "i_RFI8_": -9.802599, "i_RFUI": -8.821769, "i_RIGHTSTR_": -9.109451, "i_SEARCHSTR_": -8.821769, "i_SELECT_RF_STRING_BETWEEN": -10.901211, "i_SELECT_RF_STRING_BETWEEN0": -10.901211, "i_SELECT_RF_STRING_BETWEEN1": -10.901211, "i_SELECT_RF_STRING_BETWEEN2": -10.901211, "i_SELECT_RF_STRING_BETWEEN3": -10.901211, "i_SELECT_RF_STRING_BETWEEN4": -10.901211, "i_SELECT_RF_STRING_BETWEEN5": -10.901211, "i_SELECT_RF_STRING_FWRITE": -9.291773, "i_SELECT_RF_STRING_REMOVE": -9.109451, "i_SELECT_RF_STRING_REPLACE": -8.955301, "i_STR_": -8.821769, "i_SUBSTR_": -9.109451, "i_THISSTR_": -7.374850, "i_WHENCE_": -9.514916, "i_WRITE_CHECK": -10.901211, "i_rfLMSX_WRAP": -8.262153, "i_rfLMSX_WRAP5": -9.802599, "i_rfLMS_WRAP": -9.514916, "i_rfPopen": -10.208064, "i_rfString_Append": -9.802599, "i_rfString_Between": -9.514916, "i_rfString_Count": -10.901211, "i_rfString_Create": -10.901211, "i_rfString_CreateLocal": -10.901211, "i_rfString_Fwrite": -9.291773, "i_rfString_KeepOnly": -10.208064, "i_rfString_Prepend": -10.208064, "i_rfString_Remove": -9.291773, "i_rfString_Replace": -9.291773, "i_rfString_ScanfAfter": -10.901211, "i_rfString_Strip": -10.208064, "i_rfString_StripEnd": -10.208064, "i_rfString_StripStart": -10.208064, "id": -8.067997, "ident": -10.901211, "ids": -10.901211, "if": -4.785319, "ifdef": -10.901211, "ignore_dups": -10.208064, "imag": -10.208064, "in": -8.703986, "in_link_body": -10.901211, "in_merge_bases": -10.901211, "inb": -10.901211, "include": -10.208064, "included": -10.901211, "incrementallyRehash": -10.208064, "indegree": -10.901211, "indent": -10.901211, "index": -7.682335, "index.": -10.901211, "inear_model_": -5.870773, "info": -10.208064, "inhtype": -9.802599, "init_enviroment": -10.901211, "init_runtime_library_scripts": -10.901211, "initial_length": -10.208064, "initialize": -10.901211, "initialized": -10.901211, "inl": -10.901211, "inline": -8.955301, "input_driver": -10.901211, "input_filter": -10.901211, "inq": -10.901211, "ins": -10.208064, "inside": -10.901211, "install": -10.901211, "int": -4.765646, "int*": -7.810168, "interactive_add": -10.901211, "intern": -10.901211, "internal": -10.901211, "internally": -10.901211, "interval": -10.901211, "intptr_t": -9.802599, "inw": -10.901211, "ip": -9.109451, "is": -9.291773, "is_compiled": -9.291773, "is_complex": -10.901211, "is_connect": -10.901211, "is_descendant_of": -10.901211, "is_loaded": -10.901211, "is_mail_autolink": -10.208064, "is_optimized": -10.901211, "is_repository_shallow": -10.901211, "is_str": -10.901211, "is_unicode": -10.901211, "is_unsigned": -10.901211, "is_valid_array": -10.901211, "is_valid_language_mode": -10.901211, "isalnum": -9.802599, "isinherited": -10.208064, "isolate": -7.187639, "ispunct": -10.901211, "it": -8.010839, "it.Advance": -10.901211, "it.done": -10.901211, "it.frame": -10.901211, "item": -6.790337, "item_free": -8.703986, "item_free_list": -9.802599, "item_list": -10.901211, "item_list_to_str": -10.208064, "item_string": -9.802599, "item_to_str": -9.802599, "item_type": -10.208064, "item_word": -10.208064, "itemsize": -10.901211, "iter": -9.291773, "iterate.": -10.901211, "iteration": -9.291773, "iteration.": -10.901211, "j": -6.173823, "j*w": -10.901211, "j_": -9.109451, "jfloat": -10.901211, "jint": -8.955301, "jintArray": -10.901211, "jlong": -9.109451, "jobject": -9.109451, "jsonText": -9.514916, "jsonTextLen": -9.514916, "k": -8.821769, "kCodeGenFromStrings": -10.901211, "keepChars": -9.291773, "keepLength": -10.901211, "keepstr": -9.514916, "key": -9.291773, "keyboard": -10.901211, "keylistDictType": -10.901211, "keyobj": -9.802599, "kill": -9.802599, "kind": -10.208064, "klass": -10.901211, "kw_args": -8.598626, "kw_name": -10.901211, "l": -8.955301, "language": -10.901211, "language_mode": -9.802599, "lastRegs": -10.901211, "left": -8.598626, "left_key": -10.901211, "len": -7.237649, "length": -7.051063, "level": -10.901211, "lexer": -9.514916, "library": -10.901211, "lifo": -10.901211, "likely": -7.956772, "line_end": -9.291773, "lineno": -10.901211, "link": -9.514916, "link.data": -10.208064, "link_ref": -8.262153, "list": -8.821769, "listLength": -9.291773, "list_add": -10.208064, "list_common_cmds_help": -10.901211, "list_item": -10.901211, "literals": -10.901211, "llist_mergesort": -10.901211, "lm": -10.901211, "lmsFunction": -10.901211, "lnos": -9.514916, "lo": -9.109451, "load_images_state_t": -10.901211, "long": -7.374850, "long*": -10.208064, "lookup_commit": -10.208064, "lookup_commit_graft": -10.901211, "lookup_commit_reference": -10.208064, "lookup_commit_reference_gently": -10.901211, "lookup_object": -10.208064, "lookup_tree": -10.901211, "loop": -8.955301, "lpGpuDevice": -10.901211, "lshift_key": -10.901211, "lstr": -9.802599, "m": -5.719427, "m.m": -6.912227, "m.val": -6.949967, "machine": -10.901211, "macro": -10.901211, "magic": -10.901211, "main": -10.901211, "mainloop": -10.901211, "malloc": -9.514916, "mang": -9.802599, "manipulation": -10.901211, "map_structs": -10.901211, "mark": -8.703986, "markdown_char_ptrs": -10.208064, "markdown_char_t": -10.901211, "mask": -10.901211, "match": -10.901211, "matches": -10.901211, "matrix": -6.742328, "matrix.m": -5.759547, "matrixLeft": -7.856688, "matrixLeft.m": -6.182712, "matrixRight": -8.703986, "matrixRight.m": -6.336863, "maxCount": -10.901211, "maxGroups": -10.901211, "max_count": -10.901211, "max_nesting": -10.208064, "maybe_error": -10.901211, "maybe_error.ToHandle": -10.901211, "md": -8.262153, "memLower": -10.901211, "memUpper": -10.901211, "member": -10.208064, "memberof": -10.208064, "memcmp": -9.514916, "memcpy": -8.128622, "memmove": -9.514916, "memory_context": -10.901211, "memory_failure": -8.955301, "memset": -10.901211, "memsize": -10.901211, "merge_remote_desc": -9.802599, "merge_remote_util": -10.901211, "message": -8.336261, "message_complete": -9.291773, "method": -10.208064, "mi": -9.291773, "microseconds": -10.901211, "millis": -10.901211, "minPos": -8.821769, "minPosLength": -9.802599, "mkd_cleanup": -10.208064, "mkd_compile": -10.208064, "mkd_document": -10.901211, "mkd_string": -10.208064, "mkd_toc": -10.901211, "mmapAddr": -10.901211, "mmapLength": -10.901211, "mode": -9.291773, "modifiers": -10.901211, "modsAddr": -10.901211, "modsCount": -10.901211, "module": -10.901211, "module_init": -10.901211, "module_register": -10.901211, "module_unregister": -10.901211, "mount_path": -10.208064, "mountpoint": -10.208064, "mouse_button": -10.901211, "mouse_pos": -10.901211, "mouse_wheel": -10.901211, "mov": -10.901211, "move": -8.821769, "ms": -9.514916, "msg": -8.128622, "msg_tern": -10.901211, "mstime": -10.901211, "multiboot_aoutSymbolTable_t": -10.208064, "multiboot_elfSectionHeaderTable_t": -10.208064, "multiboot_info": -10.901211, "multiboot_info_t": -10.901211, "multiboot_info_t*": -10.901211, "multiboot_memoryMap_t": -10.901211, "multiboot_module_t": -10.901211, "multiboot_module_t*": -10.901211, "n": -6.624545, "n.v": -9.802599, "nAttributes": -9.514916, "nBytePos": -8.416304, "nMaxFormats": -10.208064, "nSize": -10.901211, "n_params": -9.514916, "name": -7.263625, "name_decoration": -9.802599, "name_size": -10.208064, "namespace": -10.208064, "native_context": -9.514916, "nb": -8.336261, "nd": -10.901211, "ndarray_": -10.901211, "ndarray___getbuffer__": -10.901211, "ndim": -10.208064, "nearZ": -8.067997, "need": -10.901211, "need_": -10.208064, "needed": -10.901211, "needs": -10.901211, "nested_if": -9.802599, "net_device_t*": -10.901211, "net_l": -10.901211, "new": -8.955301, "newLineFound": -10.901211, "new_argv": -8.955301, "new_clone": -10.901211, "new_count": -10.901211, "new_integer": -10.901211, "new_list": -10.901211, "new_packmode": -10.901211, "new_parent": -9.109451, "new_word": -10.901211, "newline_mode": -10.901211, "next": -7.905479, "node": -8.955301, "node.read": -10.208064, "node.refcount": -9.802599, "node.write": -10.208064, "non": -10.901211, "nonblocking": -10.901211, "none_allowed": -10.901211, "nongit_ok": -10.208064, "noreturn": -10.901211, "normal_url_char": -10.901211, "not": -9.802599, "not_shallow_flag": -10.901211, "note": -10.901211, "notes": -10.901211, "nothing": -10.901211, "now": -9.802599, "npy_cdouble": -10.208064, "npy_cfloat": -10.901211, "npy_clongdouble": -10.901211, "npy_double": -10.208064, "npy_float": -10.208064, "npy_int": -9.514916, "npy_intp": -10.901211, "npy_long": -10.901211, "npy_longdouble": -10.901211, "npy_longlong": -10.208064, "npy_uint": -9.514916, "npy_uintp": -10.901211, "npy_ulong": -10.901211, "npy_ulonglong": -10.208064, "nr_parent": -9.802599, "nread": -9.291773, "ntru_encrypt_poly": -10.901211, "ntru_encrypt_string": -10.901211, "ntru_params": -10.208064, "null": -10.901211, "num": -8.336261, "num*": -10.901211, "numDevices": -10.901211, "num_found": -10.901211, "num_max": -10.901211, "num_min": -10.901211, "num_pos_args": -10.901211, "number": -9.109451, "numbits": -10.208064, "numcommands": -9.514916, "numerator": -10.901211, "numops": -8.821769, "numpy_": -10.208064, "numpy__util_dtypestring": -10.901211, "numpy_broadcast": -10.901211, "numpy_cdouble_t": -10.901211, "numpy_cfloat_t": -10.901211, "numpy_clongdouble_t": -10.901211, "numpy_complex_t": -10.901211, "numpy_double_t": -10.901211, "numpy_dtype": -10.901211, "numpy_flatiter": -10.901211, "numpy_float": -9.291773, "numpy_float_t": -10.901211, "numpy_int": -8.955301, "numpy_int_t": -10.901211, "numpy_intp_t": -10.901211, "numpy_long_t": -10.901211, "numpy_longdouble_t": -10.901211, "numpy_longlong_t": -10.901211, "numpy_ndarray": -10.901211, "numpy_ufunc": -10.901211, "numpy_uint": -9.514916, "numpy_uint_t": -10.901211, "numpy_uintp_t": -10.901211, "numpy_ulong_t": -10.901211, "numpy_ulonglong_t": -10.901211, "o": -6.790337, "oa": -8.262153, "ob": -7.467224, "ob_refcnt": -10.901211, "ob_size": -10.901211, "ob_type": -8.955301, "obj": -7.030010, "obj_type": -10.901211, "object": -7.212331, "object.parsed": -9.514916, "object.sha": -8.821769, "object_array": -10.208064, "object_type": -10.901211, "occurence": -10.901211, "of": -8.262153, "off": -9.514916, "off.": -10.901211, "offset": -7.682335, "offsetof": -10.208064, "og_": -10.208064, "og_loss": -10.901211, "ok": -10.901211, "on_##FOR": -10.208064, "on_body": -10.901211, "on_header_field": -10.901211, "on_header_value": -10.901211, "on_headers_complete": -9.802599, "on_message_begin": -10.901211, "on_message_complete": -10.901211, "on_url": -10.901211, "once": -8.262153, "only": -10.208064, "op": -8.010839, "opaque": -8.703986, "open": -10.901211, "ops": -9.109451, "optimization_disabled": -10.901211, "optimized_code": -10.208064, "option": -8.703986, "option_count": -10.901211, "options": -8.010839, "options.args": -10.901211, "options.cwd": -10.208064, "options.env": -10.901211, "options.exit_cb": -10.901211, "options.file": -10.208064, "options.flags": -9.514916, "options.gid": -10.901211, "options.stdio": -9.802599, "options.stdio_count": -9.514916, "options.uid": -10.901211, "optionsP": -10.901211, "or": -9.802599, "org": -9.109451, "origin": -10.208064, "oss": -8.503316, "ossFunction_": -9.109451, "ossFunction_dloss": -10.901211, "ossFunction_loss": -9.802599, "other": -8.821769, "otherP": -10.208064, "otherwise": -10.901211, "out": -9.291773, "out_alert": -10.208064, "out_index": -10.901211, "outb": -10.901211, "outer_info": -9.802599, "outl": -10.901211, "output_driver": -10.901211, "output_filter": -10.901211, "outq": -10.901211, "outw": -10.901211, "p": -7.345863, "pAddress": -10.208064, "pBytePos": -9.802599, "pEvent": -10.901211, "pFlag": -9.802599, "pFrameCount": -10.901211, "pUsage": -10.901211, "pack": -10.208064, "packed": -8.821769, "pad": -10.901211, "pager_command_config": -10.208064, "pager_config": -9.802599, "pager_program": -10.901211, "pages": -10.901211, "parN": -10.208064, "parNP": -10.901211, "param": -9.291773, "parameter": -10.901211, "parameters": -9.802599, "params": -9.514916, "parent": -8.416304, "parent_offset": -10.901211, "parents": -9.802599, "parse_arg": -9.109451, "parse_blob_buffer": -10.208064, "parse_block": -10.901211, "parse_callback": -9.291773, "parse_cb": -9.109451, "parse_commit": -9.802599, "parse_commit_buffer": -9.802599, "parse_commit_date": -10.208064, "parse_emph": -8.821769, "parse_inline": -9.514916, "parse_item_list": -10.901211, "parse_list": -10.901211, "parse_message": -10.208064, "parse_object": -10.901211, "parse_signed_commit": -10.901211, "parser": -6.742328, "pass": -10.901211, "patch": -10.901211, "path": -8.703986, "paused": -9.802599, "pc": -10.901211, "peel_to_type": -10.901211, "penalty": -10.901211, "perror": -9.291773, "pfd": -10.208064, "pfd.events": -10.901211, "pfd.fd": -10.901211, "pfd.revents": -10.901211, "phDeviceList": -10.208064, "phentsize": -10.901211, "phnum": -10.901211, "phoff": -10.901211, "physaddr": -10.901211, "piAttribIList": -10.208064, "piAttribList": -9.514916, "piAttributes": -9.514916, "piValue": -8.821769, "pid": -8.262153, "pid_t": -10.208064, "pipe": -7.237649, "pipe_end": -9.514916, "pipe_init": -10.901211, "pipe_register": -10.901211, "pipe_unregister": -10.901211, "pipes": -8.416304, "please": -10.901211, "point": -10.901211, "pointer": -10.901211, "poll": -10.901211, "pollfd": -10.901211, "pool": -8.955301, "pop": -8.416304, "populateCommandTable": -10.901211, "port": -8.598626, "portio_in": -8.821769, "portio_out": -8.821769, "pos": -8.955301, "pos_args": -8.821769, "position": -9.802599, "pow": -10.208064, "pp_commit_easy": -10.901211, "pp_remainder": -10.901211, "pp_title_line": -10.901211, "pp_user_info": -10.901211, "pptr": -9.291773, "prefix": -8.955301, "prefixcmp": -10.901211, "present": -10.901211, "preserve_subject": -10.901211, "pretty_print_commit": -10.901211, "pretty_print_context": -9.109451, "previous": -10.901211, "printf": -9.109451, "priority": -10.901211, "proc": -10.901211, "process": -8.262153, "process_message": -10.901211, "propagate": -10.901211, "propagateExpire": -10.901211, "property": -10.901211, "proto": -10.901211, "proto_t": -10.901211, "puRed": -10.208064, "pub_key": -10.208064, "public": -10.208064, "pulCounterOutputPbuffer": -10.901211, "pulCounterPbuffer": -10.901211, "push": -8.703986, "px": -9.802599, "py": -9.802599, "py_line": -10.901211, "pybuffer": -10.901211, "q_f": -8.703986, "quaternion": -9.514916, "quaternion.q": -9.514916, "quiet": -9.291773, "r": -6.610751, "rad": -10.208064, "radians": -7.374850, "ral": -9.514916, "random": -9.802599, "randomSeed": -10.901211, "randomSeed_uint": -10.901211, "random_int_": -10.901211, "random_lint_": -10.208064, "raw": -10.901211, "rb_cObject": -10.901211, "rb_cRDiscount": -9.514916, "rb_define_class": -10.901211, "rb_define_method": -10.208064, "rb_funcall": -8.262153, "rb_intern": -8.193161, "rb_rdiscount__get_flags": -9.802599, "rb_rdiscount_to_html": -10.208064, "rb_rdiscount_toc_content": -10.208064, "rb_respond_to": -10.901211, "rb_str_buf_new": -10.208064, "rb_str_cat": -9.514916, "rcVirtualScreen": -10.901211, "rdbSaveBackground": -10.901211, "read": -9.802599, "readFrequency": -10.901211, "read_callback": -10.901211, "read_dir_callback": -10.901211, "read_message": -9.802599, "read_sha": -10.901211, "readline": -10.901211, "readlinks": -10.208064, "readonly": -10.208064, "real": -10.208064, "realloc": -10.208064, "redisClient": -10.901211, "redisCommand": -8.503316, "redisCommandTable": -9.514916, "redisDb": -10.901211, "redisLog": -9.514916, "redisOp": -9.802599, "redisOpArray": -9.802599, "redisOpArrayAppend": -10.208064, "redisOpArrayFree": -10.901211, "redisOpArrayInit": -10.208064, "redisPanic": -10.901211, "redisServer": -10.901211, "reduction_count": -10.901211, "reduction_limit": -10.901211, "reexecute_byte": -10.208064, "ref": -8.416304, "ref_name": -10.208064, "refcount": -10.901211, "references": -9.514916, "reflog_walk_info": -10.901211, "refs": -10.901211, "register_commit_graft": -10.208064, "register_shallow": -10.901211, "regs": -10.208064, "regs.b.ah": -10.901211, "regs.b.al": -10.901211, "regs.h.flags": -10.901211, "regs.h.sp": -10.901211, "regs.h.ss": -10.901211, "remainder": -9.802599, "render_method": -9.802599, "replicationFeedMonitors": -10.901211, "replicationFeedSlaves": -10.901211, "report_": -10.901211, "requires": -10.901211, "res": -9.514916, "reserved": -10.208064, "resetCommandTableStats": -10.901211, "restriction": -10.208064, "result": -8.503316, "resulting": -10.901211, "ret": -6.544502, "return": -4.955790, "retval": -9.802599, "rev_info": -10.208064, "reverse_video": -10.901211, "rewriteAppendOnlyFileBackground": -10.208064, "rfFReadLine_UTF": -8.416304, "rfFgets_UTF": -9.802599, "rfFseek": -10.208064, "rfFtell": -10.208064, "rfLMS_MacroEvalPtr": -10.208064, "rfLMS_Push": -9.514916, "rfPclose": -10.901211, "rfPopen": -10.208064, "rfString_Append": -9.802599, "rfString_Append_f": -10.901211, "rfString_Append_fUTF": -9.109451, "rfString_Append_i": -10.208064, "rfString_Assign_fUTF": -9.291773, "rfString_Between": -8.821769, "rfString_BytePosToCharPos": -10.208064, "rfString_Copy_IN": -10.901211, "rfString_Copy_OUT": -10.901211, "rfString_Copy_chars": -10.901211, "rfString_Count": -10.901211, "rfString_Create": -10.901211, "rfString_Create_UTF": -10.901211, "rfString_Create_fUTF": -9.109451, "rfString_FindBytePos": -10.208064, "rfString_Fwrite": -9.291773, "rfString_Fwrite_fUTF": -10.901211, "rfString_Init_UTF": -10.901211, "rfString_Init_fUTF": -9.109451, "rfString_IterateB_Start": -10.901211, "rfString_Iterate_End": -10.208064, "rfString_Iterate_Start": -9.514916, "rfString_KeepOnly": -10.208064, "rfString_Length": -10.901211, "rfString_Prepend": -10.208064, "rfString_PruneEnd": -10.208064, "rfString_PruneMiddleB": -10.208064, "rfString_PruneMiddleF": -10.901211, "rfString_PruneStart": -10.208064, "rfString_Remove": -9.109451, "rfString_Replace": -8.955301, "rfString_Strip": -10.208064, "rfString_StripEnd": -10.208064, "rfString_StripStart": -10.208064, "rfString_ToDouble": -10.901211, "rfString_ToInt": -10.901211, "rfString_ToUTF": -9.291773, "rfString_Tokenize": -10.208064, "rfUTF": -7.856688, "rfUTF8_FromCodepoint": -10.901211, "rfUTILS_Endianess": -8.416304, "rfUTILS_SwapEndianUI": -9.109451, "rfUTILS_SwapEndianUS": -10.208064, "rfoptional": -10.901211, "right": -8.598626, "right_key": -10.901211, "rl_library_version": -10.901211, "rm": -8.416304, "rnd": -10.208064, "rndr": -7.140011, "rndr_newbuf": -9.514916, "rndr_popbuf": -9.514916, "robj": -9.514916, "root": -8.336261, "root.children.head": -10.901211, "router_exception": -10.901211, "row": -7.435475, "rows": -10.901211, "rshift_key": -10.901211, "rsl": -9.109451, "rstr": -8.416304, "ruby_obj": -8.503316, "run": -10.901211, "run_add_interactive": -10.901211, "run_argv": -10.208064, "run_builtin": -10.208064, "run_command_v_opt": -10.901211, "run_with_period": -10.208064, "runtime": -10.901211, "s": -6.412574, "sP": -10.208064, "s_body_identity": -10.208064, "s_body_identity_eof": -10.208064, "s_chunk_data": -10.208064, "s_chunk_data_almost_done": -10.208064, "s_chunk_data_done": -10.208064, "s_chunk_parameters": -10.208064, "s_chunk_size": -10.208064, "s_chunk_size_almost_done": -9.802599, "s_chunk_size_start": -9.802599, "s_dead": -10.901211, "s_header_field_start": -10.901211, "s_headers_done": -10.901211, "s_message_done": -10.208064, "s_req_fragment": -10.901211, "s_req_fragment_start": -10.901211, "s_req_host": -10.208064, "s_req_host_start": -10.901211, "s_req_host_v": -9.109451, "s_req_path": -10.901211, "s_req_port": -10.901211, "s_req_port_start": -10.208064, "s_req_query_string": -10.901211, "s_req_query_string_start": -10.901211, "s_req_schema": -10.901211, "s_req_schema_slash": -10.901211, "s_req_schema_slash_slash": -10.901211, "sans": -10.901211, "save_commit_buffer": -9.802599, "save_our_env": -9.802599, "saved_errno": -10.901211, "saveparam": -10.901211, "scaleVector": -9.514916, "scaleVector.v": -7.500013, "scheduler_add": -10.901211, "scheduler_fork": -10.901211, "scheduler_get_current": -10.901211, "scheduler_init": -10.901211, "scheduler_new": -10.901211, "scheduler_remove": -10.901211, "scheduler_select": -10.901211, "scheduler_state": -10.901211, "scheduler_terminate_current": -10.901211, "scheduler_yield": -10.901211, "scm_bool": -10.901211, "scm_char": -10.901211, "scm_empty_list": -10.901211, "scm_eof": -10.901211, "scm_file": -10.901211, "scm_int": -10.901211, "scm_lambda": -10.901211, "scm_pair": -10.901211, "scm_prim_fun": -10.901211, "scm_str": -10.901211, "scm_symbol": -10.901211, "scnd": -10.208064, "scope": -8.821769, "script": -8.416304, "scriptingInit": -10.901211, "sd_callbacks": -10.901211, "sd_markdown": -7.682335, "sd_markdown_free": -10.901211, "sd_version": -10.901211, "sds": -9.802599, "sdsfree": -10.901211, "sdslen": -10.901211, "sdsnew": -10.208064, "search": -9.514916, "second": -10.901211, "seconds": -10.208064, "section": -10.901211, "self": -7.317692, "sep": -9.802599, "separators": -10.901211, "seq_dataset_ArrayDataset": -9.291773, "seq_dataset_CSRDataset": -9.109451, "seq_dataset_DOUBLE": -9.514916, "seq_dataset_INTEGER": -9.291773, "seq_dataset_SequentialDataset": -8.821769, "sequence": -10.901211, "server": -10.208064, "server.activerehashing": -10.901211, "server.also_propagate": -10.208064, "server.aof_child_pid": -9.291773, "server.aof_current_size": -10.901211, "server.aof_current_size*": -10.901211, "server.aof_rewrite_base_size": -10.208064, "server.aof_rewrite_min_size": -10.901211, "server.aof_rewrite_perc": -10.208064, "server.aof_rewrite_scheduled": -10.901211, "server.aof_state": -10.901211, "server.arch_bits": -10.901211, "server.clients": -10.901211, "server.cluster_enabled": -10.901211, "server.commands": -9.802599, "server.db": -8.703986, "server.dbnum": -9.802599, "server.dirty": -9.802599, "server.lastbgsave_status": -10.901211, "server.lastsave": -10.901211, "server.loading": -10.901211, "server.maxmemory": -10.208064, "server.maxmemory_policy": -10.901211, "server.monitors": -10.208064, "server.rdb_child_pid": -9.109451, "server.rdb_filename": -10.901211, "server.saveparams": -10.901211, "server.saveparamslen": -10.208064, "server.slaves": -9.514916, "server.stat_expiredkeys": -10.901211, "server.stop_writes_on_bgsave_err": -10.901211, "server.unixtime": -10.208064, "server.watchdog_period": -10.208064, "server_custom_extensions": -10.208064, "service_state": -9.109451, "set_": -10.208064, "set_context": -10.901211, "set_error": -9.802599, "set_var": -10.901211, "set_vgabasemem": -10.208064, "setenv": -10.901211, "setgid": -10.901211, "setsid": -10.901211, "settings": -9.514916, "setuid": -10.901211, "setup_git_directory": -10.901211, "setup_git_directory_gently": -10.901211, "setup_pager": -10.901211, "setup_path": -10.901211, "setup_work_tree": -10.901211, "setvgabasemem": -10.901211, "sflags": -10.901211, "sgd_fast_": -6.989188, "sgd_fast_Classification": -8.955301, "sgd_fast_DOUBLE": -9.291773, "sgd_fast_EpsilonInsensitive": -8.955301, "sgd_fast_Hinge": -8.703986, "sgd_fast_Huber": -9.109451, "sgd_fast_INTEGER": -9.802599, "sgd_fast_Log": -9.109451, "sgd_fast_LossFunction": -8.067997, "sgd_fast_ModifiedHuber": -9.291773, "sgd_fast_Regression": -8.503316, "sgd_fast_SquaredEpsilonInsensitive": -8.955301, "sgd_fast_SquaredHinge": -8.598626, "sgd_fast_SquaredLoss": -9.291773, "sgd_fast_l": -10.901211, "sgd_fast_max": -10.901211, "sgd_fast_min": -10.901211, "sgd_fast_plain_sgd": -10.901211, "sgd_fast_sqnorm": -10.901211, "sha": -7.569006, "shallow_flag": -10.901211, "shape": -10.901211, "shareHandle": -10.901211, "shared": -9.109451, "shared.bgsaveerr": -10.901211, "sharedObjectsStruct": -10.901211, "shentsize": -10.901211, "shift_left": -10.901211, "shift_right": -10.901211, "shndx": -10.901211, "shnum": -10.901211, "shoff": -10.901211, "short": -8.955301, "show_notes": -10.901211, "shstrndx": -10.901211, "signal_pipe": -8.955301, "signed": -9.109451, "signum": -9.514916, "sin": -8.067997, "sinf": -9.514916, "single_parent": -10.901211, "size": -6.105420, "size_t": -6.033676, "sizeof": -7.163541, "sk_SSL_CUSTOM_EXTENSION_free": -10.901211, "sk_SSL_CUSTOM_EXTENSION_new_null": -10.901211, "sk_SSL_CUSTOM_EXTENSION_num": -9.802599, "sk_SSL_CUSTOM_EXTENSION_push": -10.901211, "sk_SSL_CUSTOM_EXTENSION_value": -10.901211, "sklearn_": -5.659464, "slots": -10.208064, "slowlogInit": -10.901211, "so": -10.901211, "sort_in_topological_order": -10.901211, "source": -10.901211, "sp": -9.514916, "span_nb": -9.802599, "sprintf": -10.901211, "sq_item": -10.208064, "sq_length": -10.208064, "src": -8.067997, "srcLevel": -10.901211, "srcName": -10.901211, "srcP": -9.109451, "srcTarget": -10.901211, "srcX": -9.802599, "srcY": -9.802599, "srcZ": -10.901211, "sscanf": -10.901211, "ssize_t": -10.901211, "ssl": -8.010839, "sstr": -8.010839, "st": -10.208064, "st.st_mode": -10.208064, "stack": -8.598626, "stack_free": -10.208064, "stack_push": -10.901211, "stack_size": -10.901211, "stacklevel": -10.901211, "start": -8.955301, "startCharacterPos_": -9.514916, "startup_info": -10.208064, "stat": -9.802599, "statStr": -9.109451, "state": -7.435475, "stateStack": -9.802599, "static": -4.576852, "static_cast": -10.208064, "statloc": -9.291773, "status": -8.193161, "status_code": -10.901211, "std": -8.821769, "stderr": -10.208064, "stdin": -10.901211, "stdio_count": -8.955301, "stdout": -9.514916, "stp": -10.901211, "str": -7.317692, "strSize": -10.901211, "strbuf": -8.416304, "strbuf_addf": -10.901211, "strbuf_release": -10.901211, "strchr": -10.901211, "strcmp": -8.955301, "strcspn": -10.208064, "strdup": -10.208064, "strdup_printf": -9.802599, "strdup_vprintf": -9.802599, "stream": -10.208064, "strerror": -10.901211, "strict": -10.901211, "stride": -10.901211, "strides": -10.901211, "string": -8.128622, "string_": -9.109451, "string_to_str": -10.901211, "strings": -10.901211, "strlen": -8.821769, "strncasecmp": -10.208064, "strncat": -10.901211, "strncpy": -10.901211, "strspn": -10.208064, "strstr": -10.208064, "strtod": -10.901211, "strtol": -10.901211, "strtoul": -10.208064, "struct": -4.688605, "struct_alignment": -10.901211, "sub": -9.109451, "subdir": -9.802599, "suboffsets": -10.901211, "substring": -8.416304, "substrings": -10.901211, "success": -8.955301, "super": -10.901211, "switch": -8.010839, "sx": -8.598626, "sy": -8.598626, "sys_brk": -10.901211, "sys_chdir": -10.901211, "sys_execve": -10.901211, "sys_exit": -10.901211, "sys_fork": -10.901211, "sys_get_hostname": -10.901211, "sys_getcwd": -10.901211, "sys_getexecdata": -10.901211, "sys_getpid": -10.901211, "sys_getppid": -10.901211, "sys_kill": -10.901211, "sys_mmap": -10.901211, "sys_munmap": -10.901211, "sys_open": -10.901211, "sys_opendir": -10.901211, "sys_read": -10.901211, "sys_readdir": -10.901211, "sys_seek": -10.901211, "sys_set_hostname": -10.901211, "sys_test": -10.901211, "sys_uname": -10.901211, "sys_write": -10.901211, "syscall_name_table": -10.901211, "syscall_t": -10.901211, "syscall_table": -10.901211, "syscalldef": -10.901211, "syscalldefs": -10.901211, "system_addchild": -9.514916, "system_initnode": -9.291773, "system_node": -8.821769, "system_registernode": -10.901211, "system_removechild": -10.901211, "system_unregisternode": -10.901211, "system_wakeup": -10.208064, "sz": -8.598626, "szres": -8.821769, "t": -8.128622, "tab": -9.514916, "tabSize": -10.901211, "table": -10.901211, "tabstop": -10.901211, "tail": -8.416304, "tanf": -10.901211, "target": -9.291773, "target_msc": -9.802599, "target_sbc": -10.901211, "task": -10.208064, "task*": -10.208064, "task_setstatus": -10.208064, "task_state": -10.901211, "task_t": -9.802599, "task_t*": -8.821769, "temp": -10.208064, "tempBuff": -9.109451, "terminated": -10.208064, "test": -10.901211, "tex": -9.802599, "text": -8.336261, "that": -9.109451, "the": -7.237649, "them": -10.901211, "then": -10.901211, "this": -9.514916, "thisPos": -9.514916, "thisstr": -6.209863, "thisstrP": -8.598626, "thread_manager": -10.901211, "threshold": -10.901211, "tils_": -7.317692, "time": -10.901211, "timelimit": -9.514916, "timer": -10.901211, "title": -10.901211, "title_b": -10.901211, "title_e": -9.291773, "title_end": -10.208064, "title_offset": -10.208064, "tmp": -8.193161, "tmp.custom_extensions.received": -10.208064, "tmp.custom_extensions.sent": -9.514916, "tmpSTR": -10.208064, "tmp_i": -8.336261, "to": -7.467224, "to_fork": -10.901211, "to_py_func": -9.109451, "to_read": -9.109451, "tokenizer": -10.208064, "tokens": -9.802599, "tokensN": -10.208064, "tolower": -10.901211, "top": -8.598626, "top_frame": -10.208064, "top_it": -10.901211, "top_it.frame": -10.901211, "tos": -10.901211, "tp_as_mapping": -9.802599, "tp_as_sequence": -10.901211, "tp_dictoffset": -10.208064, "tp_name": -9.514916, "trace_argv_printf": -9.802599, "trace_repo_setup": -10.901211, "trackOperationsPerSecond": -10.901211, "translationVector": -9.514916, "translationVector.v": -8.010839, "tree": -10.208064, "true": -7.533915, "tryResizeHashTables": -10.208064, "tsb": -9.109451, "ttl": -10.901211, "two": -10.901211, "tx": -8.821769, "ty": -8.821769, "type": -7.117021, "type*": -10.901211, "type_arg": -10.208064, "type_type": -10.901211, "typedef": -5.516716, "typegroup": -10.901211, "typename": -10.208064, "typeof": -10.208064, "tz": -8.821769, "u": -8.193161, "u.v": -9.802599, "uDelay": -10.208064, "uEdge": -10.208064, "uFlags": -10.901211, "uMaxLineDelay": -10.901211, "uRate": -10.208064, "uSource": -10.208064, "uState": -10.901211, "uType": -10.901211, "uVideoSlot": -10.208064, "uf": -9.109451, "uint": -5.383758, "uint32_t": -10.901211, "undefined_value": -10.208064, "underline": -10.901211, "unhex": -9.802599, "unhex_val": -9.109451, "unicode": -10.901211, "union": -10.208064, "unlikely": -7.263625, "unregister_function": -10.901211, "unregister_shallow": -10.901211, "unscape_text": -10.901211, "unsigned": -6.057024, "until": -10.901211, "upX": -9.802599, "upY": -9.802599, "upZ": -9.802599, "updateDictResizePolicy": -10.208064, "upgrade": -10.208064, "use": -10.901211, "use_fd": -9.291773, "use_pager": -8.821769, "used": -9.514916, "used*": -10.901211, "user": -10.901211, "user_data": -10.901211, "userformat_find_requirements": -10.901211, "userformat_want": -10.208064, "uses": -10.901211, "ust": -9.802599, "ustime": -9.802599, "utf": -7.117021, "util": -9.802599, "uv": -10.208064, "uv__chld": -10.901211, "uv__handle_init": -10.901211, "uv__handle_start": -10.901211, "uv__handle_stop": -10.901211, "uv__make_pipe": -10.901211, "uv__new_sys_error": -10.901211, "uv__nonblock": -10.901211, "uv__process_child_init": -10.208064, "uv__process_close": -10.901211, "uv__process_close_stream": -10.208064, "uv__process_init_stdio": -10.901211, "uv__process_open_stream": -10.208064, "uv__process_stdio_flags": -10.901211, "uv__set_sys_error": -10.208064, "uv__stream_close": -10.901211, "uv__stream_open": -10.901211, "uv_err_t": -10.901211, "uv_handle_t*": -10.901211, "uv_kill": -10.901211, "uv_loop_t*": -10.901211, "uv_ok_": -10.901211, "uv_process_kill": -10.901211, "uv_process_options_t": -10.208064, "uv_process_t*": -9.802599, "uv_spawn": -10.901211, "uv_stdio_container_t*": -10.208064, "uv_stream_t*": -10.208064, "v": -6.494492, "v.v": -7.605374, "va_arg": -10.901211, "va_copy": -10.901211, "va_end": -9.514916, "va_list": -9.291773, "va_start": -9.802599, "vaddq_f": -8.955301, "validateUTF": -9.802599, "value": -7.345863, "values": -6.840768, "var": -9.291773, "variable": -10.208064, "vbeControlInfo": -10.901211, "vbeInterfaceLen": -10.901211, "vbeInterfaceOff": -10.901211, "vbeInterfaceSeg": -10.901211, "vbeMode": -10.901211, "vbeModeInfo": -10.901211, "vector": -9.514916, "vector.v": -8.703986, "vectorCount": -8.416304, "vectorRight": -8.821769, "vectorRight.v": -7.533915, "vectors": -8.821769, "verbose": -10.208064, "version": -9.802599, "vfs_dir_open": -10.901211, "vfs_dir_read": -10.901211, "vfs_dir_t": -10.901211, "vfs_dir_t*": -9.802599, "vfs_file_t": -10.901211, "vfs_file_t*": -9.514916, "vfs_get_dir_from_id": -10.901211, "vfs_get_from_id": -10.901211, "vfs_last_read_attempt": -10.901211, "vfs_mount": -10.901211, "vfs_open": -10.901211, "vfs_read": -10.901211, "vfs_read_callback_t": -10.901211, "vfs_read_dir_callback_t": -10.901211, "vfs_seek": -10.901211, "vgabase": -9.802599, "vgabasemem": -9.802599, "vgetq_lane_f": -8.128622, "virtaddr": -10.901211, "vld": -8.821769, "vmem_add_page": -10.901211, "vmem_context": -8.262153, "vmem_context*": -10.901211, "vmem_count_pages": -10.901211, "vmem_dump": -10.901211, "vmem_dump_page": -10.901211, "vmem_handle_fault": -10.901211, "vmem_iterate": -10.901211, "vmem_iterator_t": -10.901211, "vmem_page": -8.703986, "vmem_set_cache": -10.901211, "vmlaq_n_f": -8.416304, "vmulq_n_f": -8.067997, "void": -5.340529, "void*": -6.696518, "vsnprintf": -10.208064, "vst": -10.901211, "vsubq_f": -9.514916, "w": -7.810168, "wait": -10.901211, "want": -9.514916, "warning": -10.901211, "was_alias": -9.802599, "watchdogScheduleSignal": -10.901211, "way": -10.901211, "we": -10.901211, "weight_vector_DOUBLE": -10.901211, "weight_vector_INTEGER": -10.901211, "weight_vector_WeightVector": -9.109451, "wglAllocateMemoryNV": -10.901211, "wglAssociateImageBufferEventsI": -10.901211, "wglBeginFrameTrackingI": -10.901211, "wglBindDisplayColorTableEXT": -10.901211, "wglBindSwapBarrierNV": -10.901211, "wglBindTexImageARB": -10.901211, "wglBindVideoCaptureDeviceNV": -10.901211, "wglBindVideoDeviceNV": -10.901211, "wglBindVideoImageNV": -10.901211, "wglBlitContextFramebufferAMD": -10.901211, "wglChoosePixelFormatARB": -10.901211, "wglChoosePixelFormatEXT": -10.901211, "wglCopyImageSubDataNV": -10.901211, "wglCreateAffinityDCNV": -10.901211, "wglCreateAssociatedContextAMD": -10.901211, "wglCreateAssociatedContextAttribsAMD": -10.901211, "wglCreateBufferRegionARB": -10.901211, "wglCreateContextAttribsARB": -10.901211, "wglCreateDisplayColorTableEXT": -10.901211, "wglCreateImageBufferI": -10.901211, "wglCreatePbufferARB": -10.901211, "wglCreatePbufferEXT": -10.901211, "wglDXCloseDeviceNV": -10.901211, "wglDXLockObjectsNV": -10.901211, "wglDXObjectAccessNV": -10.901211, "wglDXOpenDeviceNV": -10.901211, "wglDXRegisterObjectNV": -10.901211, "wglDXSetResourceShareHandleNV": -10.901211, "wglDXUnlockObjectsNV": -10.901211, "wglDXUnregisterObjectNV": -10.901211, "wglDeleteAssociatedContextAMD": -10.901211, "wglDeleteBufferRegionARB": -10.901211, "wglDeleteDCNV": -10.901211, "wglDestroyDisplayColorTableEXT": -10.901211, "wglDestroyImageBufferI": -10.901211, "wglDestroyPbufferARB": -10.901211, "wglDestroyPbufferEXT": -10.901211, "wglDisableFrameLockI": -10.901211, "wglDisableGenlockI": -10.901211, "wglEnableFrameLockI": -10.901211, "wglEnableGenlockI": -10.901211, "wglEndFrameTrackingI": -10.901211, "wglEnumGpuDevicesNV": -10.901211, "wglEnumGpusFromAffinityDCNV": -10.901211, "wglEnumGpusNV": -10.901211, "wglEnumerateVideoCaptureDevicesNV": -10.901211, "wglEnumerateVideoDevicesNV": -10.901211, "wglFreeMemoryNV": -10.901211, "wglGenlockSampleRateI": -10.901211, "wglGenlockSourceDelayI": -10.901211, "wglGenlockSourceEdgeI": -10.901211, "wglGenlockSourceI": -10.901211, "wglGetContextGPUIDAMD": -10.901211, "wglGetCurrentAssociatedContextAMD": -10.901211, "wglGetCurrentReadDCARB": -10.901211, "wglGetCurrentReadDCEXT": -10.901211, "wglGetDigitalVideoParametersI": -10.901211, "wglGetExtensionsStringARB": -10.901211, "wglGetExtensionsStringEXT": -10.901211, "wglGetFrameUsageI": -10.901211, "wglGetGPUIDsAMD": -10.901211, "wglGetGPUInfoAMD": -10.901211, "wglGetGammaTableI": -10.901211, "wglGetGammaTableParametersI": -10.901211, "wglGetGenlockSampleRateI": -10.901211, "wglGetGenlockSourceDelayI": -10.901211, "wglGetGenlockSourceEdgeI": -10.901211, "wglGetGenlockSourceI": -10.901211, "wglGetMscRateOML": -10.901211, "wglGetPbufferDCARB": -10.901211, "wglGetPbufferDCEXT": -10.901211, "wglGetPixelFormatAttribfvARB": -10.901211, "wglGetPixelFormatAttribfvEXT": -10.901211, "wglGetPixelFormatAttribivARB": -10.901211, "wglGetPixelFormatAttribivEXT": -10.901211, "wglGetSwapIntervalEXT": -10.901211, "wglGetSyncValuesOML": -10.901211, "wglGetVideoDeviceNV": -10.901211, "wglGetVideoInfoNV": -10.901211, "wglIsEnabledFrameLockI": -10.901211, "wglIsEnabledGenlockI": -10.901211, "wglJoinSwapGroupNV": -10.901211, "wglLoadDisplayColorTableEXT": -10.901211, "wglLockVideoCaptureDeviceNV": -10.901211, "wglMakeAssociatedContextCurrentAMD": -10.901211, "wglMakeContextCurrentARB": -10.901211, "wglMakeContextCurrentEXT": -10.901211, "wglQueryCurrentContextNV": -10.901211, "wglQueryFrameCountNV": -10.901211, "wglQueryFrameLockMasterI": -10.901211, "wglQueryFrameTrackingI": -10.901211, "wglQueryGenlockMaxSourceDelayI": -10.901211, "wglQueryMaxSwapGroupsNV": -10.901211, "wglQueryPbufferARB": -10.901211, "wglQueryPbufferEXT": -10.901211, "wglQuerySwapGroupNV": -10.901211, "wglQueryVideoCaptureDeviceNV": -10.901211, "wglReleaseImageBufferEventsI": -10.901211, "wglReleasePbufferDCARB": -10.901211, "wglReleasePbufferDCEXT": -10.901211, "wglReleaseTexImageARB": -10.901211, "wglReleaseVideoCaptureDeviceNV": -10.901211, "wglReleaseVideoDeviceNV": -10.901211, "wglReleaseVideoImageNV": -10.901211, "wglResetFrameCountNV": -10.901211, "wglRestoreBufferRegionARB": -10.901211, "wglSaveBufferRegionARB": -10.901211, "wglSendPbufferToVideoNV": -10.901211, "wglSetDigitalVideoParametersI": -10.901211, "wglSetGammaTableI": -10.901211, "wglSetGammaTableParametersI": -10.901211, "wglSetPbufferAttribARB": -10.901211, "wglSetStereoEmitterState": -10.901211, "wglSwapBuffersMscOML": -10.901211, "wglSwapIntervalEXT": -10.901211, "wglSwapLayerBuffersMscOML": -10.901211, "wglWaitForMscOML": -10.901211, "wglWaitForSbcOML": -10.901211, "wglew.h": -10.901211, "wglewContextInit": -10.208064, "wglewContextIsSupported": -10.208064, "wglewGetContext": -9.514916, "wglewGetExtension": -10.901211, "wglewInit": -10.901211, "wglewIsSupported": -10.208064, "wglext.h": -10.901211, "which": -9.514916, "while": -6.726824, "width": -9.514916, "will": -9.291773, "window_focus": -10.901211, "window_quit": -10.901211, "window_size": -10.901211, "with": -9.514916, "word": -10.208064, "words": -10.901211, "work": -7.956772, "work.data": -10.208064, "work.size": -10.208064, "work_bufs": -8.336261, "works": -10.901211, "would": -10.901211, "writable": -9.291773, "write": -9.802599, "writeFrequency": -10.901211, "writelinks": -10.208064, "x": -5.643715, "xSrc": -10.901211, "xmalloc": -10.208064, "xrealloc": -10.208064, "xstrdup": -10.208064, "y": -6.531763, "ySrc": -10.901211, "yajl_alloc": -10.901211, "yajl_alloc_funcs": -9.802599, "yajl_bs_free": -10.901211, "yajl_bs_init": -10.901211, "yajl_bs_push": -10.901211, "yajl_buf_alloc": -10.901211, "yajl_buf_free": -10.901211, "yajl_callbacks": -10.901211, "yajl_do_parse": -10.901211, "yajl_free": -10.901211, "yajl_free_error": -10.901211, "yajl_get_bytes_consumed": -10.901211, "yajl_get_error": -10.901211, "yajl_handle": -8.598626, "yajl_handle_t": -10.901211, "yajl_lex_alloc": -10.901211, "yajl_lex_free": -10.901211, "yajl_lex_realloc": -10.901211, "yajl_parse": -10.208064, "yajl_parse_complete": -10.901211, "yajl_parser_config": -10.901211, "yajl_render_error_string": -10.901211, "yajl_reset_parser": -10.901211, "yajl_set_default_alloc_funcs": -10.901211, "yajl_state_start": -10.901211, "yajl_status": -9.514916, "yajl_status_client_canceled": -10.901211, "yajl_status_error": -10.901211, "yajl_status_insufficient_data": -10.901211, "yajl_status_ok": -10.901211, "yajl_status_to_string": -10.901211, "yi": -9.802599, "you": -9.802599, "z": -6.711556, "zend_class_entry": -10.901211, "zend_exception_get_default": -10.901211, "zfree": -10.208064, "zmalloc_used_memory": -10.901211, "zrealloc": -10.901211, "{": -4.083380, "|": -6.711556, "||": -6.790337, "}": -4.072499, "~": -9.514916, }, "C#": map[string]float64{ "!": -4.322144, "&&": -6.624729, "(": -2.383402, ")": -2.383402, "+": -5.238435, ",": -3.734357, "-": -6.219264, ".": -6.624729, ".Does": -6.219264, ".IsDependentOn": -6.219264, ".SetConfiguration": -7.317876, ".ToList": -6.624729, ".WithProperty": -7.317876, ".WithTarget": -7.317876, "/": -5.931582, "//": -6.624729, "/////////////////////////////////////////////////////////////////////////////": -4.832970, "//asp.net/mvc": -7.317876, "/h": -5.526117, ":": -4.182382, ";": -2.692903, "<": -4.678819, "</a>": -5.708438, "</div>": -7.317876, "</hgroup>": -7.317876, "</li>": -6.219264, "</mark>": -7.317876, "</ol>": -7.317876, "</p>": -7.317876, "</section>": -7.317876, "</summary>": -7.317876, "<FieldDeclaration>": -6.219264, "<OrderExpression>": -6.219264, "<a>": -5.708438, "<div>": -7.317876, "<hgroup>": -7.317876, "<li>": -6.219264, "<mark>": -7.317876, "<ol>": -7.317876, "<p>": -7.317876, "<section>": -7.317876, "<string>": -6.624729, "<summary>": -7.317876, "=": -2.887059, ">": -3.883889, "@": -7.317876, "@ViewBag.Message": -7.317876, "@ViewBag.Title.": -7.317876, "@section": -7.317876, "ASP.NET": -5.708438, "Add": -7.317876, "AggregateExpression": -6.219264, "AggregateSubqueryExpression": -6.219264, "Argument": -6.624729, "AssemblyCompany": -7.317876, "AssemblyConfiguration": -7.317876, "AssemblyCopyright": -7.317876, "AssemblyCulture": -7.317876, "AssemblyDelaySign": -7.317876, "AssemblyDescription": -7.317876, "AssemblyKeyFile": -7.317876, "AssemblyProduct": -7.317876, "AssemblyTitle": -7.317876, "AssemblyTrademark": -7.317876, "AssemblyVersion": -7.317876, "BsonPropertyValue": -6.624729, "CleanDirectories": -6.624729, "CollectionExpression": -6.624729, "Console.WriteLine": -6.624729, "Expression": -4.678819, "ExpressionVisitor": -7.317876, "FieldDeclaration": -7.317876, "FieldExpression": -6.219264, "Find": -7.317876, "Forum": -7.317876, "GetFiles": -7.317876, "Getting": -7.317876, "Hosting": -7.317876, "If": -7.317876, "Information": -5.708438, "IsDictionary": -6.624729, "Learn": -6.219264, "List": -6.624729, "LittleSampleApp": -7.317876, "MSBuild": -7.317876, "MVC": -5.526117, "MVC.": -7.317876, "Main": -7.317876, "MongoDB.Linq.Expressions": -7.317876, "MongoDB.Serialization.Descriptors": -7.317876, "MongoExpressionType": -6.624729, "MongoExpressionType.Aggregate": -7.317876, "MongoExpressionType.AggregateSubquery": -7.317876, "MongoExpressionType.Collection": -7.317876, "MongoExpressionType.Field": -7.317876, "MongoExpressionType.Projection": -7.317876, "MongoExpressionType.Scalar": -6.624729, "MongoExpressionType.Select": -7.317876, "MongoExpressionVisitor": -7.317876, "NuGet": -6.624729, "NuGetRestore": -7.317876, "OrderExpression": -6.624729, "PlatformTarget.MSIL": -7.317876, "Program": -7.317876, "ProjectionExpression": -6.219264, "ReadOnlyCollection": -5.931582, "RunTarget": -7.317876, "ScalarExpression": -5.526117, "SelectExpression": -5.526117, "Setup": -7.317876, "Started": -7.317876, "SubqueryExpression": -7.317876, "System": -6.624729, "System.Collections.Generic": -6.624729, "System.Collections.ObjectModel": -7.317876, "System.Linq": -6.624729, "System.Linq.Expressions": -7.317876, "System.Reflection": -7.317876, "System.Runtime.CompilerServices": -7.317876, "System.Text": -7.317876, "System.Threading.Tasks": -7.317876, "TDD": -7.317876, "Task": -5.931582, "Teardown": -7.317876, "The": -7.317876, "To": -7.317876, "Type": -5.931582, "Value": -6.624729, "ViewBag.Title": -7.317876, "Visit": -4.752927, "VisitAggregate": -6.624729, "VisitAggregateSubquery": -6.624729, "VisitCollection": -6.624729, "VisitField": -6.624729, "VisitFieldDeclarationList": -6.624729, "VisitOrderBy": -6.624729, "VisitProjection": -6.624729, "VisitScalar": -6.219264, "VisitSelect": -6.624729, "VisitSource": -6.624729, "VisitSubquery": -7.317876, "We": -7.317876, "Web": -7.317876, "Website": -7.317876, "You": -7.317876, "[": -4.678819, "]": -4.678819, "a": -6.219264, "about": -6.624729, "aggregate": -6.624729, "aggregate.AggregateType": -7.317876, "aggregate.Argument": -6.624729, "aggregate.Distinct": -7.317876, "aggregate.Type": -7.317876, "aggregateSubquery": -6.624729, "aggregateSubquery.AggregateAsSubquery": -6.624729, "aggregateSubquery.AggregateInGroupSelect": -7.317876, "aggregateSubquery.GroupByAlias": -7.317876, "agile": -7.317876, "alternate": -5.015291, "alternate.Add": -6.624729, "alternate.AsReadOnly": -6.624729, "and": -5.526117, "any": -7.317876, "applications": -7.317876, "applications.": -7.317876, "args": -7.317876, "assembly": -4.919981, "base.Visit": -7.317876, "based": -7.317876, "bool": -6.624729, "build": -7.317876, "can": -7.317876, "case": -5.238435, "class": -5.015291, "clean": -7.317876, "coding": -7.317876, "collection": -6.624729, "company": -7.317876, "concerns": -7.317876, "configuration": -5.931582, "control": -7.317876, "creating": -7.317876, "default": -7.317876, "development": -7.317876, "development.": -7.317876, "dynamic": -7.317876, "e": -4.919981, "easily": -7.317876, "easy": -7.317876, "enable": -7.317876, "enables": -7.317876, "enjoyable": -7.317876, "exp": -4.752927, "exp.NodeType": -7.317876, "expr": -7.317876, "expr.Expression": -6.624729, "expr.OrderType": -7.317876, "f": -7.317876, "f.Expression": -6.624729, "f.Name": -7.317876, "false": -7.317876, "fast": -7.317876, "featured": -7.317876, "features": -6.219264, "field": -6.219264, "field.Alias": -7.317876, "field.Expression": -6.624729, "field.Name": -7.317876, "fields": -5.238435, "fields.Count": -7.317876, "fields.Take": -7.317876, "find": -7.317876, "following": -7.317876, "for": -5.708438, "foreach": -6.219264, "forums": -7.317876, "free": -7.317876, "friendly": -7.317876, "from": -5.931582, "full": -7.317876, "get": -5.931582, "gives": -6.624729, "groupBy": -6.219264, "h": -5.526117, "have": -7.317876, "help": -7.317876, "hosting": -7.317876, "href": -5.708438, "http": -7.317876, "i": -5.015291, "if": -4.609826, "in": -6.219264, "includes": -7.317876, "install": -7.317876, "int": -6.624729, "internal": -6.624729, "isDictionary": -6.624729, "it": -7.317876, "jump": -7.317876, "latest": -7.317876, "learn": -7.317876, "libraries": -7.317876, "makes": -7.317876, "many": -7.317876, "markup": -7.317876, "mix": -7.317876, "more": -5.931582, "most": -7.317876, "n": -5.931582, "namespace": -6.219264, "new": -5.238435, "null": -4.832970, "object": -6.624729, "of": -6.624729, "offers": -7.317876, "orderBy": -6.219264, "orderBys": -5.931582, "orderBys.Count": -7.317876, "orderBys.Take": -7.317876, "our": -7.317876, "over": -7.317876, "override": -7.317876, "packages": -7.317876, "page": -7.317876, "path": -5.931582, "patterns": -7.317876, "powerful": -7.317876, "price": -7.317876, "private": -6.219264, "projection": -6.624729, "projection.Aggregator": -7.317876, "projection.Projector": -6.624729, "projection.Source": -6.624729, "projector": -6.219264, "protected": -4.832970, "public": -5.931582, "questions": -7.317876, "return": -3.950580, "right": -7.317876, "samples": -7.317876, "scalar": -6.624729, "scalar.Select": -6.624729, "scalar.Type": -7.317876, "select": -5.708438, "select.Alias": -7.317876, "select.Fields": -6.624729, "select.From": -6.624729, "select.GroupBy": -6.624729, "select.IsDistinct": -7.317876, "select.OrderBy": -6.624729, "select.Skip": -6.624729, "select.Take": -6.624729, "select.Where": -6.624729, "separation": -7.317876, "set": -6.219264, "settings": -7.317876, "settings.SetPlatformTarget": -7.317876, "skip": -6.219264, "solution": -5.371966, "solution.GetDirectory": -7.317876, "solutionPaths": -6.624729, "solutions": -6.219264, "solutions.Select": -7.317876, "sophisticated": -7.317876, "source": -5.708438, "standards.": -7.317876, "start": -7.317876, "static": -7.317876, "string": -7.317876, "subquery": -5.526117, "subquery.NodeType": -7.317876, "suggest": -7.317876, "switch": -6.624729, "take": -6.219264, "target": -6.624729, "that": -5.708438, "the": -5.931582, "this.Visit": -7.317876, "title": -6.624729, "title=": -6.624729, "to": -6.219264, "tools.": -7.317876, "tutorials": -7.317876, "type": -6.624729, "update": -7.317876, "use": -7.317876, "using": -4.832970, "value": -6.624729, "var": -4.322144, "videos": -7.317876, "virtual": -5.015291, "visit": -6.624729, "void": -7.317876, "way": -7.317876, "web": -6.624729, "websites": -7.317876, "where": -6.219264, "you": -5.931582, "your": -6.624729, "{": -3.680290, "||": -5.371966, "}": -3.680290, "…": -6.219264, "\ufeff": -5.931582, }, "C++": map[string]float64{ "!": -5.160253, "\"": -9.788488, "#define": -5.217220, "#elif": -9.500806, "#else": -7.390593, "#endif": -6.204969, "#error": -8.689876, "#if": -6.743966, "#ifdef": -7.891368, "#ifndef": -7.591264, "#include": -5.619242, "#pragma": -9.095341, "#undef": -9.277663, "%": -9.788488, "&": -4.846846, "&&": -6.728217, "'": -10.193953, "(": -2.302436, ")": -2.326082, "*": -5.502605, "**": -10.193953, "**env": -10.887100, "**envp": -10.887100, "**p": -10.887100, "**tb": -10.887100, "**type": -10.887100, "**value": -10.887100, "*/": -10.887100, "*CallStack": -10.887100, "*Env": -10.887100, "*O": -10.887100, "*PC": -10.887100, "*PCL": -10.887100, "*PCLATCH": -10.887100, "*ProgramMemory": -10.887100, "*Q": -10.887100, "*R": -10.887100, "*Reference": -10.887100, "*STATUS": -10.887100, "*WREG": -10.887100, "*__Pyx_GetName": -10.887100, "*__Pyx_Import": -10.887100, "*__Pyx_PyInt_to_py_Py_intptr_t": -10.887100, "*__Pyx_RefNanny": -10.887100, "*__pyx_b": -10.887100, "*__pyx_builtin_RuntimeError": -10.887100, "*__pyx_builtin_ValueError": -10.887100, "*__pyx_builtin_range": -10.887100, "*__pyx_empty_bytes": -10.887100, "*__pyx_empty_tuple": -10.887100, "*__pyx_f": -10.887100, "*__pyx_f_": -8.402194, "*__pyx_filename": -10.887100, "*__pyx_int_": -10.193953, "*__pyx_k_tuple_": -8.941190, "*__pyx_kp_s_": -9.788488, "*__pyx_kp_u_": -9.095341, "*__pyx_m": -10.887100, "*__pyx_n_s__RuntimeError": -10.887100, "*__pyx_n_s__ValueError": -10.887100, "*__pyx_n_s____main__": -10.887100, "*__pyx_n_s____test__": -10.887100, "*__pyx_n_s__base": -10.887100, "*__pyx_n_s__buf": -10.887100, "*__pyx_n_s__byteorder": -10.887100, "*__pyx_n_s__descr": -10.887100, "*__pyx_n_s__do_awesome_work": -10.887100, "*__pyx_n_s__fields": -10.887100, "*__pyx_n_s__format": -10.887100, "*__pyx_n_s__itemsize": -10.887100, "*__pyx_n_s__names": -10.887100, "*__pyx_n_s__ndim": -10.887100, "*__pyx_n_s__np": -10.887100, "*__pyx_n_s__numpy": -10.887100, "*__pyx_n_s__obj": -10.887100, "*__pyx_n_s__ones": -10.887100, "*__pyx_n_s__pure_py_test": -10.887100, "*__pyx_n_s__range": -10.887100, "*__pyx_n_s__readonly": -10.887100, "*__pyx_n_s__shape": -10.887100, "*__pyx_n_s__strides": -10.887100, "*__pyx_n_s__suboffsets": -10.887100, "*__pyx_n_s__type_num": -10.887100, "*__pyx_n_s__work_module": -10.887100, "*__pyx_n_s__wrapper_inner": -10.887100, "*__pyx_pf_": -10.193953, "*__pyx_r": -8.941190, "*__pyx_refnanny": -10.887100, "*__pyx_self": -10.193953, "*__pyx_t_": -7.751606, "*__pyx_v_a": -9.277663, "*__pyx_v_answer_ptr": -10.193953, "*__pyx_v_b": -9.500806, "*__pyx_v_c": -9.788488, "*__pyx_v_child": -10.887100, "*__pyx_v_childname": -10.887100, "*__pyx_v_d": -10.193953, "*__pyx_v_data": -10.887100, "*__pyx_v_data_np": -10.193953, "*__pyx_v_data_ptr": -10.193953, "*__pyx_v_descr": -10.193953, "*__pyx_v_dims": -10.193953, "*__pyx_v_e": -10.887100, "*__pyx_v_end": -10.887100, "*__pyx_v_f": -10.193953, "*__pyx_v_fields": -10.887100, "*__pyx_v_info": -9.500806, "*__pyx_v_new_offset": -10.887100, "*__pyx_v_offset": -10.887100, "*__pyx_v_self": -9.500806, "*__pyx_v_t": -10.887100, "*begin": -9.277663, "*beginDoc": -10.887100, "*bot": -10.887100, "*buf": -10.193953, "*c": -10.193953, "*ch": -9.788488, "*ctx": -10.193953, "*cur": -10.887100, "*current": -8.179050, "*current_": -8.941190, "*cursor": -9.500806, "*default_instance_": -10.887100, "*dict": -10.887100, "*document_": -8.053887, "*e": -10.887100, "*eckey": -10.193953, "*ecsig": -10.887100, "*end": -9.788488, "*endDoc": -10.887100, "*env": -9.788488, "*env_instance": -10.887100, "*eof": -10.887100, "*eor": -10.887100, "*fPos": -8.179050, "*field": -10.887100, "*fill": -10.887100, "*format": -10.887100, "*from_list": -10.887100, "*group": -10.193953, "*inspect": -10.193953, "*instance": -10.887100, "*internal": -10.887100, "*it": -8.807659, "*itError": -10.887100, "*lim": -10.887100, "*limit": -10.887100, "*m": -10.887100, "*marker": -10.193953, "*memory": -10.887100, "*message": -10.887100, "*modname": -10.887100, "*msg": -10.193953, "*msglen": -10.887100, "*name": -8.941190, "*name_": -10.887100, "*o": -10.887100, "*obj": -10.193953, "*operator": -10.887100, "*order": -10.887100, "*output": -10.193953, "*owner": -10.887100, "*p": -10.193953, "*pSize": -9.788488, "*pText": -10.193953, "*pbChanged": -10.193953, "*pf": -10.887100, "*pos": -10.887100, "*priv_key": -10.887100, "*program": -10.887100, "*ptr": -10.887100, "*pub_key": -10.887100, "*q": -10.887100, "*r": -10.887100, "*reinterpret_cast": -10.887100, "*rr": -10.887100, "*s": -9.788488, "*scan": -10.887100, "*shape": -10.887100, "*sig": -10.193953, "*sizeof": -10.887100, "*sor": -10.887100, "*source": -10.887100, "*start": -10.887100, "*str": -10.887100, "*strides": -10.887100, "*suboffsets": -10.887100, "*targetFrame": -9.500806, "*tb": -10.193953, "*text": -10.887100, "*this": -10.887100, "*tok": -10.887100, "*token": -10.887100, "*top": -10.887100, "*type": -9.788488, "*unused": -10.193953, "*value": -9.788488, "*x": -10.193953, "*y": -10.887100, "*zero": -10.887100, "+": -5.100203, ",": -3.581912, "-": -4.135999, ".": -10.193953, ".*s": -10.887100, ".Equals": -10.887100, ".c_str": -8.402194, ".data": -9.788488, ".data.ptr": -10.887100, ".empty": -9.277663, ".events": -10.887100, ".front": -9.788488, ".imag": -9.788488, ".length": -9.277663, ".pop": -9.788488, ".push": -10.193953, ".real": -9.788488, ".setComment": -10.887100, "/": -7.390593, "//": -9.500806, "//#define": -10.887100, "//JSON_ASSERT": -10.887100, "//a": -10.887100, "//automates": -10.887100, "//both": -10.887100, "//brings": -10.887100, "//canister": -10.887100, "//cleans": -10.887100, "//close": -10.887100, "//contains": -10.193953, "//counts": -10.887100, "//cout": -10.887100, "//creates": -9.788488, "//deletes": -10.887100, "//destroys": -10.887100, "//does": -10.887100, "//for": -10.887100, "//get": -10.887100, "//if": -10.887100, "//important": -10.887100, "//internal": -10.887100, "//length": -10.887100, "//list": -10.887100, "//maximum": -10.887100, "//necessary": -10.887100, "//number": -10.887100, "//open": -10.887100, "//overwrites": -10.193953, "//physical": -10.887100, "//pulls": -10.887100, "//really": -10.887100, "//removes": -10.887100, "//returns": -10.193953, "//std": -10.193953, "//the": -8.807659, "//these": -10.887100, "//this": -10.887100, "//throughout": -10.887100, "//time": -10.887100, "//use": -10.887100, "0": -10.887100, "33": -10.193953, "4": -10.887100, "65": -10.887100, ":": -2.288696, ";": -2.460051, "<": -6.035070, "<!-->": -10.887100, "<(QDataStream&>": -10.887100, "<(const>": -10.887100, "</>": -10.887100, "<<": -7.223539, "<BPackageResolvable>": -9.788488, "<BPackageResolvableExpression>": -9.788488, "<COPYRIGHT>": -9.500806, "<CallCompletedCallback>": -9.788488, "<IdentifierPart,>": -10.887100, "<IdentifierStart,>": -10.887100, "<Metric*>": -10.887100, "<NAME>": -10.887100, "<Py_ssize_t*>": -8.489205, "<QApplication>": -10.887100, "<QCoreApplication>": -10.887100, "<QDir>": -10.887100, "<QFile>": -10.887100, "<QObject>": -10.887100, "<QString>": -10.887100, "<QVariantMap>": -10.193953, "<QWebFrame>": -10.887100, "<QtGlobal>": -10.887100, "<SrsConfDirective*>": -9.788488, "<SrsIngesterFFMPEG*>": -9.277663, "<T>": -10.193953, "<Token::Value>": -10.887100, "<Url.h>": -10.887100, "<VALUE>": -10.887100, "<algorithm>": -9.788488, "<apl@lindesay.co.nz>": -10.887100, "<ariya.hidayat@gmail.com>": -10.193953, "<assert.h>": -10.887100, "<boost/asio/detail/config.hpp>": -10.887100, "<boost/asio/detail/epoll_reactor.hpp>": -10.887100, "<boost/asio/detail/pop_options.hpp>": -10.887100, "<boost/asio/detail/push_options.hpp>": -10.887100, "<boost/asio/detail/throw_error.hpp>": -10.887100, "<boost/asio/error.hpp>": -10.887100, "<byte>": -9.095341, "<cassert>": -10.887100, "<char*>": -8.584515, "<char>": -8.402194, "<class>": -10.887100, "<cmath>": -10.887100, "<complex.h>": -10.887100, "<complex>": -10.887100, "<const>": -8.322151, "<cstddef>": -10.887100, "<cstdint>": -10.193953, "<cstdio>": -10.193953, "<cstring>": -9.788488, "<ctype.h>": -10.887100, "<dbDataStructure*>": -10.887100, "<descriptor_state*>": -10.193953, "<double>": -9.788488, "<endl;>": -10.193953, "<epoll_reactor>": -10.887100, "<float>": -9.788488, "<fstream>": -10.193953, "<google/protobuf/descriptor.h>": -10.887100, "<google/protobuf/extension_set.h>": -10.887100, "<google/protobuf/generated_message_reflection.h>": -10.887100, "<google/protobuf/generated_message_util.h>": -10.887100, "<google/protobuf/io/coded_stream.h>": -10.887100, "<google/protobuf/message.h>": -10.887100, "<google/protobuf/reflection_ops.h>": -10.887100, "<google/protobuf/repeated_field.h>": -10.887100, "<google/protobuf/stubs/common.h>": -10.193953, "<google/protobuf/stubs/once.h>": -10.887100, "<google/protobuf/unknown_field_set.h>": -10.887100, "<google/protobuf/wire_format.h>": -10.887100, "<google/protobuf/wire_format_lite_inl.h>": -10.887100, "<http://www.gnu.org/licenses/>": -9.500806, "<id>": -10.887100, "<int>": -9.277663, "<io_service_impl>": -10.887100, "<iomanip>": -10.887100, "<iostream>": -9.095341, "<ivan.de.marino@gmail.com>": -10.887100, "<json/reader.h>": -10.887100, "<json/value.h>": -10.887100, "<json/writer.h>": -10.887100, "<keyword>": -10.193953, "<llvmo::APFloat_O>": -10.193953, "<llvmo::APInt_O>": -10.193953, "<llvmo::AllocaInst_O>": -10.193953, "<llvmo::Argument_O>": -10.193953, "<llvmo::ArrayType_O>": -10.193953, "<llvmo::AtomicCmpXchgInst_O>": -10.193953, "<llvmo::AtomicRMWInst_O>": -10.193953, "<llvmo::Attribute_O>": -10.193953, "<llvmo::BasicBlock_O>": -10.193953, "<llvmo::BranchInst_O>": -10.193953, "<llvmo::Builder_O>": -10.193953, "<llvmo::CallInst_O>": -10.193953, "<llvmo::CompositeType_O>": -10.193953, "<llvmo::ConstantArray_O>": -10.193953, "<llvmo::ConstantDataArray_O>": -10.193953, "<llvmo::ConstantDataSequential_O>": -10.193953, "<llvmo::ConstantExpr_O>": -10.193953, "<llvmo::ConstantFP_O>": -10.193953, "<llvmo::ConstantInt_O>": -10.193953, "<llvmo::ConstantPointerNull_O>": -10.193953, "<llvmo::Constant_O>": -10.193953, "<llvmo::DataLayout_O>": -10.193953, "<llvmo::DebugLoc_O>": -10.193953, "<llvmo::EngineBuilder_O>": -10.193953, "<llvmo::ExecutionEngine_O>": -10.193953, "<llvmo::FenceInst_O>": -10.193953, "<llvmo::FunctionPassManager_O>": -10.193953, "<llvmo::FunctionPass_O>": -10.193953, "<llvmo::FunctionType_O>": -10.193953, "<llvmo::Function_O>": -10.887100, "<llvmo::GlobalValue_O>": -10.193953, "<llvmo::IRBuilderBase_O>": -10.193953, "<llvmo::IRBuilder_O>": -10.193953, "<llvmo::ImmutablePass_O>": -10.193953, "<llvmo::InsertPoint_O>": -10.193953, "<llvmo::Instruction_O>": -10.193953, "<llvmo::IntegerType_O>": -10.193953, "<llvmo::LLVMContext_O>": -10.193953, "<llvmo::LandingPadInst_O>": -10.193953, "<llvmo::MDNode_O>": -10.193953, "<llvmo::MDString_O>": -10.193953, "<llvmo::ModulePass_O>": -10.193953, "<llvmo::Module_O>": -10.193953, "<llvmo::PHINode_O>": -10.193953, "<llvmo::PassManagerBase_O>": -10.193953, "<llvmo::Pass_O>": -10.193953, "<llvmo::PointerType_O>": -10.193953, "<llvmo::SequentialType_O>": -10.193953, "<llvmo::StoreInst_O>": -10.193953, "<llvmo::StructType_O>": -10.193953, "<llvmo::TerminatorInst_O>": -10.193953, "<llvmo::Type_O>": -10.193953, "<llvmo::UnaryInstruction_O>": -10.193953, "<llvmo::UndefValue_O>": -10.193953, "<llvmo::User_O>": -10.193953, "<llvmo::Value_O>": -10.193953, "<llvmo::VectorType_O>": -10.193953, "<long>": -10.887100, "<map>": -10.193953, "<math.h>": -10.887100, "<n;i++){>": -10.887100, "<np.npy_intp>": -8.689876, "<number>": -10.887100, "<openssl/aes.h>": -10.887100, "<openssl/ec.h>": -10.887100, "<openssl/ecdsa.h>": -10.887100, "<openssl/evp.h>": -10.887100, "<openssl/obj_mac.h>": -10.887100, "<operation>": -9.095341, "<organization>": -9.500806, "<point>": -10.887100, "<pthread.h>": -10.887100, "<queue>": -10.193953, "<set>": -10.887100, "<shared.h>": -10.887100, "<srs_app_config.hpp>": -10.887100, "<srs_app_ffmpeg.hpp>": -10.887100, "<srs_app_ingest.hpp>": -10.887100, "<srs_app_pithy_print.hpp>": -10.887100, "<srs_app_utility.hpp>": -10.887100, "<srs_kernel_error.hpp>": -10.887100, "<srs_kernel_log.hpp>": -10.887100, "<srs_kernel_utility.hpp>": -10.887100, "<sstream>": -10.887100, "<stack>": -10.887100, "<std::string>": -10.887100, "<stddef.h>": -10.887100, "<stdexcept>": -10.193953, "<stdint.h>": -10.193953, "<stdio.h>": -10.193953, "<stdlib.h>": -9.500806, "<string.h>": -10.193953, "<string>": -8.584515, "<sys/epoll.h>": -10.887100, "<sys/timerfd.h>": -10.887100, "<sys/utsname.h>": -10.887100, "<uInt*>": -10.887100, "<unibrow::LineTerminator,>": -10.887100, "<unibrow::WhiteSpace,>": -10.887100, "<unsigned>": -7.519805, "<utility>": -10.193953, "<vector>": -9.095341, "<void*>": -6.995280, "<windows.h>": -10.887100, "<zooey@hirschkaefer.de>": -10.887100, "=": -3.064255, ">": -4.144220, "?": -7.591264, "A": -10.887100, "ACos": -10.887100, "ADD": -10.887100, "ADDEQ": -10.887100, "ADDLW": -10.887100, "ADDWF": -10.887100, "AES_BLOCK_SIZE": -10.887100, "ALL_STAGES": -10.193953, "AND": -10.887100, "ANDAND": -10.887100, "ANDEQ": -10.887100, "ANDLW": -10.887100, "ANDWF": -10.887100, "APFloat_O": -8.489205, "APInt_O": -8.489205, "APPEND": -10.887100, "ARRAY": -10.887100, "ASM": -10.887100, "ASSERT": -7.942661, "ASSERT_NOT_NULL": -10.887100, "ASSIGN": -10.887100, "ASSIGN_ADD": -10.887100, "ASSIGN_BIT_AND": -10.887100, "ASSIGN_BIT_OR": -10.887100, "ASSIGN_BIT_XOR": -10.887100, "ASSIGN_DIV": -10.887100, "ASSIGN_MOD": -10.887100, "ASSIGN_MUL": -10.887100, "ASSIGN_SAR": -10.887100, "ASSIGN_SHL": -10.887100, "ASSIGN_SHR": -10.887100, "ASSIGN_SUB": -10.887100, "ASin": -10.887100, "ATan": -10.193953, "AUTO": -10.887100, "Abs": -10.887100, "Add": -10.887100, "AddCallCompletedCallback": -10.193953, "AddChar": -10.193953, "AddLiteralChar": -9.500806, "AddLiteralCharAdvance": -9.788488, "Advance": -7.102911, "AllStatic": -10.887100, "AllocaInst_O": -8.489205, "AllocatorCallback": -6.844049, "Argument_O": -8.489205, "ArrayType_O": -8.489205, "AtomicCmpXchgInst_O": -8.489205, "AtomicRMWInst_O": -8.489205, "Attribute_O": -8.489205, "BCF": -10.887100, "BEGIN_NATIVE_EXCEPTION": -10.193953, "BF": -5.751302, "BIGNUM": -8.689876, "BITCOIN_KEY_H": -10.193953, "BIT_AND": -10.887100, "BIT_NOT": -10.193953, "BIT_OR": -10.887100, "BIT_XOR": -10.887100, "BN_CTX": -10.193953, "BN_CTX_end": -10.887100, "BN_CTX_free": -10.193953, "BN_CTX_get": -8.807659, "BN_CTX_new": -10.193953, "BN_CTX_start": -10.887100, "BN_add": -10.887100, "BN_bin": -9.788488, "BN_bn": -10.193953, "BN_cmp": -10.887100, "BN_copy": -10.887100, "BN_mod_inverse": -10.887100, "BN_mod_mul": -10.193953, "BN_mod_sub": -10.887100, "BN_mul_word": -10.887100, "BN_num_bits": -10.193953, "BN_rshift": -10.887100, "BN_zero": -10.887100, "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": -10.193953, "BOOST_ASIO_HAS_EPOLL": -10.887100, "BOOST_ASIO_HAS_TIMERFD": -8.807659, "BPackageInfo": -8.941190, "BPackageInfo*": -10.887100, "BPackageKit": -10.887100, "BPackageResolvableExpression": -10.887100, "BPackageVersion": -10.887100, "BREAK": -10.887100, "BSF": -10.887100, "BSIZE": -9.095341, "BString": -9.788488, "BTFSC": -10.887100, "BTFSS": -10.887100, "B_BAD_DATA": -9.788488, "B_BAD_VALUE": -10.887100, "B_NO_MEMORY": -9.788488, "B_OK": -9.788488, "Bar": -9.788488, "BasicBlock_O": -8.489205, "Black": -10.887100, "BranchInst_O": -8.489205, "Buffer": -10.193953, "Builder_O": -8.489205, "BuiltInClass_O": -6.844049, "BuiltInClass_sp": -6.844049, "ByteArray*": -10.887100, "ByteSize": -10.193953, "C": -10.887100, "CALL": -10.887100, "CASE": -10.887100, "CCrypter": -9.095341, "CFID": -10.193953, "CHAR": -10.887100, "CKey": -7.629004, "CKeyID": -8.941190, "CKeyingMaterial": -8.807659, "CKeyingMaterial*": -10.887100, "CLASSIC_MODE": -10.193953, "CLOCK_MONOTONIC": -10.193953, "CLRF": -10.887100, "CLRW": -10.887100, "CLRWDT": -10.887100, "COLON": -10.193953, "COMF": -10.887100, "COMMA": -10.193953, "CONDITIONAL": -10.193953, "CONST": -10.887100, "CONTINUE": -10.887100, "CPU": -10.193953, "CPrivKey": -9.788488, "CPubKey": -8.402194, "CREATE_CLASS": -10.887100, "CScriptID": -9.788488, "CSecret": -9.500806, "CYTHON_CCOMPLEX": -8.402194, "CYTHON_INLINE": -6.667593, "CYTHON_REFNANNY": -9.788488, "CYTHON_UNUSED": -8.941190, "CYTHON_WITHOUT_ASSERTIONS": -10.887100, "CallCompletedCallback": -9.500806, "CallDepthIsZero": -10.887100, "CallInst_O": -8.489205, "CallOnce": -10.887100, "Ceil": -10.887100, "CeilPowerOfTwo": -10.887100, "Char": -7.709047, "CharacterStream": -9.788488, "CharacterStream*": -9.788488, "CheckZero": -10.887100, "ClasspathVMSystem/Properties.cpp": -10.887100, "Clear": -9.277663, "ClosestPowerOfTwo": -10.887100, "CodedInputStream*": -10.193953, "CodedOutputStream*": -10.193953, "CommentPlacement": -10.193953, "CompositeType_O": -8.489205, "ComputeUnknownFieldsSize": -10.887100, "ConstantArray_O": -8.489205, "ConstantDataArray_O": -8.489205, "ConstantDataSequential_O": -8.489205, "ConstantExpr_O": -8.489205, "ConstantFP_O": -8.489205, "ConstantInt_O": -8.489205, "ConstantPointerNull_O": -8.489205, "Constant_O": -8.489205, "Context*": -9.500806, "ConvertToUtf": -10.193953, "CopyFrom": -9.277663, "Cos": -10.887100, "CsvStreamer": -9.277663, "Cube": -10.887100, "Current": -9.277663, "CurrentPerIsolateThreadData": -9.500806, "DEBUG": -8.941190, "DEC": -10.887100, "DECF": -10.887100, "DECFSZ": -10.887100, "DECR": -10.887100, "DECREF": -10.887100, "DEFAULT": -10.887100, "DEFAULT_DELIMITER": -10.887100, "DEG_TO_RAD": -10.887100, "DEREF": -10.887100, "DISALLOW_COPY_AND_ASSIGN": -10.193953, "DIV": -10.887100, "DIVEQ": -10.887100, "DL_EXPORT": -10.193953, "DL_IMPORT": -10.193953, "DO": -10.887100, "DOUBLE": -10.887100, "DO_": -9.500806, "DataLayout_O": -8.489205, "DebugLoc_O": -8.489205, "DecodeInstruction": -10.887100, "Decoder": -9.788488, "DecrementCallDepth": -10.887100, "Decrypt": -10.887100, "DecryptSecret": -10.887100, "Deg": -10.193953, "Dereference": -10.887100, "Descriptor*": -9.788488, "DescriptorPool": -9.788488, "Deserializer": -10.887100, "Deserializer*": -10.193953, "Digits": -10.887100, "Don": -10.887100, "DropLiteral": -10.887100, "ECDSA_SIG": -9.788488, "ECDSA_SIG_free": -10.193953, "ECDSA_SIG_new": -10.887100, "ECDSA_SIG_recover_key_GFp": -9.788488, "ECDSA_do_sign": -10.887100, "ECDSA_verify": -10.887100, "EC_GROUP": -10.193953, "EC_GROUP_get_curve_GFp": -10.887100, "EC_GROUP_get_degree": -10.887100, "EC_GROUP_get_order": -10.887100, "EC_KEY": -10.193953, "EC_KEY*": -10.887100, "EC_KEY_copy": -10.887100, "EC_KEY_dup": -10.887100, "EC_KEY_free": -10.887100, "EC_KEY_get": -10.193953, "EC_KEY_new_by_curve_name": -10.193953, "EC_KEY_regenerate_key": -10.887100, "EC_KEY_set_conv_form": -10.887100, "EC_KEY_set_private_key": -10.887100, "EC_KEY_set_public_key": -10.193953, "EC_POINT": -9.500806, "EC_POINT_free": -9.500806, "EC_POINT_is_at_infinity": -10.887100, "EC_POINT_mul": -9.788488, "EC_POINT_new": -9.500806, "EC_POINT_set_compressed_coordinates_GFp": -10.887100, "EINVAL": -9.500806, "ELLIPSIS": -10.887100, "ELSE": -10.887100, "END_NATIVE_EXCEPTION": -10.193953, "ENOSYS": -10.887100, "ENTITY_H": -10.193953, "ENUM": -10.887100, "ENV_H": -10.193953, "EOF": -10.887100, "EOI": -10.887100, "EOS": -10.887100, "EPOLLERR": -9.095341, "EPOLLET": -9.500806, "EPOLLHUP": -9.788488, "EPOLLIN": -9.095341, "EPOLLOUT": -9.500806, "EPOLLPRI": -9.788488, "EPOLL_CLOEXEC": -10.193953, "EPOLL_CTL_ADD": -9.277663, "EPOLL_CTL_DEL": -10.193953, "EPOLL_CTL_MOD": -9.788488, "EQ": -10.887100, "EQL": -10.887100, "EQ_STRICT": -10.887100, "ERROR_ENCODER_INPUT_TYPE": -10.887100, "ERROR_ENCODER_LOOP": -10.193953, "ERROR_ENCODER_NO_INPUT": -9.788488, "ERROR_ENCODER_NO_OUTPUT": -10.887100, "ERROR_ENCODER_PARSE": -10.887100, "ERROR_SUCCESS": -7.453113, "EVP_BytesToKey": -10.887100, "EVP_CIPHER_CTX": -10.193953, "EVP_CIPHER_CTX_cleanup": -10.193953, "EVP_CIPHER_CTX_init": -10.193953, "EVP_DecryptFinal_ex": -10.887100, "EVP_DecryptInit_ex": -10.887100, "EVP_DecryptUpdate": -10.887100, "EVP_EncryptFinal_ex": -10.887100, "EVP_EncryptInit_ex": -10.887100, "EVP_EncryptUpdate": -10.887100, "EVP_aes_": -9.788488, "EVP_sha": -10.887100, "EXPRESSION": -10.193953, "EXTENDED_MODE": -10.193953, "EXTERN": -10.887100, "Elapsed": -10.887100, "ElementsAccessor": -10.193953, "Encoding": -9.788488, "Encrypt": -10.887100, "EncryptSecret": -10.887100, "EnforceFlagImplications": -10.887100, "EngineBuilder_O": -8.489205, "EnterDefaultIsolate": -10.887100, "Entity": -8.941190, "Entity*": -10.887100, "EntropySource": -9.788488, "Env": -8.322151, "EqualityKind": -10.887100, "ErrorInfo": -10.193953, "Errors": -10.887100, "ExceptionHandler": -10.887100, "ExecutionEngine_O": -8.489205, "Exp": -10.887100, "ExpandBuffer": -10.193953, "ExpectAtEnd": -10.887100, "ExternalReference": -10.887100, "FCON": -10.887100, "FD_CLOEXEC": -10.193953, "FILE": -10.193953, "FLAG_crankshaft": -10.887100, "FLAG_force_marking_deque_overflows": -10.887100, "FLAG_gc_global": -10.887100, "FLAG_max_new_space_size": -10.887100, "FLAG_random_seed": -10.193953, "FLAG_stress_compaction": -10.887100, "FLAG_use_idle_notification": -10.887100, "FLOAT": -10.887100, "FOR": -10.887100, "FUNCTION": -10.887100, "F_SETFD": -10.193953, "Fabs": -10.887100, "FastWriter": -9.277663, "FatalProcessOutOfMemory": -10.887100, "Features": -8.584515, "FenceInst_O": -8.489205, "Field": -10.193953, "FileDescriptor*": -10.887100, "FillHeapNumberWithRandom": -10.193953, "FindFileByName": -10.887100, "FinishContext": -10.887100, "FireCallCompletedCallback": -10.193953, "FlagList": -10.887100, "Floor": -10.887100, "FloorPowerOfTwo": -10.887100, "Free": -10.887100, "FtoiFast": -10.887100, "FunctionPassManager_O": -8.489205, "FunctionPass_O": -8.489205, "FunctionType_O": -8.489205, "Function_O": -8.941190, "GDSDBREADER_H": -10.193953, "GEQ": -10.887100, "GFX_BOTTOM": -10.193953, "GFX_LEFT": -10.193953, "GFX_TOP": -10.887100, "GIVEREF": -10.887100, "GOOGLE": -10.887100, "GOOGLE_CHECK": -10.887100, "GOOGLE_CHECK_NE": -10.193953, "GOOGLE_PROTOBUF_DECLARE_ONCE": -10.887100, "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": -9.788488, "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": -10.887100, "GOOGLE_PROTOBUF_VERIFY_VERSION": -10.887100, "GOOGLE_PROTOBUF_VERSION": -10.887100, "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": -10.193953, "GOOGLE_SAFE_CONCURRENT_WRITES_END": -10.193953, "GOTO": -10.193953, "GOTREF": -10.887100, "GPU_SCISSORMODE": -10.887100, "GPU_SCISSOR_DISABLE": -10.887100, "GPU_SCISSOR_NORMAL": -10.887100, "GT": -10.887100, "GTE": -10.887100, "GeneratedMessageReflection": -10.887100, "GeneratedMessageReflection*": -10.887100, "GetBank": -10.887100, "GetCachedSize": -10.887100, "GetDataStartAddress": -10.887100, "GetHash": -10.193953, "GetID": -10.193953, "GetMemoryContents": -10.887100, "GetMetadata": -10.193953, "GetPCHFinalBits": -10.887100, "GetPrivKey": -10.887100, "GetPubKey": -9.277663, "GetSecret": -10.193953, "GetTagFieldNumber": -10.887100, "GetTagWireType": -10.193953, "GetTimeMillis": -10.887100, "GlobalSetUp": -10.887100, "GlobalValue_O": -8.489205, "GlobalVariable_O": -9.788488, "GoogleOnceInit": -10.887100, "Gui": -10.887100, "HALF_PI": -10.193953, "HEADER_INCLUDES": -10.193953, "HEAP": -10.887100, "HandleScopeImplementer*": -10.887100, "HasAnyLineTerminatorBeforeNext": -10.887100, "Hash": -9.788488, "Hash160": -10.887100, "HeapNumber": -10.887100, "HexValue": -10.193953, "HigherPowerOfTwo": -9.500806, "ICON": -10.887100, "ID": -10.887100, "IF": -10.887100, "ILLEGAL": -6.099609, "IMPLEMENT_SERIALIZE": -10.193953, "INC": -10.887100, "INCF": -10.887100, "INCFSZ": -10.887100, "INCR": -10.887100, "INCREF": -10.887100, "INLINE": -10.193953, "INT": -10.887100, "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": -10.887100, "INT_MAX": -10.887100, "INT_MIN": -10.887100, "INV_LN_": -10.193953, "IORLW": -10.887100, "IORWF": -10.887100, "IRBuilderBase_O": -8.489205, "IRBuilder_O": -8.489205, "IdleNotification": -9.788488, "Illegal": -10.887100, "ImmutablePass_O": -8.489205, "IncrementCallDepth": -10.887100, "IndirectBrInst_O": -9.788488, "Init": -9.788488, "InitAsDefaultInstance": -9.788488, "Initialize": -9.788488, "InitializeOncePerProcess": -9.500806, "InitializeOncePerProcessImpl": -9.788488, "InputBuffer": -10.887100, "InsertPoint_O": -8.489205, "InspectorBackendStub": -10.887100, "Instruction": -10.193953, "Instruction_O": -8.489205, "Int": -9.788488, "IntegerType_O": -8.489205, "InternalAddGeneratedFile": -10.887100, "InternalRegisterGeneratedMessage": -10.887100, "InvokeInst_O": -9.788488, "IsByteOrderMark": -10.193953, "IsCompressed": -9.788488, "IsDead": -10.193953, "IsDecimalDigit": -10.193953, "IsDefaultIsolate": -10.887100, "IsGlobalContext": -10.887100, "IsHexDigit": -10.887100, "IsIdentifier": -10.887100, "IsIdentifierPart": -10.193953, "IsIdentifierStart": -10.193953, "IsInitialized": -9.788488, "IsLineTerminator": -9.500806, "IsNull": -10.887100, "IsPowerOfTwo": -9.500806, "IsRunning": -10.887100, "IsValid": -9.500806, "IsWhiteSpace": -10.193953, "Isolate": -8.689876, "Isolate*": -9.095341, "JNICALL": -10.887100, "JNIEXPORT": -10.887100, "JNIEnv": -10.887100, "JavaObject*": -10.193953, "Java_gnu_classpath_VMSystemProperties_postInit__Ljava_util_Properties_": -10.887100, "Java_gnu_classpath_VMSystemProperties_preInit": -10.887100, "Json": -9.500806, "LAZY_MUTEX_INITIALIZER": -10.887100, "LBRACE": -10.193953, "LBRACK": -10.193953, "LEQ": -10.887100, "LIBCANIH": -10.193953, "LLVMContext_O": -8.489205, "LOG": -5.751302, "LONG": -10.887100, "LONG_LONG": -10.887100, "LOOKUP_SYMBOL": -6.697446, "LOperand": -10.193953, "LPAREN": -10.193953, "LSHIFT": -10.887100, "LSHIFTEQ": -10.887100, "LT": -9.788488, "LTE": -10.887100, "LandingPadInst_O": -8.489205, "LazyMutex": -10.887100, "List": -9.788488, "LiteralBuffer": -9.095341, "LiteralBuffer*": -10.193953, "LiteralScope": -10.887100, "LiteralScope*": -10.887100, "LoadInst_O": -9.788488, "Location": -7.796058, "Log": -9.788488, "LowerPowerOfTwo": -10.193953, "MASK_SIGNED": -10.193953, "MB": -10.887100, "MDNode_O": -8.489205, "MDString_O": -8.489205, "METH_COEXIST": -10.887100, "METH_NOARGS": -10.887100, "METRIC_RECORD": -10.887100, "MOD": -10.887100, "MODEQ": -10.887100, "MOVF": -10.887100, "MOVLW": -10.887100, "MOVWF": -10.887100, "MS_WINDOWS": -10.193953, "MUL": -10.887100, "MULEQ": -10.887100, "MakeNewKey": -10.887100, "Math": -7.453113, "Max": -10.887100, "Members": -9.095341, "Memory": -9.500806, "MemoryLocation": -10.887100, "Merge": -10.887100, "MergeFrom": -8.689876, "MergePartialFromCodedStream": -10.193953, "Message": -8.941190, "MessageFactory": -10.193953, "MetaClass_sp": -10.887100, "Metadata": -9.788488, "Metric*": -9.500806, "Metrics": -10.887100, "Metrics*": -10.887100, "Min": -10.887100, "ModulePass_O": -8.489205, "Module_O": -8.489205, "Ms": -10.193953, "NATIVE_JNI": -10.887100, "NDEBUG": -9.500806, "NE": -10.887100, "NEQ": -10.887100, "NE_STRICT": -10.887100, "NID_secp": -10.193953, "NINJA_METRICS_H_": -10.193953, "NOP": -10.887100, "NOT": -10.887100, "NPY_BYTE": -10.193953, "NPY_CDOUBLE": -10.887100, "NPY_CFLOAT": -10.887100, "NPY_CLONGDOUBLE": -10.887100, "NPY_C_CONTIGUOUS": -10.887100, "NPY_DOUBLE": -9.788488, "NPY_FLOAT": -10.887100, "NPY_F_CONTIGUOUS": -10.887100, "NPY_INT": -10.193953, "NPY_LONG": -10.887100, "NPY_LONGDOUBLE": -10.887100, "NPY_LONGLONG": -10.887100, "NPY_OBJECT": -10.887100, "NPY_SHORT": -10.193953, "NPY_UBYTE": -10.193953, "NPY_UINT": -10.193953, "NPY_ULONG": -10.887100, "NPY_ULONGLONG": -10.887100, "NPY_USHORT": -10.193953, "NULL": -6.004299, "NUM_TOKENS": -10.887100, "New": -9.500806, "NewCapacity": -9.788488, "NewMetric": -10.193953, "Next": -10.887100, "NilValue": -10.887100, "Notice": -10.887100, "Now": -9.788488, "O": -9.277663, "OG_ASM_GNU": -10.887100, "OG_ASM_MSVC": -10.887100, "OG_ASSERT": -9.788488, "OG_INLINE": -7.453113, "OPENSSL_cleanse": -10.193953, "OR": -10.887100, "OREQ": -10.887100, "OROR": -10.887100, "OS": -9.788488, "Object*": -9.500806, "Ogre": -8.941190, "OnError": -9.095341, "OnShutdown": -10.887100, "PARSE": -10.887100, "PERIOD": -10.887100, "PHANTOMJS_VERSION_STRING": -10.887100, "PHINode_O": -8.489205, "PI": -10.887100, "PIC": -9.500806, "POINTER": -10.887100, "POINT_CONVERSION_COMPRESSED": -10.887100, "PRId": -10.887100, "PROTOBUF_protocol_": -10.193953, "PTHREAD_MUTEX_ERRORCHECK": -10.887100, "PTHREAD_PROCESS_PRIVATE": -10.887100, "PYREX_WITHOUT_ASSERTIONS": -10.887100, "PY_FORMAT_SIZE_T": -10.887100, "PY_LONG_LONG": -9.277663, "PY_MAJOR_VERSION": -8.584515, "PY_SSIZE_T_CLEAN": -10.887100, "PY_SSIZE_T_MAX": -10.887100, "PY_SSIZE_T_MIN": -10.887100, "PY_VERSION_HEX": -8.689876, "Parse": -10.887100, "ParseError": -9.500806, "ParseErrorListener": -10.193953, "ParseErrorListener*": -10.887100, "ParseResolvableExpression": -10.887100, "ParseVersion": -10.887100, "Parser": -8.941190, "ParsingFlags": -10.887100, "PassManagerBase_O": -8.489205, "Pass_O": -8.489205, "Pers": -10.887100, "Person": -6.728217, "Person*": -8.807659, "Person_descriptor_": -9.095341, "Person_offsets_": -10.193953, "Person_reflection_": -9.500806, "Phantom": -10.887100, "Player": -10.887100, "Please": -9.788488, "PointerType_O": -8.489205, "PostSetUp": -10.887100, "Pow": -10.887100, "Predicate": -9.500806, "ProcessInstruction": -10.887100, "Protocol": -10.193953, "PushBack": -8.489205, "PyArrayObject": -7.942661, "PyArray_CHKFLAGS": -10.193953, "PyArray_DATA": -10.887100, "PyArray_DIMS": -10.193953, "PyArray_Descr": -9.095341, "PyArray_HASFIELDS": -10.887100, "PyArray_ISWRITEABLE": -10.887100, "PyArray_ITEMSIZE": -10.887100, "PyArray_MultiIterNew": -9.277663, "PyArray_NDIM": -10.887100, "PyArray_STRIDES": -10.193953, "PyArray_SimpleNewFromData": -10.193953, "PyBUF_ANY_CONTIGUOUS": -10.887100, "PyBUF_C_CONTIGUOUS": -9.788488, "PyBUF_FORMAT": -10.887100, "PyBUF_F_CONTIGUOUS": -9.788488, "PyBUF_INDIRECT": -10.887100, "PyBUF_ND": -10.193953, "PyBUF_SIMPLE": -10.887100, "PyBUF_STRIDES": -9.277663, "PyBUF_WRITABLE": -10.887100, "PyBaseString_Type": -10.887100, "PyBoolObject": -10.887100, "PyBytesObject": -10.887100, "PyBytes_AS_STRING": -10.887100, "PyBytes_AsString": -10.193953, "PyBytes_AsStringAndSize": -10.887100, "PyBytes_Check": -10.887100, "PyBytes_CheckExact": -10.887100, "PyBytes_Concat": -10.887100, "PyBytes_ConcatAndDel": -10.887100, "PyBytes_DecodeEscape": -10.887100, "PyBytes_FromFormat": -10.887100, "PyBytes_FromString": -10.193953, "PyBytes_FromStringAndSize": -10.887100, "PyBytes_GET_SIZE": -10.887100, "PyBytes_Repr": -10.887100, "PyBytes_Size": -10.887100, "PyBytes_Type": -10.887100, "PyCFunction": -10.887100, "PyDataType_HASFIELDS": -10.193953, "PyDict_CheckExact": -10.887100, "PyDict_Contains": -10.887100, "PyDict_Type": -10.887100, "PyErr_Format": -9.500806, "PyErr_Occurred": -10.193953, "PyErr_SetString": -9.500806, "PyErr_Warn": -10.887100, "PyErr_WarnEx": -10.887100, "PyExc_SystemError": -9.788488, "PyExc_TypeError": -9.277663, "PyFloat_AS_DOUBLE": -10.887100, "PyFloat_AsDouble": -10.887100, "PyFloat_CheckExact": -10.887100, "PyFrozenSet_Check": -10.887100, "PyFrozenSet_Type": -10.887100, "PyImport_ImportModule": -10.887100, "PyIndex_Check": -10.887100, "PyInstanceMethod_New": -10.887100, "PyIntObject": -10.887100, "PyInt_AS_LONG": -10.887100, "PyInt_AsLong": -10.193953, "PyInt_AsSsize_t": -10.193953, "PyInt_AsUnsignedLongLongMask": -10.887100, "PyInt_AsUnsignedLongMask": -10.887100, "PyInt_Check": -10.887100, "PyInt_CheckExact": -10.887100, "PyInt_FromLong": -8.322151, "PyInt_FromSize_t": -10.887100, "PyInt_FromSsize_t": -10.193953, "PyInt_FromString": -10.887100, "PyInt_FromUnicode": -10.887100, "PyInt_Type": -10.887100, "PyLongObject": -10.193953, "PyLong_AS_LONG": -10.887100, "PyLong_AsLong": -10.887100, "PyLong_AsSsize_t": -10.887100, "PyLong_AsUnsignedLongLongMask": -10.887100, "PyLong_AsUnsignedLongMask": -10.887100, "PyLong_AsVoidPtr": -10.887100, "PyLong_Check": -10.887100, "PyLong_CheckExact": -10.887100, "PyLong_FromLong": -10.887100, "PyLong_FromSize_t": -10.887100, "PyLong_FromSsize_t": -10.887100, "PyLong_FromString": -10.887100, "PyLong_FromUnicode": -10.887100, "PyLong_Type": -10.887100, "PyMethodDef": -10.887100, "PyMethod_New": -10.193953, "PyNumber_Check": -10.887100, "PyNumber_Divide": -10.887100, "PyNumber_InPlaceDivide": -10.887100, "PyNumber_InPlaceTrueDivide": -10.887100, "PyNumber_Index": -10.887100, "PyNumber_Int": -10.887100, "PyNumber_Remainder": -10.887100, "PyNumber_Subtract": -10.193953, "PyNumber_TrueDivide": -10.887100, "PyObject": -5.488938, "PyObject*": -8.114512, "PyObject_Call": -8.489205, "PyObject_DelAttrString": -10.193953, "PyObject_GetAttr": -9.500806, "PyObject_GetAttrString": -9.788488, "PyObject_GetItem": -10.887100, "PyObject_HEAD_INIT": -10.887100, "PyObject_RichCompare": -8.807659, "PyObject_SetAttrString": -10.193953, "PyObject_TypeCheck": -9.788488, "PySequence_Contains": -10.887100, "PySequence_DelSlice": -10.193953, "PySequence_GetSlice": -10.193953, "PySequence_SetSlice": -10.193953, "PySet_Check": -10.887100, "PySet_CheckExact": -10.193953, "PySet_Type": -10.193953, "PyStringObject": -10.193953, "PyString_AS_STRING": -10.887100, "PyString_AsString": -10.887100, "PyString_AsStringAndSize": -10.887100, "PyString_Check": -10.193953, "PyString_CheckExact": -10.193953, "PyString_Concat": -10.887100, "PyString_ConcatAndDel": -10.887100, "PyString_DecodeEscape": -10.887100, "PyString_FromFormat": -10.887100, "PyString_FromString": -10.887100, "PyString_FromStringAndSize": -10.887100, "PyString_GET_SIZE": -10.887100, "PyString_Repr": -10.887100, "PyString_Size": -10.887100, "PyString_Type": -10.193953, "PyTuple_CheckExact": -10.887100, "PyTuple_GET_ITEM": -9.788488, "PyTuple_GET_SIZE": -10.193953, "PyTuple_New": -9.500806, "PyTuple_SET_ITEM": -9.500806, "PyTypeObject": -10.193953, "PyType_Modified": -10.887100, "PyUnicodeObject": -10.887100, "PyUnicode_Check": -10.887100, "PyUnicode_CheckExact": -10.887100, "PyUnicode_Type": -10.193953, "PyVarObject*": -10.887100, "PyVarObject_HEAD_INIT": -10.887100, "Py_DECREF": -10.887100, "Py_EQ": -9.095341, "Py_False": -10.193953, "Py_INCREF": -9.788488, "Py_LT": -10.193953, "Py_None": -7.249514, "Py_PYTHON_H": -10.887100, "Py_REFCNT": -10.887100, "Py_SIZE": -10.887100, "Py_TPFLAGS_CHECKTYPES": -10.887100, "Py_TPFLAGS_HAVE_INDEX": -10.887100, "Py_TPFLAGS_HAVE_NEWBUFFER": -10.887100, "Py_TYPE": -9.500806, "Py_True": -10.193953, "Py_XDECREF": -9.788488, "Py_buffer": -9.277663, "Py_intptr_t": -10.887100, "Py_ssize_t": -8.053887, "Python": -10.887100, "Python.": -10.887100, "Q": -9.277663, "QApplication": -10.887100, "QCoreApplication": -10.887100, "QDataStream": -10.887100, "QIcon": -10.887100, "QObject": -10.193953, "QPBO": -9.095341, "QString": -7.996729, "QT_VERSION": -10.887100, "QT_VERSION_CHECK": -10.887100, "QTemporaryFile": -10.887100, "QTemporaryFile*": -10.193953, "QVariant": -10.887100, "QVariantMap": -9.788488, "QWebFrame": -9.500806, "Q_INIT_RESOURCE": -10.193953, "Q_OBJECT": -10.887100, "Q_OS_LINUX": -10.193953, "QtMsgType": -10.887100, "R": -9.095341, "RAD_TO_DEG": -10.887100, "RBRACE": -10.193953, "RBRACK": -10.193953, "READWRITE": -10.193953, "REGISTER": -10.887100, "RET": -10.887100, "RETFIE": -10.887100, "RETLW": -10.887100, "RETURN": -10.193953, "RGBA": -10.887100, "RLF": -10.887100, "ROM": -10.193953, "RPAREN": -10.193953, "RRF": -10.887100, "RSHIFT": -10.887100, "RSHIFTEQ": -10.887100, "Rad": -10.193953, "Random": -9.788488, "RandomPrivate": -10.193953, "Raw": -10.887100, "ReadBlock": -10.193953, "ReadString": -10.887100, "ReadTag": -10.887100, "Reader": -6.975077, "ReflectionOps": -10.887100, "Register": -10.193953, "RegisteredExtension": -10.887100, "Remember": -10.887100, "Remove": -10.887100, "RemoveCallCompletedCallback": -10.193953, "Report": -10.887100, "Reset": -9.277663, "Restart": -10.887100, "ResumeInst_O": -9.788488, "ReturnAddressLocationResolver": -10.193953, "ReturnInst_O": -9.788488, "Round": -10.887100, "RuntimeProfiler": -10.887100, "SAR": -10.887100, "SCON": -10.887100, "SEMICOLON": -10.193953, "SERIALIZE": -10.193953, "SET_SYMBOL": -10.193953, "SHL": -10.887100, "SHORT": -10.887100, "SHR": -10.887100, "SIGNED": -10.887100, "SIZEOF": -10.887100, "SLEEP": -10.887100, "SRS_AUTO_INGEST": -10.887100, "SRS_AUTO_INGESTER_SLEEP_US": -10.193953, "SRS_CONSTS_LOG_INGESTER": -10.887100, "SRS_CONSTS_NULL_FILE": -10.887100, "STATIC": -10.887100, "STATIC_ASSERT": -9.277663, "STATIC_BUILD": -10.887100, "STRICT_MODE": -10.193953, "STRUCT": -10.887100, "SUB": -10.887100, "SUBEQ": -10.887100, "SUBLW": -10.887100, "SUBWF": -10.887100, "SWAPF": -10.887100, "SWIG": -10.887100, "SWITCH": -10.887100, "SamplerRegistry": -10.887100, "Scan": -9.277663, "ScanDecimalDigits": -10.887100, "ScanEscape": -10.887100, "ScanHexNumber": -9.500806, "ScanHtmlComment": -9.788488, "ScanIdentifierOrKeyword": -10.193953, "ScanIdentifierSuffix": -10.887100, "ScanIdentifierUnicodeEscape": -10.887100, "ScanLiteralUnicodeEscape": -9.788488, "ScanNumber": -9.788488, "ScanOctalEscape": -10.193953, "ScanRegExpFlags": -10.193953, "ScanRegExpPattern": -10.887100, "ScanString": -10.193953, "Scanner": -7.942661, "SceneManager*": -10.887100, "SceneNode*": -10.887100, "ScopedLock": -10.887100, "ScopedMetric": -9.500806, "Sec": -10.193953, "SecureString": -10.887100, "SeekForward": -10.193953, "Select": -7.421365, "SequentialType_O": -8.489205, "SerializeUnknownFields": -10.887100, "SerializeUnknownFieldsToArray": -10.887100, "SerializeWithCachedSizes": -10.193953, "SerializeWithCachedSizesToArray": -10.193953, "Serializer": -10.887100, "SetCachedSize": -10.193953, "SetCarry": -10.887100, "SetCompactSignature": -10.193953, "SetCompressedPubKey": -9.788488, "SetEntropySource": -10.193953, "SetFatalError": -10.193953, "SetKey": -10.887100, "SetKeyFromPassphrase": -10.887100, "SetMemoryContents": -10.887100, "SetPrivKey": -10.887100, "SetPubKey": -10.887100, "SetReturnAddressLocationResolver": -9.788488, "SetSecret": -10.193953, "SetUp": -9.500806, "SetUpCaches": -10.887100, "SetUpJSCallerSavedCodeData": -10.887100, "SetupContext": -10.887100, "SharedCtor": -9.500806, "SharedDtor": -9.788488, "Should": -10.887100, "Sign": -10.887100, "SignCompact": -10.193953, "Sin": -10.193953, "SinCos": -10.887100, "Size": -10.193953, "SkipField": -10.887100, "SkipMultiLineComment": -9.788488, "SkipSingleLineComment": -8.941190, "SkipWhiteSpace": -9.500806, "SlowSeekForward": -10.193953, "Something": -10.887100, "Sqrt": -10.887100, "Square": -10.887100, "SrsConfDirective*": -8.402194, "SrsFFMPEG": -10.193953, "SrsFFMPEG*": -9.500806, "SrsIngester": -7.891368, "SrsIngesterFFMPEG": -8.179050, "SrsIngesterFFMPEG*": -8.807659, "SrsPithyPrint": -10.887100, "SrsReusableThread": -10.887100, "Stack": -10.887100, "StackFrame": -10.887100, "StartLiteral": -10.887100, "StaticDescriptorInitializer_protocol_": -10.193953, "StaticResource": -10.193953, "Step": -10.887100, "Stopwatch": -10.193953, "StoreInst_O": -8.489205, "StoreValue": -10.887100, "String": -9.788488, "StringSize": -10.887100, "StructType_O": -8.489205, "StyledStreamWriter": -8.114512, "StyledWriter": -8.179050, "SupportsCrankshaft": -10.887100, "Swap": -10.193953, "SwitchInst_O": -9.788488, "T": -10.193953, "TFD_CLOEXEC": -10.887100, "TFD_TIMER_ABSTIME": -10.887100, "TOC": -10.887100, "TOKEN_CLOSE_BRACE": -10.887100, "TOKEN_EOF": -10.887100, "TOKEN_ITEM_SEPARATOR": -10.887100, "TOKEN_OPEN_BRACE": -10.887100, "TOKEN_OPERATOR_ASSIGN": -10.887100, "TOKEN_OPERATOR_EQUAL": -10.887100, "TOKEN_OPERATOR_GREATER": -10.887100, "TOKEN_OPERATOR_GREATER_EQUAL": -10.887100, "TOKEN_OPERATOR_LESS": -10.887100, "TOKEN_OPERATOR_LESS_EQUAL": -10.887100, "TOKEN_OPERATOR_NOT_EQUAL": -10.887100, "TOKEN_STRING": -10.193953, "TYPEDEF": -10.887100, "Tan": -10.887100, "TearDown": -9.277663, "TearDownCaches": -10.887100, "TerminateLiteral": -10.887100, "TerminatorInst_O": -8.489205, "This": -9.788488, "ThreadId": -10.887100, "ThreadedQueue": -9.788488, "Token": -5.385842, "TokenDesc": -9.788488, "TokenType": -9.788488, "Type_O": -8.489205, "UInt": -8.941190, "UNION": -10.887100, "UNSIGNED": -10.887100, "UTILS_H": -10.193953, "UnaryInstruction_O": -8.489205, "UndefValue_O": -8.489205, "UnicodeCache": -9.788488, "UnicodeCache*": -10.193953, "UnknownFieldSet": -10.193953, "UnknownFieldSet*": -10.887100, "UnreachableInst_O": -9.788488, "UnregisterAll": -10.887100, "UseCrankshaft": -10.887100, "User_O": -8.489205, "Utf": -8.689876, "Utils": -9.500806, "V": -7.629004, "VAArgInst_O": -9.788488, "VOID": -10.887100, "VOLATILE": -10.887100, "Value": -6.652994, "Value_O": -8.489205, "Vector": -8.322151, "VectorType_O": -8.489205, "Verify": -10.193953, "VerifyCompact": -10.193953, "VerifyUTF": -9.788488, "WALLET_CRYPTO_KEY_SIZE": -8.941190, "WALLET_CRYPTO_SALT_SIZE": -10.887100, "WHILE": -10.887100, "WHITESPACE": -8.941190, "WIN": -9.788488, "WIRETYPE_END_GROUP": -10.887100, "WIRETYPE_LENGTH_DELIMITED": -10.887100, "We": -10.887100, "WebKit": -10.887100, "White": -10.887100, "Whitedrop": -10.887100, "WireFormat": -8.584515, "WireFormatLite": -8.689876, "WriteString": -10.887100, "WriteStringToArray": -10.887100, "Writer": -10.193953, "X": -9.500806, "XOREQ": -10.887100, "XORLW": -10.887100, "XORWF": -10.887100, "YYCTYPE": -7.996729, "YYCURSOR": -9.500806, "YYFILL": -9.500806, "YYLIMIT": -9.500806, "YYMARKER": -9.500806, "[": -5.176673, "\\": -6.728217, "]": -5.176673, "^": -10.887100, "_": -6.728217, "_Complex": -10.193953, "_Complex_I": -9.788488, "_DECLARE_ONCE": -10.887100, "_H_": -10.193953, "_MSC_VER": -8.807659, "_NextToken": -10.193953, "_Parse": -10.887100, "_ParseResolvableExpression": -10.887100, "_ParseVersionValue": -10.887100, "_SCANNER_H_": -10.193953, "_USE_MATH_DEFINES": -10.887100, "_V": -10.193953, "_WIN": -10.887100, "__FILE__": -10.193953, "__GNUC_MINOR__": -10.887100, "__GNUC__": -9.277663, "__LINE__": -6.456284, "__OG_MATH_INL__": -10.193953, "__P": -10.887100, "__PYX_EXTERN_C": -10.193953, "__PYX_HAVE_API__wrapper_inner": -10.887100, "__Pyx_AddTraceback": -8.941190, "__Pyx_BUILTIN_MODULE_NAME": -10.193953, "__Pyx_CIMAG": -9.500806, "__Pyx_CREAL": -9.500806, "__Pyx_DECREF": -6.712713, "__Pyx_DOCSTR": -9.788488, "__Pyx_DelAttrString": -10.193953, "__Pyx_ErrFetch": -10.887100, "__Pyx_ErrRestore": -10.887100, "__Pyx_ExportFunction": -10.887100, "__Pyx_GIVEREF": -8.584515, "__Pyx_GOTREF": -6.792756, "__Pyx_GetAttrString": -10.193953, "__Pyx_GetName": -9.500806, "__Pyx_INCREF": -7.303581, "__Pyx_MODULE_NAME": -10.887100, "__Pyx_NAMESTR": -9.788488, "__Pyx_Print": -10.887100, "__Pyx_PrintOne": -9.500806, "__Pyx_PyBool_FromLong": -10.887100, "__Pyx_PyBytes_AsUString": -10.887100, "__Pyx_PyBytes_FromUString": -10.887100, "__Pyx_PyIndex_AsSsize_t": -10.887100, "__Pyx_PyInt_AsChar": -10.887100, "__Pyx_PyInt_AsInt": -10.887100, "__Pyx_PyInt_AsLong": -10.887100, "__Pyx_PyInt_AsLongDouble": -10.887100, "__Pyx_PyInt_AsLongLong": -10.887100, "__Pyx_PyInt_AsShort": -10.887100, "__Pyx_PyInt_AsSignedChar": -10.887100, "__Pyx_PyInt_AsSignedInt": -10.887100, "__Pyx_PyInt_AsSignedLong": -10.887100, "__Pyx_PyInt_AsSignedLongLong": -10.887100, "__Pyx_PyInt_AsSignedShort": -10.887100, "__Pyx_PyInt_AsSize_t": -10.887100, "__Pyx_PyInt_AsUnsignedChar": -10.887100, "__Pyx_PyInt_AsUnsignedInt": -10.887100, "__Pyx_PyInt_AsUnsignedLong": -10.887100, "__Pyx_PyInt_AsUnsignedLongLong": -10.887100, "__Pyx_PyInt_AsUnsignedShort": -10.887100, "__Pyx_PyInt_FromSize_t": -10.887100, "__Pyx_PyNumber_Divide": -10.193953, "__Pyx_PyNumber_InPlaceDivide": -10.193953, "__Pyx_PyNumber_Int": -10.887100, "__Pyx_PyObject_IsTrue": -8.807659, "__Pyx_PySequence_DelSlice": -10.193953, "__Pyx_PySequence_GetSlice": -10.193953, "__Pyx_PySequence_SetSlice": -10.193953, "__Pyx_Raise": -8.807659, "__Pyx_RaiseNeedMoreValuesError": -10.887100, "__Pyx_RaiseNoneNotIterableError": -10.887100, "__Pyx_RaiseTooManyValuesError": -10.887100, "__Pyx_RefNanny": -9.095341, "__Pyx_RefNannyAPIStruct": -9.500806, "__Pyx_RefNannyFinishContext": -8.402194, "__Pyx_RefNannyImportAPI": -10.887100, "__Pyx_RefNannySetupContext": -8.322151, "__Pyx_SET_CIMAG": -10.193953, "__Pyx_SET_CREAL": -10.193953, "__Pyx_SetAttrString": -10.193953, "__Pyx_StringTabEntry": -10.887100, "__Pyx_TypeCheck": -10.887100, "__Pyx_TypeTest": -9.500806, "__Pyx_UnpackTupleError": -10.193953, "__Pyx_WriteUnraisable": -9.788488, "__Pyx_XDECREF": -7.629004, "__Pyx_XGIVEREF": -8.941190, "__Pyx_XGOTREF": -10.887100, "__Pyx_c_abs": -9.788488, "__Pyx_c_absf": -9.788488, "__Pyx_c_conj": -9.788488, "__Pyx_c_conjf": -9.788488, "__Pyx_c_diff": -10.193953, "__Pyx_c_difff": -10.193953, "__Pyx_c_eq": -10.193953, "__Pyx_c_eqf": -10.193953, "__Pyx_c_is_zero": -9.788488, "__Pyx_c_is_zerof": -9.788488, "__Pyx_c_neg": -10.193953, "__Pyx_c_negf": -10.193953, "__Pyx_c_pow": -9.788488, "__Pyx_c_powf": -9.788488, "__Pyx_c_prod": -10.193953, "__Pyx_c_prodf": -10.193953, "__Pyx_c_quot": -10.193953, "__Pyx_c_quotf": -10.193953, "__Pyx_c_sum": -10.193953, "__Pyx_c_sumf": -10.193953, "__QNXNTO__": -10.887100, "__STDC_SECURE_LIB__": -10.887100, "__STDC_VERSION__": -10.193953, "__THREADED_QUEUE_H__": -10.193953, "___set_static_ClassSymbol": -6.697446, "___set_static_newNil_callback": -6.844049, "___staticMetaClass": -6.844049, "__builtin_expect": -10.193953, "__cdecl": -10.193953, "__cplusplus": -8.584515, "__fastcall": -10.193953, "__imag__": -10.887100, "__inline": -10.887100, "__inline__": -10.887100, "__pyx_L": -5.805696, "__pyx_PyFloat_AsDouble": -9.788488, "__pyx_builtin_RuntimeError": -10.193953, "__pyx_builtin_ValueError": -9.277663, "__pyx_cfilenm": -10.887100, "__pyx_clineno": -6.505074, "__pyx_f": -6.517653, "__pyx_f_": -10.193953, "__pyx_filename": -6.517653, "__pyx_int_": -10.887100, "__pyx_k_": -8.689876, "__pyx_k__B": -10.193953, "__pyx_k__H": -10.193953, "__pyx_k__I": -10.193953, "__pyx_k__L": -10.193953, "__pyx_k__O": -10.193953, "__pyx_k__Q": -10.193953, "__pyx_k__RuntimeError": -10.887100, "__pyx_k__ValueError": -10.887100, "__pyx_k__Zd": -10.193953, "__pyx_k__Zf": -10.193953, "__pyx_k__Zg": -10.193953, "__pyx_k____main__": -10.887100, "__pyx_k____test__": -10.887100, "__pyx_k__b": -10.193953, "__pyx_k__base": -10.887100, "__pyx_k__buf": -10.887100, "__pyx_k__byteorder": -10.887100, "__pyx_k__d": -10.193953, "__pyx_k__descr": -10.887100, "__pyx_k__do_awesome_work": -10.887100, "__pyx_k__f": -10.193953, "__pyx_k__fields": -10.887100, "__pyx_k__format": -10.887100, "__pyx_k__g": -10.193953, "__pyx_k__h": -10.193953, "__pyx_k__i": -10.193953, "__pyx_k__itemsize": -10.887100, "__pyx_k__l": -10.193953, "__pyx_k__names": -10.887100, "__pyx_k__ndim": -10.887100, "__pyx_k__np": -10.887100, "__pyx_k__numpy": -10.887100, "__pyx_k__obj": -10.887100, "__pyx_k__ones": -10.887100, "__pyx_k__pure_py_test": -10.887100, "__pyx_k__q": -10.193953, "__pyx_k__range": -10.887100, "__pyx_k__readonly": -10.887100, "__pyx_k__shape": -10.887100, "__pyx_k__strides": -10.887100, "__pyx_k__suboffsets": -10.887100, "__pyx_k__type_num": -10.887100, "__pyx_k__work_module": -10.887100, "__pyx_k__wrapper_inner": -10.887100, "__pyx_k_tuple_": -8.941190, "__pyx_kp_s_": -9.788488, "__pyx_kp_u_": -10.887100, "__pyx_lineno": -6.505074, "__pyx_m": -9.500806, "__pyx_mdef_": -10.887100, "__pyx_module_is_main_wrapper_inner": -10.887100, "__pyx_n_s__do_awesome_work": -9.788488, "__pyx_n_s__np": -10.887100, "__pyx_n_s__ones": -10.887100, "__pyx_n_s__work_module": -9.788488, "__pyx_pf_": -9.277663, "__pyx_print": -10.887100, "__pyx_print_kwargs": -10.887100, "__pyx_ptype_": -9.788488, "__pyx_r": -7.223539, "__pyx_refnanny": -9.277663, "__pyx_self": -10.193953, "__pyx_t_": -4.491839, "__pyx_t_double_complex": -7.591264, "__pyx_t_double_complex_from_parts": -10.887100, "__pyx_t_float_complex": -7.591264, "__pyx_t_float_complex_from_parts": -10.887100, "__pyx_v_a": -9.277663, "__pyx_v_answer_ptr": -10.193953, "__pyx_v_b": -9.500806, "__pyx_v_c": -9.788488, "__pyx_v_child": -8.807659, "__pyx_v_childname": -9.500806, "__pyx_v_copy_shape": -9.277663, "__pyx_v_d": -10.193953, "__pyx_v_data": -8.941190, "__pyx_v_data_np": -8.584515, "__pyx_v_data_ptr": -10.193953, "__pyx_v_descr": -8.584515, "__pyx_v_dims": -9.500806, "__pyx_v_e": -10.887100, "__pyx_v_end": -10.193953, "__pyx_v_endian_detector": -9.095341, "__pyx_v_f": -7.453113, "__pyx_v_fields": -8.941190, "__pyx_v_flags": -9.500806, "__pyx_v_hasfields": -9.500806, "__pyx_v_i": -9.095341, "__pyx_v_info": -7.390593, "__pyx_v_little_endian": -8.807659, "__pyx_v_nd": -9.095341, "__pyx_v_ndim": -9.095341, "__pyx_v_new_offset": -9.277663, "__pyx_v_num_x": -9.500806, "__pyx_v_num_y": -10.193953, "__pyx_v_offset": -8.689876, "__pyx_v_self": -8.114512, "__pyx_v_sum": -9.095341, "__pyx_v_t": -7.519805, "__pyx_v_typenum": -9.095341, "__real__": -10.887100, "__releasebuffer__": -10.193953, "__setWeakThis": -6.861749, "__setup_stage": -6.844049, "__stdcall": -10.193953, "__sun__": -10.887100, "_asm": -10.887100, "_cached_size_": -8.941190, "_cbc": -9.788488, "_decoder": -10.887100, "_decoder_": -10.193953, "_error": -6.409764, "_expression": -10.193953, "_group": -10.193953, "_has_bits_": -8.248043, "_ingester": -10.193953, "_lisp": -6.150902, "_literal": -10.887100, "_nil": -6.861749, "_srs_config": -7.891368, "_srs_context": -10.887100, "_t": -6.898116, "_t*": -9.788488, "_t_value": -10.193953, "_unknown_fields_": -9.277663, "_unknown_fields_.Swap": -10.887100, "_version": -10.193953, "_vhost": -9.500806, "_with_sharedPtr_lisp_sid": -6.844049, "a": -6.652994, "a.vchPubKey": -9.788488, "about": -10.193953, "abs": -10.193953, "absolute": -10.887100, "access": -10.887100, "acodec": -10.887100, "acodec.empty": -10.887100, "acosf": -10.887100, "add": -10.887100, "addChildValues_": -8.807659, "addComment": -10.193953, "addError": -8.322151, "addErrorAndRecover": -9.277663, "add_field": -10.887100, "additional": -10.887100, "adopt_lock": -10.887100, "after": -10.193953, "age": -10.887100, "alive": -10.193953, "all": -9.788488, "allocate_descriptor_state": -9.788488, "allocated": -10.887100, "allocsize": -10.887100, "allow": -10.887100, "allowComments_": -10.887100, "allow_speculative": -10.193953, "already": -10.887100, "already_here": -9.788488, "an": -9.277663, "and": -9.277663, "any": -9.788488, "anything": -10.887100, "anywhere": -10.887100, "app": -9.277663, "app.exec": -10.887100, "app.rfind": -10.887100, "app.setApplicationName": -10.887100, "app.setApplicationVersion": -10.887100, "app.setOrganizationDomain": -10.887100, "app.setOrganizationName": -10.887100, "app.setWindowIcon": -10.887100, "app.substr": -10.887100, "append": -8.807659, "application.": -10.887100, "approve_license": -10.887100, "are": -10.887100, "arg": -8.114512, "argc": -10.193953, "argument": -10.193953, "argv": -10.193953, "arrayValue": -9.500806, "as": -10.193953, "asVariantMap": -10.193953, "ascii_literal": -10.887100, "asinf": -10.887100, "asio": -8.489205, "asm": -10.887100, "assert": -8.807659, "assign": -9.788488, "at": -9.277663, "atan": -10.887100, "atanf": -10.887100, "autorun": -10.193953, "avoid": -10.887100, "b": -6.844049, "b.fSet": -10.193953, "b.pkey": -10.193953, "b.vchPubKey": -9.788488, "back": -10.887100, "backing_store_": -8.941190, "backing_store_.Dispose": -9.788488, "backing_store_.length": -9.500806, "backing_store_.start": -9.277663, "badTokenType": -10.193953, "bad_alloc": -9.788488, "bad_descriptor": -10.887100, "bank": -10.193953, "base": -9.500806, "be": -9.500806, "because": -10.887100, "beg_pos": -10.887100, "begin": -8.248043, "beginDoc": -10.193953, "begin_": -9.788488, "being": -10.193953, "bin": -10.193953, "binary_million": -9.788488, "blank": -10.887100, "block": -9.277663, "bn": -9.788488, "bool": -5.710951, "booleanValue": -9.788488, "boost": -6.624421, "bot": -8.584515, "both": -10.887100, "bottomScreen": -9.788488, "break": -6.091310, "buf": -8.807659, "buffer": -7.519805, "buffer.c_str": -10.887100, "buffer.proto": -10.887100, "bufferSize": -9.788488, "buffer_cursor_": -9.277663, "buffer_end_": -9.788488, "buffered_chars": -10.193953, "buffers": -10.193953, "but": -10.193953, "by": -10.193953, "byte": -10.887100, "byteorder": -9.500806, "bytes.": -10.887100, "bytes_transferred": -10.193953, "c": -5.457755, "c0_": -8.807659, "c=": -10.193953, "cKeyCrypter": -10.193953, "cKeyCrypter.Decrypt": -10.887100, "cKeyCrypter.Encrypt": -10.887100, "cKeyCrypter.SetKey": -10.193953, "cabs": -10.887100, "cabsf": -10.887100, "cache": -10.193953, "cacheclean": -10.887100, "cachecnt": -10.887100, "cachemax": -10.193953, "call_completed_callbacks_": -8.114512, "callback": -8.941190, "can": -10.887100, "can_print": -10.887100, "cancel_ops": -10.887100, "canfile": -8.941190, "canfile*": -10.887100, "canfiles": -10.887100, "caninfo": -10.193953, "canister": -8.248043, "canister*": -10.887100, "canmem": -7.796058, "canmems": -10.887100, "cannot": -10.887100, "capacity": -9.788488, "case": -5.967120, "cast": -10.887100, "catch": -9.095341, "category": -10.193953, "cb": -6.150902, "cc": -9.500806, "ceilf": -10.887100, "cerr": -10.193953, "ch": -8.248043, "chIV": -8.322151, "chKey": -8.941190, "chNewIV": -10.193953, "chNewIV.size": -10.887100, "chNewKey": -10.193953, "chNewKey.size": -10.887100, "chSalt": -10.193953, "chSalt.size": -10.887100, "change": -10.887100, "char": -5.799504, "char*": -7.331752, "char**": -10.193953, "character": -10.887100, "chars_read": -9.500806, "check": -10.193953, "check_timers": -9.095341, "childValue": -7.796058, "childValue.isArray": -10.193953, "childValue.isObject": -10.193953, "childValue.size": -10.193953, "childValues_": -9.095341, "childValues_.clear": -10.193953, "childValues_.empty": -10.193953, "childValues_.push_back": -10.193953, "childValues_.reserve": -10.193953, "childValues_.size": -10.193953, "cid": -10.887100, "cin": -9.277663, "class": -7.331752, "classllvmo__APFloat_Oval": -8.807659, "classllvmo__APInt_Oval": -8.807659, "classllvmo__AllocaInst_Oval": -8.807659, "classllvmo__Argument_Oval": -8.807659, "classllvmo__ArrayType_Oval": -8.807659, "classllvmo__AtomicCmpXchgInst_Oval": -8.807659, "classllvmo__AtomicRMWInst_Oval": -8.807659, "classllvmo__Attribute_Oval": -8.807659, "classllvmo__BasicBlock_Oval": -8.807659, "classllvmo__BranchInst_Oval": -8.807659, "classllvmo__Builder_Oval": -8.807659, "classllvmo__CallInst_Oval": -8.807659, "classllvmo__CompositeType_Oval": -8.807659, "classllvmo__ConstantArray_Oval": -8.807659, "classllvmo__ConstantDataArray_Oval": -8.807659, "classllvmo__ConstantDataSequential_Oval": -8.807659, "classllvmo__ConstantExpr_Oval": -8.807659, "classllvmo__ConstantFP_Oval": -8.807659, "classllvmo__ConstantInt_Oval": -8.807659, "classllvmo__ConstantPointerNull_Oval": -8.807659, "classllvmo__Constant_Oval": -8.807659, "classllvmo__DataLayout_Oval": -8.807659, "classllvmo__DebugLoc_Oval": -8.807659, "classllvmo__EngineBuilder_Oval": -8.807659, "classllvmo__ExecutionEngine_Oval": -8.807659, "classllvmo__FenceInst_Oval": -8.807659, "classllvmo__FunctionPassManager_Oval": -8.807659, "classllvmo__FunctionPass_Oval": -8.807659, "classllvmo__FunctionType_Oval": -8.807659, "classllvmo__Function_Oval": -9.095341, "classllvmo__GlobalValue_Oval": -8.807659, "classllvmo__IRBuilderBase_Oval": -8.807659, "classllvmo__IRBuilder_Oval": -8.807659, "classllvmo__ImmutablePass_Oval": -8.807659, "classllvmo__InsertPoint_Oval": -8.807659, "classllvmo__Instruction_Oval": -8.807659, "classllvmo__IntegerType_Oval": -8.807659, "classllvmo__LLVMContext_Oval": -8.807659, "classllvmo__LandingPadInst_Oval": -8.807659, "classllvmo__MDNode_Oval": -8.807659, "classllvmo__MDString_Oval": -8.807659, "classllvmo__ModulePass_Oval": -8.807659, "classllvmo__Module_Oval": -8.807659, "classllvmo__PHINode_Oval": -8.807659, "classllvmo__PassManagerBase_Oval": -8.807659, "classllvmo__Pass_Oval": -8.807659, "classllvmo__PointerType_Oval": -8.807659, "classllvmo__SequentialType_Oval": -8.807659, "classllvmo__StoreInst_Oval": -8.807659, "classllvmo__StructType_Oval": -8.807659, "classllvmo__TerminatorInst_Oval": -8.807659, "classllvmo__Type_Oval": -8.807659, "classllvmo__UnaryInstruction_Oval": -8.807659, "classllvmo__UndefValue_Oval": -8.807659, "classllvmo__User_Oval": -8.807659, "classllvmo__Value_Oval": -8.807659, "classllvmo__VectorType_Oval": -8.807659, "clazz": -10.887100, "clean": -10.193953, "cleanupFromDebug": -10.887100, "clear": -10.193953, "clear_engines": -9.500806, "clear_has_name": -9.277663, "clear_name": -10.193953, "close": -9.788488, "closing": -10.193953, "cnt": -8.689876, "codePointToUTF": -10.193953, "code_unit": -9.095341, "code_unit_count": -8.941190, "coffee": -10.887100, "collectComments": -8.941190, "collectComments_": -9.095341, "colon": -9.788488, "colon.type_": -10.887100, "column": -8.584515, "comma": -9.500806, "comma.type_": -9.277663, "commentAfter": -8.941190, "commentAfterOnSameLine": -8.807659, "commentBefore": -8.807659, "commentBegin": -9.500806, "commentsBefore_": -9.095341, "commentsBefore_.empty": -9.788488, "common_lock": -10.887100, "commonly": -10.887100, "compatibility": -10.887100, "compile": -10.887100, "complete": -10.887100, "complex": -10.193953, "condAttrs": -9.277663, "conj": -9.788488, "conjf": -10.887100, "const": -5.414830, "const_cast": -9.788488, "const_iterator": -10.887100, "contain": -10.887100, "container": -10.193953, "container.": -10.887100, "containing": -10.887100, "contains": -10.887100, "containsControlCharacter": -10.887100, "containsNewLine": -9.788488, "contents": -10.193953, "context": -8.807659, "continue": -9.095341, "core": -6.142168, "cosf": -10.887100, "count": -9.277663, "countlen": -10.887100, "course": -10.887100, "cout": -9.277663, "cp": -8.179050, "cpow": -10.887100, "cpowf": -10.887100, "create": -6.844049, "create_ingester": -10.887100, "creation": -10.887100, "ctx": -7.276183, "cur": -10.193953, "current": -7.149431, "currentA": -9.277663, "currentB": -9.500806, "currentG": -9.500806, "currentR": -9.500806, "currentScreen": -9.788488, "currentValue": -8.179050, "current_": -7.891368, "current_.literal_chars": -10.193953, "current_.token": -10.193953, "current_pos": -10.193953, "cursor": -8.114512, "cycle": -9.500806, "d": -8.179050, "dFlush": -10.887100, "d_get_current_screen": -9.500806, "d_set_scissor_test": -10.887100, "data": -9.277663, "dbDataStructure": -10.887100, "dbDataStructure*": -10.887100, "dbuffer_": -7.942661, "decodeDouble": -9.788488, "decodeNumber": -10.193953, "decodeString": -9.277663, "decodeUnicodeCodePoint": -10.193953, "decodeUnicodeEscapeSequence": -9.788488, "decoded": -8.248043, "decoded.reserve": -10.887100, "default": -8.807659, "default_instance": -9.788488, "default_instance_": -8.807659, "defined": -7.276183, "definition": -10.887100, "delFile": -10.887100, "delete": -9.095341, "delimited": -10.193953, "delimiter": -10.887100, "dependent": -10.887100, "depth": -10.887100, "deregister_descriptor": -10.887100, "deregister_internal_descriptor": -10.887100, "des": -9.788488, "descr": -10.193953, "descriptor": -8.179050, "descriptor_": -9.277663, "descriptor_data": -6.792756, "descriptor_lock": -8.941190, "descriptor_lock.unlock": -9.500806, "descriptor_state": -9.277663, "descriptor_state*": -9.277663, "descriptors_lock": -9.788488, "detail": -9.500806, "development": -10.887100, "dfs": -9.277663, "digits": -9.095341, "dimensions": -10.887100, "directly": -10.887100, "disable": -9.788488, "disk": -10.887100, "dispose": -10.887100, "do": -8.584515, "do_add_timer_queue": -10.887100, "do_complete": -10.193953, "do_epoll_create": -10.193953, "do_remove_timer_queue": -10.887100, "do_scan": -9.277663, "do_timerfd_create": -10.193953, "doc": -9.788488, "document": -10.193953, "document_": -7.149431, "document_.c_str": -10.887100, "document_.empty": -10.887100, "document_.length": -10.193953, "does": -10.887100, "done": -10.887100, "double": -7.591264, "double_int_union": -10.193953, "double_value": -10.887100, "dout": -10.193953, "dst": -10.193953, "dump_path": -10.887100, "dword": -10.193953, "dx": -10.193953, "dy": -10.193953, "dynamic_cast_if_available": -10.887100, "e": -8.584515, "ec": -9.095341, "ec_": -9.500806, "eckey": -8.941190, "ecsig": -9.788488, "ecx": -10.193953, "edx": -10.193953, "eh": -10.887100, "elapse": -10.887100, "else": -6.271980, "else_": -10.193953, "elsize": -10.887100, "enableYAMLCompatibility": -10.887100, "enabled": -10.887100, "enc": -10.887100, "encoding": -10.887100, "end": -7.709047, "endArray": -10.193953, "endDoc": -10.193953, "end_": -8.689876, "endl": -10.193953, "enforced.": -10.887100, "engine": -8.584515, "engine_disabled": -10.193953, "engines": -10.193953, "engines.empty": -10.887100, "engines.size": -10.887100, "ent": -10.887100, "entropy_mutex": -10.887100, "entropy_mutex.Pointer": -10.887100, "entropy_source": -9.500806, "enum": -9.277663, "env": -10.193953, "env_instance": -9.788488, "envp": -9.500806, "envvar": -10.193953, "envvar.indexOf": -10.887100, "envvar.left": -10.887100, "envvar.mid": -10.887100, "eof": -9.788488, "eor": -9.788488, "ep": -10.193953, "epoll_create": -10.193953, "epoll_ctl": -8.584515, "epoll_event": -8.689876, "epoll_fd_": -8.402194, "epoll_reactor": -7.303581, "epoll_reactor*": -10.193953, "epoll_size": -10.887100, "epoll_wait": -10.887100, "eproto": -8.114512, "eproto_": -10.887100, "eproto__INCLUDED": -10.193953, "equals": -9.500806, "err": -7.668225, "errno": -8.584515, "error": -8.584515, "error.extra_": -10.193953, "error.message": -9.788488, "error.message_": -10.887100, "error.pos": -9.500806, "error.token_.start_": -10.887100, "errorCount": -9.788488, "error_code": -9.500806, "errors_.begin": -10.887100, "errors_.clear": -10.887100, "errors_.end": -10.887100, "errors_.push_back": -10.887100, "errors_.resize": -10.193953, "errors_.size": -10.887100, "escape": -10.193953, "ev": -7.996729, "ev.data.ptr": -8.807659, "ev.events": -8.489205, "events": -8.807659, "every": -10.887100, "except_op": -10.887100, "exceptionHandler": -10.193953, "exist": -10.193953, "exp": -10.193953, "expect": -10.193953, "expectToken": -10.887100, "expected": -10.887100, "expected_length": -9.500806, "expf": -10.887100, "explicit": -9.788488, "expressionString": -10.887100, "expressionString.Length": -10.887100, "expressionString.String": -10.193953, "extensions": -10.887100, "extern": -9.277663, "extra": -10.193953, "f": -6.955275, "fCompr": -9.788488, "fCompressed": -9.788488, "fCompressedPubKey": -9.277663, "fKeySet": -9.500806, "fListener": -8.322151, "fOk": -7.942661, "fPos": -7.668225, "fSet": -9.095341, "fabsf": -10.887100, "false": -6.376241, "fast_stop": -9.788488, "father": -10.887100, "fatherIndex": -10.193953, "fclose": -10.193953, "fcntl": -10.193953, "fd": -8.053887, "features": -9.500806, "features.allowComments_": -10.887100, "features.strictRoot_": -10.887100, "features_": -10.193953, "features_.allowComments_": -10.193953, "features_.strictRoot_": -10.887100, "ff": -10.193953, "ffmpeg": -7.751606, "ffmpeg_bin": -9.788488, "ffmpeg_bin.empty": -10.887100, "field": -9.788488, "field_count": -10.887100, "fields": -10.193953, "file": -8.053887, "fileName": -10.887100, "files": -9.095341, "fill": -10.887100, "finalizeTokenOk": -9.788488, "findScript": -10.887100, "firstLineData": -10.887100, "first_op_": -9.788488, "flag": -9.788488, "flags": -9.500806, "fld": -10.887100, "float": -6.809563, "floorf": -10.193953, "flush": -10.887100, "flushing": -10.887100, "fopen": -10.193953, "for": -7.058459, "format": -9.095341, "formattedMessage": -9.277663, "fragmem": -10.887100, "fragment": -10.887100, "framework": -10.887100, "free": -9.788488, "free_buffer": -9.788488, "free_descriptor_state": -9.788488, "freopen": -10.887100, "friend": -8.584515, "from": -7.668225, "from._has_bits_": -10.887100, "from.has_name": -10.887100, "from.name": -10.887100, "from.unknown_fields": -10.887100, "fsincos": -10.887100, "fspath": -9.788488, "fstp": -10.193953, "full": -10.887100, "func": -9.788488, "function": -9.788488, "functions": -10.887100, "fwrite": -10.193953, "g": -9.500806, "g_metrics": -9.788488, "general": -10.887100, "generated": -10.193953, "generated_factory": -10.887100, "generated_pool": -10.193953, "generic": -10.887100, "getCurrentColor": -10.887100, "getCurrentScreen": -9.277663, "getFile": -10.887100, "getFormatedErrorMessages": -10.887100, "getLocationLineAndColumn": -9.277663, "getNextChar": -8.807659, "getTOC": -10.887100, "get_engine_acodec": -10.887100, "get_engine_enabled": -10.887100, "get_engine_output": -10.887100, "get_engine_vcodec": -10.887100, "get_ffmpeg_log_dir": -10.887100, "get_ffmpeg_log_enabled": -10.887100, "get_id": -10.887100, "get_ingest_by_id": -10.887100, "get_ingest_enabled": -10.887100, "get_ingest_ffmpeg": -10.887100, "get_ingest_input_type": -10.887100, "get_ingest_input_url": -10.193953, "get_ingesters": -10.887100, "get_listens": -10.887100, "get_system_category": -9.788488, "get_timeout": -9.277663, "get_transcode_engines": -10.887100, "get_type_information": -9.788488, "get_vhost": -10.193953, "get_vhosts": -10.887100, "getline": -10.887100, "gfxGetFramebuffer": -10.193953, "given": -10.887100, "glPointer": -10.887100, "google": -6.638605, "google_breakpad": -10.887100, "goto": -5.843675, "graph": -8.053887, "graph.pb": -10.887100, "group": -8.402194, "groups": -10.887100, "handle_scope_implementer": -9.277663, "handle_uninterpreted": -10.193953, "harm.": -10.887100, "harmony_modules_": -10.193953, "harmony_scoping_": -10.193953, "has": -10.193953, "hasChildValue": -9.500806, "hasCommentForValue": -9.500806, "has_been_disposed_": -9.095341, "has_been_set_up_": -9.500806, "has_fatal_error_": -9.277663, "has_line_terminator_before_next_": -8.689876, "has_multiline_comment_before_next_": -9.500806, "has_name": -9.095341, "hash": -7.891368, "have": -9.788488, "having": -10.887100, "headers": -10.887100, "headers.": -9.788488, "heap_number": -9.500806, "height": -9.788488, "hello": -9.788488, "hex": -10.887100, "high": -9.500806, "hint": -9.788488, "hold": -10.887100, "holds": -10.193953, "home": -10.887100, "i": -6.186620, "id": -9.277663, "if": -4.555599, "imag": -10.193953, "in": -8.053887, "in.fd": -10.887100, "inComment": -9.095341, "inLineOffset": -9.277663, "in_character_class": -10.193953, "included": -10.887100, "incompatible": -10.193953, "indent": -9.095341, "indentSize_": -9.500806, "indentString_": -9.095341, "indentString_.resize": -10.193953, "indentString_.size": -9.500806, "indentation": -10.193953, "indentation_": -10.193953, "indentation_.size": -10.193953, "index": -6.844049, "indexOfEquals": -9.277663, "info": -9.500806, "info.extra_": -10.887100, "info.message_": -10.887100, "info.token_": -10.887100, "information": -10.887100, "ingest": -7.842578, "ingest_id": -8.941190, "ingest_id.c_str": -10.193953, "ingester": -7.554896, "ingesters": -10.193953, "ingesters.at": -10.887100, "ingesters.begin": -9.277663, "ingesters.clear": -10.887100, "ingesters.empty": -10.887100, "ingesters.end": -9.277663, "ingesters.erase": -10.193953, "ingesters.push_back": -10.193953, "ingesters.size": -9.788488, "init_once": -10.193953, "init_task": -10.887100, "initialTokenOk": -9.500806, "initialize": -9.095341, "initialize_copy": -10.887100, "initialize_ffmpeg": -9.788488, "initialize_transcode": -10.887100, "injectJsInFrame": -10.193953, "inline": -7.080438, "inner_work_": -9.500806, "input": -9.095341, "input_type": -9.788488, "input_type.c_str": -10.887100, "input_type.empty": -10.887100, "input_url": -9.500806, "input_url.empty": -10.193953, "inside": -10.887100, "insize": -9.788488, "inspect": -9.500806, "inst": -10.887100, "install": -10.887100, "instance": -9.788488, "instantiated": -10.887100, "instrWord": -10.887100, "int": -5.160253, "intValue": -9.788488, "intern": -10.887100, "internal": -7.173528, "internally": -10.887100, "internalname": -10.887100, "interrupt": -10.193953, "interrupter_": -9.500806, "interrupter_.interrupt": -10.887100, "interrupter_.read_descriptor": -10.193953, "invalid": -9.788488, "io": -9.500806, "io_cleanup": -10.887100, "io_cleanup.first_op_": -10.193953, "io_cleanup.ops_.front": -10.887100, "io_cleanup.ops_.pop": -10.887100, "io_cleanup.ops_.push": -10.887100, "io_service": -9.500806, "io_service_": -10.887100, "io_service_.init_task": -10.887100, "io_service_.post_deferred_completions": -9.788488, "io_service_.post_immediate_completion": -10.193953, "io_service_.work_started": -10.193953, "io_service_impl*": -10.887100, "ios": -10.887100, "ip": -10.193953, "ip_ports": -10.193953, "ip_ports.size": -10.887100, "is": -9.095341, "isArrayMultiLine": -9.500806, "isControlCharacter": -9.788488, "isDouble": -9.500806, "isMultiLine": -7.796058, "isMultineArray": -9.500806, "isNegative": -8.941190, "isPushed": -9.500806, "is_ascii": -10.887100, "is_ascii_": -8.584515, "is_continuation": -9.277663, "is_running_": -9.095341, "is_str": -10.887100, "is_unicode": -10.887100, "isn": -10.887100, "isolate": -8.179050, "isspace": -10.887100, "istream": -9.788488, "istream_iterator": -10.193953, "it": -7.249514, "itError": -9.788488, "item": -10.193953, "itemSeparatorPos": -9.277663, "itemsize": -10.193953, "iterator": -8.807659, "itimerspec": -9.277663, "j": -8.402194, "jclass": -10.887100, "js": -10.887100, "jsFileEnc": -10.193953, "jsFilePath": -9.277663, "jsFromScriptFile": -10.887100, "just": -10.887100, "k": -10.193953, "kASCIISize": -10.887100, "kAllowLazy": -10.887100, "kAllowModules": -10.887100, "kAllowNativesSyntax": -10.887100, "kCharacterLookaheadBufferSize": -10.193953, "kEmptyString": -8.402194, "kEndOfInput": -10.193953, "kGrowthFactory": -10.193953, "kInitialCapacity": -10.193953, "kIsIdentifierPart": -10.887100, "kIsIdentifierPart.get": -10.887100, "kIsIdentifierStart": -10.887100, "kIsIdentifierStart.get": -10.887100, "kIsLineTerminator": -10.887100, "kIsLineTerminator.get": -10.887100, "kIsWhiteSpace": -10.887100, "kIsWhiteSpace.get": -10.887100, "kLanguageModeMask": -9.500806, "kMaxAsciiCharCodeU": -10.887100, "kMaxGrowth": -10.193953, "kMinConversionSlack": -10.887100, "kNameFieldNumber": -10.193953, "kNoParsingFlags": -10.887100, "kNonStrictEquality": -10.887100, "kNullValue": -10.887100, "kPageSizeBits": -10.887100, "kStrictEquality": -10.887100, "kUC": -10.193953, "kUndefinedValue": -10.887100, "key": -9.500806, "key.GetPubKey": -10.887100, "key.SetCompactSignature": -10.887100, "keyRec": -10.887100, "keyRec.GetPubKey": -10.887100, "keyRec.SetCompressedPubKey": -10.887100, "keyRec.fSet": -10.887100, "keyRec.pkey": -10.887100, "key_error": -9.095341, "klass": -10.887100, "label": -10.887100, "last": -9.788488, "lastLineStart": -9.500806, "lastValueEnd_": -9.500806, "lastValue_": -9.500806, "last_nonzero": -10.193953, "len": -9.500806, "length": -8.402194, "libcanister": -10.193953, "libraryPath": -9.277663, "likely": -8.179050, "lim": -8.402194, "limit": -9.500806, "limited": -10.193953, "line": -8.402194, "lineLength": -9.095341, "linebreaks": -10.887100, "linesNumbers": -10.887100, "list": -9.788488, "listener": -10.193953, "literal": -10.193953, "literal.Complete": -10.193953, "literal_buffer": -9.277663, "literal_chars": -10.193953, "ll": -10.887100, "llvm_gcroot": -10.193953, "llvmo": -4.410128, "loadJSForDebug": -10.193953, "location": -8.689876, "lock": -9.500806, "log_file": -8.322151, "logf": -9.788488, "long": -8.322151, "loop": -10.887100, "low": -9.788488, "m": -8.807659, "mDimensions": -10.887100, "mEntity": -10.887100, "mId": -10.887100, "mMaterial": -10.887100, "mMesh": -10.887100, "mNode": -10.887100, "mPosition": -10.887100, "m_map": -10.193953, "m_map.insert": -10.887100, "m_tempHarness": -10.887100, "m_tempWrapper": -10.887100, "mailing": -10.887100, "main": -9.500806, "make": -10.887100, "malloc": -9.788488, "map": -10.887100, "marker": -9.788488, "match": -9.500806, "material": -10.887100, "maxInt": -10.887100, "maxUInt": -10.887100, "max_ops": -9.277663, "may": -10.193953, "member": -9.500806, "members": -9.788488, "members.begin": -9.500806, "members.empty": -10.193953, "members.end": -9.788488, "memcpy": -8.584515, "memory": -9.095341, "memoryMap": -10.887100, "memset": -10.193953, "mesh": -10.887100, "message": -8.941190, "messageHandler": -10.193953, "message_type": -10.887100, "metadata": -10.193953, "metadata.descriptor": -10.887100, "metadata.reflection": -10.887100, "metric": -10.887100, "metric_": -10.887100, "metrics_": -10.887100, "metrics_h_metric": -10.193953, "metrics_h_scoped": -10.887100, "minInt": -10.887100, "min_capacity": -10.193953, "minidump_id": -10.887100, "mod": -10.887100, "modded": -10.887100, "mode": -9.500806, "modified": -10.887100, "modname": -10.887100, "mov": -10.193953, "move_descriptor": -10.887100, "ms": -10.193953, "msg": -10.887100, "msglen": -10.193953, "mutable": -10.887100, "mutable_name": -9.788488, "mutable_unknown_fields": -9.500806, "mutex": -8.179050, "mutexAttrs": -9.277663, "mutex_": -8.402194, "mutex_.lock": -10.887100, "myclass": -8.402194, "myclass.data": -9.788488, "myclass.depth": -10.887100, "myclass.fatherIndex": -10.887100, "myclass.fileName": -10.887100, "myclass.firstLineData": -9.788488, "myclass.label": -10.887100, "myclass.linesNumbers": -10.887100, "myclass.nextItemsIndices": -10.887100, "myclass.noFatherRoot": -10.887100, "myclass.uniqueID": -10.887100, "myclass.userIndex": -10.887100, "n": -7.173528, "nBitsR": -9.788488, "nBitsS": -9.788488, "nCLen": -9.277663, "nDerivationMethod": -10.193953, "nFLen": -9.095341, "nIV": -9.500806, "nLen": -9.095341, "nPLen": -9.277663, "nRecId": -9.500806, "nRounds": -9.788488, "nSize": -10.193953, "nV": -9.095341, "name": -7.249514, "name.c_str": -9.788488, "name.empty": -10.887100, "name_": -7.485903, "names": -10.193953, "namespace": -7.421365, "ndarray_": -10.193953, "ndarray___getbuffer__": -10.193953, "ndim": -10.193953, "needed": -10.887100, "new": -6.638605, "newVal": -10.887100, "new_Nil": -6.844049, "new_capacity": -10.193953, "new_content_size": -9.500806, "new_store": -9.095341, "new_store.start": -9.788488, "new_timeout": -9.095341, "newer": -10.193953, "newline": -10.193953, "newlinePos": -9.095341, "next": -9.500806, "nextIsNop": -10.887100, "nextItemsIndices": -10.887100, "next_": -9.277663, "next_.literal_chars": -9.277663, "next_.location.beg_pos": -10.193953, "next_.location.end_pos": -10.193953, "next_.token": -10.887100, "nil_for_class": -5.252311, "no": -10.887100, "noFatherRoot": -10.193953, "nodes_.empty": -10.887100, "nodes_.pop": -9.788488, "nodes_.push": -9.788488, "nodes_.top": -10.887100, "normalizeEOL": -8.807659, "normalized": -8.807659, "normalized.reserve": -10.193953, "not": -9.277663, "notation": -10.887100, "npos": -9.500806, "npy_cdouble": -10.193953, "npy_cfloat": -10.887100, "npy_clongdouble": -10.887100, "npy_double": -10.193953, "npy_float": -10.193953, "npy_int": -9.500806, "npy_intp": -8.584515, "npy_long": -10.887100, "npy_longdouble": -10.887100, "npy_longlong": -10.887100, "npy_uint": -9.500806, "npy_uintp": -10.887100, "npy_ulong": -10.887100, "npy_ulonglong": -10.887100, "null": -9.788488, "nullValue": -9.788488, "nulls": -10.887100, "num_events": -10.193953, "number": -10.193953, "numfiles": -10.887100, "numpy_": -9.500806, "numpy_PyArray_MultiIterNew": -8.689876, "numpy__util_dtypestring": -9.788488, "numpy_cdouble_t": -10.887100, "numpy_cfloat_t": -10.887100, "numpy_clongdouble_t": -10.887100, "numpy_complex_t": -10.887100, "numpy_double_t": -10.887100, "numpy_dtype": -10.887100, "numpy_float": -10.193953, "numpy_float_t": -10.887100, "numpy_get_array_base": -10.887100, "numpy_int": -9.500806, "numpy_int_t": -10.887100, "numpy_intp_t": -10.887100, "numpy_long_t": -10.887100, "numpy_longdouble_t": -10.887100, "numpy_ndarray": -10.193953, "numpy_set_array_base": -10.887100, "numpy_uint": -9.500806, "numpy_uint_t": -10.887100, "numpy_uintp_t": -10.887100, "numpy_ulong_t": -10.887100, "nx": -9.788488, "o": -7.891368, "ob": -9.095341, "ob_refcnt": -10.887100, "ob_size": -10.887100, "ob_type": -8.941190, "obj": -7.149431, "object": -10.193953, "objectValue": -9.500806, "occurring": -10.887100, "octal_pos_": -10.193953, "of": -7.751606, "offset": -8.807659, "offsetof": -10.193953, "ofstream": -10.887100, "og": -10.887100, "ok": -7.796058, "old_timeout": -9.500806, "older": -10.887100, "on": -10.887100, "on_reload_ingest_added": -10.193953, "on_reload_ingest_removed": -10.193953, "on_reload_ingest_updated": -10.887100, "on_reload_vhost_added": -10.887100, "on_reload_vhost_removed": -10.887100, "on_thread_stop": -10.887100, "once": -9.788488, "one_char_tokens": -10.193953, "op": -7.554896, "op_queue": -9.277663, "op_queue_": -8.489205, "op_type": -8.807659, "open": -9.788488, "operation": -10.193953, "operation*": -9.500806, "operation_aborted": -10.193953, "operator": -8.489205, "ops": -8.941190, "ops.push": -9.500806, "ops_": -10.193953, "ops_.empty": -10.887100, "or": -9.788488, "order": -8.807659, "oss": -10.193953, "ostream": -9.788488, "ostringstream": -10.887100, "other": -8.941190, "otherwise": -10.887100, "ourselves": -10.887100, "out": -10.193953, "output": -8.053887, "output.empty": -10.887100, "outsize": -8.807659, "overload": -10.887100, "overwrites": -10.887100, "own.": -10.887100, "owner": -10.193953, "p": -9.095341, "package": -10.887100, "packageInfo": -9.788488, "packageInfoString": -10.887100, "packageInfoString.FindLast": -10.193953, "packageInfoString.String": -10.193953, "parameter": -10.887100, "parent": -10.887100, "parse": -8.584515, "parse_engines": -9.788488, "parse_ingesters": -9.788488, "partialAddress": -9.500806, "path": -8.807659, "paths": -10.887100, "pattern": -10.193953, "patternLength": -9.500806, "pb": -10.887100, "per_descriptor_data": -8.807659, "perform": -10.193953, "perform_io": -10.193953, "perform_io_cleanup_on_block_exit": -9.500806, "persons": -10.193953, "pf": -10.887100, "phantom": -10.887100, "phantom.execute": -10.887100, "phantom.returnValue": -10.887100, "physical": -10.887100, "pkey": -8.322151, "placement": -9.095341, "please": -10.887100, "point": -9.500806, "pointer": -10.887100, "pop": -10.887100, "port": -9.788488, "pos": -7.796058, "pos_": -9.095341, "position": -10.193953, "position_": -8.053887, "post_immediate_completion": -10.193953, "pow": -10.193953, "powf": -10.887100, "pprint": -9.500806, "prevent": -10.887100, "priv_key": -10.193953, "private": -7.996729, "private_random_seed": -10.887100, "prop": -9.095341, "protected": -9.095341, "protobuf": -6.638605, "protobuf_AddDesc_protocol_": -9.095341, "protobuf_AssignDesc_protocol_": -9.500806, "protobuf_AssignDescriptorsOnce": -9.500806, "protobuf_AssignDescriptors_once_": -10.193953, "protobuf_RegisterTypes": -10.193953, "protobuf_ShutdownFile_protocol_": -9.500806, "protoc": -10.193953, "protoc.": -10.887100, "protocol": -10.887100, "pthread": -9.277663, "pthread_cond_broadcast": -10.887100, "pthread_cond_destroy": -10.887100, "pthread_cond_init": -10.887100, "pthread_cond_t": -10.887100, "pthread_cond_wait": -10.887100, "pthread_condattr_destroy": -10.887100, "pthread_condattr_init": -10.887100, "pthread_condattr_setpshared": -10.887100, "pthread_condattr_t": -10.887100, "pthread_mutex_destroy": -10.887100, "pthread_mutex_init": -10.887100, "pthread_mutex_lock": -10.193953, "pthread_mutex_t": -10.887100, "pthread_mutex_unlock": -10.193953, "pthread_mutexattr_destroy": -10.887100, "pthread_mutexattr_init": -10.887100, "pthread_mutexattr_settype": -10.887100, "pthread_mutexattr_t": -10.887100, "ptr": -8.584515, "pub_key": -9.095341, "public": -7.331752, "push": -9.788488, "pushValue": -7.996729, "push_back": -10.887100, "q": -10.193953, "qCompress": -10.193953, "qInstallMsgHandler": -10.887100, "qUncompress": -10.193953, "queue": -9.095341, "queueCond": -9.277663, "queueMutex": -8.807659, "quint": -10.887100, "quoteChar": -9.500806, "r": -6.468260, "r.double_value": -9.788488, "r.uint": -10.887100, "r2": -10.193953, "rand": -10.887100, "random": -10.887100, "random_base": -9.788488, "random_bits": -10.193953, "random_seed": -10.887100, "raw": -10.193953, "reactor_": -8.941190, "reactor_op*": -9.277663, "read": -10.887100, "readArray": -10.193953, "readCStyleComment": -10.193953, "readComment": -10.193953, "readCppStyleComment": -10.193953, "readNumber": -10.193953, "readObject": -10.193953, "readResourceFileUtf": -10.887100, "readString": -10.193953, "readToken": -8.322151, "readValue": -9.500806, "read_op": -10.887100, "reader": -10.887100, "reader.getFormatedErrorMessages": -10.887100, "reader.parse": -10.887100, "readonly": -9.788488, "real": -9.788488, "realValue": -9.788488, "recid": -9.788488, "recoverFromError": -9.277663, "ref": -10.193953, "regenerate": -10.887100, "register_descriptor": -10.887100, "register_internal_descriptor": -10.887100, "registered_descriptors_.alloc": -10.887100, "registered_descriptors_.first": -10.887100, "registered_descriptors_.free": -10.887100, "registered_descriptors_mutex_": -9.788488, "registered_events_": -8.807659, "reinterpret_cast": -8.807659, "release_name": -10.193953, "report": -10.887100, "res": -9.500806, "resolver": -9.788488, "resourceFilePath": -10.887100, "result": -7.751606, "result.resize": -9.500806, "ret": -6.186620, "return": -4.952206, "returns": -10.887100, "revisionIsOptional": -10.193953, "rightMargin_": -9.095341, "root": -7.709047, "root.getComment": -9.095341, "root.hasComment": -9.095341, "root.isArray": -10.887100, "root.isObject": -10.887100, "root.setComment": -10.887100, "routines": -10.887100, "row_buffer": -10.887100, "row_count": -10.887100, "rows": -10.887100, "rpc_init": -10.887100, "rpc_server_loop": -10.887100, "rr": -8.807659, "run": -10.887100, "runtime_error": -9.788488, "s": -6.743966, "sCFID": -10.193953, "safe": -10.887100, "sanitize": -10.887100, "save_fields": -10.887100, "scan": -9.500806, "sceneMgr": -10.887100, "scoped_lock": -8.179050, "screen": -10.193953, "screenShot": -10.887100, "script": -10.887100, "scriptPath": -10.887100, "search": -10.193953, "sec": -10.193953, "secret": -10.193953, "secure_allocator": -9.500806, "seed": -10.193953, "seed_random": -10.193953, "seen": -10.887100, "seen_equal": -10.887100, "seen_period": -10.887100, "self": -9.788488, "sequence": -10.193953, "service_base": -10.887100, "set": -10.193953, "setColor": -10.193953, "setCommandLineProperties": -10.887100, "setComment": -10.887100, "setInstanceNil": -6.861749, "setInstance_newNil_callback": -6.844049, "setProperties": -10.887100, "setScissor": -10.887100, "setScreen": -10.887100, "setSupportsSlots": -6.861749, "set_allocated_name": -10.193953, "set_has_name": -8.941190, "set_iparams": -10.193953, "set_name": -8.941190, "set_oformat": -10.887100, "set_ready_events": -10.887100, "set_value": -10.887100, "setf_findClass": -6.844049, "setfill": -10.887100, "setup": -10.887100, "setup.": -10.887100, "setw": -10.887100, "sf": -9.277663, "shape": -9.788488, "shared_ptr": -6.861749, "shell": -10.887100, "short": -9.788488, "should": -10.887100, "shouldn": -10.887100, "showUsage": -10.887100, "show_ingest_log_message": -10.193953, "showing": -10.887100, "shutdown_": -8.807659, "sig": -8.489205, "signalItems": -10.193953, "signed": -9.277663, "sin": -9.095341, "sinf": -10.887100, "singleton": -10.887100, "size": -7.303581, "size*": -10.193953, "size_t": -8.402194, "sizeof": -7.709047, "skip": -10.193953, "skip.type_": -10.193953, "skipCommentTokens": -9.788488, "skipSpaces": -9.788488, "skipUntilToken": -9.500806, "smallPrime_t": -10.887100, "socket_type": -8.941190, "sor": -9.788488, "source": -8.941190, "source_": -8.941190, "source_descriptor_data": -9.788488, "source_pos": -8.941190, "sout": -9.788488, "sprintf": -9.788488, "sprintf_s": -10.887100, "src": -10.193953, "srs_assert": -10.887100, "srs_config_ingest_is_file": -10.887100, "srs_config_ingest_is_stream": -10.887100, "srs_error": -9.095341, "srs_freep": -8.689876, "srs_get_system_time_ms": -10.193953, "srs_parse_endpoint": -10.887100, "srs_string_replace": -10.193953, "srs_trace": -8.248043, "sscanf": -9.788488, "st": -10.887100, "st.empty": -10.887100, "st.pop": -10.887100, "st.push": -9.277663, "st.top": -10.887100, "stack": -10.887100, "stacklevel": -10.887100, "start": -9.277663, "start_": -10.887100, "start_op": -10.887100, "start_position": -10.193953, "started_": -9.500806, "startingScript": -10.193953, "starttime": -10.193953, "state": -7.796058, "static": -5.303604, "static_cast": -7.796058, "static_className": -6.697446, "static_classSymbol": -6.150902, "static_descriptor_initializer_protocol_": -10.887100, "static_newNil_callback": -6.861749, "static_packageName": -6.697446, "static_supportsSlots": -6.861749, "status_t": -9.788488, "std": -5.793350, "stdin": -10.887100, "step": -9.788488, "stop": -8.941190, "stores": -10.887100, "str": -8.941190, "strKeyData": -10.193953, "strKeyData.size": -10.887100, "strdata": -10.887100, "stream": -8.941190, "strictMode": -10.887100, "strictRoot_": -10.887100, "strides": -9.277663, "string": -6.262128, "string*": -8.489205, "stringValue": -9.788488, "strings": -10.887100, "strlen": -10.887100, "strpbrk": -10.887100, "struct": -8.322151, "structure": -10.887100, "stuff": -10.887100, "suboffsets": -10.887100, "subscribe": -10.887100, "succeeded": -10.193953, "successful": -8.402194, "suits": -10.887100, "sum": -10.887100, "summary": -10.887100, "sure": -10.887100, "surrogatePair": -9.788488, "swap": -9.788488, "switch": -8.322151, "sync_with_stdio": -10.887100, "system": -9.500806, "system_package": -10.887100, "t": -7.842578, "t.c": -9.277663, "t.r": -9.277663, "tag": -9.095341, "take_snapshot": -10.887100, "tanf": -10.887100, "target": -9.095341, "target_descriptor_data": -10.193953, "temp": -9.277663, "template": -8.689876, "text": -8.584515, "text.c_str": -10.193953, "text.length": -9.500806, "that": -10.887100, "the": -7.249514, "their": -10.887100, "then": -9.788488, "this": -7.276183, "thread_id": -10.887100, "threshold": -10.193953, "throw": -9.095341, "throw_error": -10.193953, "timeout": -9.500806, "timer_fd_": -8.402194, "timer_queue_base": -10.193953, "timer_queues_.erase": -10.887100, "timer_queues_.get_ready_timers": -10.887100, "timer_queues_.insert": -10.887100, "timer_queues_.wait_duration_msec": -10.887100, "timer_queues_.wait_duration_usec": -10.887100, "timerfd_create": -10.193953, "timerfd_settime": -10.193953, "to": -8.489205, "tok": -8.584515, "token": -6.177570, "token.end_": -8.584515, "token.start_": -8.402194, "token.type_": -7.796058, "tokenArrayBegin": -10.193953, "tokenArrayEnd": -9.277663, "tokenArraySeparator": -9.788488, "tokenComment": -9.095341, "tokenEndOfStream": -10.193953, "tokenError": -10.193953, "tokenFalse": -10.193953, "tokenMemberSeparator": -10.193953, "tokenName": -9.277663, "tokenName.type_": -9.788488, "tokenNull": -10.193953, "tokenNumber": -10.193953, "tokenObjectBegin": -10.193953, "tokenObjectEnd": -8.689876, "tokenPos": -8.489205, "tokenStart": -10.193953, "tokenString": -9.788488, "tokenTrue": -10.193953, "top": -10.193953, "topScreen": -9.788488, "total_size": -9.277663, "tp_as_mapping": -9.788488, "tp_name": -9.500806, "transX": -9.277663, "transY": -9.277663, "translate": -10.887100, "translateCoords": -10.887100, "trapped": -10.887100, "trim": -10.887100, "true": -6.312389, "try": -9.788488, "ts": -10.887100, "ts.it_interval.tv_nsec": -10.887100, "ts.it_interval.tv_sec": -10.887100, "ts.it_value.tv_nsec": -10.887100, "ts.it_value.tv_sec": -10.887100, "tuple": -9.788488, "type": -8.584515, "type*": -10.887100, "type_format": -9.095341, "type_name": -9.095341, "type_num": -10.193953, "typedef": -7.125900, "u": -8.807659, "u.c": -10.887100, "u.r": -10.887100, "uInt": -10.887100, "uc": -7.591264, "uchar": -8.402194, "uchar*": -10.887100, "uint": -6.610434, "uint256": -10.887100, "uintToString": -9.788488, "uintValue": -9.788488, "unallocated": -10.887100, "uncaching": -10.887100, "uncertain": -10.887100, "undefinedMetaClass": -6.150902, "undefinedMetaClass.reset": -10.887100, "undo": -10.193953, "unibrow": -8.584515, "unicode": -8.179050, "unicode_cache": -10.193953, "unicode_cache_": -8.807659, "unindent": -9.095341, "union": -10.887100, "uniqueID": -10.887100, "unknown_fields": -8.941190, "unlikely": -6.652994, "unsigned": -7.198221, "unsubscribe": -10.887100, "up": -9.788488, "update": -10.193953, "updateZero": -10.887100, "update_timeout": -10.193953, "uppercase": -10.887100, "uri": -9.500806, "url": -9.500806, "url.rfind": -10.193953, "url.substr": -9.500806, "use": -10.887100, "use_crankshaft_": -9.095341, "use_service": -10.887100, "usec": -9.277663, "used": -10.193953, "userIndex": -10.887100, "using": -8.584515, "utf": -9.500806, "v": -7.996729, "vMasterKey": -9.500806, "val": -9.500806, "value": -6.409764, "value.asBool": -9.788488, "value.asCString": -9.788488, "value.asDouble": -9.788488, "value.asInt": -9.788488, "value.asUInt": -9.788488, "value.getMemberNames": -9.788488, "value.hasComment": -9.095341, "value.size": -9.277663, "value.type": -9.788488, "valueToQuotedString": -8.941190, "valueToString": -8.114512, "vchCiphertext": -8.584515, "vchCiphertext.resize": -10.887100, "vchCiphertext.size": -10.887100, "vchPlaintext": -8.584515, "vchPlaintext.resize": -10.887100, "vchPlaintext.size": -10.887100, "vchPrivKey": -10.887100, "vchPubKey": -8.179050, "vchPubKey.begin": -10.887100, "vchPubKey.end": -10.887100, "vchPubKey.size": -9.788488, "vchPubKeyIn": -10.193953, "vchSecret": -10.887100, "vchSig": -7.996729, "vchSig.clear": -10.193953, "vchSig.resize": -10.193953, "vchSig.size": -10.193953, "vcodec": -10.887100, "vcodec.empty": -10.887100, "vector": -7.249514, "version": -9.500806, "versionString": -10.887100, "versionString.Length": -10.887100, "versionString.String": -10.193953, "vhost": -7.485903, "vhost.c_str": -9.277663, "vhosts": -9.788488, "vhosts.size": -10.887100, "virtual": -8.807659, "void": -5.427515, "void*": -10.193953, "void**": -10.887100, "waitItems": -10.887100, "want": -10.193953, "warning": -9.788488, "was": -10.193953, "we": -10.887100, "whatever": -10.887100, "whether": -10.887100, "which": -9.277663, "while": -7.036953, "width": -9.788488, "will": -10.887100, "with": -9.277663, "within": -10.193953, "without": -10.887100, "wrapper_inner_pure_py_test": -9.500806, "write": -9.277663, "writeArrayValue": -9.500806, "writeCommentAfterValueOnSameLine": -8.402194, "writeCommentBeforeValue": -8.807659, "writeFile": -10.193953, "writeIndent": -9.095341, "writeValue": -8.248043, "writeWithIndent": -8.248043, "write_op": -10.193953, "writeln": -10.887100, "writer": -10.887100, "writer.write": -10.887100, "wrong": -10.887100, "x": -6.456284, "y": -7.942661, "yamlCompatiblityEnabled_": -9.788488, "your": -9.500806, "z": -7.058459, "zero": -9.277663, "zeromem": -10.887100, "{": -3.855359, "|": -7.198221, "||": -6.776227, "}": -3.852712, "~": -7.996729, }, "CLIPS": map[string]float64{ "##########": -6.790941, "######################": -7.484088, "&": -5.538178, "(": -1.703344, ")": -1.703344, "*": -7.484088, "**********": -7.484088, "***********": -6.790941, "************": -7.484088, "*************": -7.484088, "***************": -7.484088, "*****************": -6.385475, "***************************": -7.484088, "-": -3.928740, "/": -7.484088, "//www.angusj.com/sudoku/hints": -8.177235, "//www.krazydad.com/blog/": -8.177235, "//www.sadmansoftware.com/sudoku/techniques.htm": -8.177235, "//www.scanraid.com/BasicStrategies.htm": -8.177235, "//www.sudokuoftheday.com/pages/techniques": -8.177235, "//www.sudokuonline.us/sudoku_solving_techniques": -8.177235, "/an": -8.177235, ":": -5.086192, ";": -3.340953, "<": -6.385475, "<->": -6.385475, "=": -5.779340, ">": -5.344022, "?": -3.758394, "BASE": -8.177235, "DEFFACTS": -8.177235, "KNOWLEDGE": -8.177235, "MAIN": -8.177235, "WelcomeMessage": -8.177235, "always.in.water": -7.078623, "always.in.water.query": -8.177235, "and": -3.711327, "answer": -8.177235, "any": -5.344022, "as": -6.097793, "assert": -5.874650, "baboon": -8.177235, "backbone": -6.385475, "backbone.query": -8.177235, "base": -8.177235, "bat": -8.177235, "bear.tiger.lion": -8.177235, "begin": -6.385475, "bird": -8.177235, "bivalve": -7.078623, "bivalve.query": -8.177235, "body.in.segments": -7.078623, "body.in.segments.query": -8.177235, "boney": -7.078623, "boney.query": -8.177235, "breasts": -7.078623, "c": -5.779340, "camel": -8.177235, "can.eat.meat": -7.078623, "can.eat.meat.query": -8.177235, "cat": -8.177235, "cells": -7.078623, "centipede.millipede.insect": -8.177235, "clam.oyster": -8.177235, "class": -5.469185, "cold": -7.078623, "column": -5.692328, "coral.sponge": -8.177235, "cow": -8.177235, "coyote.wolf.fox.dog": -8.177235, "crab": -8.177235, "crocodile.alligator": -8.177235, "declare": -5.980010, "deer.moose.antelope": -8.177235, "deffacts": -7.078623, "defrule": -5.980010, "deftemplate": -6.567797, "digest.cells": -7.078623, "digest.cells.query": -8.177235, "displayanswers": -8.177235, "dolphin.porpoise": -8.177235, "domesticated": -7.078623, "domesticated.query": -8.177235, "done": -7.484088, "dry": -6.385475, "elimination": -7.078623, "elsewhere": -7.078623, "employed": -8.177235, "enable": -7.484088, "expand": -6.097793, "expanded": -7.484088, "f": -5.779340, "family": -5.286863, "feet": -7.078623, "final": -8.177235, "fish": -8.177235, "flat.bodied": -7.078623, "flat.bodied.query": -8.177235, "flatworm": -8.177235, "fleece": -7.078623, "fleece.query": -8.177235, "fly": -7.078623, "fly.query": -8.177235, "frog": -8.177235, "front.teeth": -7.078623, "front.teeth.query": -8.177235, "g": -6.567797, "genus": -5.132712, "giraffe": -8.177235, "goal": -8.177235, "grid": -8.177235, "group": -6.385475, "hair": -7.078623, "has.breasts": -7.078623, "has.breasts.query": -8.177235, "hippopotamus": -8.177235, "hooves": -6.385475, "hooves.query": -8.177235, "horns": -6.385475, "horns.query": -8.177235, "horse.zebra": -8.177235, "http": -6.385475, "hunted": -7.078623, "hunted.query": -8.177235, "id": -5.286863, "id2": -7.484088, "if": -3.758394, "impossible": -6.385475, "index": -8.177235, "initial": -7.078623, "is": -2.659782, "jellyback": -7.078623, "jellyfish": -8.177235, "jump": -7.078623, "jump.query": -8.177235, "kangaroo.koala.bear": -8.177235, "knowledge": -8.177235, "land.based": -7.078623, "land.based.query": -8.177235, "large.ears": -7.078623, "large.ears.query": -8.177235, "last": -5.692328, "legalanswers": -8.177235, "limbs": -7.078623, "limbs.query": -8.177235, "live.in.water": -7.078623, "live.in.water.query": -8.177235, "live.prime.in.soil": -7.078623, "live.prime.in.soil.query": -8.177235, "lives.in.desert": -6.790941, "lives.in.desert.query": -8.177235, "lobster": -8.177235, "long.powerful.arms": -7.078623, "long.powerful.arms.query": -8.177235, "man": -8.177235, "match": -5.874650, "meat": -7.078623, "message": -8.177235, "mole.shrew.elephant": -8.177235, "monkey": -8.177235, "multicelled": -6.385475, "multicelled.query": -8.177235, "name": -8.177235, "nearly.hairless": -7.078623, "nearly.hairless.query": -8.177235, "next": -5.692328, "no": -4.393045, "nofleece": -7.078623, "nohorns": -6.790941, "noshell": -6.385475, "not": -4.809939, "notail": -7.078623, "noteeth": -7.078623, "nothumb": -7.078623, "nowings": -7.078623, "of": -8.177235, "onetoe": -7.078623, "opposing.thumb": -7.078623, "opposing.thumb.query": -8.177235, "orangutan.gorilla.chimpanzee": -8.177235, "order": -5.132712, "output": -6.385475, "over.": -6.790941, "overview": -8.177235, "p": -5.612286, "phase": -5.538178, "phylum": -5.692328, "plating": -7.078623, "plating.query": -8.177235, "position": -6.790941, "possible": -5.469185, "postfix": -8.177235, "pouch": -7.078623, "pouch.query": -8.177235, "prefix": -8.177235, "prehensile.tail": -7.078623, "prehensile.tail.query": -8.177235, "print": -7.484088, "priority": -5.132712, "protozoa": -8.177235, "query": -4.416035, "question": -4.439565, "r": -5.779340, "rabbit": -8.177235, "rat.mouse.squirrel.beaver.porcupine": -8.177235, "reason": -7.484088, "retract": -6.567797, "rhinoceros": -8.177235, "rounded.shell": -7.078623, "rounded.shell.query": -8.177235, "row": -5.692328, "rule": -3.758394, "s": -6.097793, "salamander": -8.177235, "salience": -5.980010, "scales": -7.078623, "scaly": -7.078623, "scaly.query": -8.177235, "sea.anemone": -8.177235, "segments": -7.078623, "semi.aquatic": -7.078623, "semi.aquatic.query": -8.177235, "shark.ray": -8.177235, "sheep.goat": -8.177235, "shell": -6.385475, "shell.query": -8.177235, "size": -3.972542, "slot": -5.469185, "snail": -8.177235, "snake": -8.177235, "soft": -7.078623, "soil": -7.078623, "species": -5.086192, "spikes": -7.078623, "spikes.query": -8.177235, "spiral.shell": -7.078623, "spiral.shell.query": -8.177235, "squid.octopus": -8.177235, "startup": -8.177235, "stationary": -6.385475, "stationary.query": -8.177235, "stomach": -7.078623, "strategies/": -8.177235, "stress": -7.078623, "subspecies": -7.078623, "subsubspecies": -7.078623, "sudoku": -8.177235, "superphylum": -6.385475, "tail": -7.078623, "tail.query": -8.177235, "technique": -6.231325, "techniques": -7.484088, "teeth": -7.078623, "test": -7.078623, "then": -3.758394, "thintail": -7.078623, "thintail.query": -8.177235, "thumb": -7.078623, "turtle": -8.177235, "two.toes": -7.078623, "two.toes.query": -8.177235, "twotoes": -7.078623, "type.animal": -4.370572, "under": -7.078623, "unified": -7.078623, "v": -5.538178, "v2": -7.078623, "value": -3.770516, "values": -6.790941, "variable": -4.393045, "vegy": -7.078623, "walrus": -8.177235, "warm": -7.078623, "warm.blooded": -7.078623, "warm.blooded.query": -8.177235, "water": -6.385475, "welcome": -8.177235, "whale": -8.177235, "worm.leech": -8.177235, "yes": -4.416035, }, "CMake": map[string]float64{ "#add": -5.955837, "#get": -6.648985, "#it": -6.648985, "$": -2.820343, "'": -6.648985, "(": -1.878300, ")": -1.878300, "-": -5.039547, "./ver.sh": -6.648985, "/CMakeError.log": -6.648985, "/CMakeOutput.log": -6.648985, "/cmake/vala": -6.648985, "/dev": -6.648985, "/usr": -6.648985, ":": -6.648985, "=": -6.648985, "@ONLY": -6.648985, "@PROJECT_BINARY_DIR@/install_manifest.txt": -6.648985, "ADD_CUSTOM_TARGET": -5.955837, "APPEND": -5.550372, "ARGS": -6.648985, "C": -6.648985, "CACHE": -5.955837, "CHECK_STDCALL_FUNCTION_CONTENT": -6.648985, "CHECK_STDCALL_FUNCTION_DECLARATION": -6.648985, "CHECK_STDCALL_FUNCTION_EXISTS": -5.955837, "CHECK_STDCALL_FUNCTION_EXISTS_ADD_INCLUDES": -5.955837, "CHECK_STDCALL_FUNCTION_EXISTS_ADD_LIBRARIES": -5.955837, "CHECK_STDCALL_FUNCTION_EXISTS_FUNCTION": -6.648985, "CHECK_STDCALL_FUNCTION_PREMAIN": -4.703074, "CMAKE_BINARY_DIR": -5.550372, "CMAKE_BUILD_TYPE": -6.648985, "CMAKE_CURRENT_SOURCE_DIR": -5.955837, "CMAKE_CXX_FLAGS": -6.648985, "CMAKE_EXTRA_INCLUDE_FILES": -6.648985, "CMAKE_FILES_DIRECTORY": -5.955837, "CMAKE_FLAGS": -6.648985, "CMAKE_INSTALL_PREFIX": -6.648985, "CMAKE_MINIMUM_REQUIRED": -6.648985, "CMAKE_MODULE_PATH": -6.648985, "CMAKE_REQUIRED_DEFINITIONS": -6.648985, "CMAKE_REQUIRED_INCLUDES": -5.550372, "CMAKE_REQUIRED_LIBRARIES": -5.550372, "CMAKE_RUNTIME_OUTPUT_DIRECTORY": -6.648985, "CMAKE_SKIP_RPATH": -6.648985, "CMAKE_SOURCE_DIR": -6.648985, "COMMAND": -5.550372, "COMPILE_DEFINITIONS": -6.648985, "CONFIGURE_FILE": -6.648985, "CUSTOM_VAPIS": -6.648985, "DCOMPILE_DEFINITIONS": -6.648985, "DESTDIR": -5.262690, "DESTINATION": -6.648985, "DIRECTORY": -6.648985, "ELSE": -5.039547, "ENDFOREACH": -5.955837, "ENDIF": -4.084035, "ENDMACRO": -6.648985, "ENV": -5.262690, "EXEC_PROGRAM": -6.648985, "EXISTS": -5.039547, "FATAL_ERROR": -5.550372, "FILE": -5.262690, "FIND_FILE": -6.648985, "FOREACH": -5.955837, "FUNCTION_DECLARATION": -5.550372, "Foo": -6.648985, "GENERATE_HEADER": -6.648985, "GENERATE_VAPI": -6.648985, "GLEW": -6.648985, "GLOB": -6.648985, "GOBJECT": -6.648985, "GOBJECT_CFLAGS": -6.648985, "GOBJECT_CFLAGS_OTHER": -6.648985, "GOBJECT_LIBRARIES": -6.648985, "GOBJECT_LIBRARY_DIRS": -6.648985, "HAVE_DIRECT_H": -5.955837, "HAVE_IO_H": -5.955837, "HAVE_SYS_TIMEB_H": -5.955837, "HAVE_UNISTD_H": -5.955837, "HAVE_WINDOWS_H": -5.955837, "IF": -4.084035, "IMMEDIATE": -6.648985, "INTERNAL": -5.955837, "MACRO": -6.648985, "MACRO_CHECK_STDCALL_FUNCTION_DEFINITIONS": -5.955837, "MATCHES": -5.955837, "MESSAGE": -4.703074, "MINIMUM": -6.648985, "NAMES": -6.648985, "NOT": -5.262690, "OPTIONS": -6.648985, "OS": -6.648985, "OUTPUT": -5.955837, "OUTPUT_VARIABLE": -5.955837, "PACKAGES": -6.648985, "PATHS": -6.648985, "PCL": -6.648985, "PCLVisualizer": -5.262690, "PCL_BUILD_TYPE": -6.648985, "PCL_COMMON_LIBRARIES": -6.648985, "PCL_DEFINITIONS": -6.648985, "PCL_FEATURES_LIBRARIES": -6.648985, "PCL_INCLUDE_DIRS": -6.648985, "PCL_IO_LIBRARIES": -6.648985, "PCL_LIBRARIES": -6.648985, "PCL_LIBRARY_DIRS": -6.648985, "PCL_VISUALIZATION_LIBRARIES": -6.648985, "PCL_openni_viewer_SRC": -5.955837, "PkgConfig": -6.648985, "READ": -5.955837, "REGEX": -5.955837, "REPLACE": -5.955837, "REQUIRED": -5.262690, "RETURN_VALUE": -6.648985, "Release": -6.648985, "SET": -3.815771, "SPHINX": -6.648985, "SPHINX_MAKE": -5.262690, "STATUS": -5.039547, "STREQUAL": -5.955837, "STRING": -5.550372, "TARGETS": -6.648985, "TRUE": -6.648985, "TRY_COMPILE": -6.648985, "VALA_C": -5.955837, "VARIABLE": -4.703074, "VERSION": -5.039547, "Vala": -6.648985, "ValaPrecompile": -6.648985, "ValaVersion": -6.648985, "WIN": -5.550372, "WORKING_DIRECTORY": -5.955837, "X": -6.648985, "\\": -4.251089, "add_custom_command": -6.648985, "add_definitions": -5.955837, "add_executable": -5.262690, "add_subdirectory": -6.648985, "bar": -6.648985, "bar.c": -6.648985, "baz.c": -6.648985, "bin": -6.648985, "build.exe": -6.648985, "cmake_minimum_required": -5.262690, "debug": -6.648985, "def": -5.550372, "default": -6.648985, "direct.h": -6.648985, "doc_dev": -6.648985, "doc_usr": -6.648985, "enable_testing": -6.648985, "ensure_vala_version": -6.648985, "file": -4.703074, "files": -5.550372, "find_library": -6.648985, "find_package": -5.262690, "foo": -5.039547, "foo.c": -5.955837, "gen": -6.648985, "gobject": -6.648985, "html": -5.955837, "in": -6.648985, "include": -5.955837, "include_directories": -5.955837, "includes": -5.955837, "install": -6.648985, "io.h": -6.648985, "it": -6.648985, "line": -6.648985, "link_directories": -5.955837, "link_libraries": -6.648985, "list": -6.648985, "mac": -6.648985, "make": -6.648985, "make.bat": -6.648985, "needed": -6.648985, "on": -6.648985, "only": -6.648985, "os": -6.648985, "pkg_check_modules": -6.648985, "probem": -6.648985, "project": -5.550372, "pthread": -6.648985, "rm_out": -6.648985, "rm_retval": -6.648985, "s": -6.648985, "seems": -6.648985, "set": -4.857225, "solve": -6.648985, "some": -6.648985, "sphinx": -6.648985, "src/template.vala": -6.648985, "ssl": -6.648985, "ssl_LIBRARY": -5.955837, "sys/timeb.h": -6.648985, "target_link_libraries": -5.262690, "template": -6.648985, "this": -6.648985, "thread": -6.648985, "to": -6.648985, "unistd.h": -6.648985, "vala_precompile": -6.648985, "ver.c": -6.648985, "windows.h": -6.648985, "x": -6.648985, "{": -2.820343, "}": -2.820343, }, "COBOL": map[string]float64{ "(": -2.890372, ")": -2.890372, "-": -1.555371, ".": -3.401197, "COBOL": -2.553900, "COMP": -2.553900, "COMP.": -3.401197, "DISPLAY": -3.806662, "DIVISION.": -3.113515, "ID.": -3.806662, "IDENTIFICATION": -3.806662, "PIC": -2.890372, "PROCEDURE": -3.806662, "PROGRAM": -3.806662, "RECORD.": -4.499810, "RUN.": -3.806662, "S": -3.113515, "STOP": -3.806662, "TEST": -3.806662, "USAGES.": -4.499810, "display": -4.499810, "division.": -4.499810, "hello.": -3.401197, "id.": -4.499810, "procedure": -4.499810, "program": -4.499810, "run.": -4.499810, "stop": -4.499810, }, "CSON": map[string]float64{ "$": -3.984860, "(": -4.795791, ")": -4.572647, "+": -6.182085, ",": -3.879500, "-": -5.488938, ".": -5.488938, ".atom": -6.182085, ".bundle": -6.182085, ".cache": -6.182085, ".dropbox": -6.182085, ".git": -6.182085, ".github": -6.182085, ".meteor": -6.182085, "/": -3.409496, "/ActionScript": -6.182085, "/i": -5.083473, ":": -0.909085, "<|>": -6.182085, "?": -4.572647, "ABAP": -6.182085, "ActionScript": -6.182085, "Atom": -6.182085, "Bower": -6.182085, "Dropbox": -5.488938, "Git": -6.182085, "GitHub": -6.182085, "Meteor": -6.182085, "NodeJS": -6.182085, "Package": -6.182085, "TextMate": -6.182085, "[": -3.409496, "\\": -3.784190, "]": -3.409496, "^": -4.102643, "_": -6.182085, "actionscript": -6.182085, "address": -6.182085, "alias": -6.182085, "as": -6.182085, "begin": -4.795791, "beginCaptures": -5.083473, "bower": -6.182085, "captures": -6.182085, "colour": -4.572647, "components": -6.182085, "config": -6.182085, "contentName": -6.182085, "copyright": -6.182085, "d": -6.182085, "directoryIcons": -6.182085, "end": -5.083473, "endCaptures": -5.488938, "fileIcons": -6.182085, "fileTypes": -6.182085, "firstLineMatch": -6.182085, "flex": -6.182085, "freeform": -6.182085, "highlight": -6.182085, "icon": -3.784190, "image": -6.182085, "in": -6.182085, "include": -3.409496, "main": -6.182085, "match": -3.409496, "name": -3.291713, "node_modules": -6.182085, "numbers": -6.182085, "patterns": -4.390325, "pickleData": -6.182085, "private": -6.182085, "property": -6.182085, "punctuation": -6.182085, "repository": -6.182085, "s": -6.182085, "scope": -5.488938, "scopeName": -6.182085, "strings": -5.488938, "t": -6.182085, "years/version": -6.182085, "{": -3.291713, "|": -5.083473, "}": -3.291713, }, "CSS": map[string]float64{ "!": -9.207311, "#": -4.713072, "#a": -9.207311, "#ad": -10.593605, "#b": -7.954548, "#bce": -9.900458, "#bd": -7.649166, "#bfbfbf": -9.494993, "#c": -7.760392, "#ccc": -8.514164, "#cccccc": -8.195710, "#d": -7.821016, "#da": -9.900458, "#dbc": -9.494993, "#dd": -10.593605, "#ddd": -6.956019, "#dddddd": -8.108698, "#df": -9.900458, "#dff": -9.207311, "#e": -6.956019, "#ebcccc": -10.593605, "#ebebeb": -10.593605, "#ededed": -9.900458, "#ee": -7.760392, "#eed": -9.900458, "#eeeeee": -7.374729, "#f": -6.174765, "#faa": -9.900458, "#faf": -10.593605, "#fafafa": -9.900458, "#fbb": -8.195710, "#fbeed": -9.900458, "#fcf": -9.207311, "#fcfcfc": -10.593605, "#fff": -8.396381, "#ffffff": -5.988435, "#map_canvas": -10.593605, "%": -5.596393, "(": -4.423994, ")": -4.434510, "*": -10.593605, "*background": -7.297768, "*border": -8.647695, "*display": -7.885555, "*margin": -6.880033, "*overflow": -9.900458, "*padding": -7.067245, "*position": -9.900458, "*width": -7.954548, "*z": -9.900458, "*zoom": -7.010086, "+": -6.403950, ",": -2.977322, "-": -1.758686, ".": -5.949214, ".active": -6.199156, ".add": -7.703233, ".alert": -7.067245, ".arrow": -8.108698, ".badge": -7.885555, ".bar": -7.502563, ".brand": -8.291020, ".breadcrumb": -8.514164, ".btn": -4.520561, ".btn.active": -8.514164, ".btn.btn": -8.801846, ".btn.disabled": -9.207311, ".btn.dropdown": -9.900458, ".btn.large": -9.207311, ".caption": -9.900458, ".caret": -6.533162, ".checkbox": -7.954548, ".checkbox.inline": -9.494993, ".clearfix": -8.514164, ".close": -9.900458, ".container": -7.597873, ".control": -6.276117, ".controls": -7.954548, ".disabled": -7.502563, ".divider": -8.647695, ".dl": -8.801846, ".dropdown": -6.061006, ".dropdown.active": -9.207311, ".dropup": -9.900458, ".form": -6.403950, ".google": -10.593605, ".help": -7.502563, ".hero": -9.494993, ".hide": -8.647695, ".icon": -4.941116, ".img": -9.494993, ".input": -5.831431, ".ir": -10.593605, ".label": -7.885555, ".large.dropdown": -9.900458, ".lead": -10.593605, ".media": -8.195710, ".modal": -8.984167, ".muted": -10.593605, ".nav": -4.980477, ".nav.pull": -9.900458, ".navbar": -5.056271, ".next": -9.207311, ".offset": -7.010086, ".open": -8.514164, ".page": -10.593605, ".pager": -7.067245, ".pagination": -6.236896, ".pill": -8.801846, ".popover": -8.108698, ".popover.bottom": -9.494993, ".popover.left": -9.494993, ".popover.right": -9.494993, ".popover.top": -9.494993, ".pre": -10.593605, ".previous": -9.207311, ".progress": -7.502563, ".progress.active": -10.593605, ".pull": -8.291020, ".radio": -7.954548, ".radio.inline": -9.494993, ".row": -6.434722, ".search": -8.108698, ".span": -7.415551, ".tab": -8.514164, ".tabbable": -8.514164, ".table": -6.093795, ".tabs": -6.466471, ".text": -8.647695, ".thumbnail": -8.801846, ".thumbnails": -8.108698, ".tooltip": -8.647695, ".tooltip.bottom": -9.900458, ".tooltip.in": -10.593605, ".tooltip.left": -9.900458, ".tooltip.right": -9.900458, ".tooltip.top": -9.900458, ".uneditable": -6.904726, "/": -9.900458, ":": -2.342202, ";": -2.530542, "=": -4.951698, ">": -3.976202, "@": -8.514164, "@keyframes": -9.900458, "@media": -10.593605, "Arial": -9.494993, "Consolas": -10.593605, "DXImageTransform.Microsoft.gradient": -6.956019, "GradientType": -7.415551, "Helvetica": -9.494993, "Menlo": -10.593605, "Monaco": -10.593605, "[": -5.117142, "\\": -7.649166, "]": -5.117142, "^": -7.261401, "a": -4.899873, "a.badge": -9.900458, "a.label": -9.900458, "a.muted": -9.900458, "a.text": -8.514164, "a.thumbnail": -9.207311, "ab": -9.494993, "aba": -9.494993, "abbr": -9.494993, "abbr.initialism": -10.593605, "absolute": -8.801846, "actions": -8.984167, "active": -6.956019, "ad": -8.195710, "address": -10.593605, "adjust": -8.801846, "afcd": -9.900458, "after": -6.403950, "align": -6.722404, "all": -8.396381, "allowed": -9.900458, "alpha": -8.647695, "alt": -8.801846, "animation": -8.984167, "appearance": -9.494993, "append": -6.434722, "arrow": -7.549083, "article": -9.900458, "aside": -9.900458, "asterisk": -9.900458, "attr": -9.900458, "audio": -9.207311, "auto": -7.127869, "avoid": -9.900458, "b": -6.568253, "backdrop": -9.900458, "backdrop.fade": -10.593605, "backdrop.fade.in": -10.593605, "background": -4.121259, "backward": -8.801846, "ban": -9.900458, "bar": -7.703233, "barcode": -9.900458, "baseline": -9.494993, "bb": -8.514164, "bc": -7.821016, "bdf": -8.195710, "be": -8.291020, "before": -7.127869, "bell": -9.900458, "below": -7.703233, "bicubic": -10.593605, "block": -6.008638, "blockquote": -8.647695, "blockquote.pull": -8.984167, "body": -10.593605, "bold": -8.396381, "book": -9.900458, "bookmark": -9.900458, "border": -4.024124, "bordered": -6.956019, "both": -7.502563, "bottom": -5.072144, "bottomleft": -7.954548, "bottomright": -7.954548, "box": -5.315490, "break": -8.984167, "briefcase": -9.900458, "bullhorn": -9.900458, "button": -8.396381, "button.btn": -9.207311, "button.btn.btn": -8.801846, "c": -7.458111, "calendar": -9.900458, "camera": -9.900458, "cancel": -10.593605, "canvas": -9.900458, "caption": -8.396381, "cart": -9.900458, "cc": -6.832405, "cell": -10.593605, "center": -8.028656, "centered": -9.900458, "certificate": -9.900458, "cf": -10.593605, "check": -9.900458, "chevron": -8.514164, "child": -5.400648, "circle": -7.760392, "cite": -10.593605, "class": -7.335509, "class*": -6.450470, "clear": -7.458111, "clip": -9.494993, "close": -9.207311, "code": -9.494993, "cog": -9.900458, "colgroup": -8.396381, "collapse": -8.801846, "collapse.collapse": -9.900458, "color": -4.387029, "comment": -9.900458, "condensed": -9.900458, "content": -6.764964, "controls": -9.900458, "cursor": -7.458111, "d": -7.374729, "danger": -7.821016, "danger.active": -9.207311, "danger.disabled": -10.593605, "danger.dropdown": -9.900458, "danger.progress": -10.593605, "data": -10.593605, "dba": -10.593605, "dcc": -9.900458, "dd": -9.494993, "de": -7.821016, "decoration": -7.261401, "dede": -9.207311, "default": -8.108698, "details": -9.900458, "disabled": -7.297768, "display": -5.978485, "dl": -10.593605, "dotted": -8.647695, "down": -8.108698, "download": -9.207311, "dt": -9.494993, "e": -6.061006, "ease": -8.108698, "eb": -10.593605, "edf": -9.207311, "edit": -9.900458, "eject": -9.900458, "ellipsis": -10.593605, "em": -8.195710, "empty": -8.984167, "enabled": -7.954548, "endColorstr": -7.415551, "envelope": -9.900458, "error": -8.647695, "exclamation": -9.900458, "eye": -9.207311, "facetime": -9.900458, "false": -7.954548, "family": -8.984167, "fast": -9.207311, "fieldset": -10.593605, "figcaption": -9.900458, "figure": -9.900458, "file": -9.900458, "film": -9.900458, "filter": -6.743458, "fire": -9.900458, "first": -5.939645, "fixed": -7.127869, "flag": -9.900458, "float": -6.482731, "fluid": -6.434722, "focus": -5.506009, "folder": -9.207311, "font": -6.029257, "footer": -9.900458, "form": -6.982687, "forward": -8.801846, "from": -7.067245, "full": -9.900458, "fullscreen": -9.900458, "gift": -9.900458, "glass": -9.900458, "globe": -9.900458, "gradient": -5.765291, "group": -5.988435, "group.error": -7.821016, "group.info": -7.821016, "group.open": -7.703233, "group.success": -7.821016, "group.warning": -7.821016, "h": -6.956019, "hand": -8.514164, "hdd": -9.900458, "header": -8.291020, "heading": -10.593605, "headphones": -9.900458, "heart": -9.900458, "height": -5.998485, "help": -10.593605, "hgroup": -9.900458, "hidden": -8.647695, "home": -9.900458, "horizontal": -7.159618, "hover": -5.866217, "hr": -10.593605, "href": -7.954548, "html": -9.494993, "image": -5.673624, "img": -8.291020, "important": -8.514164, "in": -8.291020, "inbox": -9.900458, "indent": -9.207311, "index": -8.028656, "infinite": -8.984167, "info": -7.374729, "info.active": -9.207311, "info.disabled": -10.593605, "info.dropdown": -9.900458, "info.progress": -10.593605, "inherit": -8.984167, "inline": -6.303146, "inner": -7.067245, "input": -5.384119, "input.search": -10.593605, "input.span": -7.415551, "inset": -6.061006, "inside": -9.900458, "interpolation": -10.593605, "invalid": -8.801846, "inverse": -6.330925, "inverse.active": -8.801846, "inverse.disabled": -9.900458, "inverse.dropdown": -9.900458, "italic": -9.494993, "justify": -9.900458, "keyframes": -8.514164, "label": -8.291020, "large": -6.930044, "last": -6.303146, "le": -10.593605, "leaf": -9.900458, "left": -4.744280, "legend": -9.494993, "letter": -10.593605, "level": -9.900458, "li": -5.373249, "li.dropdown": -8.801846, "li.dropdown.active": -9.207311, "li.dropdown.open": -8.291020, "li.dropdown.open.active": -8.291020, "line": -6.388913, "linear": -5.609999, "link": -7.374729, "list": -6.855936, "lock": -9.900458, "magnet": -9.900458, "map": -9.900458, "maps": -10.593605, "margin": -4.873293, "marker": -9.900458, "max": -8.028656, "medium": -10.593605, "menu": -7.192408, "menu.pull": -9.207311, "middle": -8.195710, "min": -8.291020, "mini": -7.159618, "minus": -9.207311, "mode": -10.593605, "monospace": -10.593605, "move": -9.900458, "moz": -5.096437, "ms": -8.396381, "multiple": -10.593605, "music": -9.900458, "nav": -9.900458, "navbar": -7.597873, "navbar.active": -8.801846, "navbar.disabled": -9.494993, "no": -9.900458, "none": -5.998485, "normal": -8.195710, "not": -9.207311, "nowrap": -8.396381, "nth": -9.900458, "o": -7.067245, "object": -10.593605, "odd": -9.900458, "off": -9.207311, "offset": -8.984167, "ok": -8.801846, "ol": -8.984167, "ol.inline": -9.900458, "ol.unstyled": -10.593605, "on": -7.703233, "opacity": -7.885555, "open": -9.207311, "optimizelegibility": -10.593605, "original": -10.593605, "out": -8.291020, "outline": -7.415551, "overflow": -7.821016, "p": -8.396381, "padding": -5.688330, "page": -9.900458, "pane": -9.207311, "pause": -9.900458, "pencil": -9.900458, "picture": -9.900458, "pills": -7.261401, "pills.nav": -9.207311, "placeholder": -8.396381, "plane": -9.900458, "play": -9.207311, "plus": -9.207311, "pointer": -8.514164, "polaroid": -10.593605, "position": -4.770559, "pre": -8.514164, "pre.prettyprint": -10.593605, "prepend": -6.786943, "prepend.input": -8.195710, "primary": -8.396381, "primary.active": -9.207311, "primary.disabled": -10.593605, "primary.dropdown": -9.900458, "print": -9.494993, "progid": -6.956019, "progress": -7.885555, "px": -2.973881, "q": -9.900458, "qrcode": -9.900458, "query": -8.108698, "query.focused": -10.593605, "question": -9.900458, "radius": -4.525180, "random": -9.900458, "readonly": -8.984167, "refresh": -9.900458, "relative": -7.821016, "remove": -8.801846, "rendering": -10.593605, "repeat": -6.604621, "resize": -8.514164, "retweet": -9.900458, "rgba": -5.072144, "right": -5.251271, "ring": -8.984167, "road": -9.900458, "rounded": -10.593605, "row": -8.291020, "s": -7.097098, "sans": -9.494993, "screenshot": -9.900458, "scroll": -10.593605, "scrollable": -10.593605, "search": -7.010086, "section": -9.900458, "select": -6.743458, "separate": -9.900458, "serif": -9.494993, "shadow": -5.357163, "share": -9.207311, "shopping": -9.900458, "sign": -7.821016, "signal": -9.900458, "size": -6.330925, "sizing": -7.549083, "small": -6.722404, "solid": -6.419218, "space": -7.954548, "spacing": -9.900458, "span": -6.956019, "stacked": -7.415551, "star": -9.207311, "startColorstr": -7.415551, "static": -8.028656, "step": -9.207311, "stop": -9.900458, "striped": -8.195710, "stripes": -7.885555, "strong": -10.593605, "style": -7.821016, "sub": -9.207311, "submenu": -8.514164, "success": -7.297768, "success.active": -8.801846, "success.disabled": -9.900458, "success.dropdown": -9.900458, "success.progress": -10.593605, "sup": -9.207311, "table": -7.226309, "tabs": -6.050310, "tabs.nav": -8.108698, "tag": -9.900458, "tags": -9.900458, "tasks": -9.900458, "tbody": -7.067245, "td": -7.097098, "td.span": -8.108698, "text": -5.968632, "textarea": -6.956019, "textarea.span": -8.108698, "textfield": -10.593605, "tfoot": -8.801846, "th": -6.956019, "th.span": -8.108698, "thead": -7.649166, "thin": -8.801846, "thumbs": -9.207311, "time": -9.900458, "tint": -9.900458, "title": -8.801846, "to": -6.533162, "toggle": -6.388913, "toolbar": -8.514164, "top": -4.853812, "topleft": -7.954548, "topright": -7.954548, "tr": -6.764964, "tr.error": -9.900458, "tr.info": -9.900458, "tr.success": -9.900458, "tr.warning": -9.900458, "transform": -9.494993, "transition": -7.261401, "transparent": -6.930044, "trash": -9.900458, "type": -6.008638, "ul": -6.224157, "ul.inline": -9.900458, "ul.unstyled": -10.593605, "underline": -9.207311, "unit": -9.494993, "up": -8.108698, "upload": -9.900458, "uppercase": -9.494993, "url": -9.207311, "user": -9.900458, "vertical": -6.904726, "video": -9.207311, "visibility": -10.593605, "visible": -8.647695, "visited": -10.593605, "volume": -8.801846, "warning": -7.374729, "warning.active": -8.801846, "warning.disabled": -9.900458, "warning.dropdown": -9.900458, "warning.progress": -10.593605, "webki": -10.593605, "webkit": -4.958816, "weight": -7.703233, "white": -7.821016, "width": -5.637778, "word": -9.494993, "wrap": -9.494993, "wrench": -9.900458, "x": -7.415551, "xlarge": -10.593605, "xxlarge": -10.593605, "y": -10.593605, "z": -8.195710, "zoom": -8.984167, "{": -3.426567, "}": -3.433536, }, "CSV": map[string]float64{ ",": -0.635989, "Cougar": -2.833213, "E": -2.833213, "Ford": -2.833213, "Length": -2.833213, "Make": -2.833213, "Mercury": -2.833213, "Model": -2.833213, "Year": -2.833213, }, "CWeb": map[string]float64{ "!": -6.034285, "\"": -7.420579, "#": -7.420579, "#include": -6.727432, "$": -3.894218, "%": -4.935672, "&": -5.811141, "&&": -6.727432, "(": -2.592265, ")": -2.584297, "*": -7.420579, "+": -3.757017, ",": -1.782224, "-": -4.935672, ".": -5.474669, ".*": -7.420579, "..": -7.420579, "/": -7.420579, "0": -7.420579, "1": -5.811141, "5": -7.420579, ":": -6.727432, ";": -3.413246, "<": -6.034285, "<<": -5.474669, "<If>": -6.727432, "<Input>": -6.727432, "<Process>": -6.727432, "<Set>": -6.727432, "<Sub...@>": -5.223354, "<Subroutines@>": -7.420579, "<clauseptr;p++)>": -7.420579, "<stdio.h>": -7.420579, "<stdlib.h>": -7.420579, "<xmin)>": -7.420579, "<xmin>": -6.727432, "<ymin)>": -7.420579, "<ymin>": -6.727432, "=": -3.707007, ">": -6.727432, "@": -5.022684, "@*Index.": -7.420579, "@*Intro.": -7.420579, "@c": -7.420579, "@d": -6.034285, "A": -7.420579, "And": -7.420579, "Conway": -7.420579, "For": -7.420579, "Fortunately": -7.420579, "I": -6.727432, "If": -6.727432, "No": -7.420579, "SAT": -7.420579, "Slight": -7.420579, "The": -6.321967, "This": -7.420579, "Unexpected": -7.420579, "[": -4.201703, "\\": -4.781522, "]": -4.201703, "^": -7.420579, "`": -6.727432, "a": -7.420579, "a_": -5.628819, "actually": -7.420579, "always": -7.420579, "and": -5.811141, "applit": -3.986592, "are": -7.420579, "at": -6.321967, "avoid": -7.420579, "b": -6.727432, "bar": -6.321967, "be": -6.321967, "before.": -7.420579, "buf": -6.727432, "by": -6.321967, "c": -5.022684, "can": -6.321967, "cell": -7.420579, "cells": -7.420579, "char": -5.628819, "character": -7.420579, "clause": -5.628819, "clauseptr": -6.034285, "clauses": -6.034285, "command": -6.727432, "continue": -6.727432, "counting": -7.420579, "d": -5.022684, "d_k": -7.420579, "datethis": -7.420579, "dead": -6.321967, "define": -7.420579, "defined": -6.727432, "determined": -7.420579, "done": -6.727432, "dx": -7.420579, "e": -6.034285, "each": -7.420579, "else": -6.727432, "equal": -6.727432, "essentially": -7.420579, "example": -7.420579, "exit": -7.420579, "f": -6.034285, "fashion.": -7.420579, "five": -7.420579, "for": -6.034285, "found": -6.727432, "four": -7.420579, "fprintf": -7.420579, "from": -6.321967, "g": -6.034285, "generate": -7.420579, "generated.": -7.420579, "generates": -7.420579, "generating": -7.420579, "goto": -7.420579, "guaranteed": -7.420579, "half": -7.420579, "handled": -7.420579, "handles": -7.420579, "has": -6.727432, "have_b": -6.321967, "have_d": -6.321967, "have_e": -6.321967, "have_f": -7.420579, "here": -7.420579, "here.": -7.420579, "if": -4.647990, "in": -5.474669, "instead": -7.420579, "int": -5.022684, "is": -5.474669, "it": -6.727432, "j": -5.022684, "k": -4.712529, "last": -7.420579, "line": -6.321967, "lines": -7.420579, "live": -7.420579, "maxx": -5.474669, "maxy": -5.474669, "mc": -7.420579, "more": -7.420579, "n": -6.034285, "neighbors": -6.727432, "newcomplit": -4.712529, "newlit": -4.712529, "next": -7.420579, "not": -6.727432, "obviously": -6.727432, "odd": -7.420579, "of": -5.474669, "one": -7.420579, "or": -6.727432, "order": -7.420579, "other": -7.420579, "otherwise": -7.420579, "outclause": -4.242525, "outline": -7.420579, "overall": -7.420579, "overlap": -7.420579, "p": -5.474669, "pattern": -5.811141, "possible": -7.420579, "pp": -7.420579, "problematic.": -7.420579, "program": -7.420579, "program.": -7.420579, "quad": -6.727432, "range": -7.420579, "register": -6.034285, "relation": -7.420579, "representing": -7.420579, "rows": -7.420579, "rules": -7.420579, "s": -5.341137, "same": -7.420579, "saving": -7.420579, "seen": -7.420579, "set": -6.727432, "shared": -7.420579, "sharing": -7.420579, "sign": -6.727432, "similar": -7.420579, "since": -7.420579, "six": -7.420579, "sixteen": -7.420579, "specified": -7.420579, "state": -7.420579, "states": -7.420579, "stderr": -7.420579, "stdin": -7.420579, "stick": -7.420579, "subroutine": -6.321967, "t": -5.628819, "taut": -6.727432, "that": -7.420579, "the": -4.712529, "these": -7.420579, "thus": -6.727432, "time": -5.811141, "timecode": -7.420579, "to": -5.628819, "transition": -7.420579, "trick": -7.420579, "tt": -5.474669, "twice.": -7.420579, "unshared": -7.420579, "ve": -7.420579, "void": -6.034285, "we": -7.420579, "where": -7.420579, "which": -7.420579, "will": -7.420579, "with": -7.420579, "working": -7.420579, "x": -2.866702, "x1": -7.420579, "xmax": -7.420579, "xmin": -7.420579, "xx": -5.223354, "y": -2.966232, "y1": -7.420579, "ymax": -6.321967, "ymin": -6.321967, "yy": -4.242525, "z": -5.628819, "zprime": -7.420579, "{": -5.117994, "|": -3.954843, "}": -4.935672, "~": -5.811141, }, "CartoCSS": map[string]float64{ "!": -7.484088, "#": -5.980010, "#aa": -9.563529, "#ac": -9.563529, "#aea": -9.563529, "#d": -8.464917, "#da": -8.870382, "%": -5.802329, "(": -4.387380, ")": -4.387380, ",": -3.918082, "-": -1.720858, ".amenity": -9.563529, ".points": -9.563529, ".text": -8.870382, ":": -2.533556, ";": -2.568679, "<": -8.464917, "=": -3.242761, ">": -3.417200, "@airtransport": -7.954091, "@allotments": -9.563529, "@apron": -9.563529, "@barracks": -9.563529, "@beach": -9.563529, "@bold": -7.954091, "@book": -6.097793, "@campsite": -9.563529, "@cemetery": -9.563529, "@commercial": -9.563529, "@construction": -9.563529, "@danger_area": -9.563529, "@desert": -9.563529, "@farmland": -9.563529, "@farmyard": -9.563529, "@field": -9.563529, "@forest": -9.563529, "@garages": -9.563529, "@glacier": -9.563529, "@grass": -9.563529, "@grassland": -9.563529, "@heath": -9.563529, "@industrial": -9.563529, "@landcover": -3.820526, "@marina": -8.464917, "@military": -9.563529, "@mud": -8.870382, "@oblique": -7.484088, "@park": -8.464917, "@pitch": -9.563529, "@power": -9.563529, "@quarry": -9.563529, "@residential": -9.563529, "@rest_area": -9.563529, "@retail": -9.563529, "@sand": -9.563529, "@school": -8.464917, "@scrub": -9.563529, "@shop": -7.771770, "@stadium": -9.563529, "@standard": -5.980010, "@theme_park": -9.563529, "@track": -9.563529, "@transportation": -7.771770, "@vineyard": -9.563529, "@water": -9.563529, "@wetland": -8.870382, "@wood": -9.563529, "@zoo": -9.563529, "C": -9.563529, "[": -2.899120, "]": -2.899120, "a": -7.260944, "ab": -9.563529, "ac": -9.563529, "access": -7.771770, "aeroway": -8.177235, "barrier": -7.771770, "big": -5.063720, "bigger": -5.063720, "black": -9.563529, "brown": -7.617619, "c": -8.464917, "cc": -7.617619, "ccaf": -9.563529, "clip": -6.855479, "color": -9.563529, "d": -9.563529, "da": -9.563529, "darken": -5.802329, "ddf": -9.563529, "denomination": -9.563529, "dy": -5.802329, "ef": -9.563529, "ele/text": -6.162332, "face": -4.719342, "false": -6.855479, "feature": -4.156357, "file": -5.041741, "fill": -4.586796, "font": -4.658254, "fonts": -5.756867, "halo": -4.719342, "highway": -8.870382, "icon": -7.366305, "ignore": -9.563529, "interior": -4.451541, "is_building": -5.373875, "line": -7.771770, "low": -8.870382, "man_made": -8.464917, "marker": -4.988818, "name": -4.197553, "natural": -7.771770, "opacity": -9.563529, "placement": -4.445535, "point": -4.727247, "power": -8.870382, "power_source": -9.563529, "priority": -9.563529, "radius": -5.120878, "railway": -8.870382, "religion": -7.484088, "rgba": -5.825860, "size": -3.463210, "text": -2.836098, "true": -9.563529, "url": -5.041741, "way_area": -7.260944, "way_pixels": -4.151883, "width": -3.697061, "wrap": -3.734584, "zoom": -4.095469, "{": -3.499744, "}": -3.499744, }, "Ceylon": map[string]float64{ "(": -2.341806, ")": -2.341806, ";": -2.564949, "<": -3.951244, "<Test>": -3.951244, "=": -3.258097, ">": -3.951244, "Comparable": -3.951244, "Comparison": -3.951244, "String": -3.258097, "Test": -3.258097, "actual": -3.258097, "by": -3.951244, "class": -3.951244, "compare": -3.951244, "name": -2.852631, "other": -3.951244, "other.name": -3.951244, "print": -3.951244, "return": -3.951244, "satisfies": -3.951244, "shared": -2.341806, "string": -3.951244, "test": -3.951244, "void": -3.951244, "{": -2.852631, "}": -2.852631, }, "Chapel": map[string]float64{ "!": -7.506042, "#nl": -7.506042, "#numLocales": -8.892337, "&": -6.407430, "&&": -7.100577, "(": -2.733241, ")": -2.729022, "*": -3.792470, "**": -7.100577, "*nl": -8.892337, "*real": -5.154667, "*y": -7.793724, "*z": -7.793724, "+": -3.774343, ",": -2.586061, "-": -3.391078, ".": -6.695112, ".add": -8.892337, ".peek": -7.793724, ".read": -8.892337, ".size": -8.199189, "/": -6.407430, "//calculated": -8.892337, "//don": -8.892337, "//get": -8.199189, "//impossible": -8.892337, "//relative": -8.892337, "//results": -8.892337, "//set": -8.892337, "//volume": -8.892337, "//wish": -8.892337, "/cycle": -8.892337, ":": -4.088315, ";": -3.093244, "<": -5.634240, "<<": -8.199189, "<paramName>": -8.892337, "<value>": -8.892337, "=": -3.060454, ">": -6.695112, "?": -7.100577, "A": -6.494441, "AreaFace": -6.946426, "BA": -8.199189, "BCA": -7.506042, "BlkCycSpace": -8.892337, "BlockCyclicDim": -8.892337, "BlockDist": -8.892337, "BlockSpace": -8.892337, "CalcElemCharacteristicLength": -8.199189, "CalcElemFBHourglassForce": -8.892337, "CalcElemNodeNormals": -8.892337, "CalcElemShapeFunctionDerivatives": -8.199189, "CalcElemVelocityGradient": -8.199189, "CalcElemVolume": -7.793724, "CalcElemVolumeDerivative": -8.892337, "CalcKinematicsForElems": -8.199189, "CalcLagrangeElements": -8.892337, "CalcMonotonicQForElems": -8.892337, "CalcMonotonicQGradientsForElems": -8.892337, "CalcPositionForNodes": -8.892337, "CalcPressureForElems": -8.892337, "CalcQForElems": -8.892337, "CalcSoundSpeedForElems": -8.892337, "CalcVelocityForNodes": -8.892337, "D": -6.327387, "D.dim": -8.199189, "DRBA": -7.793724, "DRepresentation": -8.199189, "DTo": -8.199189, "Data": -8.199189, "Data.localSubdomains": -8.892337, "DimReplicatedBlockcyclicSpace": -8.199189, "DimensionalDist": -8.892337, "ETA_M_FREE": -8.892337, "ETA_M_SYMM": -8.199189, "ETA_P_FREE": -8.892337, "ETA_P_SYMM": -8.892337, "ElemFaceNormal": -6.946426, "Elems": -5.458349, "Elems.type": -8.892337, "Helper": -8.199189, "InitStressTermsForElems": -8.892337, "L": -7.793724, "L.id": -8.892337, "LagrangeLeapFrog": -8.892337, "LocaleSpace.high": -8.199189, "Locales": -7.282899, "ML": -8.892337, "MatElems": -8.892337, "MatElemsType": -8.199189, "MyLocaleView": -7.282899, "MyLocales": -7.506042, "Nodes": -6.253279, "RA": -6.494441, "RA.numElements": -8.892337, "Random": -8.892337, "ReplicatedDim": -8.892337, "ReplicatedSpace": -8.892337, "Space": -8.199189, "Space.low": -7.793724, "SumElemStressesToNodeForces": -8.892337, "Time": -8.199189, "TimeIncrement": -8.199189, "Timer": -8.892337, "TripleProduct": -7.506042, "VoluDer": -6.695112, "XI_M_FREE": -8.892337, "XI_M_SYMM": -8.199189, "XI_P_FREE": -8.892337, "XI_P_SYMM": -8.892337, "XSym": -7.506042, "YSym": -7.506042, "ZETA_M_FREE": -8.892337, "ZETA_M_SYMM": -8.199189, "ZETA_P_FREE": -8.892337, "ZETA_P_SYMM": -8.892337, "ZSym": -7.506042, "[": -2.395562, "]": -2.395562, "able": -8.892337, "abs": -7.282899, "advance": -8.892337, "and": -8.199189, "area": -8.199189, "areaX": -7.282899, "areaY": -7.282899, "areaZ": -7.282899, "arealg": -8.199189, "arr": -5.491139, "arr.domain.high": -8.892337, "arr.domain.low": -8.892337, "arr.rank": -8.892337, "arrays": -7.506042, "as": -8.892337, "atomic": -7.282899, "b": -8.199189, "b_x": -6.001965, "b_y": -6.001965, "b_z": -6.001965, "ba": -8.892337, "bca": -8.199189, "be": -8.892337, "bisectX": -7.100577, "bisectY": -7.100577, "bisectZ": -7.100577, "blockSize": -8.892337, "blocksize": -8.892337, "bool": -8.892337, "bubbleSort": -8.892337, "bvc": -7.100577, "c": -7.793724, "calculations": -8.892337, "can": -8.892337, "charLength": -8.199189, "characteristic": -8.892337, "check": -8.199189, "cjxet": -7.100577, "cjxxi": -7.282899, "cjxze": -7.282899, "cjyet": -7.100577, "cjyxi": -7.282899, "cjyze": -7.282899, "cjzet": -7.100577, "cjzxi": -7.282899, "cjzze": -7.282899, "coefficient": -7.506042, "compression": -8.199189, "config": -7.282899, "const": -5.596500, "coordinates": -8.892337, "copy": -8.199189, "cycle": -7.282899, "d": -6.407430, "daysPerYear": -8.892337, "debug": -7.100577, "deltatime": -7.793724, "deltatimemultlb": -8.892337, "deltatimemultub": -8.892337, "delv": -8.199189, "delv_eta": -7.793724, "delv_xi": -7.793724, "delv_zeta": -7.793724, "delvc": -8.892337, "delx_eta": -7.793724, "delx_xi": -7.793724, "delx_zeta": -7.793724, "deprint": -7.793724, "deprintatomic": -8.199189, "detJ": -7.282899, "determ": -8.892337, "dmapped": -8.892337, "do": -5.308818, "doTiming": -7.793724, "drba": -8.199189, "dt": -6.253279, "dtcourant": -8.892337, "dtfixed": -8.199189, "dthydro": -8.892337, "dtmax": -8.892337, "dvdx": -6.589751, "dvdy": -6.589751, "dvdz": -6.589751, "dvovmax": -8.892337, "dx": -5.714283, "dxddy": -8.199189, "dxddz": -8.199189, "dxx": -7.100577, "dy": -5.714283, "dyddx": -8.199189, "dyddz": -8.199189, "dyy": -7.100577, "dz": -5.714283, "dzddx": -8.199189, "dzddy": -8.199189, "dzz": -7.100577, "e": -5.596500, "e_cut": -8.892337, "e_new": -8.892337, "e_old": -8.199189, "elem": -8.199189, "elemBC": -6.253279, "elemMass": -7.793724, "elemToNode": -6.946426, "elemToNodes": -7.793724, "elemToNodesTuple": -8.892337, "eli": -6.946426, "else": -6.695112, "emin": -8.892337, "energy": -8.199189, "enewc": -8.199189, "enumerateMatElems": -8.199189, "eosvmax": -7.793724, "eosvmin": -8.892337, "et": -7.793724, "fjxet": -7.100577, "fjxxi": -7.282899, "fjxze": -7.282899, "fjyet": -7.100577, "fjyxi": -7.282899, "fjyze": -7.282899, "fjzet": -7.100577, "fjzxi": -7.282899, "fjzze": -7.282899, "fly": -8.892337, "fmtstr": -8.199189, "follows": -8.892337, "for": -5.634240, "forall": -5.801294, "freeSurface": -7.793724, "from": -8.199189, "fx": -6.695112, "fy": -6.695112, "fz": -6.695112, "getCurrentTime": -7.506042, "global": -8.199189, "gx": -7.282899, "gy": -7.282899, "gz": -7.282899, "halt": -7.282899, "have": -8.892337, "here": -7.793724, "here.id": -7.282899, "hgcoef": -8.892337, "hgfx": -8.199189, "hgfy": -8.199189, "hgfz": -8.199189, "high": -6.407430, "hourgam": -6.946426, "hx": -7.793724, "hy": -7.793724, "hz": -7.793724, "i": -4.064023, "idx": -8.199189, "if": -4.903352, "ihi": -7.100577, "ijk": -6.946426, "ilo": -6.695112, "in": -5.042189, "index": -7.506042, "indices": -8.199189, "initBoundaryConditions": -8.199189, "initCoordinates": -8.892337, "initElemToNodeMapping": -8.892337, "initFreeSurface": -8.892337, "initGreekVars": -8.892337, "initLulesh": -8.199189, "initMasses": -8.199189, "initSun": -8.892337, "initXSyms": -8.892337, "initYSyms": -8.892337, "initZSyms": -8.892337, "initialEnergy": -8.892337, "inline": -7.793724, "int": -6.119748, "into": -8.199189, "inv_detJ": -6.589751, "iomode.cw": -8.892337, "iter": -7.793724, "iterTime": -8.199189, "j": -5.947898, "k": -5.896604, "length": -8.892337, "letam": -8.199189, "letap": -8.199189, "loc": -7.793724, "locId": -8.199189, "local": -7.100577, "locale": -8.892337, "localizeNeighborNodes": -7.506042, "low": -6.589751, "low..high": -8.199189, "lowIdx": -8.892337, "luleshInit": -8.892337, "lxim": -8.199189, "lxip": -8.199189, "lzetam": -8.199189, "lzetap": -8.199189, "main": -8.892337, "mask": -6.119748, "mass": -7.282899, "massAccum": -7.793724, "max": -8.199189, "maxcycles": -7.793724, "mid": -6.946426, "monoq_limiter_mult": -8.892337, "monoq_max_slope": -8.892337, "n": -4.032524, "negative": -8.892337, "neighbor": -8.199189, "new": -8.199189, "nl": -7.506042, "nodal": -8.199189, "nodalMass": -7.793724, "nodesPerElem": -7.282899, "nodesPerElem*index": -8.892337, "noi": -7.506042, "numElems": -8.892337, "numLocales": -7.282899, "numLocales/": -8.892337, "o": -8.892337, "octantCorner": -8.199189, "on": -7.282899, "open": -8.892337, "outfile": -8.892337, "outfile.close": -8.892337, "outfile.writer": -8.892337, "ox": -8.892337, "ox/": -8.892337, "oy": -8.892337, "oy/": -8.892337, "oz": -8.892337, "oz/": -8.892337, "p": -5.365976, "p_cut": -7.793724, "p_new": -6.812895, "param": -6.253279, "partition": -8.892337, "pbvc": -7.282899, "pfx": -6.184286, "pfy": -6.184286, "pfz": -6.184286, "pi**": -8.892337, "pivotLoc": -7.793724, "pivotVal": -6.946426, "pmin": -7.506042, "pnewc": -8.199189, "pos": -8.892337, "pqsort": -7.793724, "printCoords": -8.892337, "printWarnings": -8.199189, "proc": -5.491139, "q": -7.100577, "q_cut": -8.199189, "q_new": -7.793724, "ql": -8.892337, "ql_old": -8.892337, "qlc_monoq": -8.892337, "qq": -8.892337, "qq_old": -8.892337, "qqc": -8.199189, "qqc**": -8.892337, "qqc_monoq": -8.892337, "qstop": -8.892337, "ra": -7.506042, "real": -4.980314, "ref": -6.059123, "refdens": -8.892337, "relativeVolume": -7.793724, "reshape": -8.199189, "return": -6.253279, "rho": -7.793724, "rx": -7.100577, "ry": -7.100577, "rz": -7.100577, "s": -7.793724, "showProgress": -8.199189, "shx": -7.793724, "shy": -7.793724, "shz": -7.793724, "sigxx": -8.199189, "sigyy": -8.199189, "sigzz": -8.199189, "solarMass": -8.892337, "sparse": -7.793724, "sqrt": -7.793724, "ss": -7.793724, "ssTmp": -7.506042, "ssc": -7.100577, "st": -7.506042, "stoptime": -7.793724, "stress_xx": -8.199189, "stress_yy": -8.199189, "stress_zz": -8.199189, "string": -8.199189, "subdomain": -7.793724, "surfaceNode": -6.812895, "t": -8.199189, "targetdt": -8.892337, "the": -8.892337, "then": -5.108147, "these": -8.892337, "this": -8.892337, "thresh": -7.282899, "time": -7.506042, "timer": -8.892337, "timer.stop": -8.892337, "timing": -8.199189, "title": -7.506042, "to": -8.892337, "too...": -8.892337, "true": -8.892337, "type": -8.892337, "u_cut": -7.282899, "use": -7.282899, "useBlockDist": -8.199189, "useSparseMaterials": -8.199189, "using": -8.892337, "v": -7.793724, "v_cut": -8.892337, "var": -5.000516, "vdov": -7.793724, "vdovthird": -7.506042, "velocities": -8.892337, "verbose": -7.282899, "verifyID": -8.199189, "vnew": -7.506042, "vnewc": -7.282899, "volo": -7.793724, "volume": -6.184286, "was": -8.892337, "we": -8.892337, "where": -8.892337, "while": -7.506042, "write": -8.892337, "writef": -7.282899, "writeln": -5.108147, "writer": -8.892337, "writer.close": -8.892337, "writer.writef": -8.892337, "x": -4.138746, "x_local": -6.494441, "xd": -6.946426, "xd_local": -7.506042, "xdd": -7.793724, "xdtmp": -7.506042, "xvel": -5.673461, "y": -4.164949, "y_local": -6.494441, "yd": -6.946426, "yd_local": -7.506042, "ydd": -7.793724, "ydtmp": -7.506042, "yield": -7.793724, "yvel": -5.673461, "z": -4.164949, "z_local": -6.494441, "zd": -6.946426, "zd_local": -7.506042, "zdd": -7.793724, "zdtmp": -7.506042, "zvel": -5.673461, "{": -4.588271, "|": -6.253279, "}": -4.485617, }, "Charity": map[string]float64{ "(": -3.044522, ")": -3.044522, "-": -1.945910, ":": -2.351375, "=": -3.044522, ">": -1.945910, "A": -2.351375, "D": -2.351375, "D.": -3.044522, "LA": -3.044522, "data": -3.044522, "ff": -3.044522, "ss": -3.044522, "|": -3.044522, }, "Cirru": map[string]float64{ "$": -2.101261, "(": -2.631889, ")": -2.631889, "-": -4.241327, "./stdio.cr": -5.627621, "a": -2.536579, "array": -2.988564, "b": -3.681711, "block": -5.627621, "bool": -3.835862, "c": -3.430397, "call": -5.627621, "child": -5.627621, "code": -4.241327, "container": -4.529009, "eval": -4.934474, "f": -4.529009, "false": -5.627621, "float": -5.627621, "get": -4.241327, "int": -2.044102, "just": -4.241327, "m": -4.529009, "map": -3.548180, "no": -5.627621, "nothing": -5.627621, "parent": -5.627621, "print": -1.990035, "require": -5.627621, "self": -4.934474, "set": -3.142714, "string": -3.681711, "true": -5.627621, "under": -4.934474, "x": -4.934474, "yes": -5.627621, }, "Clarion": map[string]float64{ "!": -3.053454, "$": -7.287561, "&": -4.109507, "(": -2.382286, ")": -2.382286, "***": -6.594413, "*CSTRING": -5.341650, "+": -4.454347, ",": -2.483540, "-": -2.918113, ":": -6.594413, ";": -6.188948, "<": -7.287561, "<STRING>": -7.287561, "=": -3.853573, ">": -5.208119, "ADDRESS": -6.594413, "AUTO": -6.594413, "Address": -6.594413, "And": -7.287561, "Append": -7.287561, "BOOL": -6.594413, "BREAK": -7.287561, "BYTE": -5.341650, "Bool": -6.594413, "Break": -7.287561, "But": -7.287561, "CODE": -3.991724, "CS": -7.287561, "CS.Str": -6.594413, "CSTRING": -5.495801, "CStringClass": -7.287561, "CStringClass.Cat": -7.287561, "CStringClass.Construct": -7.287561, "CStringClass.Contains": -7.287561, "CStringClass.Destruct": -7.287561, "CStringClass.EscapeXml": -7.287561, "CStringClass.FoundIn": -7.287561, "CStringClass.IndexOf": -7.287561, "CStringClass.Len": -7.287561, "CStringClass.Lower": -7.287561, "CStringClass.Replace": -7.287561, "CStringClass.SetBuffer": -7.287561, "CStringClass.Str": -6.594413, "CStringClass.SubString": -7.287561, "CStringClass.ToLower": -7.287561, "CStringClass.ToUpper": -7.287561, "CStringClass.Trim": -7.287561, "CStringClass.Upper": -7.287561, "Clear": -7.287561, "Clip": -7.287561, "Console": -7.287561, "ConsoleSupport.Construct": -7.287561, "ConsoleSupport.Destruct": -7.287561, "ConsoleSupport.Init": -7.287561, "ConsoleSupport.WriteLine": -7.287561, "Consolesupport.ReadKey": -7.287561, "Converts": -6.594413, "DEFAULT_CS_BUFFER_SIZE": -7.287561, "DWORD": -6.594413, "Declare": -4.397189, "Dispose": -5.901266, "Dispose/New": -7.287561, "Dword": -6.594413, "ELSE": -5.901266, "ENABLE_PROCESSED_INPUT": -7.287561, "END": -4.889665, "EQUATE": -6.594413, "End": -5.208119, "FALSE": -5.495801, "FindString": -7.287561, "General": -7.287561, "GetConsoleMode": -7.287561, "GetConsoleTitle": -7.287561, "GetLastError": -5.495801, "GetStdHandle": -6.188948, "HANDLE": -7.287561, "Halt": -5.678123, "Handle": -5.901266, "HelloClass.Construct": -7.287561, "HelloClass.Destruct": -7.287561, "HelloClass.SayHello": -7.287561, "IF": -4.984976, "IF.": -7.287561, "INCLUDE": -7.287561, "INVALID_HANDLE_VALUE": -5.901266, "INVALID_OTHER": -7.287561, "If": -6.188948, "InString": -5.678123, "Include": -5.678123, "It": -7.287561, "LEN": -7.287561, "LONG": -5.208119, "LOOP": -7.287561, "Left": -7.287561, "Len": -5.341650, "Long": -5.678123, "Loop": -7.287561, "Lower": -6.188948, "MAP": -6.594413, "MEMBER": -7.287561, "MESSAGE": -6.594413, "MODULE": -7.287561, "Make": -7.287561, "Map": -6.594413, "Member": -6.594413, "NULL": -6.594413, "New": -5.901266, "ONCE": -5.495801, "Omitted": -7.287561, "Only": -6.594413, "PASCAL": -5.901266, "PROC": -4.984976, "PROCEDURE": -4.029464, "PROGRAM": -7.287561, "Pascal": -5.901266, "Procedure": -4.397189, "RAW": -6.188948, "RETURN": -3.991724, "Raw": -5.901266, "ReadConsole": -6.594413, "ReplaceWith": -7.287561, "Returns": -5.901266, "SELF.BytesRead": -6.594413, "SELF.BytesWritten": -7.287561, "SELF.CS": -4.514972, "SELF.InBuffer": -6.188948, "SELF.IndexOf": -7.287561, "SELF.InputHandle": -5.901266, "SELF.Len": -7.287561, "SELF.Lower": -6.188948, "SELF.OutputHandle": -6.188948, "SELF.Prefix": -7.287561, "SELF.Str": -4.343122, "SELF.TextBuffer": -6.188948, "SELF.Upper": -7.287561, "SELF.WriteLine": -7.287561, "SELF.bufferSize": -5.678123, "SELF.cs": -7.287561, "SELF.newStrSize": -5.495801, "SELF.strLength": -5.090336, "STD_INPUT_HANDLE": -7.287561, "STD_OUTPUT_HANDLE": -7.287561, "STRING": -4.722611, "Save": -7.287561, "Second": -7.287561, "SetConsoleMode": -6.594413, "SetConsoleTitle": -7.287561, "So": -7.287561, "String": -7.287561, "Sub": -6.188948, "THEN": -7.287561, "TRUE": -4.984976, "The": -7.287561, "This": -5.901266, "Until": -7.287561, "Upper": -6.188948, "VIRTUAL": -5.901266, "Without": -7.287561, "WriteConsole": -6.594413, "[": -6.594413, "]": -6.594413, "_ABCDllMode_": -7.287561, "_ABCLinkMode_": -7.287561, "_VER_C": -7.287561, "_really_": -7.287561, "_vasty_": -7.287561, "a": -5.341650, "added": -7.287561, "after": -7.287561, "amp": -7.287561, "an": -7.287561, "and": -6.188948, "as": -7.287561, "bad": -7.287561, "be": -5.901266, "because": -7.287561, "better": -7.287561, "bool": -6.594413, "bounds": -7.287561, "but": -6.594413, "can": -7.287561, "case": -7.287561, "cat": -7.287561, "change": -7.287561, "concatination": -7.287561, "converted": -6.594413, "copy": -6.594413, "currently": -7.287561, "dWord": -7.287561, "defaults": -7.287561, "directly": -7.287561, "doesnt": -7.287561, "doing": -7.287561, "don": -7.287561, "dont": -7.287561, "dword": -7.287561, "end": -6.594413, "especially": -7.287561, "faster": -7.287561, "first": -6.594413, "for": -6.188948, "found": -6.188948, "functions": -6.594413, "gets": -6.594413, "grow": -7.287561, "grown": -7.287561, "gt": -7.287561, "have": -7.287561, "having": -7.287561, "if": -5.495801, "in": -6.188948, "index": -7.287561, "indicating": -7.287561, "innefficient": -7.287561, "internal": -6.594413, "is": -4.722611, "is.": -7.287561, "it": -5.495801, "it.": -7.287561, "large": -6.594413, "larger": -7.287561, "lastLocate": -6.188948, "locate": -5.495801, "long": -5.901266, "lot.": -7.287561, "lowercase": -7.287561, "lt": -7.287561, "manually": -7.287561, "map": -7.287561, "matching": -7.287561, "memory": -7.287561, "might": -7.287561, "much": -7.287561, "name": -5.901266, "neat": -7.287561, "new": -6.594413, "newLen": -5.341650, "nice": -7.287561, "no": -7.287561, "not": -7.287561, "occurs": -7.287561, "of": -5.341650, "old": -6.594413, "oldCS": -5.678123, "omit": -7.287561, "on": -6.594413, "one": -7.287561, "one.": -7.287561, "out": -7.287561, "outside": -7.287561, "pCaseSensitive": -5.495801, "pFind": -5.495801, "pLength": -6.594413, "pLookIn": -5.341650, "pNewBuffer": -6.594413, "pPosition": -6.594413, "pReplace": -6.188948, "pStr": -4.984976, "pText": -6.594413, "parameter": -6.188948, "performance": -6.594413, "potential": -7.287561, "reason": -7.287561, "recursive": -7.287561, "replacement.": -7.287561, "requires": -7.287561, "result": -7.287561, "returns": -6.594413, "s": -7.287561, "same": -7.287561, "search.": -7.287561, "self.cs": -6.594413, "sensitive": -7.287561, "slice": -7.287561, "slicing": -7.287561, "slightly": -7.287561, "slow": -7.287561, "smaller": -7.287561, "so": -6.594413, "solution": -7.287561, "specified": -7.287561, "string": -4.802654, "string.": -7.287561, "strings": -7.287561, "strings.": -7.287561, "temporary": -7.287561, "terminate": -7.287561, "terms": -7.287561, "terrible": -7.287561, "than": -7.287561, "the": -3.955356, "there": -7.287561, "this": -5.495801, "to": -5.495801, "up": -7.287561, "uppercase": -7.287561, "us": -7.287561, "usage": -7.287561, "used": -6.594413, "value": -7.287561, "version": -7.287561, "was": -7.287561, "we": -5.901266, "what": -7.287561, "when": -6.594413, "whether": -7.287561, "which": -7.287561, "will": -7.287561, "within": -6.188948, "would": -7.287561, "zero": -7.287561, "|": -6.188948, "~": -6.594413, }, "Clean": map[string]float64{ "!": -6.005367, "(": -2.709531, ")": -2.709531, "*": -4.975748, "*/": -7.614805, "+": -4.975748, ",": -3.050457, "-": -3.410113, ".": -5.823046, ".a": -5.216910, ".b": -6.005367, ".f": -6.921658, ".y": -7.614805, "/": -6.516193, "//Infinite": -7.614805, "/s": -6.921658, ":": -2.545901, ";": -7.614805, "<": -6.228511, "=": -2.827314, ">": -3.208086, "Assign": -6.516193, "Bool": -7.614805, "CONS": -6.228511, "Cont": -6.228511, "EITHER": -6.516193, "Env": -6.516193, "Equal": -6.921658, "Exp": -6.005367, "ExpP": -6.516193, "FIELD": -6.228511, "False": -7.614805, "Fix": -5.417581, "GenHylo": -6.921658, "GenMap": -6.228511, "If": -6.516193, "In": -5.417581, "Int": -4.118298, "IsPrime": -6.228511, "LEFT": -6.921658, "LessThan": -6.516193, "Minus": -6.921658, "NrOfPrimes": -6.921658, "OBJECT": -6.228511, "Op": -5.823046, "Out": -7.614805, "PAIR": -6.228511, "Plus": -6.921658, "Primes": -6.516193, "Primes.": -7.614805, "RIGHT": -6.921658, "Real": -4.282601, "Rem": -6.516193, "Select": -7.614805, "Sem": -5.216910, "Seq": -6.516193, "Sieve": -5.535364, "Stack": -4.282601, "Start": -6.516193, "StdArray": -7.614805, "StdClass": -6.921658, "StdEnv": -6.228511, "StdFunc": -7.614805, "StdGeneric": -6.228511, "StdInt": -6.921658, "StdReal": -7.614805, "Stm": -6.921658, "StmP": -6.516193, "String": -7.614805, "Times": -6.921658, "True": -7.614805, "UNIT": -6.921658, "Var": -5.417581, "While": -6.516193, "X": -6.516193, "[": -3.082206, "\\": -5.049856, "]": -3.082206, "_": -6.005367, "_.": -7.614805, "_Array": -7.614805, "`": -4.282601, "a": -3.607472, "abort": -6.921658, "ana": -7.614805, "as": -7.614805, "assign": -6.228511, "b": -5.823046, "bd": -6.516193, "by": -7.614805, "c": -6.921658, "cata": -6.516193, "class": -7.614805, "computation": -7.614805, "cont": -7.614805, "count": -6.516193, "definition": -6.228511, "derive": -6.228511, "drop": -7.614805, "e": -4.724434, "e.": -6.228511, "ease": -7.614805, "elements": -6.516193, "empty": -6.921658, "f": -4.395930, "fl": -6.516193, "fr": -6.516193, "fsieve": -7.614805, "fst": -7.614805, "fx": -6.921658, "fy": -6.921658, "g": -5.312220, "gMap": -4.670366, "generated": -7.614805, "generic": -6.921658, "hylo": -7.614805, "i": -4.975748, "if": -6.005367, "ifte": -7.614805, "implementation": -6.516193, "import": -5.312220, "infixl": -6.228511, "infixr": -7.614805, "instance": -4.975748, "int": -6.921658, "invert": -6.005367, "length": -7.614805, "list": -7.614805, "mapArray": -6.921658, "module": -5.417581, "monadicSemantics": -7.614805, "n": -5.535364, "newStack": -6.516193, "o": -5.049856, "of": -7.614805, "one": -6.005367, "op": -6.005367, "operator": -5.535364, "pEuclides": -6.921658, "phi": -5.129899, "pop": -6.228511, "popn": -6.516193, "pow": -6.005367, "pr": -5.823046, "program": -6.921658, "prs": -5.823046, "push": -6.516193, "pushes": -6.516193, "r": -6.921658, "read": -6.228511, "rem": -6.921658, "represented": -7.614805, "return": -7.614805, "row": -7.614805, "rtn": -6.228511, "s": -3.571754, "s*t": -7.614805, "sem": -5.417581, "seq": -6.516193, "shuffle": -5.823046, "sqrt": -7.614805, "stack": -6.921658, "start": -6.228511, "stm": -6.921658, "streams": -6.921658, "t": -4.479311, "take": -7.614805, "to": -7.614805, "toInt": -7.614805, "toReal": -7.614805, "top": -6.228511, "topn": -6.516193, "u": -5.823046, "v": -4.975748, "var": -5.823046, "w": -6.228511, "w.": -7.614805, "where": -5.129899, "while": -6.921658, "write": -6.516193, "x": -4.031286, "xs": -6.228511, "y": -5.216910, "zero": -6.228511, "zeroes": -7.614805, "{": -4.781592, "|": -3.743604, "}": -4.781592, }, "Click": map[string]float64{ "$": -3.780123, "(": -3.161084, ")": -3.161084, ",": -2.794839, "-": -2.284014, ".": -7.112327, "/": -4.714432, "//ip": -7.112327, "//replies": -7.112327, "//sr": -5.726033, ":": -2.527360, ";": -2.742880, ">": -2.558451, "ARP": -5.502890, "ARPQuerier": -7.112327, "ARPResponder": -7.112327, "ARPTable": -7.112327, "AddressInfo": -7.112327, "AvailableRates": -7.112327, "CheckHeader": -5.726033, "CheckIPHeader": -5.726033, "Classifier": -6.419180, "DEBUG": -6.013715, "DecIPTTL": -7.112327, "Discard": -5.502890, "ETH": -5.320568, "ETHTYPE": -5.502890, "ETT": -7.112327, "ETTMetric": -7.112327, "ETTStat": -7.112327, "EtherEncap": -6.419180, "FromDevice": -7.112327, "GW": -7.112327, "GatewaySelector": -7.112327, "GetIPAddress": -6.419180, "ICMPError": -7.112327, "ICMPPingRewriter": -7.112327, "ICMPRewriter": -7.112327, "IP": -5.320568, "IPClassifier": -4.915103, "IPRewriter": -7.112327, "IPRewriterPatterns": -7.112327, "Idle": -6.419180, "LT": -5.320568, "LinkTable": -7.112327, "MetricFlood": -7.112327, "NAT": -6.419180, "PERIOD": -6.419180, "PROBES": -7.112327, "Print": -6.419180, "PrintSR": -7.112327, "PullTee": -7.112327, "Querier": -7.112327, "QueryResponder": -7.112327, "Queue": -7.112327, "ROUTE_DAMPENING": -7.112327, "RT": -7.112327, "SEL": -7.112327, "SR": -4.167888, "ScheduleInfo": -7.112327, "SetChecksum": -5.726033, "SetGateway": -7.112327, "SetTimestamp": -7.112327, "SniffGatewayDevice": -6.419180, "Strip": -7.112327, "StripHeader": -7.112327, "TAU": -7.112327, "TIME_BEFORE_SWITCH": -7.112327, "Tee": -6.419180, "ToDevice": -7.112327, "ToHost": -6.419180, "ToHostSniffers": -6.419180, "[": -2.878221, "]": -2.878221, "_es": -7.112327, "_forwarder": -7.112327, "_gw": -7.112327, "_ip": -4.809742, "_nm": -6.013715, "addr": -6.013715, "arp": -5.320568, "arp_class": -5.502890, "arp_t": -6.013715, "arpq_in": -6.013715, "c": -5.726033, "d": -5.726033, "data_ck": -6.013715, "device": -4.915103, "domain": -6.419180, "dst": -4.714432, "dt": -6.419180, "e": -6.419180, "echo": -6.419180, "elementclass": -6.419180, "error": -7.112327, "es": -6.013715, "established_class": -6.013715, "eth": -4.221956, "ex": -4.915103, "false": -6.419180, "firewall": -4.915103, "forwarder": -5.502890, "forwarding": -7.112327, "from": -6.419180, "from_gw_cl": -6.419180, "gateway": -6.419180, "gw": -5.166417, "host": -5.726033, "host_cl": -6.419180, "icmp": -6.013715, "icmp_me_or_intern": -5.502890, "ierw": -5.726033, "in": -5.032886, "input": -6.013715, "inter_class": -6.013715, "ip_to_extern": -6.013715, "ip_to_host": -5.032886, "ip_to_intern": -5.726033, "ip_udp_class": -6.013715, "ipclass": -5.726033, "iprw": -7.112327, "irw": -5.320568, "lt": -5.166417, "mask": -6.419180, "me": -7.112327, "metric": -6.419180, "ncl": -5.320568, "net": -5.320568, "or": -7.112327, "orwarder": -7.112327, "output": -5.032886, "packets": -7.112327, "pass": -7.112327, "pattern": -7.112327, "port": -5.502890, "probes": -6.419180, "proto": -7.112327, "q": -7.112327, "querier": -5.502890, "query": -7.112327, "query_forwarder": -5.502890, "query_responder": -5.726033, "rates": -6.419180, "reply": -7.112327, "rw": -5.320568, "s": -5.502890, "set_gw": -6.013715, "smtp": -7.112327, "sr": -4.404277, "src": -6.013715, "ssh": -7.112327, "t": -5.726033, "tcp": -5.726033, "timeexceeded": -7.112327, "to": -6.013715, "true": -6.013715, "ttl": -7.112327, "type": -6.419180, "udp": -6.419180, "wireless_mac": -5.166417, "{": -6.419180, "|": -6.419180, "}": -6.419180, }, "Clojure": map[string]float64{ "!": -4.404006, "#": -4.991792, "%": -5.908083, "&": -7.699842, "'": -7.699842, "(": -2.120113, ")": -2.120113, "*": -7.699842, ",": -5.908083, "-": -3.369109, "//github.com/boot": -7.699842, "//opensource.org/licenses/eclipse": -7.699842, ":": -2.716236, ";": -1.827725, "<": -7.699842, "=": -4.265855, ">": -6.313548, "?": -4.234107, "@edit": -7.006695, "@i": -5.908083, "AKA": -7.699842, "Alan": -7.699842, "All": -7.699842, "By": -7.699842, "Cat": -7.699842, "Copyright": -7.699842, "Dipert": -7.699842, "Dog": -7.699842, "Eclipse": -7.699842, "ISound": -6.313548, "License": -7.699842, "Micha": -7.699842, "Niskin.": -7.699842, "Pi": -7.006695, "Public": -7.699842, "Stub": -7.699842, "Tau": -7.006695, "The": -7.699842, "You": -7.699842, "[": -3.480335, "]": -3.495150, "^": -6.601230, "_": -6.313548, "a": -5.753932, "active": -6.090404, "agreeing": -7.699842, "all": -6.090404, "and": -5.620401, "any": -6.601230, "are": -7.006695, "array": -6.601230, "as": -7.699842, "aseq": -5.620401, "aset": -7.699842, "assoc": -6.313548, "at": -7.006695, "atom": -7.699842, "attr": -7.006695, "autofocus": -7.699842, "bar": -6.313548, "baz": -6.313548, "be": -7.006695, "bind": -7.699842, "bindings": -7.699842, "blur": -7.006695, "body": -7.006695, "bound": -7.699842, "build": -7.699842, "button": -7.006695, "by": -6.313548, "c": -5.620401, "can": -7.699842, "cell": -5.214936, "cells": -7.006695, "change": -7.699842, "charset": -7.006695, "checked": -7.006695, "class": -5.620401, "clear": -7.006695, "click": -6.313548, "clj": -7.699842, "clj/boot#configure": -7.699842, "cljs": -6.601230, "clojure": -7.699842, "collection": -7.699842, "comp": -7.006695, "completed": -5.214936, "computed": -7.699842, "cond": -7.006695, "conj": -7.699842, "contains": -7.699842, "content": -7.699842, "coordinates": -5.753932, "core": -7.006695, "cos": -7.006695, "count": -6.090404, "covered": -7.699842, "dblclick": -7.699842, "dec": -7.699842, "declare": -7.699842, "decorate": -7.006695, "def": -6.313548, "default": -7.699842, "defc": -5.908083, "defn": -5.060785, "defprotocol": -7.699842, "deftask": -7.699842, "deftest": -7.699842, "deftype": -7.006695, "degree": -7.006695, "dependencies": -7.699842, "destroy": -6.601230, "dissocv": -7.006695, "distribution": -7.699842, "distribution.": -7.699842, "div": -6.601230, "div.nav": -7.699842, "do": -4.991792, "does": -7.699842, "dom": -7.006695, "done": -5.060785, "done#": -7.699842, "edit": -6.313548, "edit#": -7.699842, "editing": -5.134893, "element": -7.699842, "empty": -5.620401, "env": -7.699842, "epl": -7.699842, "equiv": -7.699842, "evaluates": -7.699842, "exclude": -7.699842, "exist": -7.699842, "extend": -7.699842, "false": -5.908083, "fashion": -7.699842, "file": -7.699842, "filter": -7.006695, "first": -7.006695, "float": -7.006695, "fn": -6.601230, "focus": -7.699842, "foo": -5.908083, "footer": -7.006695, "for": -6.313548, "form": -7.006695, "formula": -7.699842, "found": -7.699842, "from": -7.006695, "function": -7.699842, "functions": -7.006695, "h": -7.699842, "head": -7.006695, "header": -7.699842, "href": -5.908083, "html": -6.601230, "http": -7.006695, "https": -7.699842, "i": -4.704110, "id": -4.704110, "identity": -7.699842, "ids": -7.699842, "if": -6.601230, "in": -6.313548, "inc": -7.006695, "indexed": -7.699842, "input": -6.313548, "install": -7.699842, "into": -6.601230, "is": -5.753932, "item": -7.699842, "jar": -7.006695, "keys": -7.006695, "label": -7.006695, "lang": -7.699842, "let": -6.601230, "li": -6.313548, "license.": -7.699842, "like": -7.699842, "link": -7.006695, "list": -7.699842, "loaded": -7.699842, "local": -6.601230, "loop": -7.006695, "make": -7.699842, "manifest": -7.699842, "map": -6.601230, "mapv": -7.699842, "mapvi": -7.006695, "maths": -7.006695, "mean": -7.006695, "meta": -6.601230, "must": -7.699842, "my": -7.699842, "n": -5.502618, "name": -7.699842, "neg": -7.699842, "new": -6.090404, "next": -7.699842, "nil": -6.601230, "noscript": -7.699842, "not": -5.502618, "notice": -7.699842, "ns": -7.006695, "nth": -7.006695, "of": -7.006695, "on": -5.301947, "only": -6.313548, "options": -7.699842, "or": -7.006695, "other": -7.699842, "p": -6.313548, "page": -7.006695, "paths": -7.699842, "per": -7.006695, "persisted": -7.699842, "php": -7.699842, "placeholder": -7.699842, "plural": -7.699842, "pluralize": -7.006695, "pom": -7.699842, "pop": -7.699842, "pos": -7.699842, "prime": -7.006695, "project": -7.699842, "radians": -7.006695, "rand": -7.006695, "random": -7.699842, "range": -6.601230, "real": -7.699842, "recur": -7.699842, "refer": -6.313548, "rel": -7.006695, "reload": -7.006695, "rem": -7.006695, "remove": -6.601230, "require": -7.006695, "reserved.": -7.699842, "reset": -7.699842, "reverse": -7.699842, "rights": -7.699842, "root": -7.699842, "route": -5.301947, "runtime": -7.699842, "scm*": -7.699842, "script": -7.699842, "section": -7.006695, "select": -7.699842, "selected": -6.601230, "seq": -7.699842, "set": -7.699842, "show": -7.006695, "sin": -7.006695, "software": -7.006695, "software.": -7.699842, "sound": -6.090404, "source": -7.699842, "span": -7.006695, "src": -7.699842, "state": -4.991792, "stem": -7.699842, "stops": -7.699842, "storage": -7.006695, "store": -7.699842, "strong": -7.699842, "submit": -7.006695, "subvec": -7.006695, "svg": -7.006695, "swap": -5.908083, "t": -6.090404, "tailrecursion.hoplon.reload": -7.699842, "tailrecursion.hoplon.storage": -7.699842, "tailrecursion.hoplon.util": -7.699842, "take": -7.699842, "task": -7.699842, "terms": -7.006695, "tests": -7.699842, "text": -5.060785, "that": -7.699842, "the": -6.090404, "this": -5.908083, "title": -7.699842, "to": -7.006695, "todo": -5.397257, "todos": -7.006695, "toggle": -6.313548, "tpl": -7.699842, "transition": -7.699842, "true": -6.090404, "type": -5.753932, "ul": -7.006695, "unify": -7.006695, "use": -6.601230, "using": -7.699842, "utility": -7.699842, "v": -4.927254, "val": -6.313548, "vals": -7.699842, "value": -6.601230, "vec": -7.006695, "vector": -7.699842, "version": -7.699842, "visible": -7.006695, "when": -6.601230, "which": -7.006695, "while": -6.601230, "x": -5.620401, "xy": -7.699842, "y": -7.699842, "you": -7.699842, "z": -6.313548, "zero": -7.006695, "{": -4.704110, "}": -4.655320, }, "Closure Templates": map[string]float64{ "!": -4.488636, "$": -3.390024, "(": -4.488636, ")": -4.488636, ",": -4.488636, ".foo": -4.488636, "/": -4.488636, "/call": -4.488636, "/h": -3.795489, "/if": -4.488636, "/switch": -4.488636, "/template": -4.488636, ":": -3.390024, "<": -3.102342, "</div>": -4.488636, "<div>": -4.488636, "=": -4.488636, ">": -2.879198, "?": -4.488636, "@param": -3.795489, "Empty.view": -4.488636, "Exmaple": -4.488636, "Wow": -4.488636, "call": -4.488636, "case": -4.488636, "class": -4.488636, "count": -3.102342, "default": -4.488636, "h": -3.795489, "if": -4.488636, "int": -4.488636, "isNonnull": -4.488636, "many": -4.488636, "name": -3.390024, "namespace": -4.488636, "param": -4.488636, "so": -4.488636, "string": -4.488636, "switch": -4.488636, "template": -4.488636, "{": -1.780586, "}": -1.780586, }, "CoffeeScript": map[string]float64{ "!": -8.208764, "#": -8.208764, "##": -8.208764, "###*": -8.208764, "$": -6.262854, "&": -8.208764, "(": -2.988408, ")": -2.988408, "*": -6.262854, "*/": -7.515617, "+": -4.653416, ",": -2.584747, "-": -3.252937, ".": -6.822470, "..": -8.208764, ".POW_TIMEOUT": -8.208764, ".POW_WORKERS": -8.208764, "._nodeModulePaths": -8.208764, ".compile": -8.208764, ".concat": -7.110152, ".constructor": -8.208764, ".getTime": -8.208764, ".isEmpty": -8.208764, ".join": -7.515617, ".length": -7.515617, ".replace": -7.515617, ".reserved": -8.208764, ".rvmrc": -7.515617, ".spaced": -8.208764, ".split": -8.208764, ".toString": -8.208764, ".tokenize": -8.208764, ".type": -8.208764, "/": -5.213032, "/.test": -8.208764, "///i": -8.208764, "//g": -8.208764, "/g": -7.515617, ":": -3.697905, "<": -6.129323, "</div>": -8.208764, "</strong>": -8.208764, "<<": -8.208764, "<ReactExampleTable>": -8.208764, "<div>": -8.208764, "<header>": -7.515617, "<strong>": -8.208764, "=": -2.501654, ">": -3.455174, "?": -4.774777, "@address": -7.515617, "@balancedString": -7.515617, "@chunk": -5.906179, "@chunk.charAt": -6.599326, "@chunk.match": -8.208764, "@cjsx": -8.208764, "@configuration.env": -8.208764, "@configuration.timeout": -8.208764, "@configuration.workers": -8.208764, "@constructor.rvmBoilerplate": -8.208764, "@domain": -7.110152, "@ends": -8.208764, "@ends.pop": -8.208764, "@ends.push": -7.515617, "@error": -6.262854, "@escapeLines": -7.515617, "@extract": -8.208764, "@extractSubdomain": -8.208764, "@for": -7.515617, "@handleRequest": -8.208764, "@heregexToken": -8.208764, "@indebt": -6.822470, "@indent": -6.129323, "@indents": -6.599326, "@indents.length": -8.208764, "@indents.pop": -8.208764, "@indents.push": -8.208764, "@initialize": -7.515617, "@interpolateString": -7.110152, "@labels": -7.515617, "@labels.length": -8.208764, "@labels.slice": -8.208764, "@length": -7.110152, "@line": -6.011539, "@listenTo": -8.208764, "@loadEnvironment": -8.208764, "@loadRvmEnvironment": -8.208764, "@loadScriptEnvironment": -8.208764, "@logger.debug": -7.515617, "@logger.error": -7.110152, "@logger.info": -8.208764, "@logger.warning": -8.208764, "@makeString": -7.110152, "@mtime": -6.822470, "@name": -7.515617, "@newlineToken": -8.208764, "@on": -8.208764, "@outdebt": -5.906179, "@outdentToken": -7.110152, "@pair": -7.110152, "@pattern": -7.515617, "@pool": -8.208764, "@pool.on": -7.515617, "@pool.stderr": -8.208764, "@pool.stdout": -8.208764, "@pos": -7.515617, "@queryRestartFile": -7.515617, "@quit": -7.515617, "@quitCallbacks.push": -8.208764, "@ready": -7.515617, "@readyCallbacks": -7.515617, "@readyCallbacks.push": -8.208764, "@restart": -8.208764, "@root": -7.110152, "@rootAddress": -7.515617, "@rvmBoilerplate": -8.208764, "@sanitizeHeredoc": -7.515617, "@seenFor": -7.515617, "@setState": -8.208764, "@soa": -7.515617, "@state": -5.906179, "@state.meta": -8.208764, "@state.rows": -8.208764, "@state.title": -8.208764, "@stopListening": -8.208764, "@subdomain": -8.208764, "@suppressNewlines": -7.515617, "@tag": -6.822470, "@tagParameters": -8.208764, "@terminate": -7.515617, "@token": -5.264325, "@tokens": -6.262854, "@tokens.pop": -7.110152, "@tokens.push": -6.417005, "@unfinished": -8.208764, "@value": -6.822470, "@yylineno": -8.208764, "@yytext": -8.208764, "A": -8.208764, "Animal": -7.110152, "Array": -8.208764, "CALLABLE": -8.208764, "CODE.test": -8.208764, "COFFEE_ALIASES": -7.515617, "COFFEE_ALIAS_MAP": -7.515617, "COFFEE_KEYWORDS": -7.110152, "COFFEE_KEYWORDS.concat": -8.208764, "COMMENT": -8.208764, "COMPARE": -8.208764, "COMPOUND_ASSIGN": -8.208764, "CoffeeScript": -8.208764, "CoffeeScript.compile": -7.515617, "CoffeeScript.eval": -8.208764, "CoffeeScript.load": -7.515617, "CoffeeScript.require": -8.208764, "CoffeeScript.run": -7.110152, "Date": -8.208764, "EncodedSubdomain": -7.515617, "EncodedSubdomain.pattern.test": -8.208764, "Error": -8.208764, "ExampleActions": -8.208764, "ExampleActions.getExampleData": -8.208764, "ExampleStore": -7.110152, "ExampleStore.getMeta": -7.515617, "ExampleStore.getRows": -7.515617, "Function": -8.208764, "HEREDOC": -8.208764, "HEREDOC.exec": -8.208764, "HEREDOC_ILLEGAL.test": -8.208764, "HEREDOC_INDENT.exec": -8.208764, "HEREGEX.exec": -7.515617, "HEREGEX_OMIT": -7.515617, "Horse": -7.515617, "IDENTIFIER": -8.208764, "INDEXABLE": -8.208764, "INVERSES": -7.515617, "IPAddressSubdomain": -7.515617, "IPAddressSubdomain.pattern.test": -8.208764, "JSTOKEN.exec": -8.208764, "JS_FORBIDDEN": -7.515617, "JS_KEYWORDS": -7.515617, "JS_KEYWORDS.concat": -8.208764, "LINE_CONTINUER.test": -8.208764, "LOGIC": -8.208764, "Lexer": -6.822470, "ListenMixin": -8.208764, "MATH": -8.208764, "MULTILINER": -7.515617, "MULTI_DENT.exec": -8.208764, "Math.sqrt": -8.208764, "Module": -7.515617, "Module._load": -8.208764, "Module._nodeModulePaths": -8.208764, "Module._resolveFilename": -8.208764, "NOT_REGEX": -8.208764, "NOT_SPACED_REGEX": -8.208764, "NS_C_IN": -6.599326, "NS_RCODE_NXDOMAIN": -7.515617, "NS_T_A": -7.110152, "NS_T_CNAME": -8.208764, "NS_T_NS": -7.515617, "NS_T_SOA": -7.515617, "NUMBER": -8.208764, "OPERATOR.exec": -8.208764, "Object.getOwnPropertyNames": -8.208764, "PATTERN": -8.208764, "PATTERN.test": -8.208764, "REGEX.exec": -7.515617, "RESERVED": -6.822470, "RESERVED.concat": -8.208764, "React": -8.208764, "React.DOM": -8.208764, "React.createClass": -8.208764, "ReactExampleComponent": -8.208764, "ReactExampleTable": -8.208764, "Rewriter": -8.208764, "S": -7.515617, "SHIFT": -8.208764, "SIMPLESTR.exec": -8.208764, "STRICT_PROSCRIBED": -6.822470, "Script": -7.515617, "Script.createContext": -7.515617, "Server": -7.515617, "Snake": -7.515617, "Subdomain": -6.822470, "Subdomain.extract": -8.208764, "SyntaxError": -8.208764, "UNARY": -8.208764, "WHITESPACE.exec": -8.208764, "XMLHttpRequest": -8.208764, "Za": -8.208764, "[": -3.333567, "\\": -4.774777, "]": -3.325962, "^": -5.906179, "_module": -7.110152, "_module.filename": -8.208764, "_module.paths": -8.208764, "_require": -7.515617, "_require.paths": -8.208764, "_require.resolve": -8.208764, "a": -7.515617, "addEventListener": -8.208764, "address": -6.822470, "alert": -6.822470, "and": -4.989888, "attachEvent": -8.208764, "attempt": -7.515617, "attempt.length": -8.208764, "balancedString": -8.208764, "body": -6.262854, "body.indexOf": -8.208764, "body.replace": -7.110152, "boilerplate": -7.515617, "bufferLines": -7.515617, "build": -7.515617, "byte": -7.515617, "callback": -5.030710, "catch": -8.208764, "class": -6.129323, "className": -8.208764, "closeIndentation": -8.208764, "code": -5.436175, "code.trim": -8.208764, "coffee": -8.208764, "coffee.on": -8.208764, "coffee.stderr.on": -8.208764, "coffee.stdout.on": -8.208764, "coffees": -7.515617, "coffees.length": -8.208764, "comment": -7.515617, "comment.length": -8.208764, "commentToken": -8.208764, "compact": -8.208764, "compile": -6.599326, "componentDidMount": -8.208764, "componentWillMount": -8.208764, "componentWillUnmount": -8.208764, "console.log": -8.208764, "constructor": -6.599326, "content": -6.822470, "contents": -6.599326, "contents.indexOf": -8.208764, "continue": -6.417005, "continueCount": -6.599326, "count": -6.417005, "createSOA": -7.515617, "cube": -8.208764, "cubes": -8.208764, "d": -7.515617, "d*": -8.208764, "da": -8.208764, "data": -7.515617, "data.toString": -7.515617, "decode": -7.515617, "dent": -6.822470, "diff": -7.110152, "dnsserver": -8.208764, "dnsserver.Server": -8.208764, "dnsserver.createSOA": -8.208764, "do": -8.208764, "doc": -5.906179, "doc.indexOf": -7.515617, "doc.replace": -7.515617, "document.getElementsByTagName": -8.208764, "domain": -6.417005, "domain.length": -8.208764, "domain.toLowerCase": -8.208764, "e": -8.208764, "else": -4.201431, "elvis": -8.208764, "encode": -8.208764, "end": -5.810869, "env": -6.011539, "err": -5.569707, "err.message": -7.515617, "error": -8.208764, "escapeLines": -8.208764, "eval": -8.208764, "execute": -7.110152, "expire": -7.515617, "exports.Lexer": -8.208764, "exports.RESERVED": -7.515617, "exports.STRICT_PROSCRIBED": -8.208764, "exports.Server": -8.208764, "exports.Subdomain": -8.208764, "exports.VERSION": -8.208764, "exports.compile": -8.208764, "exports.createServer": -8.208764, "exports.decode": -8.208764, "exports.encode": -8.208764, "exports.eval": -8.208764, "exports.helpers": -7.515617, "exports.nodes": -8.208764, "exports.run": -8.208764, "exports.tokens": -8.208764, "expr": -7.515617, "expr.length": -8.208764, "extends": -6.599326, "extractSubdomain": -8.208764, "f": -8.208764, "false": -8.208764, "filename": -6.822470, "flags": -6.822470, "for": -5.723857, "fs": -7.515617, "fs.readFile": -8.208764, "fs.readFileSync": -8.208764, "fs.realpathSync": -7.515617, "fs.stat": -8.208764, "fs.writeFile": -8.208764, "getAddress": -7.110152, "getInitialState": -8.208764, "global": -7.110152, "handleRequest": -8.208764, "header": -8.208764, "here": -7.110152, "herecomment": -6.822470, "heredoc": -6.011539, "heredoc.charAt": -8.208764, "heredoc.length": -8.208764, "heredocToken": -8.208764, "heregex": -8.208764, "heregex.length": -7.515617, "heregexToken": -8.208764, "i": -5.318392, "i..": -7.515617, "idle": -8.208764, "if": -3.499234, "in": -5.030710, "indent": -6.262854, "indent.lastIndexOf": -8.208764, "indent.length": -6.599326, "index": -6.129323, "initialize": -8.208764, "inner": -7.515617, "inner.length": -8.208764, "instanceof": -8.208764, "interpolateString": -8.208764, "interpolated": -7.515617, "ip": -7.515617, "ip.join": -8.208764, "ip.push": -8.208764, "ip.split": -8.208764, "is": -4.165713, "isARequest": -7.515617, "isEmpty": -8.208764, "isNSRequest": -7.515617, "isnt": -6.262854, "join": -7.110152, "js": -6.599326, "jsToken": -8.208764, "k": -6.822470, "key": -7.515617, "last": -6.262854, "lastMtime": -7.515617, "len": -6.129323, "length": -7.110152, "letter": -5.906179, "lex": -8.208764, "lexer": -8.208764, "lexer.tokenize": -7.110152, "line": -6.599326, "lineToken": -8.208764, "list": -7.515617, "literalToken": -8.208764, "loadEnvironment": -8.208764, "mainModule": -8.208764, "mainModule._compile": -7.515617, "mainModule.filename": -6.822470, "mainModule.moduleCache": -8.208764, "mainModule.paths": -8.208764, "makeString": -8.208764, "match": -4.774777, "match.length": -8.208764, "math": -8.208764, "math.cube": -8.208764, "merge": -8.208764, "message": -8.208764, "meta": -7.110152, "meta=": -8.208764, "meters": -7.515617, "minimum": -7.515617, "mixins": -8.208764, "mname": -7.515617, "module": -8.208764, "module._compile": -8.208764, "move": -7.110152, "moveOut": -6.262854, "mtimeChanged": -7.515617, "n": -8.208764, "n/": -8.208764, "nack.createPool": -8.208764, "name": -6.599326, "name.length": -8.208764, "name.slice": -7.515617, "name.toLowerCase": -8.208764, "nested": -7.110152, "nested.length": -8.208764, "nested.pop": -8.208764, "nested.push": -8.208764, "nested.shift": -8.208764, "nested.unshift": -8.208764, "new": -5.906179, "newlineToken": -8.208764, "nline": -8.208764, "no": -6.822470, "noNewlines": -6.417005, "not": -7.110152, "null": -6.129323, "num": -7.515617, "number": -7.515617, "o": -6.822470, "o.bare": -8.208764, "octalEsc": -8.208764, "of": -6.822470, "off": -7.515617, "offset": -6.822470, "on": -6.822470, "onStoreChange": -8.208764, "opposite": -7.515617, "options": -5.318392, "options.bare": -7.515617, "options.filename": -6.599326, "options.header": -8.208764, "options.modulename": -8.208764, "options.sandbox": -6.822470, "or": -5.723857, "outdentToken": -8.208764, "own": -7.515617, "pair": -8.208764, "parseInt": -7.110152, "parser": -8.208764, "parser.lexer": -8.208764, "parser.parse": -7.110152, "parser.yy": -8.208764, "path": -7.110152, "path.dirname": -7.515617, "path.extname": -8.208764, "pi": -6.822470, "pi..": -8.208764, "pi...i": -8.208764, "powrc": -7.110152, "prev": -5.073270, "prev.spaced": -7.515617, "print": -7.110152, "process": -7.515617, "process.argv": -8.208764, "process.cwd": -8.208764, "process.stderr.write": -8.208764, "queryRestartFile": -8.208764, "question": -6.599326, "question.class": -7.515617, "question.name": -7.110152, "question.type": -7.515617, "quit": -8.208764, "quote": -5.810869, "r": -6.822470, "race": -8.208764, "re": -8.208764, "re.match": -8.208764, "ready": -8.208764, "readyCallback": -7.515617, "refresh": -7.515617, "regex": -6.262854, "regexToken": -8.208764, "render": -8.208764, "req": -8.208764, "req.question": -8.208764, "request": -7.515617, "require": -5.264325, "require.extensions": -7.110152, "require.main": -8.208764, "require.registerExtension": -7.515617, "res": -8.208764, "res.addRR": -7.515617, "res.header.rcode": -8.208764, "res.send": -8.208764, "restart": -8.208764, "restartIfNecessary": -8.208764, "retry": -7.515617, "return": -4.774777, "rewrite": -8.208764, "rname": -7.515617, "root": -8.208764, "rows": -7.110152, "rows=": -8.208764, "runScripts": -7.110152, "runners": -8.208764, "runners...": -8.208764, "rvm_path/scripts/rvm": -7.515617, "s": -7.110152, "s.type": -8.208764, "sam": -8.208764, "sam.move": -8.208764, "sandbox": -6.129323, "sandbox.GLOBAL": -8.208764, "sandbox.__dirname": -8.208764, "sandbox.__filename": -7.110152, "sandbox.global": -8.208764, "sandbox.module": -7.515617, "sandbox.require": -7.515617, "sandbox.root": -8.208764, "sanitizeHeredoc": -8.208764, "script": -7.110152, "script.innerHTML": -8.208764, "script.length": -8.208764, "script.src": -7.515617, "scripts": -7.515617, "serial": -7.515617, "setInput": -8.208764, "size": -6.011539, "source": -6.822470, "spawn": -7.515617, "square": -6.822470, "stack": -7.110152, "stack.length": -7.110152, "stack.pop": -7.515617, "stack.push": -6.822470, "starts": -8.208764, "stats": -8.208764, "stats.mtime.getTime": -8.208764, "str": -6.011539, "str.charAt": -7.110152, "str.length": -7.515617, "str.replace": -8.208764, "string": -6.011539, "string.indexOf": -8.208764, "string.length": -8.208764, "stringToken": -8.208764, "subdomain": -5.906179, "subdomain.getAddress": -8.208764, "super": -7.110152, "suppressNewlines": -8.208764, "switch": -6.599326, "tag": -4.950668, "tagParameters": -8.208764, "task": -8.208764, "terminate": -8.208764, "then": -4.989888, "this": -6.129323, "this.isMounted": -8.208764, "throw": -7.110152, "tok": -5.810869, "token": -8.208764, "tokens": -5.906179, "tokens...": -8.208764, "tokens.length": -7.110152, "tokens.pop": -8.208764, "tokens.push": -6.417005, "tokens.unshift": -8.208764, "tom": -8.208764, "tom.move": -8.208764, "true": -6.262854, "try": -8.208764, "typeof": -8.208764, "uffff": -7.515617, "undefined": -8.208764, "unfinished": -8.208764, "unless": -4.950668, "upcomingInput": -8.208764, "url": -7.515617, "v": -6.822470, "val": -7.110152, "value": -4.682404, "value...": -7.515617, "value.length": -7.515617, "value.replace": -7.515617, "vm": -8.208764, "vm.Script": -8.208764, "vm.runInContext": -8.208764, "vm.runInThisContext": -8.208764, "w": -8.208764, "wanted": -7.515617, "when": -5.810869, "while": -6.417005, "whitespaceToken": -8.208764, "window": -8.208764, "window.ActiveXObject": -8.208764, "window.addEventListener": -8.208764, "winner": -7.515617, "writeRvmBoilerplate": -8.208764, "x": -6.011539, "xhr": -7.515617, "xhr.onreadystatechange": -8.208764, "xhr.open": -8.208764, "xhr.overrideMimeType": -8.208764, "xhr.readyState": -8.208764, "xhr.responseText": -8.208764, "xhr.send": -8.208764, "xhr.status": -8.208764, "yes": -6.599326, "z": -7.515617, "z_": -8.208764, "{": -4.950668, "|": -6.011539, "||": -7.515617, "}": -4.950668, }, "ColdFusion": map[string]float64{ "#DateFormat": -4.510860, "#DaysInMonth": -5.204007, "#IsDate": -4.105394, "#RightNow": -5.204007, "#TimeFormat": -4.510860, "#x": -5.204007, "#z": -5.204007, "&": -5.204007, "(": -3.006782, ")": -3.006782, "*": -5.204007, "+": -5.204007, ",": -4.510860, "-": -2.639057, "/": -5.204007, "10": -5.204007, "5": -5.204007, "</body>": -5.204007, "</cfoutput>": -4.105394, "</head>": -5.204007, "</html>": -5.204007, "</title>": -5.204007, "<body>": -5.204007, "<br>": -3.124565, "<cfoutput>": -4.105394, "<cfset>": -2.495956, "<head>": -5.204007, "<html>": -5.204007, "<title>": -5.204007, "=": -2.431418, ">": -2.208274, "Date": -5.204007, "Functions": -5.204007, "Hello": -4.510860, "MOD": -4.510860, "Now": -4.510860, "Paul": -5.204007, "RightNow": -3.258097, "^": -5.204007, "a": -2.639057, "b": -2.639057, "c": -3.412247, "comment": -5.204007, "greeting": -4.510860, "group": -5.204007, "person": -4.510860, "world": -5.204007, "x": -5.204007, "y": -5.204007, "z": -5.204007, }, "ColdFusion CFC": map[string]float64{ "$": -5.867883, "(": -2.466686, ")": -2.466686, ",": -2.535679, ".": -6.561031, ".execute": -6.561031, ".isEq": -6.561031, ".list": -6.561031, ";": -2.553697, "</cfcomponent>": -6.561031, "</cffunction>": -5.867883, "</cfif>": -6.561031, "<cfargument>": -5.867883, "<cfcomponent>": -6.561031, "<cffunction>": -5.867883, "<cfif>": -6.561031, "<cfreturn>": -6.561031, "<cfset>": -5.867883, "=": -1.976063, ">": -4.481589, "ContentService": -6.561031, "Query": -6.561031, "StructliteralTest": -6.561031, "[": -5.867883, "]": -5.867883, "access": -5.867883, "access=": -5.867883, "any": -4.951593, "application.colorTestVar": -6.561031, "arg": -5.174736, "arg1": -5.867883, "arguments": -5.867883, "arguments.arg": -6.561031, "arguments.asQuery": -6.561031, "arguments.async": -5.462418, "arguments.entityName": -6.561031, "arguments.isPublished": -5.462418, "arguments.max": -6.561031, "arguments.offset": -6.561031, "arguments.searchActiveContent": -6.561031, "arguments.searchTerm": -6.561031, "arguments.sortOrder": -6.561031, "array": -6.561031, "arrayliteralTest": -6.561031, "asQuery": -5.867883, "asStruct": -4.769271, "async": -4.615121, "bar": -6.561031, "boolean": -4.769271, "brad": -5.462418, "c": -6.561031, "c.": -6.561031, "c.DISTINCT_ROOT_ENTITY": -6.561031, "c.count": -6.561031, "c.createAlias": -6.561031, "c.isEq": -6.561031, "c.isLt": -6.561031, "c.like": -6.561031, "c.restrictions.isGT": -6.561031, "c.restrictions.isNull": -6.561031, "c.restrictions.like": -5.867883, "c.resultTransformer": -6.561031, "cache": -4.769271, "cache.clear": -5.462418, "cache.clearByKeySnippet": -5.462418, "cacheBox.getCache": -4.769271, "clearAllCaches": -6.561031, "clearAllPageWrapperCaches": -6.561031, "clearPageWrapper": -6.561031, "clearPageWrapperCaches": -6.561031, "client.colorTestVar": -6.561031, "closureTest": -6.561031, "component": -6.561031, "contentID": -6.561031, "cookie.colorTestVar": -6.561031, "else": -6.561031, "entityName": -5.867883, "exists": -6.561031, "extends": -6.561031, "false": -4.615121, "foo": -5.462418, "func": -6.561031, "function": -4.076124, "if": -5.174736, "init": -6.561031, "inject": -4.258446, "isBoolean": -6.561031, "isPublished": -6.561031, "javaCast": -6.561031, "keySnippet": -5.462418, "last": -6.561031, "len": -6.561031, "max": -5.867883, "methodCall": -6.561031, "name": -3.921973, "new": -6.561031, "newCriteria": -6.561031, "now": -5.867883, "null": -5.867883, "numeric": -5.867883, "offset": -5.867883, "or": -5.867883, "param": -5.867883, "private": -5.174736, "property": -4.258446, "q": -6.561031, "required": -4.615121, "required=": -5.867883, "results": -5.867883, "results.content": -6.561031, "results.count": -6.561031, "return": -4.163135, "returntype": -5.867883, "returntype=": -5.867883, "searchActiveContent": -6.561031, "searchContent": -6.561031, "searchTerm": -6.561031, "session.colorTestVar": -6.561031, "settingService.getAllSettings": -4.769271, "settings": -4.769271, "settings.cb_content_cacheName": -4.769271, "singleton": -6.561031, "slug": -5.867883, "sortOrder": -5.867883, "sql": -6.561031, "structKeyExists": -6.561031, "super.init": -6.561031, "syncUpdateHits": -6.561031, "this": -4.363806, "this.colorTestVar": -6.561031, "this.myVariable": -6.561031, "true": -4.163135, "type": -5.867883, "type=": -5.867883, "useQueryCaching": -6.561031, "var": -3.852980, "wood": -5.867883, "writeoutput": -6.561031, "{": -3.469988, "}": -3.469988, }, "Common Lisp": map[string]float64{ "#": -5.842344, "&": -4.905575, "'": -8.111028, "(": -1.660031, ")": -1.687781, "*": -6.811745, "*OS": -9.209640, "*copy": -9.209640, "*fact": -8.516493, "*foo*": -8.516493, "*hypothesis": -9.209640, "*make": -8.516493, "*package*": -9.209640, "*replace": -9.209640, "*rule": -7.823346, "+": -5.471971, ",": -3.978532, "-": -2.812710, ".": -6.031586, "/": -7.600202, ":": -3.473068, ";": -3.208225, "<": -7.263730, "<bingings>": -9.209640, "<hypotheses>": -9.209640, "<hypothesis>": -7.600202, "<rules>": -9.209640, "=": -6.570583, ">": -6.165118, "?": -5.277814, "@": -9.209640, "@PREFIX": -7.600202, "@body": -7.263730, "@breif": -9.209640, "@file": -9.209640, "@forms": -8.111028, "@message": -8.516493, "@rest": -9.209640, "ARTIFICIAL": -9.209640, "AUTONOMA": -9.209640, "Advanced": -9.209640, "After": -8.516493, "All": -9.209640, "Aug": -9.209640, "Auxiliary": -9.209640, "Basado": -9.209640, "C": -9.209640, "COMMENTS": -8.111028, "Constants": -9.209640, "Copyright": -8.516493, "DE": -9.209640, "DEFINE": -9.209640, "DEFSETF": -9.209640, "DEFUN": -9.209640, "Define": -9.209640, "E": -8.516493, "E.": -7.823346, "EOF": -9.209640, "ESCUELA": -9.209640, "EVAL": -8.516493, "EXAMPLES": -8.516493, "Electrotechnical": -9.209640, "Expected": -9.209640, "FIND": -9.209640, "FROM": -9.209640, "FUNCTION": -8.111028, "Feb": -9.209640, "Finds": -9.209640, "Functions": -9.209640, "Global": -9.209640, "HELLO": -8.516493, "Hagiya": -9.209640, "Header": -8.516493, "INTELIGENCIA": -9.209640, "In": -9.209640, "Inline": -8.516493, "Jun": -8.516493, "LISP": -9.209640, "LIST": -5.425450, "Laboratory": -9.209640, "Lisp": -9.209640, "MADRID": -9.209640, "MATSUI": -9.209640, "METHOD": -9.209640, "MULTI": -9.209640, "Macro": -9.209640, "Masami": -9.209640, "Mode": -9.209640, "Modified": -9.209640, "More": -9.209640, "Motor": -9.209640, "Multi": -8.516493, "NIL": -8.111028, "Norvig": -9.209640, "Note": -8.516493, "OBJECT": -5.425450, "OBJECTS": -5.425450, "On": -9.209640, "Otherwise": -9.209640, "PERTENECE": -7.417881, "POLITECNICA": -9.209640, "PREDICATE": -5.425450, "PRINT": -9.209640, "Package": -9.209640, "Peter": -9.209640, "QNAME": -5.338439, "R": -7.823346, "RULE": -8.516493, "RULES": -8.516493, "Returns": -8.516493, "SETF": -9.209640, "SETF.": -9.209640, "STRING": -6.213908, "SUPERIOR": -9.209640, "T": -9.209640, "T.Matsui": -9.209640, "THENs": -9.209640, "TRIPLES": -6.907055, "TURTLE": -9.209640, "Taiichi": -9.209640, "Test": -9.209640, "That": -8.516493, "The": -8.111028, "Then": -9.209640, "This": -9.209640, "Toshihiro": -9.209640, "UNIFY": -9.209640, "UNIVERSIDAD": -9.209640, "URIREF": -5.808443, "VALUE": -8.516493, "VERSION*": -9.209640, "Write": -8.516493, "XS.": -8.516493, "Xs": -8.516493, "Yuasa": -9.209640, "\\": -8.516493, "_": -7.263730, "____________________________________________________________________________": -7.600202, "`": -5.239348, "a": -6.570583, "abs": -9.209640, "access": -6.501590, "accessor": -8.516493, "account": -9.209640, "accumulator": -7.823346, "acons": -9.209640, "add": -8.516493, "adjoin": -9.209640, "adjustable": -7.600202, "advanced.cl": -9.209640, "alias": -7.600202, "alist": -7.012416, "all": -7.417881, "also": -9.209640, "and": -6.031586, "anonymous": -7.823346, "anywhere": -7.417881, "apackage": -8.111028, "append": -8.111028, "apply": -7.263730, "are": -8.516493, "aref": -8.111028, "arg": -7.600202, "args": -7.012416, "arguments": -9.209640, "arithmetics": -9.209640, "array": -5.654292, "as": -9.209640, "aset": -9.209640, "ash": -9.209640, "assoc": -8.111028, "assq": -9.209640, "atom": -7.130199, "aux": -7.417881, "b": -6.570583, "backquote": -9.209640, "base": -9.209640, "basic": -9.209640, "be": -8.111028, "bigger": -9.209640, "bind": -8.516493, "binding": -6.376427, "bindings": -5.402978, "block": -7.823346, "body": -6.376427, "boundp": -9.209640, "by": -9.209640, "c": -7.823346, "caaar": -9.209640, "caaddr": -9.209640, "caadr": -9.209640, "caar": -8.111028, "cadar": -9.209640, "caddddr": -9.209640, "cadddr": -8.111028, "caddr": -7.263730, "cadr": -6.437051, "call": -8.516493, "can": -7.823346, "canonicalize": -9.209640, "car": -5.297617, "case": -7.823346, "casebody": -9.209640, "cdaar": -9.209640, "cdaddr": -9.209640, "cdadr": -9.209640, "cdar": -8.111028, "cddar": -9.209640, "cddddr": -8.516493, "cdddr": -7.600202, "cddr": -7.130199, "cdr": -5.743904, "char": -7.823346, "character": -8.111028, "check": -8.111028, "class": -7.130199, "classcase": -9.209640, "classcasehead": -9.209640, "classname": -8.516493, "classobj": -7.130199, "clauses": -7.600202, "cls": -7.417881, "code": -8.516493, "codes": -9.209640, "coerce": -7.130199, "collect": -8.111028, "comma": -9.209640, "comment.": -7.130199, "common.l": -9.209640, "commonLisp": -9.209640, "compile": -8.516493, "concatenate": -9.209640, "concise": -9.209640, "cond": -6.265201, "condition": -8.516493, "cons": -5.990764, "cons/cons": -9.209640, "consp": -7.417881, "constant": -9.209640, "contents": -7.600202, "copy": -7.600202, "count": -5.951544, "d": -7.823346, "datum": -8.516493, "de": -8.516493, "dec": -9.209640, "decf": -8.516493, "decl": -7.263730, "declare": -7.600202, "defclass": -8.111028, "defclassmethod": -8.516493, "defconstant": -8.111028, "define": -8.111028, "defining": -9.209640, "definition": -9.209640, "defmacro": -5.520761, "defmethod": -9.209640, "defsetf": -8.516493, "defstruct": -8.516493, "defun": -4.518292, "defvar": -7.417881, "deg": -7.417881, "delete": -6.811745, "derivedp": -9.209640, "dest": -6.724733, "difference": -9.209640, "dimension": -9.209640, "dimensions": -7.600202, "dims": -7.263730, "displaced": -6.644691, "dlist": -8.516493, "do": -6.376427, "doc": -7.417881, "documentation": -7.600202, "dolist": -6.644691, "dotimes": -7.263730, "dst": -9.209640, "duplicates": -8.111028, "e": -6.570583, "ecase": -8.516493, "eighth": -9.209640, "element": -6.031586, "elt": -6.724733, "emits": -9.209640, "en": -8.516493, "end": -5.546078, "endp": -8.516493, "endtest": -8.111028, "eq": -6.644691, "eql": -8.111028, "equal": -7.600202, "equality": -8.516493, "error": -6.907055, "etype": -9.209640, "eus": -9.209640, "euserror": -9.209640, "euslisp": -9.209640, "eval": -6.501590, "evenp": -8.516493, "every": -8.111028, "exclusive": -9.209640, "exe_name": -9.209640, "execute": -8.516493, "exp": -8.516493, "expand": -8.111028, "expanded": -9.209640, "expansion": -8.111028, "export": -7.600202, "expresion": -8.516493, "expression": -8.516493, "expressions": -8.516493, "expt": -8.516493, "extend": -8.516493, "extended": -9.209640, "extream": -8.516493, "fact": -7.823346, "facts": -9.209640, "fail": -7.012416, "far": -7.823346, "fdef": -9.209640, "features": -9.209640, "fifth": -9.209640, "file": -9.209640, "fill": -7.263730, "find": -6.570583, "first": -7.130199, "flatten": -8.111028, "fn": -6.501590, "fname": -8.111028, "follows": -9.209640, "foo": -7.823346, "for": -7.417881, "form": -6.644691, "form*": -9.209640, "format": -7.823346, "forms": -6.811745, "forward": -9.209640, "forwards": -7.417881, "found": -7.600202, "fourth": -9.209640, "friendly": -9.209640, "from": -6.724733, "funcall": -6.644691, "function": -7.263730, "functionp": -8.516493, "functions": -9.209640, "g": -7.823346, "general": -9.209640, "generate": -9.209640, "gensym": -6.501590, "gensyms": -8.111028, "gentemp": -8.516493, "get": -7.263730, "given": -8.111028, "global": -7.823346, "go": -8.516493, "gvars": -7.823346, "h": -6.724733, "hand": -9.209640, "hardwritten": -9.209640, "has": -9.209640, "have": -9.209640, "head": -7.600202, "hello": -8.516493, "how": -9.209640, "hypothesis": -6.907055, "i": -5.448440, "ics": -7.012416, "identity": -9.209640, "ies": -7.417881, "if": -4.946960, "ifs": -9.209640, "ignore": -8.516493, "implementation": -7.417881, "implementations": -9.209640, "in": -5.951544, "inc": -6.811745, "incf": -7.012416, "incorrent": -9.209640, "index": -7.417881, "inferencia": -9.209640, "init": -7.417881, "initial": -6.570583, "initialize": -8.111028, "inits": -8.111028, "input": -8.516493, "input.": -9.209640, "insert": -9.209640, "inst": -8.111028, "instance": -7.823346, "instance*": -8.516493, "instances": -9.209640, "instantiate": -7.417881, "integer": -9.209640, "integerp": -8.516493, "intern": -9.209640, "interpolate": -9.209640, "intersection": -9.209640, "into": -8.111028, "is": -7.263730, "it": -8.516493, "item": -5.626121, "ix": -7.130199, "j": -7.130199, "key": -4.732303, "keyvar": -7.417881, "klass": -8.111028, "l": -5.380999, "lambda": -6.811745, "last": -9.209640, "length": -5.877436, "let": -5.683280, "let*": -6.907055, "lexpr": -8.516493, "line": -7.823346, "link_order": -9.209640, "lisp": -7.130199, "list": -4.755293, "list*": -7.263730, "listp": -7.012416, "lists": -8.111028, "load": -7.417881, "log": -9.209640, "logand": -8.516493, "logandc": -7.823346, "logbitp": -8.516493, "lognot": -8.516493, "lookup": -7.600202, "loop": -7.823346, "lst": -7.417881, "macro": -7.130199, "macro.": -8.516493, "macroexpand": -7.263730, "macros": -7.823346, "major": -9.209640, "make": -6.319268, "mapcan": -8.516493, "mapcar": -7.263730, "member": -6.437051, "memq": -8.111028, "merge": -8.111028, "message": -7.823346, "messages": -9.209640, "metaclass": -7.600202, "metaklass": -8.111028, "method": -7.600202, "methodname": -8.516493, "methods": -7.600202, "min": -9.209640, "minusp": -8.111028, "mod": -9.209640, "more": -8.111028, "most": -8.516493, "msgs": -8.516493, "multiple": -7.600202, "n": -5.951544, "name": -6.376427, "names": -8.516493, "nconc": -8.111028, "necessary": -8.516493, "new": -7.012416, "newitem": -7.130199, "newvalue": -8.516493, "next": -6.811745, "nil": -4.975534, "no": -7.417881, "not": -5.239348, "note": -9.209640, "nreconc": -9.209640, "nreverse": -6.724733, "nsubstitute": -7.263730, "nth": -7.600202, "nthcdr": -7.263730, "null": -7.417881, "number": -8.516493, "numberp": -9.209640, "obj": -7.417881, "occurs": -7.600202, "oddp": -8.516493, "of": -7.823346, "offset": -7.823346, "often": -9.209640, "old": -7.600202, "olditem": -7.823346, "on": -8.516493, "option": -8.111028, "optional": -6.724733, "or": -6.907055, "other": -9.209640, "otherwise": -9.209640, "own": -9.209640, "p": -5.743904, "package": -7.600202, "packages": -9.209640, "pairlis": -8.111028, "parameter*": -9.209640, "part": -9.209640, "parte": -9.209640, "partially": -8.516493, "pertenece": -8.516493, "pi": -8.516493, "pkg": -8.516493, "pkgv": -8.111028, "place": -6.265201, "plusp": -8.516493, "pointer": -7.823346, "pop": -6.570583, "pos": -7.600202, "position": -7.263730, "practices": -9.209640, "pred": -6.213908, "predicate": -7.130199, "prime": -6.724733, "primep": -7.823346, "primes": -8.111028, "procedures": -9.209640, "prog": -7.600202, "prog*": -9.209640, "progn": -6.811745, "proven": -8.516493, "provide": -9.209640, "psetq": -8.516493, "push": -6.165118, "pushnew": -8.111028, "putprop": -7.823346, "query": -7.823346, "quick": -8.516493, "quote": -7.417881, "r": -6.437051, "rad": -7.417881, "range": -7.823346, "rank": -7.417881, "rassoc": -8.516493, "raw": -6.811745, "readtable": -9.209640, "readtablep": -9.209640, "recommended": -9.209640, "reduce": -9.209640, "remove": -6.907055, "rename": -9.209640, "renamed": -8.111028, "renamed.": -9.209640, "replace": -8.111028, "requirement": -9.209640, "resend": -9.209640, "reserved.": -9.209640, "rest": -5.359493, "result": -5.913803, "return": -7.012416, "returns": -7.823346, "reverse": -8.516493, "rights": -9.209640, "rotate": -9.209640, "routines": -9.209640, "row": -9.209640, "rplaca": -9.209640, "rplacd": -8.516493, "rule": -6.376427, "rules": -7.600202, "run": -9.209640, "s": -6.376427, "s/reuse": -9.209640, "sample": -8.516493, "satisfy": -9.209640, "second": -7.823346, "send": -6.811745, "send*": -8.111028, "seq": -5.115296, "sequence": -8.516493, "set": -7.600202, "setf": -5.913803, "setq": -5.149197, "setslot": -9.209640, "seventh": -9.209640, "should": -9.209640, "si": -7.600202, "signum": -8.516493, "simulation": -9.209640, "single": -9.209640, "sixth": -9.209640, "size": -7.130199, "skeleton": -9.209640, "slot": -9.209640, "slots": -7.823346, "so": -7.823346, "solutions": -9.209640, "solutions.": -9.209640, "some": -8.111028, "sort": -8.516493, "special": -8.516493, "specified": -8.516493, "sqrt": -9.209640, "src": -6.644691, "stack": -7.263730, "standard": -9.209640, "start": -5.425450, "string": -7.823346, "stringp": -9.209640, "structure": -9.209640, "sub": -9.209640, "subsetp": -9.209640, "subst": -7.823346, "substitute": -7.263730, "super": -7.263730, "super*": -8.516493, "superassoc": -9.209640, "supermember": -9.209640, "svec": -7.823346, "sym": -8.516493, "symbol": -7.600202, "symbolp": -7.130199, "symbols": -7.823346, "symvector": -9.209640, "synonym": -9.209640, "syntax": -9.209640, "system": -6.501590, "t": -5.626121, "tag": -7.417881, "tagbody": -7.823346, "tail": -8.516493, "taking": -9.209640, "tempvar": -9.209640, "term": -9.209640, "test": -4.946960, "than": -9.209640, "that": -7.600202, "the": -5.654292, "then": -7.263730, "third": -8.516493, "this": -9.209640, "to": -6.570583, "toplevel": -7.823346, "total": -8.516493, "transpose": -8.516493, "tree": -6.724733, "two": -8.516493, "type": -5.990764, "types": -7.417881, "unification.": -9.209640, "unifier": -9.209640, "unify": -6.724733, "union": -9.209640, "unique": -7.263730, "universal": -8.516493, "unless": -6.501590, "until": -8.516493, "update": -9.209640, "upgraded": -8.516493, "used": -8.516493, "using": -9.209640, "v": -5.775653, "val": -7.263730, "vals": -7.823346, "value": -6.724733, "values": -9.209640, "var": -5.019985, "variable": -7.417881, "variables": -6.376427, "varlist": -9.209640, "vars": -6.165118, "varvals": -7.823346, "vec": -7.600202, "vector": -6.570583, "vectorp": -9.209640, "version": -7.417881, "vilist": -8.111028, "vlist": -7.823346, "vtype": -9.209640, "when": -6.265201, "which": -9.209640, "while": -6.907055, "whose": -9.209640, "with": -7.417881, "world": -9.209640, "writting": -9.209640, "x": -4.349828, "xyzzy.": -9.209640, "y": -6.437051, "your": -9.209640, "z": -7.823346, "zerop": -7.600202, "|": -6.437051, }, "Component Pascal": map[string]float64{ "&": -4.832306, "(": -2.357870, ")": -2.368453, "*": -6.911747, "+": -6.911747, ",": -3.040546, "-": -6.911747, ".size": -6.911747, ":": -2.677641, ";": -2.091466, "<": -4.714523, "=": -2.868696, ">": -5.525453, "ARRAY": -6.218600, "ASSERT": -6.911747, "BEGIN": -4.346798, "CHAR": -5.813135, "CONST": -6.911747, "ClassNotify": -6.911747, "ClassNotify*": -6.911747, "Compute": -6.911747, "Compute*": -6.911747, "CopyFromSimpleView": -6.218600, "DEC": -6.911747, "DO": -5.525453, "Dialog": -6.911747, "Dialog.List": -6.911747, "Dialog.Par": -6.218600, "Dialog.Update": -6.218600, "Dialog.UpdateList": -6.911747, "Dialog.changed": -6.218600, "ELSE": -5.813135, "ELSIF": -6.911747, "END": -3.477760, "HandlePropMsg": -6.218600, "IF": -4.513852, "IMPORT": -6.218600, "INC": -5.525453, "INTEGER": -4.609162, "Integers": -6.911747, "Integers.Compare": -6.911747, "Integers.ConvertFromString": -6.911747, "Integers.Digits": -6.911747, "Integers.Integer": -5.813135, "Integers.Long": -5.813135, "Integers.Product": -6.911747, "Integers.Short": -6.911747, "Integers.Sign": -6.218600, "Integers.ThisDigit": -6.911747, "LONGINT": -6.911747, "ListGuard": -6.911747, "ListGuard*": -6.911747, "ListNotify": -6.911747, "ListNotify*": -6.911747, "MAX": -6.911747, "MODULE": -6.218600, "Models": -6.911747, "Models.BeginScript": -6.911747, "Models.EndScript": -6.911747, "NEW": -6.218600, "NIL": -6.218600, "OF": -6.218600, "OR": -5.525453, "ObxControls": -6.911747, "ObxControls.": -6.911747, "ObxFact": -6.911747, "ObxFact.": -6.911747, "Of": -6.911747, "Open": -6.911747, "Open*": -6.911747, "POINTER": -6.218600, "PROCEDURE": -4.426841, "Ports": -6.911747, "Ports.fill": -6.911747, "Ports.mm": -6.911747, "Ports.red": -6.911747, "Properties": -6.911747, "Properties.SizePref": -6.911747, "RECORD": -6.218600, "REPEAT": -5.813135, "Read": -5.813135, "Restore": -6.218600, "SHORT": -6.911747, "SetList": -5.525453, "Stores": -6.911747, "Stores.Operation": -6.911747, "THEN": -4.609162, "TO": -6.218600, "TYPE": -6.911747, "TextControllers": -6.911747, "TextControllers.Controller": -6.911747, "TextControllers.Focus": -6.911747, "TextModels": -6.911747, "TextModels.Attributes": -6.911747, "TextModels.Reader": -6.218600, "TextModels.Writer": -6.218600, "UNTIL": -5.813135, "VAR": -4.714523, "View": -5.119988, "Views": -6.911747, "Views.Frame": -6.911747, "Views.OpenAux": -6.911747, "Views.PropMessage": -6.911747, "Views.View": -6.218600, "WHILE": -5.813135, "WITH": -6.911747, "WidthGuard": -6.911747, "WidthGuard*": -6.911747, "Write": -5.813135, "X": -6.911747, "[": -4.346798, "]": -4.346798, "^": -6.911747, "advanced": -5.813135, "attr": -5.813135, "b": -6.911747, "beg": -4.513852, "beginner": -5.302309, "buf": -5.302309, "c": -5.813135, "c.GetSelection": -6.911747, "c.text": -6.218600, "c.text.Delete": -6.911747, "c.text.NewReader": -6.911747, "c.text.NewWriter": -6.911747, "ch": -4.272690, "class*": -6.911747, "data": -6.218600, "data*": -6.911747, "data.class": -5.302309, "data.list": -6.911747, "data.list.SetItem": -4.513852, "data.list.SetLen": -5.813135, "data.list.index": -5.813135, "data.width": -5.525453, "end": -5.119988, "expert": -6.911747, "f": -6.911747, "f.DrawRect": -6.911747, "from": -6.218600, "guru": -6.911747, "i": -4.078534, "l": -6.911747, "len": -5.302309, "list*": -6.911747, "msg": -6.218600, "msg.h": -6.911747, "msg.w": -6.911747, "n": -5.813135, "op": -5.525453, "par": -6.218600, "par.disabled": -6.911747, "par.readOnly": -6.911747, "predef": -4.426841, "r": -5.302309, "r.Pos": -6.218600, "r.ReadChar": -5.119988, "r.ReadPrev": -6.218600, "r.SetPos": -6.218600, "r.attr": -6.911747, "r.eot": -5.302309, "s": -5.813135, "size": -6.911747, "source": -6.218600, "t": -6.911747, "to": -5.302309, "v": -5.119988, "v.size": -4.609162, "w": -5.525453, "w.SetAttr": -6.911747, "w.SetPos": -6.911747, "w.WriteChar": -5.813135, "width*": -6.911747, "x": -4.203697, "~": -5.525453, }, "Cool": map[string]float64{ "(": -2.548328, ")": -2.548328, "*": -4.781921, "+": -5.880533, ",": -4.781921, "-": -4.271095, ".init": -5.880533, ".testLet": -5.880533, "/": -5.187386, "1": -5.880533, "2": -5.880533, ":": -2.584696, ";": -2.325185, "<": -4.088774, "<->": -5.880533, "=": -4.494239, ">": -4.494239, "A": -4.781921, "B": -5.187386, "Bool": -4.271095, "C": -5.880533, "Cons": -5.187386, "IO": -4.781921, "Int": -3.172483, "List": -3.801091, "Main": -5.880533, "Object": -5.880533, "SELF_TYPE": -5.187386, "Sample": -4.271095, "a": -4.494239, "abort": -5.187386, "b": -4.781921, "c": -5.187386, "car": -4.781921, "case": -5.880533, "cdr": -4.781921, "class": -3.934623, "condition": -5.880533, "cons": -5.880533, "else": -4.494239, "esac": -5.880533, "false": -4.781921, "fi": -5.187386, "head": -5.187386, "i": -3.934623, "if": -4.781921, "in": -5.187386, "inherits": -4.494239, "init": -5.880533, "io": -5.880533, "io.out_string": -4.494239, "isNil": -5.187386, "let": -5.187386, "loop": -5.880533, "main": -5.187386, "new": -4.781921, "not": -5.880533, "o": -5.880533, "of": -5.880533, "out_string": -5.880533, "pool": -5.880533, "rest": -5.187386, "s": -5.880533, "self": -4.781921, "tail": -5.187386, "testAssign": -5.880533, "testCase": -5.880533, "testCondition": -5.880533, "testLet": -5.880533, "testLoop": -5.880533, "then": -4.781921, "true": -5.187386, "var": -5.187386, "while": -5.880533, "x": -4.781921, "y": -3.801091, "z": -5.187386, "{": -2.661657, "}": -2.702479, }, "Coq": map[string]float64{ "!": -8.635687, "\"": -10.832912, "%": -9.734299, "&": -5.783056, "'": -10.139764, "(": -3.611807, ")": -3.607430, "*": -6.476203, "**": -8.060323, "**************************************************************": -8.753470, "*.": -6.390260, "+": -6.207939, ",": -4.924829, "-": -2.923789, ".": -4.638506, "..": -10.139764, "/": -5.856178, "/h": -10.139764, "0": -5.673856, "01": -8.060323, "013": -9.446617, "01zM": -10.832912, "01zm0": -10.832912, "02": -9.446617, "03": -10.139764, "04": -10.139764, "06": -10.832912, "06C9": -10.832912, "07": -8.530327, "08": -8.753470, "09": -9.446617, "0C3": -10.139764, "0H7V3h2v10zm4": -10.832912, "0L0": -10.832912, "0h": -10.832912, "0l1": -10.832912, "1": -5.307459, "10": -9.041152, "100": -10.832912, "101": -10.832912, "102": -10.832912, "103": -10.832912, "104": -10.832912, "105": -10.832912, "106": -10.832912, "107": -10.832912, "10H1v2h2v": -10.832912, "10H2V3h9v1z": -10.832912, "10H2v9h9V1z": -10.832912, "10c": -10.139764, "10c0": -10.832912, "10l6": -9.223474, "11": -8.267962, "11H11": -10.832912, "11h1": -10.832912, "12": -7.942540, "12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1": -10.832912, "12c": -10.832912, "12c0": -10.832912, "12v3h3l8": -10.832912, "13": -8.753470, "134": -10.832912, "13H3V8h2v5zm4": -10.832912, "13V3c0": -10.832912, "13h": -10.139764, "13z": -10.832912, "14": -7.999698, "14l": -10.832912, "14v1H0V0h1v14h15zM5": -10.832912, "15": -8.530327, "15a1": -9.734299, "15h13V1H1v14zM15": -10.832912, "16": -7.195326, "16v": -10.832912, "17": -9.223474, "18": -8.348005, "19": -8.635687, "1C3": -10.832912, "1H": -10.832912, "1H11": -10.139764, "1H1a1": -10.832912, "1H2": -10.832912, "1H2c": -10.832912, "1H5c": -10.832912, "1H6": -10.832912, "1H6v2l": -10.832912, "1L8": -10.139764, "1V1a1": -10.832912, "1V1c0": -10.832912, "1V3c0": -10.139764, "1V5c": -10.832912, "1a1": -10.139764, "1h": -9.734299, "1h1": -10.832912, "1h10c": -10.832912, "1h13a1": -10.832912, "1h3v1h5v": -10.832912, "1h7c": -10.832912, "1v12c0": -10.832912, "1v14a1": -10.832912, "1v1c0": -10.832912, "1v9c0": -10.832912, "1z": -10.832912, "1zM2": -10.139764, "1zm": -9.446617, "2": -5.835699, "20": -10.832912, "21": -8.753470, "22": -9.734299, "23": -9.223474, "24": -10.832912, "25": -9.734299, "25l1": -9.734299, "26": -10.832912, "26L2": -10.832912, "27": -8.530327, "275": -10.139764, "28": -9.223474, "28A1": -10.832912, "28V5c": -10.832912, "29": -9.223474, "2C1": -10.139764, "2C3": -10.832912, "2H1c": -10.832912, "2H1v": -10.832912, "2H3v1h1V2zm8": -10.832912, "2H3v1h1V4zm0": -10.832912, "2H7V0L4": -10.832912, "2H9c0": -10.832912, "2V6h2v4z": -10.139764, "2V6h2v7z": -10.832912, "2a1": -10.832912, "2h1": -10.832912, "2h1v1h1v1zm10": -10.832912, "2h2v2zm0": -10.139764, "2v": -10.139764, "2z": -9.446617, "2zM2": -10.832912, "2zM4": -10.832912, "2zm0": -10.832912, "2zm3": -10.139764, "3": -6.789860, "30": -10.832912, "31": -8.267962, "32": -9.734299, "33": -9.446617, "34": -9.223474, "35": -10.139764, "36": -8.753470, "37": -9.734299, "38": -9.446617, "38A8": -10.139764, "39": -9.446617, "3H3v1h1V6zm0": -10.832912, "3H6v5h2V4zm0": -10.832912, "3L12": -10.832912, "3L8": -10.832912, "3V4": -10.832912, "3V4h1c": -10.832912, "3a": -10.139764, "3b": -10.832912, "3c0": -9.734299, "3c3": -10.832912, "3h": -10.139764, "3l1": -10.832912, "3l3": -10.832912, "3v1": -10.832912, "3v10c0": -10.832912, "3v6c0": -10.832912, "3v8c0": -10.832912, "3z": -10.832912, "3zm": -10.832912, "4": -6.982764, "40": -10.832912, "41": -8.530327, "41z": -10.832912, "42": -9.446617, "43": -10.832912, "44": -9.734299, "45": -8.267962, "46": -9.446617, "47": -9.446617, "48": -7.942540, "48L4": -9.734299, "48L6": -9.041152, "48l": -9.734299, "48z": -9.734299, "49": -9.223474, "4H": -10.832912, "4L9": -10.832912, "4c": -9.734299, "4c0": -10.139764, "4zm2": -10.832912, "5": -6.825578, "50": -10.832912, "51": -8.887002, "52": -8.530327, "52c": -10.139764, "52l3": -9.734299, "52zM8": -10.139764, "53": -8.635687, "54": -8.887002, "55": -7.119340, "56": -9.041152, "56A1": -10.832912, "57": -10.832912, "58": -8.635687, "59": -6.941091, "59C0": -9.734299, "59C2": -10.832912, "59C6": -10.832912, "59c": -10.832912, "5H14V8z": -10.832912, "5L": -10.139764, "5L3": -10.832912, "5L4": -9.223474, "5L6": -10.832912, "5c": -10.139764, "5h13": -10.139764, "5l": -9.223474, "5l1": -10.832912, "5l3": -10.139764, "5s": -10.139764, "5z": -9.223474, "6": -7.741869, "60": -10.832912, "61": -10.832912, "62": -10.832912, "63": -9.734299, "64": -8.887002, "64L7": -10.832912, "65": -7.697417, "66": -8.887002, "67": -9.223474, "68": -9.223474, "69": -8.348005, "69v6": -10.832912, "6C13": -10.832912, "6H6v2h2v": -10.832912, "6V4": -10.832912, "6l": -10.139764, "6l3": -10.832912, "6zM8": -10.832912, "7": -7.888473, "70": -10.832912, "71": -9.734299, "72": -9.734299, "72A1": -10.139764, "72V4": -10.832912, "72V6": -10.832912, "72V6L5": -10.832912, "72V9": -10.832912, "72c": -10.832912, "72v6": -10.832912, "72zm": -10.139764, "73": -9.734299, "74": -10.832912, "74z": -10.832912, "75": -7.788389, "76": -10.832912, "77": -9.446617, "78": -8.887002, "78A1": -10.832912, "79": -10.832912, "7A5": -10.832912, "7c": -10.139764, "7s": -10.832912, "7zM7": -10.832912, "7zm1": -10.832912, "8": -7.004270, "80": -10.832912, "81": -10.832912, "82": -7.888473, "82C10": -10.832912, "82C5": -10.832912, "82C9": -10.832912, "82c": -10.832912, "83": -10.832912, "84": -10.832912, "85": -10.832912, "86": -9.734299, "865": -10.139764, "87": -7.999698, "88": -10.832912, "89": -8.753470, "8H0v2h3": -10.832912, "8L8": -10.832912, "8c0": -9.041152, "8l3": -9.734299, "8l4": -10.832912, "8s": -10.832912, "8s3": -10.139764, "8z": -10.139764, "8zm3": -10.832912, "9": -8.060323, "90": -10.832912, "91": -10.832912, "92": -9.734299, "92c": -10.832912, "93": -9.446617, "94": -8.887002, "95": -9.223474, "96": -10.832912, "97": -10.832912, "98": -10.139764, "99": -10.832912, "993": -7.741869, "995": -10.139764, "996": -10.139764, "9H": -10.832912, "9H3V8h1v1zm0": -10.832912, "9V3c0": -10.832912, ":": -3.227022, ";": -5.093119, "<": -7.614036, "<!-->": -10.139764, "<!DOCTYPE>": -10.832912, "<----->": -10.139764, "<---->": -10.139764, "<->": -7.221994, "</a>": -6.628219, "</body>": -10.832912, "</button>": -8.530327, "</div>": -6.843928, "</form>": -9.446617, "</head>": -10.832912, "</header>": -10.832912, "</html>": -10.832912, "</i>": -10.832912, "</label>": -10.832912, "</li>": -7.741869, "</nav>": -9.734299, "</option>": -10.139764, "</path>": -7.614036, "</relative-time>": -10.832912, "</script>": -9.734299, "</span>": -5.912931, "</strong>": -9.734299, "</svg>": -7.614036, "</table>": -10.832912, "</td>": -5.466936, "</title>": -10.832912, "</tr>": -6.160083, "</ul>": -9.223474, "</xmp>": -10.139764, "<a>": -6.628219, "<body>": -10.832912, "<button>": -8.530327, "<div>": -6.843928, "<form>": -10.139764, "<head>": -10.832912, "<header>": -10.832912, "<html>": -10.832912, "<i>": -10.832912, "<img>": -8.435016, "<input>": -9.223474, "<label>": -10.832912, "<li>": -7.741869, "<link>": -7.837179, "<meta>": -6.901086, "<nav>": -9.734299, "<path>": -7.614036, "<relative-time>": -10.832912, "<script>": -9.734299, "<span>": -5.912931, "<strong>": -9.734299, "<svg>": -7.614036, "<table>": -10.832912, "<td>": -5.466936, "<title>": -10.832912, "<tr>": -6.160083, "<ul>": -9.223474, "<y>": -9.446617, "=": -2.768590, ">": -2.603667, "?": -6.643257, "@@": -8.887002, "@if_bool": -10.832912, "@if_number": -10.832912, "@if_object": -10.832912, "@if_prim": -10.832912, "@if_string": -10.832912, "@if_success": -10.832912, "@if_ter": -10.832912, "@if_value": -10.832912, "@if_void": -10.832912, "@pick_option_correct": -9.446617, "A": -6.674029, "A.": -9.734299, "AExp": -10.832912, "AExp.": -10.832912, "AId": -9.446617, "AMinus": -8.635687, "AMult": -8.635687, "ANum": -7.942540, "API": -10.832912, "APlus": -8.060323, "ARTHUR": -10.832912, "Aa": -8.530327, "Ab": -8.193854, "Ab.": -10.832912, "About": -10.832912, "Acc": -9.446617, "AccessOpaque.": -10.832912, "Ad": -8.753470, "Add": -10.832912, "Admitted": -10.832912, "Admitted.": -7.837179, "All.": -10.139764, "Ao": -10.139764, "Ao.": -10.832912, "Arguments": -8.267962, "Arguments.": -9.446617, "AskAmount": -10.139764, "AskCard": -10.139764, "AskPIN": -10.139764, "B": -7.574815, "B.": -9.734299, "BAnd": -8.530327, "BEq": -8.635687, "BFalse": -8.435016, "BLe": -8.635687, "BNot": -8.635687, "BTrue": -8.530327, "Basics.": -10.139764, "Binary": -10.832912, "Blacklist": -10.832912, "Blame": -10.832912, "Blog": -10.139764, "Branch": -10.832912, "Branches": -10.832912, "Branching": -10.832912, "BtnGroup": -9.223474, "Business": -10.832912, "C": -5.645526, "C.": -9.223474, "C.Call": -9.041152, "C.Notations.": -10.832912, "C.Ret": -9.734299, "C.t": -8.267962, "CP.": -10.139764, "Call": -8.635687, "CallOther": -10.832912, "CallThen": -10.832912, "CallThis": -10.832912, "CardBeforeMoney.": -10.139764, "Case": -7.048722, "Case.": -9.734299, "Case_aux": -7.195326, "Check": -10.832912, "CheckAmount": -10.139764, "CheckPIN": -10.139764, "Close": -10.832912, "Code": -10.832912, "Coercion": -9.734299, "Coiso": -9.223474, "Command.": -10.139764, "Command.AskAmount": -10.832912, "Command.AskCard": -10.832912, "Command.AskPIN": -10.832912, "Command.CheckAmount": -10.832912, "Command.CheckPIN": -10.832912, "Command.GiveAmount": -10.832912, "Command.GiveCard": -10.832912, "Command.ShowError": -10.832912, "Command.answer": -8.635687, "Command.t": -8.435016, "Commits": -10.832912, "Comparable": -10.832912, "Computation.": -10.139764, "Constant": -6.528847, "Constructors": -8.530327, "Contact": -10.832912, "Context.": -10.832912, "Conversions": -10.139764, "Copied": -10.832912, "Copy": -10.832912, "Coq": -9.734299, "Coq.Lists.List.": -10.832912, "Coq.NArith.NArith.": -10.832912, "Coq.Strings.Ascii.": -10.832912, "Coq_result_impossible": -10.139764, "Coq_result_not_yet_implemented": -10.832912, "Corollary": -10.832912, "Cr": -10.139764, "D": -10.139764, "DO": -9.446617, "Definition": -6.598805, "Desc": -8.267962, "Dismiss": -10.832912, "E": -6.414071, "E.": -7.071712, "ECMAScript": -9.734299, "ELSE": -9.734299, "END": -9.446617, "EQAo": -10.832912, "EQAo.": -10.832912, "EQB": -10.832912, "EQB.": -10.832912, "EQM": -10.832912, "EQM.": -10.139764, "EQarg_len.": -10.139764, "EQdef.": -10.832912, "EQfollow": -9.734299, "EQfollow.": -10.832912, "EQnewLenDesc": -9.446617, "EQnewWritable": -9.734299, "EQo": -10.832912, "EQo.": -10.832912, "EQoldLen": -10.832912, "EQp": -10.832912, "EQv": -10.139764, "EQwr": -10.832912, "E_AMinus": -10.139764, "E_AMult": -10.139764, "E_ANum": -10.832912, "E_APlus": -10.139764, "E_Anum": -10.832912, "E_Ass": -10.832912, "E_BAnd": -10.832912, "E_BEq": -10.832912, "E_BFalse": -10.832912, "E_BLe": -10.832912, "E_BNot": -10.832912, "E_BTrue": -10.832912, "E_Const": -10.139764, "E_IfFalse": -10.832912, "E_IfTrue": -10.139764, "E_Plus": -10.139764, "E_Seq": -10.832912, "E_Skip": -10.832912, "E_WhileEnd": -10.139764, "E_WhileLoop": -10.139764, "Ed": -10.139764, "End": -8.060323, "Er": -8.348005, "Example": -7.888473, "Explore": -10.832912, "Export": -8.348005, "Extern": -9.446617, "ExtrOcamlBasic.": -10.832912, "ExtrOcamlNatInt.": -10.832912, "ExtrOcamlString.": -10.832912, "Extract": -6.463464, "Extraction": -8.635687, "F": -8.530327, "F.": -9.734299, "FI": -9.734299, "Fappli_IEEE": -10.832912, "Fappli_IEEE.Bdiv": -10.832912, "Fappli_IEEE.Bmult": -10.832912, "Fappli_IEEE.Bmult_FF": -10.832912, "Fappli_IEEE.Bplus": -10.832912, "Fappli_IEEE.binary_float": -10.832912, "Fappli_IEEE.binary_normalize": -10.139764, "Fappli_IEEE.mode_NE": -10.832912, "Fappli_IEEE.mode_NE.": -9.734299, "Fappli_IEEE_bits.b": -9.041152, "Fappli_IEEE_bits.binary": -10.832912, "Filter": -10.139764, "Find": -10.139764, "Fix": -10.832912, "FixFun": -9.446617, "FixFunMod": -10.832912, "Fixpoint": -7.574815, "Flocq": -10.139764, "Flocq.Appli.Fappli_IEEE": -10.139764, "Flocq.Appli.Fappli_IEEE_bits.": -10.139764, "Follow": -9.734299, "Footer": -8.435016, "Fork": -10.832912, "FunctionNinjas.All.": -10.139764, "G": -10.832912, "G.": -10.832912, "Gamma": -8.348005, "GitHub": -9.223474, "GiveAmount": -10.139764, "GiveCard": -10.139764, "Global": -10.832912, "Go": -10.832912, "Graphs": -10.832912, "Gt": -9.446617, "H": -5.049086, "H.": -6.247944, "H0": -7.999698, "H1": -8.887002, "H10": -10.832912, "H11": -10.139764, "H2": -9.734299, "H21": -10.139764, "H3": -10.139764, "H4": -9.734299, "H8": -10.832912, "HC": -10.832912, "HE": -10.832912, "HE.": -10.832912, "HK.": -10.832912, "HP.": -10.139764, "HR": -8.193854, "HR.": -6.542452, "HT": -7.888473, "HT.": -10.832912, "Habort": -10.832912, "Habort.": -10.832912, "Hafi": -10.832912, "Hafi.": -10.139764, "Hceval": -10.139764, "Hceval.": -9.446617, "Header": -8.887002, "Heap": -10.832912, "Heap.binds_equiv_read_option": -10.832912, "Heap.read_option": -10.832912, "Help": -10.832912, "Heq": -10.139764, "HeqCoiso": -10.139764, "Heqa": -10.139764, "Heqb": -9.041152, "Heqb.": -10.139764, "Heqb0": -10.832912, "Heqe": -10.832912, "Heqe.": -9.734299, "Heqloopdef.": -8.753470, "Heqr": -9.734299, "Heqr.": -10.832912, "Heqst": -10.832912, "Hint": -8.124861, "History": -10.832912, "Hl.": -10.832912, "Hm": -10.832912, "Hmo.": -9.446617, "HnW": -10.832912, "Hnm": -10.139764, "Hnm.": -9.734299, "Homepage": -10.139764, "Hred": -10.832912, "Hred.": -10.832912, "Ht": -10.832912, "Ht.": -9.734299, "Hy": -8.060323, "Hy1": -8.435016, "Hy2": -10.139764, "Hyp": -8.753470, "Hyp.": -9.446617, "I": -9.446617, "I.": -9.223474, "IEEE": -10.832912, "IFB": -9.446617, "IH": -7.654858, "IH.": -10.832912, "IHA": -10.832912, "IHA.": -10.832912, "IHHT": -10.139764, "IHHce": -10.139764, "IHHce.": -10.139764, "IHHmo.": -10.832912, "IHHy": -10.832912, "IHHy1": -9.446617, "IHa": -9.734299, "IHa1": -10.832912, "IHa2": -10.832912, "IHb": -10.832912, "IHbevalR": -9.734299, "IHc": -9.041152, "IHc1": -10.832912, "IHc2": -10.832912, "IHclos_refl_trans": -9.446617, "IHcontra": -10.832912, "IHe": -7.277564, "IHhas_type": -9.734299, "IHhas_type.": -10.832912, "IHi": -9.734299, "IHl": -9.223474, "IHl.": -9.446617, "IHle.": -10.832912, "IHm": -10.832912, "IHn": -9.734299, "IHn.": -10.139764, "IHoes": -10.832912, "IHrefl_step_closure": -10.832912, "IHrefl_step_closure.": -10.139764, "IHs.": -10.832912, "IHt": -8.635687, "IHt.": -10.832912, "Id": -9.041152, "Id.": -10.832912, "Imp.": -10.832912, "Implements": -10.139764, "Implicit": -6.355575, "Import": -7.654858, "Inc.": -10.832912, "Inductive": -6.920889, "Inhab_witness": -10.832912, "Inline": -9.223474, "Input": -10.832912, "Instance": -10.832912, "Int": -9.734299, "Issues": -10.832912, "JavaScript": -9.734299, "JsCommon": -10.832912, "JsCommonAux": -10.832912, "JsInit.": -10.832912, "JsInterpreter": -10.139764, "JsInterpreterMonads": -10.139764, "JsNumber.absolute": -10.832912, "JsNumber.add": -10.832912, "JsNumber.div": -10.832912, "JsNumber.e": -10.832912, "JsNumber.floor": -10.832912, "JsNumber.fmod": -10.832912, "JsNumber.from_string": -10.832912, "JsNumber.infinity": -10.832912, "JsNumber.int": -9.041152, "JsNumber.ln": -10.832912, "JsNumber.lt_bool": -10.832912, "JsNumber.max_value": -10.832912, "JsNumber.min_value": -10.832912, "JsNumber.modulo_": -10.832912, "JsNumber.mult": -10.832912, "JsNumber.nan": -10.832912, "JsNumber.neg": -10.832912, "JsNumber.neg_infinity": -10.832912, "JsNumber.neg_zero": -10.832912, "JsNumber.number_comparable": -10.832912, "JsNumber.of_int": -10.139764, "JsNumber.one": -10.832912, "JsNumber.pi": -10.832912, "JsNumber.sign": -10.832912, "JsNumber.sub": -10.832912, "JsNumber.to_int": -10.832912, "JsNumber.to_string": -10.832912, "JsNumber.to_uint": -10.832912, "JsNumber.uint": -10.832912, "JsNumber.v": -10.832912, "JsNumber.zero": -10.832912, "JsPreliminary.": -10.139764, "JsPrettyInterm": -10.832912, "JsPrettyRules.": -10.832912, "JsSyntax": -9.734299, "JsSyntaxAux": -10.139764, "Jul": -10.832912, "Jump": -10.139764, "K": -6.344275, "K.": -10.139764, "KB": -10.832912, "L": -8.193854, "LATER": -9.223474, "LN2": -10.832912, "LString.s": -8.887002, "LString.t": -10.139764, "LTAC": -10.832912, "Language": -10.832912, "Lem": -10.139764, "Lemma": -6.489106, "Lemmas": -10.832912, "LibEpsilon": -10.832912, "LibFix": -10.139764, "LibFunc": -10.832912, "LibHeap.": -10.832912, "LibList": -10.832912, "LibList.": -10.139764, "LibList.nth": -10.832912, "LibLogic": -10.832912, "LibNat": -10.832912, "LibOperation": -10.832912, "LibOption.map_on_inv": -10.832912, "LibReflect": -10.832912, "LibStruct": -10.832912, "LibTactics": -10.832912, "Line": -10.832912, "ListNotations.": -10.832912, "ListString.All.": -9.734299, "Lists.": -10.832912, "Local": -10.139764, "Logged": -9.734299, "Logic.": -10.832912, "Lt": -9.446617, "Ltac": -7.306551, "M": -9.223474, "M.": -9.041152, "M_correct": -10.139764, "M_correct.": -10.139764, "Math": -10.832912, "Math.LN": -10.832912, "Mbodin": -10.139764, "Mod": -10.139764, "Module": -7.837179, "Monadic": -10.832912, "N": -8.193854, "N.": -10.139764, "N.add": -10.832912, "N.compare": -10.832912, "N.div": -10.832912, "N.max": -10.832912, "N.min": -10.832912, "N.modulo": -10.832912, "N.mul": -10.832912, "N.pred": -10.832912, "N.sub": -10.832912, "N.succ": -10.832912, "NatList.": -10.139764, "Nav": -9.446617, "None": -5.227110, "None.": -10.139764, "Nonsense.": -9.446617, "Not": -10.832912, "Notation": -6.705777, "Notations.": -10.139764, "Nothing": -10.139764, "O": -6.322052, "O.": -9.041152, "OCaml": -10.832912, "Ocaml": -10.832912, "Ocaml.": -10.832912, "One.": -10.139764, "One.t": -10.832912, "Open": -9.734299, "Opv": -10.832912, "Opv.": -10.832912, "Out": -10.832912, "P": -6.920889, "P.": -8.530327, "Parameter": -7.398924, "Parser": -10.832912, "Parser.InvalidArgument": -10.832912, "Parser.ParserFailure": -10.832912, "Particular": -10.832912, "Permalink": -10.832912, "Personal": -10.832912, "PetarMax": -10.139764, "Playground": -9.734299, "Pos": -10.139764, "Pos.add": -10.832912, "Pos.compare": -10.832912, "Pos.compare_cont": -10.832912, "Pos.max": -10.832912, "Pos.min": -10.832912, "Pos.mul": -10.832912, "Pos.pred": -10.832912, "Pos.sub": -10.832912, "Pos.succ": -10.832912, "Pred": -9.223474, "Prheap.prstate": -10.832912, "Prheap.string_of_char_list": -9.734299, "Pricing": -10.832912, "Privacy": -10.832912, "Proj": -10.832912, "Projects": -10.832912, "Proof": -8.530327, "Proof.": -5.751507, "Prop": -7.336404, "Prop.": -10.832912, "Pull": -10.832912, "Pulse": -10.832912, "Q.": -10.139764, "Qed": -7.574815, "Qed.": -5.950110, "R": -5.462274, "R.": -8.530327, "RC": -10.139764, "RES.": -9.734299, "Raw": -10.832912, "Record": -10.832912, "Red": -8.435016, "Relations.": -10.832912, "Reload": -10.139764, "Remark": -10.832912, "Require": -7.336404, "Reserved": -9.041152, "Ret": -9.223474, "Ret.": -10.139764, "Run.": -10.139764, "S": -4.638506, "S.": -9.446617, "SCase": -7.249393, "SCase.": -10.139764, "SKIP": -9.223474, "SLoad": -9.041152, "SMinus": -8.435016, "SMult": -8.435016, "SPlus": -8.530327, "SPush": -8.753470, "SSCase": -9.041152, "STLC.": -10.832912, "ST_App": -9.446617, "ST_AppAbs.": -9.734299, "ST_Funny.": -10.832912, "ST_If": -10.832912, "ST_If.": -9.734299, "ST_IfFalse": -10.832912, "ST_IfFalse.": -10.139764, "ST_IfTrue": -10.832912, "ST_IfTrue.": -9.734299, "ST_Plus": -8.124861, "ST_Plus1": -10.139764, "ST_Plus2": -9.734299, "ST_PlusConstConst": -9.223474, "ST_PlusConstConst.": -8.753470, "Scope": -10.139764, "Search": -9.446617, "Security": -10.832912, "Separate": -10.832912, "Set": -9.223474, "SfLib.": -10.139764, "Shared": -10.832912, "Shared.": -9.734299, "Shop": -10.832912, "Should": -10.832912, "ShowError": -10.139764, "Sign": -9.446617, "SimpleArith": -9.446617, "SimpleArith2": -10.832912, "Skip": -10.832912, "Sn_le_Sm__n_le_m": -10.139764, "Sn_le_Sm__n_le_m.": -10.832912, "Some": -5.381873, "Star": -10.832912, "Status": -10.832912, "Step": -9.446617, "Stuck": -10.139764, "Support": -10.832912, "Switch": -10.139764, "T": -6.268563, "T.": -10.139764, "T11": -10.832912, "THEN": -9.734299, "T_Abs": -10.832912, "T_Abs.": -10.832912, "T_App": -9.734299, "T_Var.": -10.832912, "Tactic": -7.336404, "Tags": -10.832912, "Temp": -9.446617, "Temporal.": -10.139764, "Terms": -10.832912, "Then.": -10.139764, "Theorem": -6.476203, "This": -10.832912, "Todo": -10.832912, "Toggle": -10.832912, "Training": -10.832912, "Type": -5.809031, "Type.": -10.832912, "U": -10.139764, "Unary": -10.832912, "Unfold": -10.139764, "Users": -10.832912, "V1": -10.139764, "V2": -10.139764, "Vs": -8.435016, "W": -7.169350, "W.": -10.832912, "WE": -8.753470, "WHILE": -9.223474, "Warning": -10.832912, "Watch": -10.832912, "X": -5.439284, "X.": -9.446617, "XtimesYinZ": -10.832912, "Y": -7.048722, "Y.": -10.832912, "You": -8.753470, "Z": -8.348005, "Z.abs": -10.832912, "Z.add": -10.832912, "Z.compare": -10.832912, "Z.max": -10.832912, "Z.min": -10.832912, "Z.mul": -10.832912, "Z.opp": -10.832912, "Z.pred": -10.832912, "Z.sub": -10.832912, "Z.succ": -10.832912, "[": -5.534594, "\\": -6.268563, "]": -5.549708, "^": -8.530327, "_": -3.342382, "_.": -10.832912, "__.": -10.832912, "__LOC__": -9.734299, "_a": -10.139764, "_accessor.": -10.139764, "_after_bind": -10.139764, "_attrs": -10.832912, "_attrs.": -9.734299, "_b": -10.139764, "_b.": -10.832912, "_bitwise_and": -10.139764, "_bitwise_not": -10.139764, "_bitwise_or": -10.139764, "_bitwise_xor": -10.139764, "_c.": -10.832912, "_callable.": -10.832912, "_condition_true.": -10.832912, "_correct": -9.446617, "_correct.": -10.832912, "_data": -10.832912, "_data.": -10.832912, "_data_object": -10.832912, "_data_prim.": -10.832912, "_decl_initialized": -10.832912, "_decl_uninitialized": -10.832912, "_default": -10.832912, "_default.": -9.734299, "_different.": -10.832912, "_div": -10.832912, "_div.": -10.832912, "_empty.": -10.832912, "_empty_": -9.446617, "_eq.": -10.832912, "_extens_false.": -10.832912, "_extens_true.": -10.832912, "_false.": -10.139764, "_function_object": -10.832912, "_function_prim.": -10.832912, "_g": -10.139764, "_get": -10.139764, "_ii": -10.139764, "_ii_": -9.446617, "_iii_": -8.753470, "_inbounds.": -10.832912, "_left_shift": -10.139764, "_mult": -10.832912, "_mult.": -10.832912, "_neq.": -10.832912, "_none.": -10.139764, "_nonempty_": -8.060323, "_not_accessor_object": -10.832912, "_not_accessor_prim": -10.832912, "_not_callable.": -10.832912, "_not_data": -10.832912, "_not_null": -10.832912, "_null.": -10.139764, "_null_or_undef.": -10.139764, "_number": -10.832912, "_object": -10.832912, "_object.": -9.734299, "_outofbounds.": -10.832912, "_plus": -10.832912, "_plus.": -10.832912, "_prim.": -9.223474, "_return.": -9.734299, "_right_shift": -9.446617, "_same": -10.832912, "_set": -10.139764, "_some.": -10.832912, "_some_data.": -10.832912, "_string": -10.832912, "_true.": -10.139764, "_undef": -10.139764, "_undef.": -9.446617, "_val": -10.139764, "a": -5.544645, "a.": -8.887002, "a0": -8.348005, "a1": -10.832912, "a2": -10.832912, "abort": -7.697417, "abort.": -9.223474, "abort_div": -10.832912, "abort_expr": -10.832912, "abort_intercepted_do_while_": -10.832912, "abort_intercepted_expr": -9.446617, "abort_intercepted_expr_call_default_": -10.832912, "abort_intercepted_expr_call_global_eval_": -10.832912, "abort_intercepted_prog": -9.734299, "abort_intercepted_prog_block_": -10.832912, "abort_intercepted_spec": -10.832912, "abort_intercepted_stat": -8.193854, "abort_intercepted_stat_block_": -10.832912, "abort_intercepted_stat_for_": -10.139764, "abort_intercepted_stat_label_": -10.832912, "abort_intercepted_stat_switch_": -10.832912, "abort_intercepted_stat_switch_default_": -10.832912, "abort_intercepted_stat_switch_default_A_": -10.832912, "abort_intercepted_stat_switch_nodefault_": -10.832912, "abort_intercepted_stat_try_": -10.139764, "abort_intercepted_while_": -10.832912, "abort_not_normal": -10.832912, "abort_prog": -10.832912, "abort_spec": -10.832912, "abort_stat": -10.832912, "abort_tactic": -9.223474, "about": -10.139764, "abrupt_res": -9.446617, "abrupt_res.": -10.832912, "absolute": -10.832912, "absurd_neg": -9.734299, "accept": -10.139764, "action": -9.734299, "action=": -10.139764, "actions": -10.139764, "add": -9.734299, "aeval": -6.920889, "aevalR": -7.942540, "aevalR_first_try.": -10.139764, "aeval_iff_aevalR": -8.435016, "aexp": -7.398924, "aexp.": -10.832912, "aexp_cases": -9.734299, "afi_abs": -10.832912, "ajax": -10.832912, "al": -9.734299, "alert": -10.139764, "all": -10.832912, "alt": -8.435016, "amount": -9.223474, "amount_is_given": -10.139764, "amount_is_valid": -10.139764, "an": -10.832912, "and": -9.734299, "and_impl_left": -9.734299, "andb": -9.223474, "andb_true_elim": -9.041152, "andb_true_elim1": -10.832912, "andb_true_elim2": -10.832912, "andb_true_intro.": -10.139764, "another": -10.139764, "answer": -8.635687, "antisymmetric": -9.734299, "api": -10.139764, "app": -9.223474, "app_ass": -10.139764, "app_ass.": -9.041152, "app_length": -10.832912, "app_nil_end.": -10.832912, "appears_free_in": -10.832912, "apply": -5.021771, "apply*": -8.887002, "applys": -6.463464, "applys*": -6.217791, "applys_and": -9.734299, "applys_and_base": -9.223474, "applys_eq*": -10.832912, "arbitrary": -9.223474, "are": -9.734299, "arg_len.": -10.832912, "args": -7.306551, "args.": -10.139764, "argument": -10.832912, "arguments": -10.832912, "arguments_f_a_r_from_cons": -10.832912, "arguments_f_a_r_from_nil": -10.832912, "arguments_first_and_rest": -9.446617, "arguments_first_and_rest.": -10.832912, "arguments_from": -8.435016, "arguments_from.": -10.832912, "arguments_from_cons": -10.832912, "arguments_from_nil": -10.832912, "arguments_from_spec_": -10.832912, "arguments_from_undef": -10.832912, "aria": -6.438463, "array": -9.734299, "array_args_map_loop": -10.832912, "array_args_map_loop_correct": -10.832912, "array_args_map_loop_correct.": -10.832912, "array_args_map_loop_no_abort": -10.832912, "article": -10.139764, "as": -6.114413, "ascii_comparable": -10.832912, "ask_amount": -10.139764, "assert": -7.026249, "assertion": -9.734299, "asserts": -8.435016, "assignment": -10.832912, "associativity": -9.446617, "assumption": -8.124861, "assumption.": -7.119340, "async": -10.832912, "at": -7.367176, "attributes": -7.999698, "attributes.": -10.139764, "attributes_accessor": -9.734299, "attributes_accessor.": -10.139764, "attributes_accessor_of": -10.832912, "attributes_accessor_set": -10.832912, "attributes_data": -9.446617, "attributes_data.": -10.139764, "auto": -8.348005, "auto*.": -9.223474, "auto.": -8.267962, "autocapitalize": -10.832912, "autocapitalize=": -10.832912, "autofocus": -10.139764, "b": -5.965377, "b.": -8.348005, "b0": -10.832912, "b_false_accept.": -10.832912, "b_false_reject.": -10.832912, "bag": -10.139764, "banner": -10.832912, "bars": -10.832912, "be": -9.223474, "because": -10.139764, "been": -10.832912, "beq_equal": -9.223474, "beq_false_not_eq": -10.139764, "beq_id": -7.999698, "beq_id_eq": -9.446617, "beq_id_false_not_eq": -10.139764, "beq_id_false_not_eq.": -10.832912, "beq_id_refl": -10.832912, "beq_nat": -7.654858, "beq_nat_eq": -10.139764, "beq_nat_refl": -10.139764, "beq_nat_refl.": -9.446617, "beq_nat_sym": -10.832912, "beq_nat_trans": -10.139764, "between": -10.832912, "beval": -8.060323, "bevalR": -8.435016, "beval_iff_bevalR": -10.832912, "beval_short_circuit": -9.223474, "beval_short_circuit_eqv": -10.832912, "bexp": -7.741869, "bexp.": -10.832912, "bexp_cases": -9.446617, "binary_float": -10.832912, "binary_op": -10.832912, "bind": -10.139764, "bits": -10.832912, "bitwise_op": -10.832912, "bitwise_op.": -10.832912, "bl": -9.734299, "ble_nat": -9.734299, "blob": -6.150780, "blob_contributors_box": -10.832912, "blog": -10.139764, "bool": -5.950110, "bool.": -9.446617, "bool_step_prop": -10.832912, "brabalan": -10.139764, "branch": -9.223474, "branches": -9.041152, "branches/tags": -10.832912, "btn": -7.942540, "bucket": -9.446617, "build_error": -10.832912, "build_error_correct": -10.139764, "build_error_correct.": -10.139764, "builtin_can_put": -10.832912, "builtin_default_value": -10.832912, "builtin_define_own_prop": -10.832912, "builtin_define_own_prop_default": -10.139764, "builtin_delete": -10.832912, "builtin_get": -10.832912, "builtin_get_own_prop": -10.832912, "builtin_get_own_prop_default": -10.832912, "builtin_get_own_prop_string": -10.832912, "builtin_get_prop": -10.832912, "builtin_has_instance": -10.832912, "builtin_has_prop": -10.832912, "builtin_put": -10.832912, "business": -8.887002, "but": -10.832912, "button": -10.832912, "bval": -10.139764, "by": -9.734299, "c": -5.973099, "c.": -9.734299, "c1": -10.832912, "c2": -10.832912, "c_": -10.139764, "call": -8.753470, "callable": -10.832912, "camera": -10.139764, "can": -10.832912, "card_is_given": -10.139764, "card_is_valid": -10.139764, "case_if": -8.193854, "case_if*": -9.223474, "case_if*.": -9.734299, "case_if.": -8.060323, "cases_if": -7.888473, "cases_if*.": -9.223474, "cases_if.": -8.887002, "cb": -10.139764, "ceval_cases": -10.832912, "ceval_step": -9.734299, "ceval_step_more": -8.887002, "cf": -10.139764, "changes": -10.139764, "char.": -10.832912, "charguer": -10.139764, "charset": -9.734299, "check": -9.223474, "chromeless": -10.832912, "cl": -10.832912, "class": -4.614312, "class=": -5.173429, "class_name": -10.832912, "classicT": -10.832912, "clear": -7.367176, "clearable": -10.832912, "clears": -9.446617, "click": -7.144032, "clicked": -10.139764, "clipboard": -10.832912, "clos_refl_trans": -8.753470, "close": -9.734299, "co": -9.223474, "co.": -10.832912, "code": -6.132431, "codetype": -8.887002, "codetype.": -10.832912, "collaborate": -10.832912, "color": -10.832912, "color=": -10.832912, "com": -9.041152, "com_cases": -10.832912, "combine": -9.734299, "command": -7.837179, "compare_cont": -10.832912, "comparison": -10.832912, "complex.": -10.832912, "congruence": -10.832912, "congruence.": -9.446617, "cons": -7.837179, "constfun": -10.832912, "constr": -6.643257, "construct": -10.832912, "constructor": -8.887002, "constructor.": -9.223474, "constructors": -9.446617, "constructors_and": -10.832912, "contact": -10.139764, "container": -8.267962, "content": -6.881668, "content=": -7.614036, "context": -9.734299, "context_invariance...": -10.139764, "contra": -9.734299, "contra.": -7.697417, "contributed": -10.832912, "contributors": -10.139764, "conversion": -10.832912, "convert_twice_number": -10.832912, "convert_twice_number_correct": -10.832912, "convert_twice_number_correct.": -10.139764, "convert_twice_primitive": -10.832912, "convert_twice_primitive_correct": -10.832912, "convert_twice_primitive_correct.": -10.139764, "convert_twice_string": -10.832912, "convert_twice_string_correct": -10.832912, "convert_twice_string_correct.": -10.832912, "convert_value_to_boolean": -10.139764, "copied": -10.139764, "copy": -10.832912, "coq": -10.832912, "correct.": -10.832912, "could": -10.832912, "count": -8.635687, "countoddmembers": -10.832912, "cp1": -10.832912, "crossorigin": -9.041152, "crossorigin=": -10.832912, "css": -8.887002, "ct": -9.734299, "ctxt": -10.832912, "currently": -10.832912, "curry": -10.139764, "curry_uncurry": -10.832912, "customers": -10.832912, "d": -7.277564, "d_e": -10.139764, "da": -10.832912, "danger": -10.832912, "data": -4.924829, "datetime": -10.832912, "decide_def.": -10.139764, "decl_env_record.": -10.139764, "def": -9.041152, "def_correct": -10.139764, "default": -10.832912, "defined": -10.832912, "definitions": -9.734299, "defs": -10.832912, "delete_event": -10.832912, "dependent": -8.753470, "describedby": -10.139764, "description": -10.139764, "descriptor": -6.502178, "descriptor.": -10.139764, "descriptor_value": -9.446617, "descriptor_writable": -10.139764, "destruct": -5.757738, "destruct*": -9.223474, "details": -9.734299, "developers": -10.832912, "disabled": -10.139764, "discriminate": -10.139764, "discriminate.": -7.048722, "discussion": -10.832912, "dismiss": -10.832912, "div": -10.832912, "do": -9.446617, "do_call": -10.832912, "dret": -10.832912, "dvDesc": -10.832912, "e": -5.651128, "e.": -8.060323, "eapply": -7.788389, "eassumption": -10.139764, "eassumption.": -9.223474, "eauto": -8.887002, "edgemaster": -9.734299, "eexists": -10.139764, "eexists.": -9.446617, "efficiency": -10.832912, "element": -10.832912, "else": -8.267962, "empty": -9.734299, "empty_relation.": -10.832912, "empty_relation_not_partial_funcion": -10.832912, "empty_state": -10.139764, "enable": -10.832912, "end": -7.942540, "end.": -6.789860, "env": -10.832912, "env_loc": -6.982764, "env_loc.": -10.139764, "env_loc_global_env_record": -10.832912, "env_record": -9.041152, "env_record.": -10.139764, "env_record_get_binding_value": -10.832912, "env_record_get_binding_value_correct": -10.832912, "eo": -8.193854, "epsilon": -10.832912, "epsilon_def": -10.832912, "eq": -7.336404, "eq.": -7.942540, "eq2": -10.832912, "eq_add_S": -10.832912, "eq_refl": -10.139764, "eqabort": -9.223474, "eqabort.": -10.832912, "equal": -10.832912, "equiv": -9.734299, "equivalence": -10.832912, "error": -8.348005, "es": -10.139764, "ev": -10.139764, "ev.": -10.832912, "eval": -8.753470, "eval.": -10.832912, "eval__value": -10.832912, "eval_cases": -10.832912, "event": -10.832912, "events": -10.832912, "ex_falso_quodlibet.": -10.139764, "exact": -9.734299, "execute_theorem": -10.832912, "execute_theorem.": -10.832912, "execution_ctx": -10.139764, "execution_ctx.": -10.139764, "execution_ctx_lexical_env": -10.832912, "execution_ctx_strict": -10.832912, "existT": -10.832912, "exists": -6.207939, "exists___*.": -9.041152, "existsb": -9.041152, "existsb_correct": -10.832912, "experiment": -10.139764, "explore": -9.446617, "expr": -6.772469, "expr.": -10.139764, "expr_access_": -8.753470, "expr_array_": -7.888473, "expr_array_add_length": -10.139764, "expr_array_add_length_": -8.530327, "expr_assign_": -9.446617, "expr_basic": -9.446617, "expr_binary_op_": -10.832912, "expr_call_": -8.530327, "expr_conditional_": -9.446617, "expr_delete_": -8.753470, "expr_function_": -9.041152, "expr_identifier_": -10.139764, "expr_new_": -9.446617, "expr_object_": -8.060323, "expr_prepost_": -8.753470, "expr_typeof_": -9.446617, "expr_unary_op_": -9.446617, "expr_unary_op_bitwise_not_": -10.139764, "expr_unary_op_neg_": -10.139764, "expr_unary_op_not_": -10.139764, "ext_expr": -4.780822, "ext_expr.": -10.832912, "ext_prog": -8.887002, "ext_prog.": -10.832912, "ext_spec": -6.515424, "ext_stat": -6.628219, "ext_stat.": -10.832912, "extend": -9.734299, "extend.": -10.139764, "extend_neq": -10.139764, "extracted": -10.832912, "extraction": -10.832912, "eye": -10.832912, "f": -6.961711, "f.": -10.139764, "facebox": -8.267962, "fact": -10.832912, "fail.": -8.635687, "false": -7.398924, "false.": -9.223474, "faster": -10.832912, "fb": -10.139764, "fe154": -10.832912, "feature": -9.734299, "features": -10.832912, "fequals.": -10.832912, "field": -9.734299, "file": -6.123381, "filter": -7.999698, "filterable": -8.887002, "find": -9.734299, "first": -7.888473, "flash": -8.887002, "float": -8.753470, "floats": -10.832912, "floor": -10.832912, "fmod": -10.832912, "fmostlytrue": -9.223474, "fn": -10.832912, "fo": -9.446617, "focus": -10.832912, "fold": -9.734299, "fold_length": -9.446617, "fold_length.": -10.832912, "fold_length_correct": -10.832912, "fold_map": -10.139764, "fold_map.": -10.832912, "fold_map_correct": -10.832912, "follow": -8.887002, "follows_correct": -9.223474, "follows_correct.": -10.139764, "footer": -10.832912, "for": -9.446617, "forall": -5.256963, "forallb": -9.446617, "fork": -10.832912, "forked": -10.139764, "forwards": -7.654858, "forwards*": -10.832912, "fresh": -6.598805, "from": -10.832912, "from_string": -10.832912, "fst": -9.734299, "ftrue": -10.832912, "full_descriptor": -7.221994, "full_descriptor.": -10.139764, "full_descriptor_undef": -10.139764, "fun": -7.888473, "funcbody": -8.635687, "funcdecl": -8.193854, "g": -9.734299, "ga": -7.249393, "ge_nat_decidable": -10.832912, "generalize": -8.887002, "get_arg": -8.635687, "get_arg.": -10.832912, "get_arg_correct": -10.832912, "get_arg_correct_": -9.734299, "get_arg_correct_0": -10.832912, "get_arg_correct_1": -10.832912, "get_arg_correct_2": -10.832912, "get_arg_first_and_rest": -10.139764, "get_arg_first_and_rest_correct": -10.832912, "get_bitwise_op": -10.832912, "get_bitwise_op_correct": -10.832912, "get_bitwise_op_correct.": -10.832912, "get_head": -10.832912, "get_inequality_op": -10.832912, "get_inequality_op_correct": -10.832912, "get_inequality_op_correct.": -10.832912, "get_puremath_op": -10.832912, "get_puremath_op_correct": -10.832912, "get_puremath_op_correct.": -10.832912, "get_shift_op": -10.832912, "get_shift_op_correct": -10.832912, "get_shift_op_correct.": -10.139764, "git": -9.734299, "github": -9.223474, "go": -7.465616, "goal": -8.193854, "graph": -10.832912, "graphs": -10.832912, "grumble": -9.734299, "gt": -7.249393, "h": -7.431714, "h_i": -10.139764, "handler": -9.734299, "has": -10.832912, "has_type": -9.223474, "hash": -10.832912, "haspopup": -10.139764, "have": -10.832912, "hd_opt": -9.446617, "header": -8.635687, "height": -7.249393, "height=": -7.249393, "hellip": -10.832912, "help": -10.139764, "hidden": -7.537075, "hint": -9.734299, "homepage": -10.832912, "hotkey": -8.060323, "href": -6.367004, "href=": -7.169350, "html": -10.832912, "http": -8.753470, "https": -10.832912, "hyp": -9.446617, "i": -7.026249, "i.": -10.139764, "i1": -10.139764, "i2": -10.139764, "iad": -10.832912, "icon": -9.041152, "id": -5.360641, "id.": -10.832912, "id=": -9.734299, "idB": -10.139764, "idB.": -10.832912, "idBB": -10.139764, "idBBBB": -10.139764, "ident": -7.697417, "idtac": -8.887002, "if": -8.635687, "if_any_or_throw": -10.832912, "if_any_or_throw_out": -10.832912, "if_any_or_throw_post": -10.139764, "if_bool": -10.139764, "if_bool_out": -10.832912, "if_bool_post": -10.832912, "if_bool_spec": -10.139764, "if_bool_spec_post": -9.734299, "if_break": -10.832912, "if_break_out": -10.832912, "if_break_post": -10.832912, "if_empty_label": -10.139764, "if_empty_label_out": -9.734299, "if_not_throw": -10.139764, "if_not_throw_out": -10.139764, "if_not_throw_post": -9.734299, "if_number": -10.139764, "if_number_out": -10.832912, "if_number_post": -10.832912, "if_number_spec": -10.139764, "if_number_spec_post": -9.734299, "if_object": -9.734299, "if_object_out": -10.832912, "if_object_post": -10.832912, "if_object_spec": -10.139764, "if_object_spec_post": -9.734299, "if_prim": -10.139764, "if_prim_out": -10.832912, "if_prim_post": -10.832912, "if_prim_spec": -10.139764, "if_prim_spec_post": -9.734299, "if_result_some": -10.832912, "if_result_some_out": -10.139764, "if_some": -10.139764, "if_some_or_default": -10.139764, "if_some_or_default_out": -10.139764, "if_some_out": -10.139764, "if_spec": -10.832912, "if_spec_out": -10.832912, "if_spec_post": -10.139764, "if_spec_post_to_object": -10.832912, "if_spec_ter_post_bool": -10.832912, "if_spec_ter_post_object": -10.139764, "if_string": -10.139764, "if_string_out": -10.832912, "if_string_post": -10.832912, "if_string_spec": -10.139764, "if_string_spec_post": -9.734299, "if_success": -10.832912, "if_success_or_return": -10.832912, "if_success_or_return_out": -10.832912, "if_success_or_return_post": -10.832912, "if_success_out": -10.139764, "if_success_post": -10.832912, "if_success_spec": -10.832912, "if_success_spec_post": -10.832912, "if_success_state": -10.139764, "if_success_state_out": -10.139764, "if_success_state_post": -9.734299, "if_ter": -10.139764, "if_ter_out": -9.446617, "if_ter_post": -9.734299, "if_ter_spec": -10.832912, "if_ter_spec_post": -10.832912, "if_value": -10.832912, "if_value_out": -10.832912, "if_value_post": -10.832912, "if_value_spec": -9.041152, "if_value_spec_post": -10.832912, "if_void": -10.139764, "if_void_out": -9.734299, "if_void_post": -9.734299, "ifb": -10.832912, "ilen": -10.832912, "implement": -10.832912, "implementation_prealloc": -10.832912, "implemented": -10.832912, "in": -4.871906, "indefinite_description": -10.832912, "index": -9.041152, "index_okx": -10.832912, "induction": -7.048722, "inductions": -10.832912, "inequality_op": -10.832912, "inequality_op.": -10.832912, "inequality_test_primitive": -10.832912, "infinity": -10.832912, "inner": -6.160083, "input": -9.734299, "instapaper_ignore": -10.832912, "int": -6.114413, "int.": -8.267962, "int_of_char": -10.832912, "integrations": -9.446617, "interpreter": -9.734299, "into": -8.060323, "intro": -9.446617, "intros": -5.770317, "intros.": -8.753470, "introv": -6.658524, "introv.": -9.446617, "inversion": -6.012630, "inversion_clear": -8.753470, "inverts": -7.004270, "inverts*": -9.223474, "is": -9.223474, "isTrue.": -10.832912, "isout": -8.887002, "isout.": -10.832912, "issue": -10.832912, "issues": -10.832912, "it": -10.832912, "item": -7.336404, "itemprop": -8.124861, "itemprop=": -8.887002, "itemscope": -9.041152, "itemtype": -9.223474, "itemtype=": -9.223474, "j": -8.753470, "j.": -10.832912, "jauto": -9.734299, "jauto.": -10.832912, "javascript_": -10.139764, "js": -5.276084, "jscert": -7.837179, "jscert/JsNumber.v": -10.832912, "jscert/jscert": -10.832912, "jump": -10.139764, "k": -6.881668, "k1": -9.734299, "k2": -9.734299, "k3": -10.832912, "k_l": -10.139764, "l": -5.519706, "l.": -8.193854, "l1": -8.635687, "l2": -9.446617, "l3": -9.446617, "la": -10.832912, "lab": -9.223474, "label": -6.982764, "label.": -10.139764, "label_empty": -10.139764, "label_set": -7.614036, "label_set.": -10.139764, "labelledby": -10.139764, "labs": -7.942540, "lang": -10.832912, "le": -10.832912, "le.": -9.446617, "le_S": -10.832912, "le_S.": -9.446617, "le_S_n": -10.139764, "le_Sn_le": -10.832912, "le_Sn_n": -10.832912, "le_antisymmetric": -10.832912, "le_antisymmetric.": -10.832912, "le_int_decidable": -10.832912, "le_n.": -9.041152, "le_not_a_partial_function": -10.832912, "le_order": -10.832912, "le_reflexive": -10.832912, "le_reflexive.": -10.832912, "le_trans": -9.446617, "le_trans.": -10.832912, "least": -10.832912, "left": -9.223474, "left*": -9.041152, "left.": -9.041152, "length": -7.888473, "length_cons": -9.734299, "length_snoc": -10.832912, "length_snoc.": -10.832912, "length_zero_inv": -10.832912, "let": -6.438463, "let_name": -8.348005, "let_name.": -8.193854, "let_simpl": -10.139764, "let_simpl.": -9.734299, "lets": -8.267962, "lets*": -10.832912, "level": -7.431714, "lex": -10.139764, "lexical_env": -7.942540, "lexical_env.": -10.139764, "lift": -8.887002, "line": -4.762174, "linejump": -10.139764, "lines": -10.832912, "link": -10.139764, "links": -7.837179, "list": -5.303483, "literal.": -10.139764, "ln": -10.832912, "lo": -8.887002, "logo": -10.832912, "loop": -10.139764, "loopdef.": -10.832912, "lproto": -10.139764, "ls": -9.041152, "lt.": -10.139764, "lt_bool": -10.832912, "lt_int_decidable": -10.832912, "lt_trans": -10.139764, "ltac_wild": -10.139764, "lthis": -9.223474, "lv": -8.267962, "lx": -9.446617, "ly": -9.446617, "m": -6.515424, "m.": -8.635687, "m_n": -10.139764, "main": -10.139764, "make": -9.734299, "make_delete_event": -10.139764, "make_delete_event_intro": -10.832912, "make_runs_type_correct": -10.832912, "map": -10.832912, "mark": -10.139764, "masks": -10.832912, "master": -9.223474, "match": -6.528847, "math.": -10.139764, "max_value": -10.832912, "md": -10.832912, "me": -9.223474, "media": -9.734299, "media=": -9.734299, "menu": -7.697417, "message": -9.223474, "method": -10.139764, "method=": -10.139764, "min_value": -10.832912, "minustwo": -10.139764, "modal": -10.832912, "modulo_": -10.832912, "mr": -10.139764, "mu": -9.734299, "mult": -10.832912, "mult_comm": -10.832912, "mumble": -9.223474, "mumble.": -10.832912, "must": -9.223474, "mutability.": -10.139764, "muted": -10.832912, "n": -5.183937, "n.": -8.435016, "n1": -8.635687, "n2": -9.734299, "nMessage": -10.832912, "nState": -10.832912, "name": -6.920889, "name=": -7.837179, "named.": -10.832912, "nan": -10.139764, "nat": -6.862620, "nat.": -9.734299, "nat_math": -10.139764, "nat_math.": -10.832912, "native_error": -9.041152, "natlist": -8.635687, "natprod": -9.223474, "natprod.": -10.832912, "nav": -8.267962, "navigation": -8.267962, "ne": -8.060323, "neg": -10.832912, "neg_infinity": -10.832912, "neg_zero": -10.832912, "negative": -10.832912, "negb": -9.041152, "net": -10.832912, "new": -10.832912, "newLen": -8.887002, "newLenDesc": -8.348005, "newLenDesc0": -10.139764, "newLenN": -10.139764, "newWritable": -8.348005, "new_repo_project": -10.832912, "next_nat": -10.832912, "next_nat.": -10.832912, "next_nat_closure_is_le": -10.832912, "next_nat_partial_function": -10.832912, "nf_is_value": -10.832912, "nf_is_value.": -10.832912, "nf_same_as_value": -9.446617, "nf_same_as_value.": -10.832912, "nil": -7.144032, "nil.": -10.832912, "nil_app": -10.139764, "nn.": -10.832912, "noWhilesAss": -10.832912, "noWhilesAss.": -10.832912, "noWhilesIf": -10.832912, "noWhilesIf.": -10.832912, "noWhilesSKIP": -10.832912, "noWhilesSKIP.": -10.832912, "noWhilesSeq": -10.832912, "noWhilesSeq.": -10.832912, "no_Whiles": -8.530327, "no_whiles": -8.124861, "no_whiles_eqv": -10.832912, "no_whiles_terminate": -10.832912, "non": -10.832912, "none": -10.832912, "normal_form": -9.041152, "normal_form.": -9.734299, "normal_form_of": -10.832912, "normalizing": -10.832912, "normalizing.": -10.832912, "not": -10.139764, "not.": -9.734299, "not_eq_beq_false.": -10.832912, "not_eq_beq_id_false": -10.139764, "nothing": -8.348005, "ns": -9.223474, "nth_def.": -10.832912, "nth_def_nil": -10.832912, "nth_def_nil.": -10.832912, "nth_def_succ": -10.832912, "nth_succ": -10.832912, "nth_succ.": -10.139764, "num": -9.223474, "num.": -10.139764, "number": -4.977840, "number.": -7.788389, "number_comparable": -10.832912, "numbers": -9.446617, "nw": -10.139764, "nx": -9.734299, "ny": -10.139764, "ny.": -10.832912, "o": -4.207519, "o.": -7.336404, "o0": -10.139764, "o1": -9.446617, "oa": -8.635687, "object": -9.446617, "object.": -10.139764, "object_alloc": -9.446617, "object_binds": -10.139764, "object_can_put": -10.832912, "object_can_put_correct": -10.832912, "object_can_put_correct.": -10.832912, "object_default_value": -10.832912, "object_default_value_correct": -10.832912, "object_default_value_correct.": -10.832912, "object_define_own_prop_correct": -9.734299, "object_define_own_prop_correct.": -10.139764, "object_get_builtin_correct.": -10.139764, "object_has_prop_correct": -10.832912, "object_has_prop_correct.": -10.139764, "object_loc": -5.115884, "object_loc.": -10.139764, "object_new": -10.832912, "object_prim_value": -10.832912, "object_properties_type.": -10.139764, "object_put_complete": -10.832912, "object_put_complete_correct": -10.832912, "object_put_complete_correct.": -10.832912, "object_put_correct": -10.832912, "object_with_get_own_property": -10.832912, "object_with_primitive_value": -10.832912, "obpm": -9.734299, "obtained": -10.832912, "octicon": -7.614036, "oes": -8.753470, "of": -8.348005, "of_int": -10.832912, "ogp": -9.223474, "oldLen": -9.041152, "omega": -9.223474, "omega.": -9.223474, "on": -9.446617, "one": -10.832912, "op": -7.888473, "open": -8.887002, "opened": -10.832912, "opensource": -10.139764, "operation": -10.139764, "operations": -10.139764, "operator": -10.832912, "optimize_": -7.741869, "optimize_and": -9.223474, "optimize_and_sound": -10.832912, "option": -6.705777, "or": -9.041152, "orR": -10.139764, "orb": -10.832912, "order": -10.139764, "order.": -10.832912, "other": -7.837179, "other.": -9.446617, "out": -5.434749, "out.": -10.139764, "out_div": -9.446617, "out_error_or_cst": -10.832912, "out_error_or_cst_correct": -9.223474, "out_error_or_cst_correct.": -10.832912, "out_error_or_void": -10.832912, "out_error_or_void_correct": -9.223474, "out_error_or_void_correct.": -10.139764, "out_from_retn": -9.446617, "out_of_ext_expr": -10.832912, "out_of_ext_prog": -10.832912, "out_of_ext_spec": -10.832912, "out_of_ext_stat": -10.832912, "out_of_specret": -6.463464, "out_retn": -10.832912, "out_ter": -7.306551, "out_void": -10.139764, "outcome": -10.832912, "override": -8.635687, "override.": -9.734299, "override_eq": -10.832912, "override_example": -9.223474, "override_neq": -10.139764, "override_permute": -10.139764, "p": -7.169350, "p.": -9.041152, "page": -10.832912, "pair": -8.887002, "partial_function": -8.887002, "partial_function.": -9.041152, "partial_map": -9.223474, "partners": -10.832912, "path": -10.139764, "pencil": -10.832912, "perform": -10.832912, "permalink": -10.832912, "personal": -9.446617, "pi": -10.832912, "pick_option": -10.139764, "pick_option_correct": -9.223474, "pin": -9.223474, "pin_is_valid": -10.139764, "pjax": -7.277564, "placeholder": -8.435016, "placeholder=": -9.734299, "plus": -7.277564, "plus_all": -10.139764, "plus_all_sound": -10.832912, "plus_comm": -10.832912, "plus_n_Sm": -10.832912, "plus_n_n_injective": -10.832912, "plus_sound": -9.446617, "popl": -9.734299, "popl14": -9.734299, "positive": -10.832912, "prd": -10.832912, "preall": -10.832912, "prealloc": -9.734299, "prealloc_string_proto": -10.832912, "precise": -10.832912, "pred": -10.832912, "predicate": -10.832912, "pref": -9.734299, "prefix": -10.832912, "prefo": -9.734299, "preftype": -9.041152, "preorder": -10.832912, "prerr_string": -10.832912, "preservation": -10.832912, "prim": -9.734299, "prim.": -10.139764, "prim_new_object": -10.832912, "prim_new_object_correct": -10.832912, "prim_new_object_correct.": -10.832912, "prim_value_get": -10.832912, "prim_value_get_correct": -10.832912, "prim_value_put": -10.832912, "prim_value_put_correct": -10.139764, "primary": -10.832912, "print_endline": -9.734299, "privacy": -10.139764, "prod": -9.734299, "prod_curry": -9.734299, "prod_uncurry": -9.734299, "production": -10.832912, "profile": -10.139764, "prog": -7.942540, "prog.": -10.139764, "prog_": -9.223474, "prog_basic": -9.446617, "projects": -10.832912, "prop_eq_decidable": -10.832912, "prop_name": -6.132431, "prop_name.": -10.139764, "propbody": -10.832912, "propdefs": -8.753470, "properly": -10.832912, "property": -8.887002, "property=": -9.041152, "propose": -10.139764, "prove_abort": -9.223474, "prove_not_intercept": -10.139764, "prove_not_intercept.": -9.734299, "prove_runs_type_correct": -10.139764, "prove_runs_type_correct.": -10.832912, "public": -10.832912, "pull": -10.832912, "pulls": -10.832912, "pulse": -9.734299, "puremath_op": -10.832912, "puremath_op.": -10.832912, "quite": -10.832912, "r": -8.530327, "r.": -9.734299, "read_option": -10.832912, "readability": -10.832912, "ready": -10.139764, "reasons": -10.832912, "red_expr": -7.004270, "red_expr_abort.": -10.832912, "red_expr_binary_op_add": -10.832912, "red_expr_binary_op_add_": -10.139764, "red_expr_binary_op_add_string_": -10.832912, "red_expr_binary_op_coma.": -10.832912, "red_expr_binary_op_disequal.": -10.832912, "red_expr_binary_op_disequal_": -10.832912, "red_expr_binary_op_equal.": -10.832912, "red_expr_binary_op_in_": -10.832912, "red_expr_binary_op_in_non_object.": -10.832912, "red_expr_binary_op_in_object.": -10.832912, "red_expr_binary_op_instanceof_non_instance.": -10.832912, "red_expr_binary_op_instanceof_non_object.": -10.832912, "red_expr_binary_op_instanceof_normal.": -10.832912, "red_expr_binary_op_strict_disequal.": -10.832912, "red_expr_binary_op_strict_equal.": -10.832912, "red_expr_bitwise_op.": -10.832912, "red_expr_bitwise_op_": -10.139764, "red_expr_inequality_op.": -10.832912, "red_expr_inequality_op_": -10.139764, "red_expr_puremath_op": -10.832912, "red_expr_puremath_op_": -10.139764, "red_expr_shift_op": -10.832912, "red_expr_shift_op_": -9.446617, "red_javascript": -10.139764, "red_prog": -9.446617, "red_prog_abort.": -10.832912, "red_spec": -7.942540, "red_spec_abort.": -10.832912, "red_spec_call_array_new_": -9.223474, "red_spec_call_array_new_multiple_args.": -10.832912, "red_spec_call_array_new_no_args.": -10.832912, "red_spec_call_array_new_single_allocate": -10.832912, "red_spec_call_array_new_single_arg.": -10.832912, "red_spec_call_array_new_single_number_correct.": -10.832912, "red_spec_call_array_new_single_number_incorrect.": -10.832912, "red_spec_call_array_new_single_prim_number.": -10.832912, "red_spec_call_array_new_single_set_length.": -10.832912, "red_spec_call_object_new_": -9.041152, "red_spec_construct_bool.": -10.832912, "red_spec_construct_error.": -10.832912, "red_spec_construct_native_error.": -10.832912, "red_spec_construct_string_": -10.832912, "red_spec_construct_string_empty.": -10.832912, "red_spec_convert_twice.": -9.734299, "red_spec_convert_twice_": -9.041152, "red_spec_env_record_get_binding_value": -10.832912, "red_spec_env_record_get_binding_value_": -9.734299, "red_spec_env_record_get_binding_value_1_decl_initialized": -10.832912, "red_spec_env_record_get_binding_value_1_decl_uninitialized": -10.832912, "red_spec_env_record_get_binding_value_1_object": -10.832912, "red_spec_env_record_get_binding_value_obj_": -10.139764, "red_spec_env_record_get_binding_value_obj_2_false": -10.832912, "red_spec_env_record_get_binding_value_obj_2_true": -10.832912, "red_spec_env_record_initialize_immutable_binding": -10.832912, "red_spec_env_record_set_mutable_binding_1_decl_mutable": -10.832912, "red_spec_env_record_set_mutable_binding_1_decl_non_mutable": -10.832912, "red_spec_env_record_set_mutable_binding_1_object": -10.832912, "red_spec_error": -10.832912, "red_spec_error_": -10.832912, "red_spec_error_or_cst_true.": -10.832912, "red_spec_error_or_void_true.": -10.832912, "red_spec_expr_get_value_conv.": -9.223474, "red_spec_expr_get_value_conv_": -9.223474, "red_spec_function_has_instance_": -9.041152, "red_spec_function_has_instance_after_bind_": -9.734299, "red_spec_object_can_put": -10.832912, "red_spec_object_can_put_": -8.435016, "red_spec_object_default_value": -10.832912, "red_spec_object_default_value_": -9.446617, "red_spec_object_default_value_sub_": -9.223474, "red_spec_object_define_own_prop.": -10.832912, "red_spec_object_define_own_prop_": -9.041152, "red_spec_object_define_own_prop_args_obj": -10.832912, "red_spec_object_define_own_prop_args_obj_1": -10.832912, "red_spec_object_define_own_prop_args_obj_2_false": -10.832912, "red_spec_object_define_own_prop_args_obj_2_true_not_acc_none": -10.832912, "red_spec_object_define_own_prop_args_obj_2_true_not_acc_some": -10.832912, "red_spec_object_define_own_prop_args_obj_3": -10.832912, "red_spec_object_define_own_prop_array_": -10.832912, "red_spec_object_define_own_prop_array_3_3a": -10.832912, "red_spec_object_define_own_prop_array_3_3c": -10.832912, "red_spec_object_define_own_prop_array_3c": -10.832912, "red_spec_object_define_own_prop_array_3d": -10.832912, "red_spec_object_define_own_prop_array_3e": -10.832912, "red_spec_object_define_own_prop_array_3f": -10.832912, "red_spec_object_define_own_prop_array_3g": -10.832912, "red_spec_object_define_own_prop_array_3g_to_h": -10.832912, "red_spec_object_define_own_prop_array_3h": -10.832912, "red_spec_object_define_own_prop_array_3i": -10.832912, "red_spec_object_define_own_prop_array_3j": -10.139764, "red_spec_object_define_own_prop_array_3k": -10.139764, "red_spec_object_define_own_prop_array_3l_condition_false": -10.832912, "red_spec_object_define_own_prop_array_3l_ii": -10.832912, "red_spec_object_define_own_prop_array_3l_ii_1": -10.832912, "red_spec_object_define_own_prop_array_3l_ii_2": -10.832912, "red_spec_object_define_own_prop_array_3l_ii_2_3": -10.832912, "red_spec_object_define_own_prop_array_3l_iii_1": -10.832912, "red_spec_object_define_own_prop_array_3l_iii_2_false": -10.832912, "red_spec_object_define_own_prop_array_3l_iii_2_true": -10.832912, "red_spec_object_define_own_prop_array_3l_iii_3": -10.139764, "red_spec_object_define_own_prop_array_3l_iii_4": -10.139764, "red_spec_object_define_own_prop_array_3m": -10.832912, "red_spec_object_define_own_prop_array_3n": -10.832912, "red_spec_object_define_own_prop_array_4a": -10.832912, "red_spec_object_define_own_prop_array_4b": -10.832912, "red_spec_object_define_own_prop_array_4c": -10.832912, "red_spec_object_define_own_prop_array_4c_d": -10.832912, "red_spec_object_define_own_prop_array_4c_e": -10.832912, "red_spec_object_define_own_prop_array_4f": -10.832912, "red_spec_object_define_own_prop_array_5": -10.832912, "red_spec_object_define_own_prop_array_branch_3_4_3": -10.832912, "red_spec_object_define_own_prop_array_branch_3_4_4": -10.832912, "red_spec_object_define_own_prop_array_branch_4_5": -10.832912, "red_spec_object_define_own_prop_array_branch_4_5_a": -10.832912, "red_spec_object_define_own_prop_array_branch_4_5_b_4": -10.832912, "red_spec_object_define_own_prop_array_branch_4_5_b_5": -10.832912, "red_spec_object_define_own_prop_array_to_3l": -10.139764, "red_spec_object_define_own_prop_reject": -10.139764, "red_spec_object_get.": -10.832912, "red_spec_object_get_args_obj_": -10.139764, "red_spec_object_get_own_prop.": -10.832912, "red_spec_object_get_own_prop_": -9.734299, "red_spec_object_get_own_prop_1_default": -10.832912, "red_spec_object_get_own_prop_2_none": -10.832912, "red_spec_object_get_own_prop_2_some_data": -10.832912, "red_spec_object_get_own_prop_args_obj": -10.832912, "red_spec_object_get_own_prop_args_obj.": -10.832912, "red_spec_object_get_own_prop_args_obj_": -9.041152, "red_spec_object_get_own_prop_args_obj_1_attrs": -10.832912, "red_spec_object_get_own_prop_args_obj_1_undef": -10.832912, "red_spec_object_get_own_prop_string.": -10.832912, "red_spec_object_get_own_prop_string_": -8.635687, "red_spec_object_has_instance.": -10.832912, "red_spec_object_has_instance_": -10.139764, "red_spec_object_has_instance_after_bind.": -10.832912, "red_spec_object_put_": -8.435016, "red_spec_object_put_2_false": -10.832912, "red_spec_object_put_3_data_object": -10.832912, "red_spec_object_put_3_data_prim": -10.832912, "red_spec_object_put_4_not_accessor_object": -10.832912, "red_spec_object_put_4_not_accessor_prim": -10.832912, "red_spec_object_put_5_return": -9.734299, "red_spec_prim_value_get": -10.832912, "red_spec_prim_value_get_": -10.832912, "red_spec_prim_value_put": -10.832912, "red_spec_prim_value_put_": -10.832912, "red_spec_returns": -10.139764, "red_spec_returns.": -10.832912, "red_spec_to_boolean.": -10.139764, "red_spec_to_int": -10.139764, "red_spec_to_integer": -10.832912, "red_spec_to_integer_": -10.832912, "red_spec_to_number_": -10.832912, "red_spec_to_number_object": -10.832912, "red_spec_to_number_prim.": -10.832912, "red_spec_to_object_object.": -10.832912, "red_spec_to_object_prim.": -9.734299, "red_spec_to_object_undef_or_null.": -10.139764, "red_spec_to_primitive_pref_object.": -10.832912, "red_spec_to_primitive_pref_prim.": -10.832912, "red_spec_to_string_": -10.832912, "red_spec_to_string_object": -10.832912, "red_spec_to_string_prim.": -10.832912, "red_spec_to_uint": -10.139764, "red_stat": -8.887002, "red_stat_abort.": -10.832912, "ref": -9.041152, "ref.": -10.139764, "ref_is_property_from_not_unresolvable_value": -10.832912, "ref_is_unresolvable": -10.832912, "reference": -9.734299, "refl_step_closure": -8.435016, "reflexive": -9.223474, "reflexive.": -10.832912, "reflexivity": -7.195326, "reflexivity.": -6.020727, "refresh": -10.139764, "rel": -7.398924, "rel=": -8.124861, "related": -10.832912, "relation": -8.060323, "release": -10.139764, "remember": -7.942540, "remove_all": -10.139764, "remove_one": -10.139764, "rename": -8.124861, "repeat": -8.267962, "replace": -10.139764, "repo": -8.753470, "repo_branches": -10.832912, "repo_commits": -10.832912, "repo_contributors": -10.832912, "repo_downloads": -10.832912, "repo_graphs": -10.832912, "repo_issues": -10.832912, "repo_labels": -10.832912, "repo_milestones": -10.832912, "repo_project": -10.832912, "repo_projects": -10.832912, "repo_pulls": -10.832912, "repo_releases": -10.832912, "repo_source": -10.832912, "repo_tags": -10.832912, "repohead": -10.139764, "reponav": -9.041152, "repository": -8.753470, "request": -10.832912, "requests": -10.832912, "res": -7.837179, "res.": -10.139764, "res_empty.": -10.832912, "res_intro": -9.223474, "res_is_normal": -10.832912, "res_label": -9.446617, "res_label_in": -9.734299, "res_label_res_overwrite_value_if_empty": -10.832912, "res_normal": -10.139764, "res_out": -8.060323, "res_overwrite_value_if_empty": -9.223474, "res_overwrite_value_if_empty.": -9.734299, "res_overwrite_value_if_empty_empty": -10.832912, "res_overwrite_value_if_empty_resvalue": -10.832912, "res_spec": -9.446617, "res_ter": -9.446617, "res_to_res_void": -9.446617, "res_type": -7.741869, "res_type_res_overwrite_value_if_empty": -10.832912, "res_value": -10.832912, "res_void": -9.446617, "restype": -10.832912, "restype.": -10.139764, "restype_break": -9.446617, "restype_continue": -10.139764, "restype_normal": -10.832912, "restype_normal.": -10.832912, "restype_return": -10.832912, "restype_throw": -8.435016, "result": -8.635687, "result.": -10.832912, "result_out": -9.446617, "result_some": -7.071712, "result_some_out": -9.446617, "resultof": -10.832912, "results": -10.139764, "resvalue": -7.095242, "resvalue.": -10.139764, "resvalue_empty": -10.139764, "resvalue_value": -9.446617, "ret": -8.753470, "ret.": -10.832912, "ret_void": -9.446617, "returns": -10.832912, "rev": -8.753470, "rev_snoc": -10.832912, "rew_logic*.": -9.734299, "rewrite": -5.849305, "right": -8.267962, "right.": -8.887002, "rl": -10.832912, "rm": -7.398924, "rn": -9.734299, "role": -8.530327, "role=": -8.635687, "root": -10.832912, "rs": -9.734299, "rsc_R": -10.139764, "rsc_cases": -10.832912, "rsc_refl": -10.832912, "rsc_refl.": -8.435016, "rsc_step": -9.041152, "rsc_step.": -8.887002, "rsc_trans": -9.446617, "rt": -9.446617, "rt_refl": -10.832912, "rt_refl.": -10.139764, "rt_step": -10.832912, "rt_step.": -10.139764, "rt_trans": -9.734299, "rtc_rsc_coincide": -10.832912, "run": -6.584416, "run*": -8.887002, "run.": -7.654858, "run_apply": -10.139764, "run_binary_op": -10.832912, "run_binary_op_correct": -10.832912, "run_callable": -10.832912, "run_callable_correct": -10.139764, "run_check_current_out": -9.734299, "run_error": -9.734299, "run_error_correct": -8.887002, "run_error_correct_": -10.832912, "run_function_has_instance": -10.832912, "run_function_has_instance_correct": -10.832912, "run_get_current_out": -9.734299, "run_hyp": -8.530327, "run_hyp.": -10.832912, "run_hyp_core": -9.734299, "run_inv": -8.530327, "run_inv.": -7.654858, "run_javascript.": -10.832912, "run_object_define_own_prop_array_loop": -10.832912, "run_object_define_own_prop_array_loop.": -10.832912, "run_object_define_own_prop_array_loop_correct": -9.734299, "run_object_get": -10.832912, "run_object_get_correct": -9.734299, "run_object_get_correct.": -9.734299, "run_object_get_own_prop": -10.832912, "run_object_get_own_prop_correct": -10.832912, "run_object_get_prop_correct.": -10.139764, "run_object_has_instance": -10.832912, "run_object_has_instance_correct": -10.832912, "run_object_has_instance_correct.": -10.832912, "run_object_heap_set_extensible": -10.832912, "run_object_method_correct": -8.435016, "run_object_method_correct.": -9.734299, "run_object_prim_value": -10.832912, "run_object_prim_value_correct": -10.832912, "run_object_prim_value_correct.": -10.832912, "run_post": -9.734299, "run_post.": -9.223474, "run_post_core": -10.832912, "run_post_core.": -10.832912, "run_post_extra": -10.139764, "run_post_run_expr_get_value": -10.139764, "run_pre": -9.446617, "run_pre.": -9.734299, "run_pre_core": -9.734299, "run_pre_ifres": -9.446617, "run_select_extra": -10.139764, "run_select_ifres": -10.139764, "run_select_proj": -10.139764, "run_select_proj_extra_construct": -10.139764, "run_select_proj_extra_conversions": -9.734299, "run_select_proj_extra_error": -10.139764, "run_select_proj_extra_get_value": -10.139764, "run_select_proj_extra_ref": -10.139764, "run_simpl.": -9.734299, "run_simpl_base": -10.139764, "run_simpl_core": -9.734299, "run_simpl_run_error": -10.139764, "run_step": -10.832912, "run_step_using": -10.832912, "runs": -6.217791, "runs.": -10.832912, "runs_inv": -10.832912, "runs_type_array_element_list": -10.139764, "runs_type_array_join_elements": -10.832912, "runs_type_call": -10.139764, "runs_type_call_prealloc": -10.832912, "runs_type_construct": -10.139764, "runs_type_correct": -7.500707, "runs_type_correct_array_element_list": -10.139764, "runs_type_correct_array_join_elements": -10.832912, "runs_type_correct_call": -10.139764, "runs_type_correct_call_prealloc": -10.832912, "runs_type_correct_construct": -10.139764, "runs_type_correct_equal": -10.139764, "runs_type_correct_equal.": -10.832912, "runs_type_correct_expr": -10.139764, "runs_type_correct_function_has_instance": -9.734299, "runs_type_correct_function_has_instance.": -10.832912, "runs_type_correct_get_args_for_apply": -10.832912, "runs_type_correct_object_define_own_prop_array_loop": -9.734299, "runs_type_correct_object_delete": -10.139764, "runs_type_correct_object_get": -10.139764, "runs_type_correct_object_get_own_prop": -10.139764, "runs_type_correct_object_get_prop": -10.139764, "runs_type_correct_object_has_instance": -10.139764, "runs_type_correct_object_has_instance.": -10.832912, "runs_type_correct_object_proto_is_prototype_of": -10.139764, "runs_type_correct_object_put": -10.139764, "runs_type_correct_prog": -10.139764, "runs_type_correct_stat": -10.139764, "runs_type_correct_stat_do_while": -10.139764, "runs_type_correct_stat_for_loop": -10.139764, "runs_type_correct_stat_while": -10.139764, "runs_type_correct_to_integer": -10.139764, "runs_type_correct_to_string": -10.139764, "runs_type_equal": -10.139764, "runs_type_expr": -10.139764, "runs_type_function_has_instance": -10.139764, "runs_type_get_args_for_apply": -10.832912, "runs_type_object_define_own_prop_array_loop": -10.139764, "runs_type_object_delete": -10.139764, "runs_type_object_get": -10.139764, "runs_type_object_get_own_prop": -10.139764, "runs_type_object_get_prop": -10.139764, "runs_type_object_has_instance": -10.139764, "runs_type_object_proto_is_prototype_of": -10.139764, "runs_type_object_put": -10.139764, "runs_type_prog": -10.139764, "runs_type_stat": -10.139764, "runs_type_stat_do_while": -10.139764, "runs_type_stat_for_loop": -10.139764, "runs_type_stat_while": -10.139764, "runs_type_to_integer": -10.139764, "runs_type_to_string": -10.139764, "rv": -6.705777, "s": -6.705777, "s.": -10.139764, "s_compile": -7.221994, "s_compile_correct": -10.832912, "s_execute": -7.697417, "satisfies": -10.832912, "satisfy": -10.832912, "scoped": -9.041152, "scs": -8.753470, "search": -8.193854, "search_proto_chain": -10.832912, "secondary": -10.832912, "security": -10.139764, "select": -8.193854, "select_ind_hyp": -10.832912, "selected": -7.654858, "sep": -9.734299, "session": -10.832912, "session.": -10.139764, "sets_eq": -9.223474, "shift_op": -10.832912, "shift_op.": -10.832912, "ship": -10.832912, "shop": -10.139764, "shortcut": -10.832912, "show": -10.139764, "showcases": -10.832912, "sidenav": -10.832912, "sign": -9.734299, "signed": -8.887002, "significant": -10.832912, "silly": -9.446617, "silly2a": -10.832912, "silly_presburger_formula": -10.832912, "sillyex": -10.139764, "simpl": -6.402095, "simpl.": -7.431714, "simple_intropattern": -10.832912, "simpls": -8.435016, "simpls.": -8.267962, "sinstr": -8.753470, "sinstr.": -10.832912, "site": -8.530327, "size": -9.734299, "sizes": -8.635687, "sizes=": -8.635687, "skip": -8.435016, "slen": -10.832912, "sloc": -10.832912, "sm": -8.635687, "snd": -9.734299, "snoc": -8.267962, "snoc_with_append": -10.832912, "social": -10.832912, "solve": -8.635687, "source": -9.734299, "sp": -8.753470, "spec_args_obj_define_own_prop_": -8.348005, "spec_args_obj_delete_": -8.753470, "spec_args_obj_get_": -10.139764, "spec_args_obj_get_own_prop_": -8.635687, "spec_arguments_object_map": -10.139764, "spec_arguments_object_map_": -8.060323, "spec_binding_inst": -10.139764, "spec_binding_inst_": -8.060323, "spec_binding_inst_arg_obj": -10.139764, "spec_binding_inst_arg_obj_": -9.446617, "spec_binding_inst_formal_params": -10.139764, "spec_binding_inst_formal_params_": -8.753470, "spec_binding_inst_function_decls": -10.139764, "spec_binding_inst_function_decls_": -8.193854, "spec_binding_inst_var_decls": -10.139764, "spec_binding_inst_var_decls_": -9.446617, "spec_build_error": -9.734299, "spec_build_error_": -9.446617, "spec_call": -9.734299, "spec_call_": -10.139764, "spec_call_array_is_array_": -9.446617, "spec_call_array_new_": -8.887002, "spec_call_array_new_single_": -8.753470, "spec_call_array_proto_join": -10.139764, "spec_call_array_proto_join_": -8.530327, "spec_call_array_proto_join_elements": -9.734299, "spec_call_array_proto_join_elements_": -9.446617, "spec_call_array_proto_join_vtsfj": -10.139764, "spec_call_array_proto_join_vtsfj_": -9.041152, "spec_call_array_proto_pop_": -7.837179, "spec_call_array_proto_push_": -7.942540, "spec_call_array_proto_to_string": -10.139764, "spec_call_array_proto_to_string_": -10.139764, "spec_call_bool_proto_to_string_": -10.139764, "spec_call_bool_proto_value_of_": -9.446617, "spec_call_default": -10.139764, "spec_call_default_": -8.887002, "spec_call_error_proto_to_string_": -8.348005, "spec_call_global_eval": -10.139764, "spec_call_global_eval_": -8.887002, "spec_call_global_is_finite_": -10.139764, "spec_call_global_is_nan_": -10.139764, "spec_call_number_proto_to_string_": -9.446617, "spec_call_number_proto_value_of_": -10.139764, "spec_call_object_call_": -10.139764, "spec_call_object_create_": -9.041152, "spec_call_object_define_prop_": -8.753470, "spec_call_object_define_props_": -8.193854, "spec_call_object_freeze_": -8.530327, "spec_call_object_get_own_prop_descriptor_": -9.446617, "spec_call_object_get_proto_of_": -10.139764, "spec_call_object_is_extensible_": -10.139764, "spec_call_object_is_frozen_": -8.530327, "spec_call_object_is_sealed_": -9.041152, "spec_call_object_new_": -10.139764, "spec_call_object_prevent_extensions_": -10.139764, "spec_call_object_proto_has_own_prop_": -9.041152, "spec_call_object_proto_is_prototype_of_": -8.635687, "spec_call_object_proto_prop_is_enumerable_": -8.753470, "spec_call_object_proto_to_string_": -9.446617, "spec_call_object_seal_": -8.753470, "spec_call_prealloc": -9.734299, "spec_call_string_non_empty": -10.139764, "spec_check_object_coercible": -10.139764, "spec_construct": -10.139764, "spec_construct_": -9.223474, "spec_construct_bool_": -10.139764, "spec_construct_default": -10.139764, "spec_construct_default_": -9.446617, "spec_construct_number_": -10.139764, "spec_construct_prealloc": -10.139764, "spec_construct_string_": -9.446617, "spec_convert_twice": -9.223474, "spec_convert_twice_": -9.446617, "spec_create_arguments_object": -10.139764, "spec_create_arguments_object_": -8.753470, "spec_create_new_function_in": -10.139764, "spec_creating_function_object": -10.139764, "spec_creating_function_object_": -8.753470, "spec_creating_function_object_proto": -10.139764, "spec_creating_function_object_proto_": -9.446617, "spec_entering_eval_code": -10.139764, "spec_entering_eval_code_": -9.446617, "spec_entering_func_code": -10.139764, "spec_entering_func_code_": -8.753470, "spec_env_record_create_immutable_binding": -10.139764, "spec_env_record_create_mutable_binding": -10.139764, "spec_env_record_create_mutable_binding_": -9.041152, "spec_env_record_create_set_mutable_binding": -10.139764, "spec_env_record_create_set_mutable_binding_": -10.139764, "spec_env_record_delete_binding": -10.139764, "spec_env_record_delete_binding_": -10.139764, "spec_env_record_get_binding_value": -9.734299, "spec_env_record_get_binding_value_": -9.446617, "spec_env_record_has_binding": -10.139764, "spec_env_record_has_binding_": -10.139764, "spec_env_record_implicit_this_value": -10.139764, "spec_env_record_implicit_this_value_": -10.139764, "spec_env_record_initialize_immutable_binding": -10.139764, "spec_env_record_set_mutable_binding": -10.139764, "spec_env_record_set_mutable_binding_": -10.139764, "spec_eq": -8.753470, "spec_equal": -10.832912, "spec_error": -9.446617, "spec_error_": -10.139764, "spec_error_or_cst": -9.734299, "spec_error_or_void": -9.734299, "spec_error_spec": -9.734299, "spec_error_spec_": -10.139764, "spec_eval": -10.139764, "spec_expr_get_value": -9.734299, "spec_expr_get_value_": -10.139764, "spec_expr_get_value_conv": -9.446617, "spec_expr_get_value_conv_": -9.446617, "spec_from_descriptor": -10.139764, "spec_from_descriptor_": -8.348005, "spec_function_get_": -10.139764, "spec_function_has_instance_": -8.753470, "spec_function_has_instance_after_bind_": -9.446617, "spec_function_proto_apply": -10.139764, "spec_function_proto_apply_": -9.041152, "spec_function_proto_apply_get_args": -9.734299, "spec_function_proto_apply_get_args_": -9.041152, "spec_function_proto_bind_": -8.193854, "spec_function_proto_bind_length": -10.139764, "spec_function_proto_bind_length_": -9.041152, "spec_get_value": -10.139764, "spec_get_value_ref_b_": -10.139764, "spec_get_value_ref_c_": -10.139764, "spec_identifier_resolution": -10.832912, "spec_init_throw_type_error": -10.139764, "spec_init_throw_type_error_": -10.139764, "spec_lexical_env_get_identifier_ref": -9.734299, "spec_lexical_env_get_identifier_ref_": -9.446617, "spec_list_expr": -10.139764, "spec_list_expr_": -9.446617, "spec_make_arg_getter": -10.139764, "spec_make_arg_setter": -10.139764, "spec_new_object": -10.139764, "spec_new_object_": -10.139764, "spec_object_can_put": -9.734299, "spec_object_can_put_": -8.530327, "spec_object_default_value": -9.734299, "spec_object_default_value_": -8.753470, "spec_object_default_value_sub_": -8.887002, "spec_object_define_own_prop": -10.139764, "spec_object_define_own_prop_": -7.942540, "spec_object_define_own_prop_array_": -7.004270, "spec_object_define_own_prop_array_branch_": -8.753470, "spec_object_define_own_prop_reject": -10.139764, "spec_object_define_own_prop_write": -10.139764, "spec_object_delete": -9.734299, "spec_object_delete_": -9.041152, "spec_object_get": -9.446617, "spec_object_get_": -9.041152, "spec_object_get_own_prop": -9.446617, "spec_object_get_own_prop_": -9.223474, "spec_object_get_prop": -9.734299, "spec_object_get_prop_": -9.041152, "spec_object_has_instance": -10.139764, "spec_object_has_instance_": -9.446617, "spec_object_has_prop": -10.139764, "spec_object_has_prop_": -9.446617, "spec_object_put": -9.734299, "spec_object_put_": -8.348005, "spec_prim_new_object": -10.139764, "spec_prim_value_get": -9.734299, "spec_prim_value_get_": -10.139764, "spec_prim_value_put": -9.734299, "spec_prim_value_put_": -10.139764, "spec_put_value": -10.139764, "spec_returns": -10.139764, "spec_string_get_own_prop_": -8.348005, "spec_to_boolean": -9.734299, "spec_to_descriptor": -10.139764, "spec_to_descriptor_": -7.195326, "spec_to_int": -9.223474, "spec_to_integer": -9.446617, "spec_to_integer_": -10.139764, "spec_to_number": -9.223474, "spec_to_number_": -10.139764, "spec_to_object": -9.446617, "spec_to_primitive": -9.446617, "spec_to_primitive_auto": -9.734299, "spec_to_string": -9.041152, "spec_to_string_": -10.139764, "spec_to_uint": -9.223474, "specification": -9.734299, "specres": -9.446617, "specret": -6.258201, "specret_out": -7.741869, "specret_val": -8.435016, "split": -8.530327, "split.": -8.124861, "splits": -7.888473, "splits*.": -9.446617, "splits.": -9.446617, "src": -8.193854, "src=": -8.193854, "st": -6.079321, "st.": -8.887002, "stack": -8.887002, "stale": -10.832912, "star": -10.139764, "starred": -10.832912, "stat": -6.881668, "stat.": -10.139764, "stat_basic": -9.446617, "stat_block_": -9.223474, "stat_do_while_": -8.060323, "stat_expr_": -9.734299, "stat_for_": -7.788389, "stat_for_var_": -10.139764, "stat_if_": -10.139764, "stat_label_": -9.734299, "stat_return_": -10.139764, "stat_switch_": -9.223474, "stat_switch_default_": -8.435016, "stat_switch_default_A_": -8.435016, "stat_switch_default_B_": -8.753470, "stat_switch_nodefault_": -8.267962, "stat_throw_": -10.139764, "stat_try_": -8.348005, "stat_var_decl_": -10.139764, "stat_var_decl_item": -10.139764, "stat_var_decl_item_": -9.041152, "stat_while_": -8.193854, "stat_with_": -10.139764, "state": -8.193854, "state.": -10.139764, "status": -10.139764, "step": -8.348005, "step.": -9.223474, "step_cases": -9.223474, "step_deterministic": -10.139764, "step_example": -10.832912, "step_normal_form": -10.139764, "step_normalizing": -10.832912, "stepmany": -10.139764, "stepmany_congr": -10.832912, "stepmany_congr2": -10.832912, "stepmany_congr_": -10.832912, "stepmany_congr_1": -10.832912, "str": -7.431714, "strict": -10.832912, "strict.": -10.832912, "strictness_flag": -7.277564, "strictness_flag.": -10.139764, "string": -6.502178, "string*stat": -10.832912, "string.": -9.734299, "strong_progress": -10.139764, "strong_progress.": -10.832912, "style": -9.223474, "style=": -9.734299, "sub": -10.832912, "subst": -7.195326, "subst*.": -10.832912, "subst.": -6.689777, "subst_hyp": -7.837179, "substitution_preserves_typing": -10.139764, "substring": -10.139764, "substs": -9.223474, "substs.": -8.887002, "surjective_pairing": -10.832912, "swap_pair": -10.832912, "switchbody": -10.832912, "switchclause": -7.574815, "symmetric": -10.139764, "symmetry": -8.435016, "symmetry.": -10.832912, "t": -5.279952, "t.": -8.887002, "t1": -9.223474, "t2": -9.223474, "t_false": -10.832912, "t_true": -10.832912, "tab": -7.999698, "tabindex": -10.139764, "tabindex=": -10.139764, "tactic": -8.635687, "tactics": -10.832912, "tag": -10.832912, "tags": -9.041152, "target": -8.635687, "terms": -10.139764, "test": -9.446617, "test_aeval": -10.832912, "test_fold_length": -10.832912, "test_hd_opt": -10.139764, "test_optimize_": -10.832912, "test_remove_one": -10.832912, "test_repeat": -10.832912, "test_rev": -10.832912, "test_step_": -10.139764, "test_stepmany_": -9.446617, "tests": -10.832912, "text": -8.124861, "that": -9.041152, "the": -9.223474, "then": -8.635687, "this": -8.753470, "three": -10.832912, "throw": -9.041152, "throw_result": -10.832912, "throw_result.": -10.832912, "throw_result_run_error_correct": -10.139764, "time.": -10.832912, "timeline": -10.832912, "title": -8.635687, "title=": -8.753470, "tl": -10.832912, "tl_length_pred": -10.832912, "tm": -7.195326, "tm.": -10.139764, "tm_abs": -8.635687, "tm_app": -8.887002, "tm_cases": -9.734299, "tm_const": -6.689777, "tm_false": -9.734299, "tm_false.": -10.139764, "tm_if": -8.348005, "tm_plus": -7.071712, "tm_true": -8.267962, "tm_var": -9.041152, "to": -7.398924, "to_int": -8.887002, "to_integer": -10.832912, "to_integer_correct": -10.832912, "to_number": -10.139764, "to_number_correct": -10.139764, "to_number_correct.": -9.734299, "to_object": -10.139764, "to_object_correct": -10.139764, "to_object_correct.": -9.223474, "to_primitive": -10.139764, "to_primitive_correct": -10.139764, "to_primitive_correct.": -10.139764, "to_string": -9.734299, "to_string_correct": -10.139764, "to_uint": -9.041152, "todo": -10.139764, "toggle": -10.139764, "tooltipped": -7.741869, "total": -10.139764, "total_relation": -9.734299, "total_relation_not_partial_function": -10.832912, "touch": -10.832912, "tp": -10.139764, "trace": -10.139764, "training": -10.139764, "trans_eq": -10.832912, "trans_eq_exercise": -10.832912, "transient": -8.753470, "transitive": -9.041152, "transitive.": -10.832912, "trashcan": -10.832912, "trending": -10.139764, "true": -6.961711, "true.": -10.139764, "truncate": -8.887002, "try": -6.658524, "tryfalse": -10.139764, "tryfalse.": -7.788389, "tryfalse_nothing": -10.832912, "tryfalse_nothing.": -10.139764, "ts": -10.139764, "tt": -8.753470, "tx": -10.139764, "ty": -8.635687, "ty.": -10.139764, "ty_Bool": -8.530327, "ty_Bool.": -10.832912, "ty_arrow": -8.887002, "type": -7.574815, "type.": -9.734299, "type=": -8.635687, "type_scope.": -10.832912, "types_unique": -10.832912, "uint": -10.832912, "unary_op": -9.223474, "uncurry": -10.139764, "uncurry_uncurry": -10.832912, "undef": -10.139764, "undef.": -10.832912, "unfold": -6.689777, "unfold_example_bad": -10.832912, "unfolds": -6.772469, "unfolds.": -8.530327, "unit": -10.832912, "unscoped": -9.446617, "up": -9.734299, "update": -9.734299, "update_neq": -10.832912, "url": -9.223474, "use": -10.832912, "used": -10.832912, "users": -9.734299, "using": -7.614036, "v": -5.679620, "v.": -8.530327, "v_abs": -10.832912, "v_abs.": -10.139764, "v_const": -9.223474, "v_const.": -8.753470, "v_funny": -10.832912, "value": -5.109327, "value.": -9.734299, "value=": -9.734299, "value_is_nf": -10.832912, "value_is_nf.": -10.832912, "value_not_same_as_normal_form": -10.832912, "value_object": -10.139764, "value_prim": -10.139764, "values": -10.832912, "verified": -9.734299, "verilog": -10.832912, "version": -7.614036, "version=": -7.614036, "vi": -10.139764, "viewBox": -7.614036, "viewBox=": -7.614036, "vis": -10.832912, "vmsg": -9.734299, "vproto": -9.734299, "vret": -10.832912, "vs": -8.887002, "vs.": -10.832912, "vthis": -8.887002, "w": -7.788389, "w.": -10.832912, "wa": -10.139764, "warn": -10.832912, "watch": -10.832912, "watching": -10.832912, "wb": -10.139764, "we": -10.832912, "wellformedness": -10.139764, "when": -10.832912, "where": -9.041152, "who": -10.832912, "width": -7.249393, "width=": -7.249393, "window.": -10.139764, "with": -5.973099, "wordmark": -10.832912, "wr": -10.832912, "wrapper": -10.832912, "wthis": -10.139764, "x": -5.279952, "x.": -9.041152, "x0": -9.041152, "x1": -8.635687, "x2": -9.446617, "xs": -8.887002, "y": -5.102812, "y.": -8.060323, "your": -10.139764, "z": -8.348005, "z.": -9.223474, "zero": -10.139764, "zeroclipboard": -10.139764, "{": -7.465616, "|": -3.376457, "}": -7.465616, "~": -5.927637, "·": -10.139764, }, "Creole": map[string]float64{ "'": -5.075174, "(": -3.465736, ")": -3.465736, "*": -3.465736, "*.creole": -5.075174, ",": -3.688879, "-": -3.465736, ".": -5.075174, "//github.com/minad/creole": -5.075174, "//github.com/minad/creole/issues": -5.075174, "//rdoc.info/projects/minad/creole": -5.075174, "//travis": -5.075174, "//wikicreole.org/": -5.075174, ":": -2.877949, "=": -2.590267, "AUTHORS": -5.075174, "BUGS": -5.075174, "CI": -5.075174, "Christensen": -4.382027, "Copyright": -5.075174, "Creole": -3.283414, "Creole.creolize": -5.075174, "Daniel": -4.382027, "GitHub": -5.075174, "Github": -5.075174, "HTML": -5.075174, "INSTALLATION": -5.075174, "If": -5.075174, "It": -5.075174, "LICENSE": -5.075174, "Lars": -4.382027, "Mendler": -5.075174, "Mendler.": -5.075174, "Project": -5.075174, "RDOC": -5.075174, "README": -5.075174, "Ruby": -5.075174, "SYNOPSIS": -5.075174, "Travis": -5.075174, "a": -4.382027, "and": -5.075174, "at": -5.075174, "be": -5.075174, "bug": -5.075174, "c": -5.075174, "ci.org/minad/creole": -5.075174, "converter": -4.382027, "creole": -5.075174, "distribution.": -5.075174, "file": -5.075174, "files.": -5.075174, "for": -5.075174, "found": -5.075174, "free": -5.075174, "gem": -5.075174, "github": -5.075174, "html": -5.075174, "http": -3.688879, "https": -5.075174, "in": -5.075174, "install": -5.075174, "is": -3.976562, "it": -5.075174, "language": -5.075174, "larsch": -5.075174, "lightweight": -5.075174, "markup": -5.075174, "may": -5.075174, "minad": -5.075174, "of": -5.075174, "on": -4.382027, "page": -5.075174, "please": -5.075174, "project": -5.075174, "redistributed": -5.075174, "render": -5.075174, "report": -5.075174, "require": -5.075174, "s": -5.075174, "software": -5.075174, "specified": -5.075174, "terms": -5.075174, "the": -3.465736, "this": -5.075174, "to": -4.382027, "tracker": -5.075174, "under": -5.075174, "uses": -5.075174, "you": -5.075174, "{": -3.283414, "}": -3.283414, }, "Crystal": map[string]float64{ "!": -6.063204, "#": -6.756351, "(": -2.146193, ")": -2.146193, ",": -7.449498, "-": -6.063204, ".to_b.should": -7.449498, ".to_f": -6.756351, ".to_i.should": -5.051603, ".type.should": -6.350886, "/usr/bin/env": -6.756351, ":": -3.067471, "<<": -7.449498, "=": -2.795538, "?": -7.449498, "ASTNode": -6.063204, "Alias": -7.449498, "And": -7.449498, "Arg": -7.449498, "ArrayLiteral": -7.449498, "Assign": -7.449498, "Attribute": -7.449498, "Block": -7.449498, "BlockArg": -7.449498, "BoolLiteral": -7.449498, "Break": -7.449498, "Call": -7.449498, "Case": -7.449498, "Cast": -7.449498, "CharLiteral": -7.449498, "ClassDef": -7.449498, "ClassVar": -7.449498, "Crystal": -7.449498, "DeclareVar": -7.449498, "Def": -7.449498, "EnumDef": -7.449498, "ExceptionHandler": -7.449498, "Expressions": -6.756351, "Extend": -7.449498, "ExternalVar": -7.449498, "Fun": -7.449498, "FunDef": -7.449498, "FunLiteral": -7.449498, "FunPointer": -7.449498, "Generic": -7.449498, "GenericClassType": -6.756351, "Global": -7.449498, "HashLiteral": -7.449498, "Hierarchy": -7.449498, "If": -7.449498, "IfDef": -7.449498, "ImplicitObj": -7.449498, "Include": -7.449498, "IndirectRead": -7.449498, "IndirectWrite": -7.449498, "InstanceSizeOf": -7.449498, "InstanceVar": -7.449498, "IsA": -7.449498, "LibDef": -7.449498, "Macro": -7.449498, "MetaVar": -7.449498, "Metaclass": -7.449498, "ModuleDef": -7.449498, "MultiAssign": -7.449498, "NO": -7.449498, "Next": -7.449498, "NilLiteral": -7.449498, "NonGenericClassType": -7.449498, "Nop": -7.449498, "Not": -7.449498, "NumberLiteral": -7.449498, "OH": -7.449498, "Or": -7.449498, "Path": -7.449498, "PointerOf": -7.449498, "Primitive": -7.449498, "RangeLiteral": -7.449498, "RegexLiteral": -7.449498, "Require": -7.449498, "Rescue": -7.449498, "RespondsTo": -7.449498, "Return": -7.449498, "Self": -7.449498, "SimpleOr": -7.449498, "SizeOf": -7.449498, "StringInterpolation": -7.449498, "StringLiteral": -7.449498, "StructDef": -7.449498, "SymbolLiteral": -7.449498, "Transformer": -7.449498, "TupleIndexer": -7.449498, "TupleLiteral": -7.449498, "Type": -6.756351, "TypeDef": -7.449498, "TypeFilteredNode": -7.449498, "TypeOf": -7.449498, "Union": -7.449498, "UnionDef": -7.449498, "Unless": -7.449498, "Var": -6.756351, "When": -7.449498, "While": -7.449498, "Yield": -7.449498, "[": -5.252273, "\\": -6.063204, "]": -5.252273, "after_transform": -7.449498, "as": -6.063204, "assert_type": -5.503588, "be_true": -7.449498, "before_transform": -7.449498, "bin/crystal": -6.756351, "block_arg": -6.756351, "block_arg.transform": -6.756351, "body": -7.449498, "body.transform": -7.449498, "char": -7.449498, "class": -6.756351, "def": -3.018681, "default_value": -7.449498, "default_value.transform": -7.449498, "describe": -6.756351, "do": -4.191401, "else": -6.756351, "end": -2.544223, "eq": -4.676909, "exp": -6.350886, "exp.transform": -6.350886, "exps": -5.657739, "exps.concat": -7.449498, "exps.length": -7.449498, "exps.map": -7.449498, "foo": -6.350886, "foo.instance_vars": -7.449498, "foo.instantiate": -6.756351, "foo_i": -5.657739, "if": -4.314004, "int": -5.370056, "it": -4.404976, "mod": -7.449498, "mod.int": -7.449498, "mod.types": -7.449498, "module": -7.449498, "new_exp": -6.350886, "new_exp.expressions": -7.449498, "new_exp.is_a": -7.449498, "node": -2.349632, "node.args": -6.350886, "node.args.map": -7.449498, "node.block": -6.756351, "node.block_arg": -5.657739, "node.body": -4.964591, "node.body.transform": -5.146913, "node.cond": -5.840060, "node.cond.transform": -5.840060, "node.conds": -7.449498, "node.const": -7.449498, "node.const.transform": -7.449498, "node.declared_type": -7.449498, "node.declared_type.transform": -7.449498, "node.def.body": -7.449498, "node.def.body.transform": -7.449498, "node.default_value": -6.756351, "node.elements": -7.449498, "node.else": -5.840060, "node.else.transform": -6.350886, "node.ensure": -6.756351, "node.exp": -6.350886, "node.exp.transform": -6.350886, "node.expressions": -6.350886, "node.expressions.each": -7.449498, "node.exps": -5.840060, "node.from": -7.449498, "node.from.transform": -7.449498, "node.fun": -7.449498, "node.fun.transform": -7.449498, "node.inputs": -7.449498, "node.keys": -7.449498, "node.left": -6.350886, "node.left.transform": -6.350886, "node.name": -5.840060, "node.name.transform": -5.840060, "node.obj": -5.252273, "node.obj.transform": -5.840060, "node.of": -6.756351, "node.of_key": -6.756351, "node.of_value": -6.756351, "node.output": -6.756351, "node.receiver": -6.063204, "node.rescues": -7.449498, "node.restriction": -6.756351, "node.right": -6.350886, "node.right.transform": -6.350886, "node.scope": -6.756351, "node.superclass": -6.756351, "node.target": -7.449498, "node.target.transform": -7.449498, "node.targets": -7.449498, "node.then": -6.350886, "node.then.transform": -6.350886, "node.to": -6.756351, "node.to.transform": -6.756351, "node.type_vars": -7.449498, "node.types": -6.756351, "node.value": -6.350886, "node.value.transform": -6.350886, "node.values": -6.756351, "node.var": -7.449498, "node.var.transform": -7.449498, "node.whens": -7.449498, "node_block": -7.449498, "node_block.transform": -7.449498, "node_block_arg": -7.449498, "node_block_arg.transform": -7.449498, "node_else": -7.449498, "node_else.transform": -7.449498, "node_ensure": -7.449498, "node_ensure.transform": -7.449498, "node_obj": -7.449498, "node_obj.transform": -7.449498, "node_of": -7.449498, "node_of.transform": -7.449498, "obj": -7.449498, "obj.transform": -7.449498, "of": -6.350886, "of_key": -7.449498, "of_key.transform": -7.449498, "of_value": -7.449498, "of_value.transform": -7.449498, "ookup_instance_var": -6.756351, "output": -7.449498, "output.transform": -7.449498, "prelude": -6.756351, "receiver": -6.756351, "receiver.transform": -6.756351, "require": -6.756351, "restriction": -7.449498, "restriction.transform": -7.449498, "result": -6.350886, "result.program": -7.449498, "run": -4.676909, "scope": -7.449498, "scope.transform": -7.449498, "self": -3.105693, "should": -6.756351, "superclass": -7.449498, "superclass.transform": -7.449498, "transform": -3.055049, "transform_many": -4.314004, "transformer": -7.449498, "transformer.after_transform": -7.449498, "transformer.before_transform": -7.449498, "transformer.transform": -7.449498, "types": -6.350886, "union_of": -7.449498, "{": -5.503588, "|": -5.370056, "}": -5.503588, }, "Csound": map[string]float64{ "!": -6.100319, "$": -5.407172, "%": -2.573958, "(": -4.714025, ")": -4.714025, "+": -5.001707, ",": -2.039876, "-": -3.009276, "...or": -6.100319, "/": -4.714025, ";": -4.020877, "<": -6.100319, "<https://csound.github.io/docs/manual/lua.html>": -6.100319, "<https://csound.github.io/docs/manual/opnonequiv.html>": -6.100319, "<https://csound.github.io/docs/manual/pyrun.html>": -6.100319, "<https://en.wikipedia.org/wiki/British_and_American_keyboards>": -6.100319, "=": -2.768114, ">": -6.100319, "A_HZ": -6.100319, "A_HZ.Hz.": -6.100319, "Hz.": -6.100319, "L.pvc": -5.407172, "L.wav": -5.407172, "MacroAbuse": -6.100319, "N": -6.100319, "N_a_M_e_": -5.407172, "Name": -6.100319, "R": -6.100319, "R.pvc": -5.407172, "R.wav": -5.407172, "T": -6.100319, "TestAt": -6.100319, "TestBitwiseNOT": -6.100319, "TestBitwiseXOR": -6.100319, "TestGoto": -6.100319, "TestMacroPeriodSuffix": -6.100319, "TestOscillator": -6.100319, "The": -5.407172, "\\": -2.922265, "^": -5.407172, "a": -6.100319, "aSignal": -5.407172, "allglass": -4.714025, "apvcL": -6.100319, "apvcL*": -6.100319, "apvcR": -6.100319, "apvcR*": -6.100319, "arL": -5.407172, "arR": -5.407172, "branch": -4.714025, "comment": -6.100319, "d": -2.699122, "dbfs": -5.001707, "do": -5.407172, "e": -6.100319, "else": -5.407172, "elseif": -6.100319, "endif": -6.100319, "endin": -5.407172, "enduntil": -6.100319, "filename.orc": -6.100319, "frequency": -5.407172, "iIndex": -4.020877, "if": -5.001707, "instr": -5.001707, "is": -5.407172, "iscale": -6.100319, "iscale*": -3.535370, "kFrequency": -5.407172, "kNote": -5.001707, "kampinterpL": -5.407172, "kampinterpR": -5.407172, "kfreqinterpL": -5.407172, "kfreqinterpR": -5.407172, "kfreqscale": -5.001707, "kr": -5.001707, "ksmps": -5.001707, "ktime": -5.001707, "ktimpnt": -4.308559, "line": -5.407172, "linseg": -4.308559, "n": -2.842222, "nchnls": -5.001707, "nchnls_i": -6.100319, "od": -6.100319, "of": -5.407172, "on": -6.100319, "oscil": -5.407172, "oscillator": -5.407172, "out": -6.100319, "outs": -6.100319, "p": -5.407172, "partA": -4.714025, "partB.pvc": -6.100319, "partB.wav": -6.100319, "print": -5.407172, "prints": -5.407172, "pvanal": -4.490881, "pvbufread": -5.407172, "pvinterp": -5.407172, "pvoc": -5.407172, "r": -6.100319, "semicolon.": -6.100319, "sr": -5.001707, "t": -6.100319, "the": -5.407172, "then": -5.407172, "until": -6.100319, "w": -4.490881, "while": -6.100319, "}": -5.407172, "~": -5.407172, }, "Csound Document": map[string]float64{ "!": -6.144186, "$": -5.451038, "%": -2.617825, "(": -4.757891, ")": -4.757891, "+": -5.045573, ",": -2.083743, "-": -3.053143, "...or": -6.144186, "/": -4.757891, ";": -4.064744, "<": -6.144186, "</CsInstruments>": -5.045573, "</CsScore>": -5.045573, "</CsoundSynthesizer>": -5.045573, "<CsInstruments>": -5.045573, "<CsScore>": -5.045573, "<CsoundSynthesizer>": -5.045573, "<https://csound.github.io/docs/manual/lua.html>": -6.144186, "<https://csound.github.io/docs/manual/opnonequiv.html>": -6.144186, "<https://csound.github.io/docs/manual/pyrun.html>": -6.144186, "<https://en.wikipedia.org/wiki/British_and_American_keyboards>": -6.144186, "=": -2.811981, ">": -6.144186, "A_HZ": -6.144186, "A_HZ.Hz.": -6.144186, "Hz.": -6.144186, "L.pvc": -5.451038, "L.wav": -5.451038, "MacroAbuse": -6.144186, "N": -6.144186, "N_a_M_e_": -5.451038, "Name": -6.144186, "R": -6.144186, "R.pvc": -5.451038, "R.wav": -5.451038, "T": -6.144186, "TestAt": -6.144186, "TestBitwiseNOT": -6.144186, "TestBitwiseXOR": -6.144186, "TestGoto": -6.144186, "TestMacroPeriodSuffix": -6.144186, "TestOscillator": -6.144186, "The": -5.451038, "\\": -2.966132, "^": -5.451038, "a": -6.144186, "aSignal": -5.451038, "allglass": -4.757891, "apvcL": -6.144186, "apvcL*": -6.144186, "apvcR": -6.144186, "apvcR*": -6.144186, "arL": -5.451038, "arR": -5.451038, "branch": -4.757891, "comment": -6.144186, "d": -2.742988, "dbfs": -5.045573, "do": -5.451038, "e": -5.045573, "else": -5.451038, "elseif": -6.144186, "endif": -6.144186, "endin": -5.451038, "enduntil": -6.144186, "filename.orc": -6.144186, "frequency": -5.451038, "i": -5.451038, "iIndex": -4.064744, "if": -5.045573, "instr": -5.045573, "is": -5.451038, "iscale": -6.144186, "iscale*": -3.579236, "kFrequency": -5.451038, "kNote": -5.045573, "kampinterpL": -5.451038, "kampinterpR": -5.451038, "kfreqinterpL": -5.451038, "kfreqinterpR": -5.451038, "kfreqscale": -5.045573, "kr": -5.045573, "ksmps": -5.045573, "ktime": -5.045573, "ktimpnt": -4.352426, "line": -5.451038, "linseg": -4.352426, "n": -2.886089, "nchnls": -5.045573, "nchnls_i": -6.144186, "od": -6.144186, "of": -5.451038, "on": -6.144186, "oscil": -5.451038, "oscillator": -5.451038, "out": -6.144186, "outs": -6.144186, "p": -5.451038, "partA": -4.757891, "partB.pvc": -6.144186, "partB.wav": -6.144186, "print": -5.451038, "prints": -5.451038, "pvanal": -4.534748, "pvbufread": -5.451038, "pvinterp": -5.451038, "pvoc": -5.451038, "r": -6.144186, "semicolon.": -6.144186, "sr": -5.045573, "t": -6.144186, "the": -5.451038, "then": -5.451038, "until": -6.144186, "w": -4.534748, "while": -6.144186, "~": -5.451038, }, "Csound Score": map[string]float64{ "e": -1.540445, "f": -2.639057, "i": -0.336472, }, "Cuda": map[string]float64{ "!": -5.666427, "#include": -4.973280, "(": -2.833213, ")": -2.833213, "*": -4.973280, "*A": -5.666427, "*B": -5.666427, "*C": -5.666427, "*d_A": -5.666427, "*d_B": -5.666427, "*d_C": -5.666427, "+": -3.363842, ",": -3.101477, "-": -5.666427, "/": -5.666427, "//////////////////////////////////////////////////////////////////////": -4.280132, "//////////////////////////////////////////////////////////////////////////": -4.973280, "//Accumulators": -5.666427, ";": -2.488373, "<": -4.567814, "<<": -5.666427, "<blocksPerGrid,>": -5.666427, "<cuda_runtime.h>": -5.666427, "<stdio.h>": -5.666427, "=": -2.621904, ">": -4.567814, "A": -5.666427, "ACCUM_N": -4.973280, "B": -5.666427, "C": -5.666427, "EXIT_FAILURE": -5.666427, "IMUL": -5.666427, "[": -3.268531, "]": -3.268531, "__global__": -4.973280, "__shared__": -5.666427, "__syncthreads": -5.666427, "accumResult": -4.056989, "blockDim.x": -4.973280, "blockIdx.x": -5.666427, "blocksPerGrid": -5.666427, "cache": -5.666427, "const": -4.973280, "cudaDeviceReset": -5.666427, "cudaError_t": -5.666427, "cudaGetErrorString": -5.666427, "cudaGetLastError": -5.666427, "cudaSuccess": -4.973280, "d_A": -4.973280, "d_B": -4.973280, "d_C": -4.973280, "elementN": -4.567814, "err": -4.056989, "exit": -5.666427, "float": -3.586985, "for": -4.973280, "fprintf": -5.666427, "i": -4.056989, "iAccum": -3.720517, "if": -4.567814, "int": -3.268531, "main": -5.666427, "numElements": -4.280132, "pos": -4.056989, "return": -5.666427, "scalarProdGPU": -5.666427, "stderr": -5.666427, "stride": -4.973280, "sum": -4.567814, "threadIdx.x": -4.567814, "threadsPerBlock": -4.280132, "vec": -4.973280, "vectorAdd": -4.973280, "vectorBase": -4.567814, "vectorEnd": -4.973280, "vectorN": -5.666427, "void": -4.567814, "{": -3.586985, "}": -3.586985, }, "Cycript": map[string]float64{ "(": -2.778819, ")": -2.778819, "+": -4.388257, ",": -3.001963, ":": -3.001963, ";": -2.373354, "<": -5.081404, "<%@:>": -5.081404, "<NSNumber:>": -5.081404, "<mach.h>": -5.081404, "<stdio.h>": -5.081404, "<stdlib.h>": -5.081404, "<string.h>": -5.081404, "=": -2.778819, "Cycript.all": -4.388257, "Type": -5.081404, "VM_PROT_COPY": -5.081404, "VM_PROT_EXECUTE": -5.081404, "VM_PROT_IS_MASK": -5.081404, "VM_PROT_NONE": -5.081404, "VM_PROT_NO_CHANGE": -5.081404, "VM_PROT_READ": -5.081404, "VM_PROT_WANTS_COPY": -5.081404, "VM_PROT_WRITE": -5.081404, "[": -3.471966, "]": -3.471966, "c": -3.982792, "c.VM_PROT_ALL": -5.081404, "c.VM_PROT_DEFAULT": -5.081404, "c.VM_PROT_EXECUTE": -5.081404, "c.VM_PROT_READ": -4.388257, "c.VM_PROT_WRITE": -4.388257, "exports": -5.081404, "for": -4.388257, "funcsToExpose": -5.081404, "funcsToExpose.length": -5.081404, "function": -5.081404, "i": -3.695110, "if": -3.982792, "in": -5.081404, "k": -3.982792, "name": -3.982792, "new": -5.081404, "return": -5.081404, "shouldExposeCFuncs": -5.081404, "shouldExposeConsts": -4.388257, "shouldExposeFuncs": -5.081404, "shouldLoadCFuncs": -4.388257, "true": -4.388257, "typeStr": -5.081404, "utils": -4.388257, "utils.constants": -4.388257, "utils.loadfuncs": -5.081404, "var": -3.289645, "{": -3.135494, "|": -3.982792, "}": -3.001963, }, "D": map[string]float64{ "!": -4.348206, "$": -8.318498, "&": -5.322766, "&&": -7.219886, "(": -2.327034, ")": -2.312145, "*": -4.580829, "**mpq_archive": -8.318498, "*blocks": -8.318498, "*compressed": -8.318498, "*encrypted": -8.318498, "*filename": -8.318498, "*files": -8.318498, "*findSlotInsert": -8.318498, "*imploded": -8.318498, "*libmpq__version": -8.318498, "*m": -8.318498, "*mpq_archive": -5.374059, "*mpq_filename": -8.318498, "*number": -8.318498, "*offset": -7.625351, "*out_buf": -7.625351, "*p": -7.625351, "*packed_size": -7.625351, "*pimpl": -7.625351, "*transferred": -7.625351, "*unpacked_size": -7.219886, "*version_": -8.318498, "+": -5.183004, ",": -3.098142, "-": -3.674107, "..": -6.526739, ".empty": -8.318498, ".entry.key": -8.318498, ".filled": -8.318498, ".format": -8.318498, ".hash": -8.318498, ".map": -8.318498, ".replace": -6.526739, ".sizeof": -8.318498, ".splitlines": -7.625351, ".stringof": -8.318498, "/": -5.833592, "//": -7.625351, ":": -6.015913, ";": -2.440763, "<": -6.121274, "<<": -5.485285, "<georg@op-co.de>": -8.318498, "<name>": -6.932204, "<type>": -7.625351, "=": -2.716379, ">": -6.239057, "?": -6.932204, "@nogc": -5.753549, "@property": -6.239057, "@safe": -7.625351, "@trusted": -7.219886, "AA": -5.920603, "AA*": -8.318498, "AliasSeq": -8.318498, "Archive": -6.932204, "Array": -6.372588, "AutoStart.yes": -7.625351, "Bucket": -6.709060, "Bucket*": -8.318498, "Bucket.sizeof": -8.318498, "C": -7.625351, "Entry": -8.318498, "Entry*": -8.318498, "Errors": -7.625351, "Errors.length": -8.318498, "Exception": -8.318498, "FPUExceptionFlags": -7.625351, "FPU_EXCEPTION_FLAGS": -7.219886, "FPU_EXCEPTION_MASKS": -7.219886, "Fib": -6.709060, "File": -6.526739, "Fn": -6.932204, "GC": -8.318498, "GC.BlkAttr.NO_INTERIOR": -8.318498, "GC.calloc": -8.318498, "GC.free": -8.318498, "GROW_DEN": -6.372588, "GROW_FAC": -6.709060, "GROW_NUM": -6.526739, "HASH_DELETED": -7.219886, "HASH_EMPTY": -7.625351, "HASH_FILLED_MARK": -7.625351, "INIT_DEN": -8.318498, "INIT_NUM": -8.318498, "INIT_NUM_BUCKETS": -6.709060, "Impl": -6.239057, "Impl*": -7.219886, "Impl.Entry": -7.219886, "Key": -5.753549, "LIBMPQ_ERROR_CLOSE": -8.318498, "LIBMPQ_ERROR_EXIST": -8.318498, "LIBMPQ_ERROR_FORMAT": -8.318498, "LIBMPQ_ERROR_MALLOC": -8.318498, "LIBMPQ_ERROR_NOT_INITIALIZED": -8.318498, "LIBMPQ_ERROR_OPEN": -8.318498, "LIBMPQ_ERROR_READ": -8.318498, "LIBMPQ_ERROR_SEEK": -8.318498, "LIBMPQ_ERROR_UNPACK": -8.318498, "LIBMPQ_ERROR_WRITE": -8.318498, "MPQException": -6.709060, "MPQ_A_GET": -6.372588, "MPQ_CHECKERR": -8.318498, "MPQ_FUNC": -5.227456, "MPQ_F_GET": -6.121274, "N": -5.833592, "ParameterTypeTuple": -8.318498, "RTInterface": -7.625351, "RTInterface*": -7.219886, "SHRINK_DEN": -6.526739, "SHRINK_NUM": -6.709060, "SSE": -7.219886, "StopWatch": -7.625351, "T": -5.140444, "T*": -8.318498, "T.sizeof": -6.239057, "T.stringof": -8.318498, "Val": -5.833592, "X": -7.625351, "[": -3.911779, "]": -3.911779, "_": -7.219886, "_aaFromCoreAA": -7.625351, "a": -5.610448, "a.archive": -7.625351, "a.files": -8.318498, "aa": -5.428127, "aa.getLValue": -8.318498, "aa.impl": -8.318498, "aa.length": -6.709060, "aa.opIn_r": -8.318498, "aa.remove": -8.318498, "aa.toBuiltinAA": -8.318498, "aaDelX": -7.625351, "aaGetY": -7.625351, "aaInX": -7.625351, "aaLen": -7.625351, "alias": -6.526739, "allocBuckets": -7.219886, "am": -7.219886, "archive": -8.318498, "archive_close": -8.318498, "archive_offset": -8.318498, "archive_open": -8.318498, "archivename": -7.625351, "args": -7.625351, "ary": -7.219886, "ary.ptr": -8.318498, "asm": -7.625351, "assert": -5.485285, "attr": -7.625351, "auto": -5.183004, "b": -5.833592, "b.filled": -8.318498, "b.hash": -8.318498, "bar": -8.318498, "block_number": -7.625351, "bool": -6.372588, "bsr": -7.625351, "buckets": -6.015913, "buckets.length": -8.318498, "buckets.ptr": -7.219886, "byte": -8.318498, "c": -6.932204, "calcHash": -6.526739, "cast": -5.679441, "catch": -7.625351, "char": -5.140444, "class": -7.219886, "clearFPUExceptionFlags": -7.625351, "const": -5.099622, "content": -7.625351, "content.length": -7.219886, "content.ptr": -8.318498, "core.aa": -8.318498, "core.bitop": -8.318498, "core.cpuid": -8.318498, "core.memory": -8.318498, "core.stdc.stdio": -8.318498, "core.stdc.stdlib": -8.318498, "delX": -8.318498, "delegate": -8.318498, "deleted": -6.015913, "dg": -7.625351, "dim": -5.679441, "double": -8.318498, "e": -7.625351, "else": -6.239057, "empty": -6.932204, "entry": -8.318498, "enum": -5.322766, "errno": -6.372588, "extern": -7.219886, "false": -7.625351, "file_number": -5.833592, "filelist": -8.318498, "filename": -6.526739, "fileno": -6.239057, "filenumber": -8.318498, "filled": -8.318498, "findSlotInsert": -6.372588, "findSlotLookup": -7.219886, "firstUsed": -6.239057, "float": -6.372588, "float.max": -7.625351, "fname": -7.625351, "fnname": -7.625351, "fno": -7.625351, "foo": -8.318498, "for": -7.625351, "foreach": -5.833592, "format": -7.625351, "free": -7.625351, "func_name": -7.219886, "function": -6.932204, "genOps": -7.625351, "get": -8.318498, "getLValue": -8.318498, "getLatencies": -7.625351, "getOrSet": -8.318498, "getThroughput": -7.625351, "getY": -8.318498, "grow": -6.932204, "hash": -4.986294, "hashOf": -8.318498, "i": -5.428127, "if": -4.917301, "immutable": -6.239057, "impl": -5.679441, "impl.findSlotLookup": -7.219886, "impl.length": -8.318498, "import": -6.239057, "in": -5.428127, "inX": -8.318498, "inout": -5.545910, "int": -4.821991, "iota": -8.318498, "is": -6.526739, "j": -6.526739, "key": -5.022661, "latencies": -6.526739, "latency": -6.526739, "lazy": -7.625351, "ldmxcsr": -8.318498, "len": -6.709060, "length": -6.709060, "lengths": -7.219886, "libmpq__archive_close": -8.318498, "libmpq__archive_files": -8.318498, "libmpq__archive_offset": -8.318498, "libmpq__archive_open": -8.318498, "libmpq__archive_packed_size": -8.318498, "libmpq__archive_unpacked_size": -8.318498, "libmpq__archive_version": -8.318498, "libmpq__block_close_offset": -8.318498, "libmpq__block_open_offset": -8.318498, "libmpq__block_read": -8.318498, "libmpq__block_unpacked_size": -8.318498, "libmpq__file_blocks": -8.318498, "libmpq__file_compressed": -8.318498, "libmpq__file_encrypted": -8.318498, "libmpq__file_imploded": -8.318498, "libmpq__file_number": -8.318498, "libmpq__file_offset": -8.318498, "libmpq__file_packed_size": -8.318498, "libmpq__file_read": -8.318498, "libmpq__file_unpacked_size": -8.318498, "libmpq__version": -8.318498, "libversion": -8.318498, "listfile": -6.709060, "listfile.read": -7.625351, "listfiledata": -6.709060, "long": -7.625351, "m": -7.219886, "main": -7.625351, "malloc": -7.625351, "mask": -6.709060, "maskFPUExceptions": -7.219886, "max": -8.318498, "min": -6.526739, "mixin": -4.763150, "module": -7.625351, "mpq": -8.318498, "mpq.file_number": -8.318498, "mpq.file_read": -8.318498, "mpq_archive_s": -5.227456, "mpq_archive_s*": -7.625351, "mxcsr": -6.121274, "n": -6.239057, "name": -5.920603, "ndim": -7.625351, "new": -5.920603, "nextpow": -7.219886, "no": -8.318498, "nothrow": -5.485285, "nsecs": -7.625351, "null": -6.015913, "obuckets": -7.625351, "obuckets.ptr": -8.318498, "off": -6.239057, "off_t": -5.610448, "offset": -7.625351, "op": -5.322766, "op.replace": -7.625351, "opIn_r": -7.219886, "opIndex": -7.219886, "opIndexAssign": -8.318498, "ops": -6.526739, "out_size": -7.625351, "p": -5.428127, "p.deleted": -7.219886, "p.empty": -7.219886, "p.entry": -6.932204, "p.entry.val": -6.526739, "p.hash": -6.932204, "package": -8.318498, "pimpl": -6.372588, "pkey": -6.121274, "pow": -7.625351, "private": -6.932204, "ptrdiff_t": -8.318498, "public": -8.318498, "pure": -5.485285, "puts": -8.318498, "read": -8.318498, "ref": -6.372588, "remove": -8.318498, "res": -6.932204, "resize": -6.932204, "result": -6.932204, "ret": -7.219886, "return": -4.348206, "rtInterface": -7.625351, "rtIntf": -8.318498, "rtaa": -6.932204, "rtaa.length": -8.318498, "runMasked": -7.219886, "runOp": -7.625351, "scope": -8.318498, "short": -8.318498, "shrink": -7.625351, "size_t": -4.986294, "size_t.sizeof": -8.318498, "static": -5.833592, "std.algorithm": -8.318498, "std.datetime": -8.318498, "std.meta": -8.318498, "std.range": -8.318498, "std.stdio": -7.625351, "std.string": -7.625351, "std.string.format": -8.318498, "std.traits": -8.318498, "stmxcsr": -8.318498, "string": -6.526739, "struct": -6.372588, "super": -8.318498, "sw": -7.625351, "sw.peek.nsecs": -7.625351, "sz": -6.526739, "t": -8.318498, "template": -6.932204, "this": -5.545910, "this.a": -7.625351, "this.am": -7.625351, "this.errno": -8.318498, "this.filename": -7.625351, "this.fileno": -7.625351, "this.impl": -8.318498, "this.unpacked_size": -8.318498, "throughputs": -7.219886, "throw": -7.625351, "toBuiltinAA": -8.318498, "toStringz": -7.625351, "trans": -7.219886, "true": -8.318498, "try": -7.625351, "type": -6.526739, "ubyte": -6.709060, "uint": -4.763150, "ulong": -8.318498, "unittest": -6.709060, "unmaskFPUExceptions": -7.219886, "used": -6.372588, "ushort": -8.318498, "val": -6.015913, "version": -6.709060, "void": -5.374059, "void*": -5.679441, "void**": -8.318498, "vtbl": -7.625351, "writefln": -7.625351, "writeln": -8.318498, "{": -3.591111, "|": -5.833592, "}": -3.591111, "~": -4.511836, }, "DIGITAL Command Language": map[string]float64{ "!": -2.892463, "\"": -8.736007, "#define": -6.944248, "$": -1.720295, "'": -8.736007, "(": -3.738795, ")": -3.732061, "*": -6.656566, "*.M": -8.736007, "*.OBJ": -8.736007, "*.exe": -8.736007, "*.obj": -8.736007, "*.opt": -8.736007, "+": -5.270271, ",": -3.618014, "-": -2.089617, ".": -7.126569, "...": -7.349713, ".AND.": -8.736007, ".COM": -8.736007, ".EQ.": -8.736007, ".EQS.": -6.790097, ".Eqs.": -7.349713, ".GES.": -8.736007, ".Ges.": -8.736007, ".LTS.": -8.736007, ".Le.": -8.736007, ".NES.": -8.042860, ".NOT.": -7.637395, ".OLB": -8.736007, ".OLB...": -8.736007, ".OR.": -8.042860, ".Or.": -8.736007, ".and.": -6.944248, ".c": -8.736007, ".eqs.": -5.740275, ".ge.": -8.042860, ".lt.": -6.538783, ".nes.": -5.791568, ".not.": -7.349713, ".or.": -6.538783, ".test": -7.349713, "/": -8.042860, "/DEBUG": -8.736007, "/DEBUG/NOOPTIMIZE/LIST/SHOW": -8.736007, "/DEFAULT": -8.042860, "/EXTRACT": -8.736007, "/NAMES": -8.736007, "/OPEN/SHARED/HEADER": -7.637395, "/OPEN/SHARED/HEADER/PROTECTED": -8.736007, "/OUTPUT": -8.736007, "/PROTECTION": -8.736007, "/SHARE": -8.736007, "/SYSTEM/EXEC": -8.736007, "/opt": -8.736007, ":": -3.860810, ";": -6.656566, "<NAME>": -8.736007, "<stdio.h>": -8.736007, "<unistd.h>": -8.736007, "<unixio.h>": -8.736007, "<zinser@zinser.no-ip.info>": -8.736007, "=": -3.202618, ">": -8.042860, "?": -7.126569, "@": -6.944248, "@GTM": -8.736007, "ACONF_EXIT": -8.736007, "ACONF_LOOP": -8.736007, "AFile": -6.944248, "ALL": -8.042860, "ALPHA": -8.042860, "AMISS_ERR": -8.042860, "AS": -6.790097, "AS.OBJ": -8.736007, "ASK": -5.740275, "AS_IS": -8.736007, "Adapt": -8.736007, "Add": -7.637395, "Alexey": -8.736007, "And": -8.042860, "Argument": -8.042860, "Arguments": -8.736007, "Assignments": -8.736007, "Associates": -8.736007, "B": -6.096950, "BUILD_XSLT.COM": -8.736007, "Build": -7.637395, "By": -8.736007, "C": -6.790097, "CALL": -5.845636, "CALLBACK": -5.517132, "CASE_SENSITIVE": -8.736007, "CC": -8.736007, "CC/DECC/PREFIX": -8.736007, "CCE": -8.042860, "CCE.EXE": -8.736007, "CC_ERR": -8.042860, "CHECK": -8.736007, "CHECK_COMPILER": -8.736007, "CHECK_CONFIG": -8.736007, "CHECK_NET_UTILIZATION": -8.736007, "CHECK_OPTS": -8.736007, "COMMAND": -8.736007, "COMMON": -7.349713, "CONTROL_Y": -8.042860, "COPYRIGHT": -8.736007, "CREA_MMS": -8.736007, "CREA_OLIST": -8.736007, "Can": -8.042860, "Check": -7.637395, "Checking": -8.042860, "Chupahin": -8.736007, "Compaq": -8.736007, "Compiling": -8.042860, "Computer": -8.736007, "Copyright": -8.736007, "Create": -8.736007, "Creating": -8.736007, "CvTime": -8.736007, "DEASSIGN": -8.736007, "DEFAULTS.MAR": -8.736007, "DEFINE": -7.637395, "DEF_DCL": -7.637395, "DEF_GLD": -7.349713, "DEF_RTN": -7.349713, "DEF_SYS": -7.637395, "DEPENDENCIES": -8.736007, "DEVICE": -7.349713, "DIRECTORY": -7.349713, "DIR_TYPE": -7.349713, "DISK_SPACE": -8.042860, "DIST": -6.433422, "DMOD": -8.042860, "DMOD.M": -8.736007, "DMOD.OBJ/NOTRACE": -8.736007, "DOPURGE": -7.637395, "DSE": -8.736007, "DSE.EXE": -8.736007, "DST_CRE": -7.349713, "DST_DEV": -7.349713, "DST_DIR": -6.538783, "DST_LOG": -5.963419, "DST_OWN": -6.944248, "Database": -8.736007, "Defining": -7.349713, "Direct": -8.736007, "Directory": -8.736007, "E": -7.637395, "ELEMENT": -8.042860, "ELSE": -6.790097, "ENDIF": -6.251101, "ENDSUBROUTINE": -8.736007, "ENVIRONMENT": -7.637395, "ERR_EXIT": -8.736007, "EXIT": -6.251101, "EXIT_BUILD": -8.736007, "EXIT_M": -8.736007, "EXTRACT": -8.736007, "EXTRA_FILNAM": -8.736007, "Editor": -7.637395, "El": -7.349713, "Element": -8.736007, "EndL": -8.736007, "Endl": -8.736007, "Error": -8.042860, "Exchange": -8.736007, "Exit": -7.349713, "Extend": -8.736007, "Extract": -8.736007, "F": -5.557954, "FELOOP": -8.736007, "FIND_ACONF": -8.736007, "FIND_VERSION": -8.736007, "FOR": -8.736007, "FULL": -8.736007, "False": -8.736007, "Fidelity": -8.736007, "File": -7.349713, "Finalizing": -8.736007, "Find": -8.736007, "First": -7.637395, "Fix": -8.736007, "G": -8.736007, "GBLDIR": -8.042860, "GBL_DIR": -7.637395, "GDE": -8.736007, "GDE.EXE": -8.042860, "GDE.HLB": -8.736007, "GNU": -8.736007, "GOTO": -7.637395, "GT.CX": -8.736007, "GT.M": -6.338112, "GT.M.": -8.042860, "GTCMSTOP": -8.736007, "GTCXSTOP": -8.736007, "GTM": -3.686151, "GTMCOLLECT.OPT": -8.736007, "GTMCOMMANDS.CLD": -8.736007, "GTMINSTALL": -8.736007, "GTMINSTALL.COM": -7.637395, "GTMINSTALL.COM.": -8.736007, "GTMLIB": -8.736007, "GTMLIB.OLB": -8.736007, "GTMLIB.OLB/LIB": -8.736007, "GTMLOGICALS": -8.736007, "GTMLOGICALS.COM": -6.944248, "GTMLOGIN.": -8.736007, "GTMLOGIN.COM": -7.637395, "GTMSECSHR": -7.126569, "GTMSECSHR.": -8.736007, "GTMSHR": -7.637395, "GTMSHR.EXE": -8.736007, "GTMSHR.OLB": -8.736007, "GTMSHR.OLB/LIB": -8.736007, "GTMSTART.COM": -8.042860, "GTMSTOP": -8.042860, "GTMSTOP.COM": -7.637395, "GTMZCALL.MLB": -8.736007, "GTM_DIST": -8.736007, "Global": -8.736007, "Goto": -6.656566, "HAVE_FSEEKO": -8.736007, "HELP": -8.736007, "HLP_DIR": -7.637395, "HLP_LOG": -7.637395, "IDENTIFIER": -8.736007, "IF": -5.691485, "INPUT": -8.042860, "INSTALL": -6.338112, "INTEGER": -8.042860, "IVP": -7.126569, "IVP.COM": -8.736007, "IVP.TLB": -8.736007, "If": -6.338112, "In": -8.736007, "Inc": -8.736007, "Information": -8.736007, "Installation": -8.042860, "Interchange": -8.736007, "Interface": -8.736007, "It": -7.349713, "KITINSTAL.COM": -8.736007, "KIT_DEBUG": -8.736007, "LIBRARIAN": -8.736007, "LIBRARY": -8.042860, "LIBRARY/REPLACE": -8.736007, "LIBRARY_": -8.736007, "LIBXML": -8.042860, "LINK": -8.736007, "LINK/exe": -8.736007, "LINK_": -8.736007, "LKE": -8.736007, "LKE.EXE": -8.042860, "LNK": -7.637395, "LNK_LOG": -7.349713, "LOPTS": -8.042860, "Linking": -8.736007, "Lock": -8.736007, "Look": -8.042860, "Loop": -7.126569, "MAKE": -5.791568, "MANAGER": -8.736007, "MAP_": -8.042860, "MCOMPILE": -8.042860, "MESSAGE": -8.042860, "MGR_COM": -7.637395, "MMK": -8.042860, "MMK/MMS": -8.736007, "MMS": -8.736007, "MMS/MMK": -8.736007, "MRDONE": -8.736007, "MRLOOP": -8.736007, "MRSLOOP": -8.736007, "MUMPS": -7.637395, "MUMPS.GLD": -8.736007, "MUMPS.HLB": -8.736007, "MUMPS/DIRECT": -8.736007, "MUPI*P": -8.736007, "MUPIP": -8.042860, "MUPIP.EXE": -7.637395, "Make": -6.656566, "Makefile.in": -8.736007, "Makeit": -8.042860, "Martin": -8.736007, "Minimum": -8.736007, "Minumum": -8.042860, "Mode": -8.736007, "N": -8.042860, "NO": -8.042860, "NOSPACE": -8.736007, "NOSUCHFILE": -8.736007, "NextEL": -8.736007, "NextEl": -8.736007, "No": -8.736007, "Not": -8.042860, "O": -8.736007, "OBJ": -8.042860, "OBJS": -8.042860, "OFile": -8.042860, "ON": -8.042860, "OPT_LOOP": -8.736007, "OUTPUT": -8.736007, "Operator": -8.736007, "P": -5.691485, "P.J.": -8.736007, "PARSE": -6.944248, "PCT_RTN": -7.126569, "POSTINSTALL": -8.736007, "PROCEDURE": -7.349713, "PROCESS": -8.736007, "PRODUCT": -8.736007, "PROTECTION": -8.042860, "PURGE": -8.736007, "Parameter": -8.736007, "Peripheral": -8.736007, "Place": -8.736007, "Preparing": -8.736007, "Procedure": -8.736007, "Procedure.": -8.736007, "Program": -8.042860, "RE": -8.042860, "REMOVE": -8.042860, "REPLACE": -7.126569, "RESERVED": -8.736007, "REWD": -7.637395, "RIGHTS": -8.736007, "ROOM": -8.042860, "ROOT": -7.126569, "ROUTINES": -8.736007, "RTN_DIR": -8.042860, "RUNDOWN": -8.736007, "RUNDOWN.": -8.736007, "RUN_IVP": -7.349713, "Read": -8.736007, "S": -6.656566, "SET": -7.637395, "SMS.": -7.637395, "SRC_CHECK_LOOP": -8.736007, "STARTDB": -7.349713, "STATUS": -8.042860, "STD_CNF": -7.637395, "STOP": -7.637395, "STRING": -8.042860, "SUBROUTINE": -8.042860, "SYMBOL_VECTOR": -8.736007, "SYS": -6.944248, "SYSHUTDWN": -8.736007, "SYSMGR": -7.126569, "SYSTEM": -8.042860, "SYSTEM/EXEC": -8.736007, "SYS_DST": -7.349713, "S_no": -8.736007, "Sanchez": -8.736007, "Save/set": -8.736007, "Search": -7.637395, "Services": -8.736007, "Set": -8.736007, "Setup": -8.736007, "System": -8.736007, "T": -7.349713, "THE": -8.736007, "THEN": -5.600513, "TO": -8.736007, "TYPE": -8.042860, "Take": -8.736007, "Th": -8.736007, "The": -8.042860, "Then": -6.656566, "This": -8.042860, "Time": -8.736007, "Triggered": -8.736007, "Type": -8.736007, "UL": -8.042860, "USER": -8.736007, "V": -8.042860, "VAX": -8.042860, "VAXC": -8.736007, "VERIFY": -8.042860, "VMI": -5.125089, "VMS": -7.349713, "VMSBACKUP.EXE": -8.736007, "VMSMISMATCH": -8.736007, "VMS_IS": -7.349713, "VMS_VERSION": -7.349713, "VV": -8.042860, "Verification": -8.042860, "Verify": -8.042860, "Version": -8.736007, "W": -8.736007, "WARNING": -8.736007, "WO": -8.736007, "WRITE": -8.736007, "When": -8.736007, "Why": -7.637395, "XML_LIBDIR": -6.790097, "XML_SRCDIR": -8.736007, "XSLT": -8.736007, "YES": -6.096950, "You": -7.126569, "ZROUTINES.": -8.736007, "Zinser": -8.736007, "Zlib": -8.042860, "[": -6.171058, "\\": -7.637395, "]": -6.096950, "_FAILURE": -8.042860, "_LARGEFILE": -8.042860, "_LARGE_FILES": -8.736007, "_SHOPT": -8.042860, "_SOURCE": -8.736007, "_SRCDIR": -8.736007, "_SUCCESS": -8.736007, "_UNSUPPORTED": -8.736007, "_shopt": -8.736007, "a": -5.845636, "access": -7.637395, "accordingly": -8.736007, "aconf": -5.644965, "aconf_err": -8.736007, "aconf_exit": -8.736007, "aconf_in": -7.349713, "aconf_in_file": -8.042860, "aconf_loop": -8.736007, "activation": -8.736007, "active": -8.736007, "actually": -8.736007, "add": -8.736007, "adjustment": -8.736007, "adler": -7.126569, "again": -8.736007, "all": -7.349713, "allow": -8.736007, "already": -8.736007, "amiss_err": -8.736007, "an": -8.736007, "and": -5.963419, "and/or": -8.736007, "answers": -8.736007, "are": -6.656566, "arg": -7.349713, "as": -7.349713, "at": -8.736007, "automatic": -8.736007, "available": -7.349713, "avoid": -8.736007, "axp": -7.349713, "be": -7.126569, "been": -8.736007, "before": -8.042860, "bhelp": -8.736007, "build": -7.637395, "builder": -8.736007, "built": -8.042860, "but": -8.042860, "by": -6.944248, "c": -7.126569, "call": -7.349713, "calls": -8.736007, "case": -8.736007, "cc": -8.736007, "cc_com": -6.790097, "cc_opts": -8.736007, "ccopt": -6.096950, "cdef": -6.944248, "cdef_val": -7.126569, "check": -8.736007, "check_compiler": -8.736007, "check_config": -8.736007, "check_opts": -8.736007, "clean": -8.736007, "close": -6.538783, "close/nolog": -6.433422, "closed": -8.736007, "code": -8.736007, "com": -8.736007, "command": -7.637395, "command.": -8.736007, "commands": -8.736007, "comment": -8.736007, "compiler": -7.637395, "completly": -8.736007, "compress.OBJ": -8.736007, "compress.c": -8.042860, "compress.obj": -8.042860, "conf_check_string": -8.736007, "conf_hin": -7.637395, "config.hin": -8.736007, "configuration": -8.042860, "configure": -8.736007, "contact": -8.736007, "containing": -8.736007, "contains": -8.042860, "copy": -7.637395, "copyright": -8.736007, "core": -8.736007, "cparm": -5.517132, "crc": -7.126569, "crea_mms": -8.736007, "crea_olist": -8.042860, "create": -8.042860, "creation": -8.736007, "cruft": -8.736007, "current": -8.736007, "database.": -8.736007, "databases": -8.736007, "dclmain.obj": -8.736007, "debug": -8.736007, "decc": -7.637395, "deck": -8.042860, "default": -7.349713, "define": -6.790097, "define/nolog": -8.042860, "defined": -6.944248, "defines": -7.637395, "definition.": -8.736007, "definitions": -8.736007, "deflate#deflateEnd#deflateInit_#deflateParams#deflateSetDictionary": -8.736007, "deflate.OBJ": -8.736007, "deflate.c": -8.042860, "deflate.h": -7.349713, "deflate.obj": -8.042860, "delete": -7.349713, "delete/nolog": -8.736007, "descrip.mms": -7.637395, "development.": -8.736007, "different": -8.736007, "dir": -6.251101, "directory": -8.736007, "directory.": -8.736007, "disable": -8.736007, "disk": -6.944248, "dnrsl": -8.736007, "dnsrl": -8.736007, "do": -8.042860, "does": -8.736007, "doesn": -8.736007, "don": -8.736007, "done": -8.736007, "dump": -8.736007, "each": -8.736007, "edit": -6.538783, "element": -6.538783, "else": -6.433422, "endif": -5.302020, "endsubroutine": -8.042860, "ensure": -8.042860, "environment": -8.736007, "environment.": -8.736007, "eod": -8.042860, "err_exit": -7.637395, "error": -8.736007, "errors": -8.736007, "eurexchange": -8.736007, "example": -8.736007, "example.OBJ": -8.736007, "example.c": -8.042860, "example.exe": -8.042860, "example.obj": -7.349713, "exit": -7.349713, "exmples": -8.736007, "extended": -8.736007, "extra_filnam": -8.042860, "extract": -6.433422, "extracted": -8.736007, "f": -4.366560, "fake": -8.736007, "false": -7.126569, "feloop": -8.736007, "file": -7.637395, "filenames": -8.736007, "files": -8.736007, "files.": -8.736007, "find_aconf": -8.736007, "find_version": -8.736007, "fix": -8.736007, "fname": -7.637395, "follow": -8.736007, "following": -8.736007, "for": -6.171058, "foreign": -8.736007, "frequently": -8.736007, "from": -8.042860, "further.": -8.736007, "getjpi": -8.736007, "getsyi": -7.126569, "global": -8.736007, "globals.c.": -8.736007, "gosub": -6.538783, "goto": -5.791568, "gzclose": -8.736007, "gzclose#gzerror#gzgetc#gzgets#gzopen#gzprintf#gzputc#gzputs#gzread": -8.736007, "gzclose.OBJ": -8.736007, "gzclose.c": -8.042860, "gzclose.obj": -8.042860, "gzlib": -8.736007, "gzlib.OBJ": -8.736007, "gzlib.c": -8.042860, "gzlib.obj": -8.042860, "gzread": -8.736007, "gzread.OBJ": -8.736007, "gzread.c": -8.042860, "gzread.obj": -8.042860, "gzseek#gztell#inflate#inflateEnd#inflateInit_#inflateSetDictionary": -8.736007, "gzwrite": -8.736007, "gzwrite.OBJ": -8.736007, "gzwrite.c": -8.042860, "gzwrite.obj": -8.042860, "h_in": -7.349713, "hair": -8.736007, "handling": -8.736007, "have": -8.736007, "hdone": -7.637395, "header": -8.736007, "history": -8.042860, "hloop": -7.349713, "holder": -8.736007, "holding": -8.736007, "hp": -8.736007, "i": -5.740275, "ia": -7.637395, "idel": -8.736007, "identification": -8.736007, "if": -4.625134, "image": -7.126569, "images": -8.736007, "images.": -8.042860, "in": -6.538783, "in.": -8.736007, "in_ldef": -7.126569, "infback.OBJ": -8.736007, "infback.c": -8.042860, "infback.obj": -8.042860, "infblock.h": -8.736007, "inffast.OBJ": -8.736007, "inffast.c": -8.042860, "inffast.h": -7.349713, "inffast.obj": -8.042860, "inffixed.h": -8.042860, "inflate.OBJ": -8.736007, "inflate.c": -8.042860, "inflate.h": -8.042860, "inflate.obj": -8.042860, "inflateSync#uncompress#zlibVersion#compress": -8.736007, "information": -8.736007, "infrequently": -8.736007, "inftrees.OBJ": -8.736007, "inftrees.c": -8.042860, "inftrees.h": -7.126569, "inftrees.obj": -8.042860, "input": -7.637395, "input/opt": -8.736007, "inputfile": -8.736007, "install": -8.736007, "installation.": -8.042860, "installed": -8.736007, "installed.": -8.042860, "installs": -8.736007, "intellectual": -8.736007, "intended": -8.736007, "into": -8.042860, "invocation": -8.736007, "invokes": -8.736007, "ip.info": -8.736007, "is": -6.171058, "issues": -8.736007, "it": -7.126569, "its": -8.736007, "its_decc": -6.538783, "its_gnuc": -6.790097, "its_vaxc": -6.656566, "know": -8.736007, "large": -8.736007, "len": -6.656566, "length": -6.171058, "level": -8.736007, "libdefs": -6.790097, "libexslt/lib": -8.736007, "libname": -6.656566, "libopt": -8.736007, "library": -6.944248, "library.": -8.736007, "library_include": -8.736007, "libxml": -8.042860, "libxml/library": -8.736007, "libxslt/lib": -8.736007, "libz": -8.736007, "libz.OLB": -8.736007, "libz.olb": -6.790097, "libz.olb/lib": -8.042860, "libzshr.exe": -8.736007, "license": -8.736007, "license.": -8.736007, "line": -7.349713, "lines": -8.736007, "link": -8.042860, "linkonly": -8.042860, "list": -8.736007, "load": -8.736007, "locally": -8.736007, "locate": -6.338112, "logical": -6.790097, "logname": -7.349713, "looking": -8.736007, "lopts": -6.944248, "made": -8.736007, "maintained": -8.736007, "make": -7.349713, "make.eqs.": -8.736007, "makefile.in": -7.637395, "manually": -7.637395, "many": -8.736007, "map": -8.736007, "map_": -8.736007, "mapfile": -8.736007, "martin": -8.736007, "martin.zinser@eurexchange.com": -8.736007, "match": -8.042860, "match.obj": -8.736007, "may": -7.637395, "me": -8.736007, "message/facil/ident/sever/text": -8.736007, "might": -8.736007, "min": -7.126569, "minigzip": -8.736007, "minigzip.OBJ": -8.736007, "minigzip.c": -8.042860, "minigzip.exe": -8.042860, "minigzip.obj": -7.349713, "missing": -8.042860, "mmks": -7.349713, "mms": -8.736007, "mod": -7.349713, "mode": -8.736007, "module": -8.736007, "modules.opt": -8.736007, "modules.opt/opt": -8.736007, "mrdone": -8.042860, "mrloop": -8.042860, "mrsloop": -8.736007, "must": -8.042860, "mydef": -8.736007, "mydir": -8.736007, "myproc": -8.736007, "myrec": -8.042860, "name": -6.944248, "names": -7.126569, "need": -7.349713, "needed": -7.637395, "new": -7.349713, "next_source": -8.736007, "next_source.nes.": -8.042860, "no": -8.042860, "no_rooted_search_lists": -8.042860, "not": -6.433422, "number": -7.349713, "obj": -7.349713, "object": -8.736007, "of": -6.433422, "on": -6.944248, "open/append": -8.736007, "open/read": -8.042860, "open/read/err": -8.736007, "open/write": -7.126569, "opt_loop": -8.736007, "optf": -6.790097, "optfile": -8.736007, "options": -8.042860, "or": -7.637395, "other": -8.736007, "out": -6.538783, "output": -5.557954, "p": -7.126569, "package": -8.736007, "parameter": -8.736007, "parse": -6.944248, "pass": -8.736007, "pass_loop": -8.736007, "pass_no": -7.637395, "path": -8.736007, "performance.": -8.736007, "performs": -8.736007, "permanent": -8.736007, "placed": -8.042860, "plain": -8.736007, "please": -8.736007, "points": -8.736007, "pre": -8.736007, "precede": -8.736007, "preference": -8.736007, "preferred": -8.736007, "probably": -8.736007, "problems": -8.736007, "proc/parse": -8.736007, "procedure": -8.042860, "process": -8.042860, "processes": -8.736007, "production": -8.736007, "progname": -8.736007, "properly": -8.736007, "property": -8.736007, "protected": -8.736007, "provide": -8.042860, "provided": -8.736007, "read": -8.736007, "read/end": -7.637395, "read/end_of_file": -8.736007, "real": -8.736007, "rec": -5.963419, "receive": -7.637395, "record": -8.736007, "redesigned": -8.736007, "reduce": -8.736007, "require": -8.736007, "required": -7.126569, "requires": -8.042860, "return": -6.944248, "run": -8.736007, "s": -8.736007, "s_case": -7.637395, "s_no": -7.637395, "said": -8.736007, "save": -8.736007, "saved_default": -8.736007, "search": -6.944248, "set": -7.637395, "sets": -8.736007, "setup": -8.042860, "shareable": -8.042860, "shared": -8.042860, "should": -7.637395, "shutdown": -8.736007, "simply": -8.042860, "single": -8.736007, "site": -8.736007, "small": -8.042860, "something": -8.736007, "source": -8.736007, "source_loop": -8.042860, "sources": -8.736007, "space": -8.042860, "specific": -8.042860, "split": -8.736007, "src": -7.637395, "src_check": -7.349713, "src_check_list": -8.042860, "src_check_loop": -8.736007, "srcdir": -7.637395, "srcfil": -7.637395, "standard": -8.042860, "start": -6.171058, "startup": -8.736007, "status": -8.736007, "stop": -8.736007, "stops": -8.736007, "structure": -8.736007, "subdir": -8.736007, "subsequent": -8.736007, "supplied": -8.736007, "support": -8.736007, "symbols": -7.637395, "sys": -5.302020, "system": -7.349713, "system.": -8.736007, "t": -7.637395, "table": -8.042860, "table.": -8.042860, "target": -8.736007, "tc": -8.042860, "tconfig": -8.736007, "tell": -8.736007, "terminates.": -8.736007, "terms": -8.736007, "text": -8.736007, "th": -6.656566, "that": -8.042860, "the": -5.270271, "them": -8.736007, "then": -4.747023, "they": -8.042860, "thing": -8.736007, "this": -8.042860, "time": -8.042860, "time.": -8.736007, "tmp.opt": -8.042860, "tmpnam": -6.433422, "to": -5.477911, "topt": -6.790097, "trees.OBJ": -8.736007, "trees.c": -8.042860, "trees.obj": -8.042860, "trnlnm": -6.538783, "true": -6.790097, "tt": -8.736007, "type": -8.042860, "uncompr.OBJ": -8.736007, "uncompr.c": -8.042860, "uncompr.obj": -8.042860, "under": -8.042860, "up": -8.736007, "update": -8.042860, "use": -8.042860, "used": -7.349713, "used.": -8.736007, "user": -8.736007, "using": -8.736007, "usual": -8.736007, "utilities.": -8.736007, "v_file": -8.736007, "v_string": -8.042860, "value": -8.736007, "variables": -8.736007, "vax": -8.736007, "vaxcrtl": -8.736007, "version": -6.790097, "vmsbackup.obj": -8.736007, "want": -8.042860, "warning": -8.736007, "we": -8.736007, "what": -8.736007, "whoami": -7.126569, "why": -8.042860, "wish": -8.736007, "with": -7.349713, "work": -6.656566, "write": -4.804182, "written": -8.736007, "yes": -8.736007, "yet.": -8.736007, "you": -7.637395, "your": -8.736007, "zconf.h": -5.239500, "zconf.h.in": -8.736007, "zconf_h.in": -8.736007, "zinser": -8.736007, "zinser@zinser.no": -8.736007, "zlib.h": -5.270271, "zlibdefs.h": -8.736007, "zutil.OBJ": -8.736007, "zutil.c": -8.042860, "zutil.h": -5.557954, "zutil.obj": -8.042860, }, "DM": map[string]float64{ "#define": -3.669951, "#elif": -5.056246, "#else": -5.056246, "#endif": -5.056246, "#if": -5.056246, "#undef": -5.056246, "&": -5.056246, "(": -2.348196, ")": -2.348196, "+": -3.957634, ",": -3.957634, "-": -4.363099, "..": -5.056246, "/datum/entity": -4.363099, "/datum/entity/New": -5.056246, "/datum/entity/proc/myFunction": -5.056246, "/datum/entity/unit": -5.056246, "/datum/entity/unit/New": -5.056246, "/datum/entity/unit/myFunction": -5.056246, "/proc/DoNothing": -5.056246, "/proc/DoOtherStuff": -5.056246, "/proc/DoStuff": -5.056246, "/proc/ReverseList": -5.056246, ";": -4.363099, "<<": -3.446808, "=": -1.798149, ">": -5.056246, "CONST_VARIABLE": -5.056246, "G": -5.056246, "GlobalCounter": -5.056246, "I": -5.056246, "K": -5.056246, "PI": -3.446808, "[": -4.363099, "]": -4.363099, "bitflag": -3.669951, "else": -4.363099, "for": -5.056246, "i": -3.957634, "if": -4.363099, "input": -5.056246, "input.len": -5.056246, "list": -4.363099, "name": -5.056246, "new": -5.056246, "null": -5.056246, "number": -4.363099, "output": -4.363099, "pi": -4.363099, "rand": -5.056246, "return": -3.957634, "var/GlobalCounter": -5.056246, "var/bitflag": -4.363099, "var/const/CONST_VARIABLE": -5.056246, "var/i": -5.056246, "var/list/EmptyList": -5.056246, "var/list/MyList": -5.056246, "var/list/NullList": -5.056246, "var/list/input": -5.056246, "var/list/output": -5.056246, "var/name": -5.056246, "var/number": -5.056246, "var/pi": -5.056246, "world.log": -3.446808, "|": -5.056246, "~": -5.056246, }, "DNS Zone": map[string]float64{ "$": -3.245193, "(": -3.650658, ")": -3.650658, ";": -1.945910, "@": -3.650658, "A": -4.343805, "EXPIRE": -4.343805, "IN": -2.734368, "MINIMUM": -4.343805, "NS": -3.245193, "ORIGIN": -4.343805, "PTR": -4.343805, "REFRESH": -4.343805, "RETRY": -4.343805, "SERIAL": -4.343805, "SOA": -3.650658, "TTL": -3.245193, "a.": -4.343805, "arpa.": -4.343805, "c.": -4.343805, "c.a.": -4.343805, "d": -3.245193, "e.d.": -4.343805, "e.f.f.": -4.343805, "e.f.f.f.": -4.343805, "example.com.": -4.343805, "expire": -4.343805, "externally": -4.343805, "h": -3.650658, "ip": -4.343805, "is": -4.343805, "localhost.": -4.343805, "maintained": -4.343805, "name": -4.343805, "negative": -4.343805, "ns": -4.343805, "ns.example.com.": -4.343805, "preferably": -4.343805, "refresh": -4.343805, "response": -4.343805, "retry": -4.343805, "root": -4.343805, "root.localhost.": -3.650658, "root.sneaky.net.": -4.343805, "secondary": -4.343805, "serial": -4.343805, "server": -4.343805, "sip": -4.343805, "www": -4.343805, }, "DTrace": map[string]float64{ "!": -6.018593, "#": -7.117206, "#define": -5.037764, "#pragma": -6.424058, "$": -7.117206, "&&": -7.117206, "(": -2.532238, ")": -2.532238, "*": -5.171295, "+": -5.730911, ",": -2.296924, "-": -4.283992, "/": -5.507768, "/check": -7.117206, "/futex_count": -7.117206, "/self": -7.117206, "/spec": -7.117206, "/usr/sbin/dtrace": -7.117206, ":": -2.492233, ";": -2.425858, "<netchild@FreeBSD.org>": -7.117206, "=": -4.026163, ">": -5.037764, "@calls": -6.424058, "@counts": -6.424058, "@longest": -6.424058, "@max_futexes": -6.424058, "@stats": -6.424058, "@timestats": -6.424058, "BEGIN": -7.117206, "BlockNumber": -4.719310, "D": -6.424058, "END": -6.424058, "ForkNumber": -4.719310, "LOCKMODE": -6.018593, "LWLockId": -5.171295, "LWLockMode": -5.325446, "LocalTransactionId": -5.730911, "Oid": -3.683218, "SHEBANG#!dtrace": -7.117206, "[": -4.121473, "]": -4.121473, "arg": -5.507768, "bool": -4.409155, "buffer__checkpoint__done": -7.117206, "buffer__checkpoint__start": -7.117206, "buffer__checkpoint__sync__start": -7.117206, "buffer__flush__done": -7.117206, "buffer__flush__start": -7.117206, "buffer__read__done": -7.117206, "buffer__read__start": -7.117206, "buffer__sync__done": -7.117206, "buffer__sync__start": -7.117206, "buffer__sync__written": -7.117206, "buffer__write__dirty__done": -7.117206, "buffer__write__dirty__start": -7.117206, "char": -4.814620, "check": -6.424058, "checkpoint__done": -7.117206, "checkpoint__start": -7.117206, "clog__checkpoint__done": -7.117206, "clog__checkpoint__start": -7.117206, "commit": -7.117206, "const": -5.171295, "copyin_error": -5.507768, "copyinstr": -7.117206, "copyout_error": -7.117206, "count": -6.018593, "create": -7.117206, "deadlock__found": -7.117206, "deprecated_requeue": -7.117206, "destroy": -6.424058, "discard": -7.117206, "entry": -6.424058, "error": -7.117206, "execname": -6.018593, "fetch_robust_entry": -7.117206, "function": -7.117206, "futex": -3.620698, "futex_atomic_op": -6.018593, "futex_count": -5.730911, "futex_get": -7.117206, "futex_mtx": -6.018593, "futex_sleep": -6.424058, "futex_wait": -6.018593, "handle_futex_death": -7.117206, "int": -3.479619, "invalid_cmp_requeue_use": -7.117206, "itimerfix_error": -7.117206, "linux_get_robust_list": -7.117206, "linux_set_robust_list": -7.117206, "linux_sys_futex": -4.719310, "linuxulator*": -3.620698, "lock__wait__done": -7.117206, "lock__wait__start": -7.117206, "locked": -7.117206, "locks": -6.018593, "long": -7.117206, "lwlock__acquire": -7.117206, "lwlock__condacquire": -7.117206, "lwlock__condacquire__fail": -7.117206, "lwlock__release": -7.117206, "lwlock__wait__done": -7.117206, "lwlock__wait__start": -7.117206, "m": -7.117206, "max": -6.424058, "missing_access_check": -7.117206, "multixact__checkpoint__done": -7.117206, "multixact__checkpoint__start": -7.117206, "option": -6.424058, "php": -7.117206, "postgresql": -7.117206, "printa": -5.325446, "printf": -4.226834, "probe": -3.109872, "probefunc": -4.121473, "probemod": -6.424058, "probename": -6.424058, "probeprov": -5.507768, "provider": -7.117206, "qs": -7.117206, "quantize": -7.117206, "query__done": -7.117206, "query__execute__done": -7.117206, "query__execute__start": -7.117206, "query__parse__done": -7.117206, "query__parse__start": -7.117206, "query__plan__done": -7.117206, "query__plan__start": -7.117206, "query__rewrite__done": -7.117206, "query__rewrite__start": -7.117206, "query__start": -7.117206, "quiet": -7.117206, "release_futexes": -7.117206, "requeue_error": -7.117206, "return": -7.117206, "s": -7.117206, "self": -5.730911, "size_error": -7.117206, "sleep_error": -6.424058, "smgr__md__read__done": -7.117206, "smgr__md__read__start": -7.117206, "smgr__md__write__done": -7.117206, "smgr__md__write__start": -7.117206, "sort__done": -7.117206, "sort__start": -7.117206, "spec": -5.507768, "specsize": -7.117206, "speculation": -7.117206, "stack": -5.507768, "statement__status": -7.117206, "subtrans__checkpoint__done": -7.117206, "subtrans__checkpoint__start": -7.117206, "target": -7.117206, "this": -6.018593, "tick": -7.117206, "time": -5.730911, "timediff": -6.018593, "timestamp": -5.325446, "tottime": -6.018593, "transaction__abort": -7.117206, "transaction__commit": -7.117206, "transaction__start": -7.117206, "ts": -6.424058, "twophase__checkpoint__done": -7.117206, "twophase__checkpoint__start": -7.117206, "unhandled_efault": -7.117206, "unimplemented_clockswitch": -7.117206, "unimplemented_cmp": -7.117206, "unimplemented_cmp_requeue_pi": -7.117206, "unimplemented_lock_pi": -7.117206, "unimplemented_op": -7.117206, "unimplemented_trylock_pi": -7.117206, "unimplemented_unlock_pi": -7.117206, "unimplemented_wait_requeue_pi": -7.117206, "unknown_operation": -7.117206, "unlock": -6.424058, "unsigned": -4.409155, "ustack": -6.018593, "wal__buffer__write__dirty__done": -7.117206, "wal__buffer__write__dirty__start": -7.117206, "xlog__insert": -7.117206, "xlog__switch": -7.117206, "{": -4.409155, "}": -4.344617, }, "Dart": map[string]float64{ "(": -2.460809, ")": -2.460809, "*": -3.713572, "+": -4.406719, ",": -3.020425, "-": -3.713572, ";": -2.209495, "=": -3.020425, "Point": -2.797281, "as": -4.406719, "class": -4.406719, "distanceTo": -4.406719, "dx": -3.308107, "dy": -3.308107, "import": -4.406719, "main": -4.406719, "math": -4.406719, "math.sqrt": -4.406719, "new": -3.713572, "num": -3.713572, "other": -4.406719, "other.x": -4.406719, "other.y": -4.406719, "p": -4.406719, "print": -4.406719, "q": -4.406719, "return": -4.406719, "this.x": -4.406719, "this.y": -4.406719, "var": -3.020425, "void": -4.406719, "x": -3.713572, "y": -3.713572, "{": -3.308107, "}": -3.308107, }, "Diff": map[string]float64{ "+": -1.609438, "-": -1.609438, "a/lib/linguist.rb": -2.708050, "ad": -2.708050, "b": -2.708050, "b/lib/linguist.rb": -2.014903, "d": -2.708050, "diff": -2.708050, "git": -2.708050, "index": -2.708050, }, "Dockerfile": map[string]float64{ "$": -3.012262, "&&": -3.299944, "-": -2.201331, ".": -5.497168, "//": -4.398556, "//go.googlecode.com/files/go": -5.497168, "/bin": -4.804021, "/etc/apt/sources.list": -5.497168, "/go": -5.497168, "/go/bin": -5.497168, "/go/src/": -3.705409, "/go/src/github.com/dotcloud/docker": -5.497168, "/go/src/github.com/dotcloud/docker/docker": -5.497168, "/sbin": -4.804021, "/tmp": -5.497168, "/usr/bin": -4.804021, "/usr/local": -5.497168, "/usr/local/bin": -4.804021, "/usr/local/go/bin": -4.804021, "/usr/local/sbin": -4.804021, "/usr/sbin": -4.804021, ":": -2.606796, ";": -4.398556, "<solomon@dotcloud.com>": -5.497168, "=": -3.705409, ">": -4.804021, "C": -5.497168, "CGO_ENABLED": -5.497168, "GOPATH": -5.497168, "Hykes": -5.497168, "PATH": -4.804021, "PKG": -3.012262, "REV": -3.705409, "Solomon": -5.497168, "[": -5.497168, "]": -5.497168, "a": -5.497168, "add": -5.497168, "amd": -5.497168, "apt": -3.705409, "aufs": -5.497168, "b": -5.497168, "c": -4.804021, "cd": -3.887730, "checkout": -4.398556, "clone": -4.398556, "cmd": -5.497168, "curl": -4.804021, "d": -5.497168, "docker": -5.497168, "e": -5.497168, "echo": -4.804021, "env": -4.110874, "f": -4.398556, "from": -5.497168, "get": -3.705409, "git": -3.551258, "github.com/gorilla/context/": -5.497168, "github.com/gorilla/mux/": -5.497168, "github.com/kr/pty": -5.497168, "go": -4.804021, "http": -4.398556, "https": -5.497168, "i": -5.497168, "install": -3.705409, "inux": -5.497168, "iptables": -5.497168, "ldflags": -5.497168, "lxc": -5.497168, "maintainer": -5.497168, "q": -4.804021, "run": -2.932219, "s": -5.497168, "t.go": -5.497168, "tar": -5.497168, "tar.gz": -5.497168, "test": -5.497168, "tools": -5.497168, "ubuntu": -5.497168, "update": -5.497168, "v": -4.804021, "version": -5.497168, "xz": -5.497168, "y": -3.887730, "|": -5.497168, }, "Dogescript": map[string]float64{ "but": -3.401197, "console.loge": -2.708050, "friendly": -2.708050, "github": -3.401197, "is": -2.708050, "language": -2.302585, "loud": -3.401197, "module.exports": -3.401197, "much": -3.401197, "plz": -2.708050, "quiet": -3.401197, "recognized": -3.401197, "rly": -3.401197, "such": -2.708050, "syntax": -3.401197, "true": -3.401197, "very": -3.401197, "with": -2.708050, "wow": -2.014903, }, "E": map[string]float64{ "!": -6.375025, "#": -7.068172, "#....": -7.068172, "#....log": -7.068172, "#...use": -7.068172, "#File": -7.068172, "#Using": -6.375025, "$": -5.681878, "%": -5.969560, "(": -2.423781, ")": -2.433443, "*": -7.068172, "+": -5.969560, ",": -3.772335, "-": -5.458734, ".acos": -7.068172, ".floor": -7.068172, "/": -7.068172, "/usr/bin/env": -7.068172, "0": -5.681878, "1": -5.969560, "100": -7.068172, "2": -7.068172, "20": -7.068172, ":": -2.973827, "<": -7.068172, "<$brandName>": -5.969560, "<->": -7.068172, "<-receive(message))>": -7.068172, "<awt:makeColor>": -7.068172, "<c:/docs/myFile.txt>": -7.068172, "<c:\\docs\\myFile.txt>": -7.068172, "<file:/home/marcs/myFile.txt>": -7.068172, "<file:c:/docs/myFile.txt>": -7.068172, "<file:myFile.txt>": -7.068172, "<file>": -7.068172, "<unsafe:com.zooko.tray.makeEPainter>": -7.068172, "<unsafe:javax.swing.makeJFrame>": -7.068172, "=": -3.354600, ">": -5.458734, "A": -7.068172, "CheckAuth": -6.375025, "ProveAuth": -6.375025, "Ref.isResolved": -6.375025, "SHEBANG#!rune": -7.068172, "String": -6.375025, "TextWriter": -5.681878, "The": -5.969560, "Total": -7.068172, "Unmatched": -7.068172, "Windows": -7.068172, "X": -7.068172, "[": -4.503223, "]": -4.503223, "_": -5.276413, "__getAllegedType": -7.068172, "__printOn": -5.681878, "__respondsTo": -6.375025, "`": -3.977130, "a": -5.681878, "amount": -5.681878, "amountLim": -5.969560, "any": -6.375025, "as": -6.375025, "at": -7.068172, "auth": -5.969560, "authList": -6.375025, "authorization": -7.068172, "awt": -7.068172, "bind": -5.969560, "brand": -5.458734, "brandName": -5.969560, "bucket": -5.969560, "buckets": -4.670277, "buckets.transfer": -6.375025, "bucketsW": -5.681878, "c": -5.458734, "can": -7.068172, "car": -4.988730, "car.milesTillEmpty": -7.068172, "catch": -6.375025, "character": -7.068172, "chatController": -6.375025, "chatUI.showMessage": -5.681878, "checker": -5.969560, "clock": -7.068172, "clock.start": -7.068172, "clock.stop": -7.068172, "coerce": -6.375025, "colors": -5.681878, "current": -6.375025, "data": -7.068172, "def": -3.097880, "display": -7.068172, "display.repaint": -7.068172, "diverge": -7.068172, "doWhileUnresolved": -5.969560, "done": -5.276413, "drawString": -7.068172, "drive": -7.068172, "else": -6.375025, "entropy.nextInt": -6.375025, "event": -6.375025, "extends": -6.375025, "false": -7.068172, "file": -4.870947, "file.getText": -7.068172, "file.setText": -7.068172, "filePath": -6.375025, "files": -7.068172, "fillRect": -6.375025, "finally": -7.068172, "floor": -6.375025, "fn": -6.375025, "for": -5.458734, "frame": -7.068172, "frame.addWindowListener": -7.068172, "frame.pack": -7.068172, "frame.setContentPane": -7.068172, "frame.setLocation": -7.068172, "frame.show": -7.068172, "friend": -5.681878, "friendRcvr": -6.375025, "from": -7.068172, "fuelRemaining": -5.681878, "g": -5.122262, "get": -5.681878, "getBlack": -7.068172, "getBrand": -5.681878, "getDarkGray": -7.068172, "getFuelRemaining": -6.375025, "getHeight": -7.068172, "getName": -7.068172, "getObjectFromURI": -7.068172, "getWhite": -7.068172, "getWidth": -7.068172, "getX": -7.068172, "getY": -7.068172, "go": -7.068172, "hardwired": -7.068172, "i": -4.177800, "if": -5.458734, "in": -5.969560, "indicator": -6.375025, "int": -5.122262, "interp.waitAtTop": -7.068172, "is": -6.375025, "j": -4.670277, "jet": -5.969560, "load": -7.068172, "location": -7.068172, "loop": -5.681878, "mainWindowListener": -7.068172, "makeBuckets": -6.375025, "makeCar": -5.681878, "makeDimension": -7.068172, "makeDisplayComponent": -6.375025, "makeEPainter": -6.375025, "makeJet": -7.068172, "makeURIFromObject": -7.068172, "makeVOCPair": -7.068172, "makeVehicle": -5.969560, "match": -5.458734, "max": -7.068172, "message": -5.681878, "mi": -5.969560, "miles.": -7.068172, "milesPerGallon": -6.375025, "milesTillEmpty": -7.068172, "min": -7.068172, "moveTo": -7.068172, "much": -7.068172, "myTempContents": -5.276413, "name": -5.681878, "near": -5.276413, "negative": -7.068172, "newName": -6.375025, "newX": -6.375025, "newY": -6.375025, "ni": -5.681878, "none": -6.375025, "null": -6.375025, "null.__getAllegedType": -7.068172, "objects": -7.068172, "of": -6.375025, "offerContent": -7.068172, "optEjector": -5.969560, "or": -7.068172, "out": -5.681878, "out.print": -5.681878, "paintCallback": -7.068172, "paintComponent": -7.068172, "pi": -6.375025, "pixelsH": -5.969560, "pixelsW": -5.681878, "possible": -7.068172, "pragma.syntax": -6.375025, "println": -6.375025, "prob": -6.375025, "problem": -7.068172, "prover": -7.068172, "quantity": -7.068172, "receive": -7.068172, "receiveFriend": -6.375025, "report": -7.068172, "return": -3.932678, "rune": -7.068172, "save": -7.068172, "sealedBox": -6.375025, "self": -7.068172, "self.getFuelRemaining": -7.068172, "self.milesPerGallon": -7.068172, "send": -7.068172, "setColor": -5.969560, "setName": -7.068172, "setPreferredSize": -7.068172, "single": -7.068172, "size": -5.458734, "specified": -7.068172, "specify": -7.068172, "specimen": -6.375025, "specimenBox": -6.375025, "specimenBox.__respondsTo": -7.068172, "specimenBox.offerContent": -7.068172, "sportsCar": -7.068172, "sportsCar.getName": -7.068172, "sportsCar.getX": -7.068172, "sportsCar.moveTo": -7.068172, "state": -7.068172, "storage": -7.068172, "structure": -7.068172, "sum": -5.969560, "task": -5.969560, "tempVow": -6.375025, "template": -6.375025, "the": -5.969560, "throw.eject": -7.068172, "timer.every": -7.068172, "to": -3.571664, "transfer": -6.375025, "true": -7.068172, "units": -7.068172, "value": -5.969560, "values": -5.276413, "var": -4.870947, "variable": -7.068172, "vehicle": -6.375025, "versa": -7.068172, "vice": -7.068172, "view": -7.068172, "void": -5.276413, "when": -6.375025, "windowClosing": -7.068172, "x": -5.969560, "x0": -5.969560, "x1": -6.375025, "y": -5.969560, "{": -2.848664, "}": -2.848664, }, "EBNF": map[string]float64{ "(": -5.948035, ")": -5.948035, ",": -1.294075, ";": -2.210365, "=": -2.210365, "AnonymousFunction": -4.561741, "Assignment": -5.254888, "Expr": -4.156276, "FunctionBody": -5.254888, "FunctionParam": -4.849423, "FunctionParams": -5.254888, "FunctionRHS": -4.849423, "NamedFunction": -5.254888, "Number": -5.948035, "SingleWordString": -5.254888, "Statement": -5.948035, "Symbol": -4.561741, "Term": -4.561741, "[": -4.849423, "]": -4.849423, "_name": -4.156276, "alpha": -5.254888, "ambient": -5.254888, "diffuse": -5.254888, "digit": -4.561741, "digit_without_zero": -4.849423, "mapping": -5.254888, "material": -5.948035, "material_name": -5.254888, "n": -3.645450, "name": -4.561741, "natural": -4.561741, "object": -5.948035, "positive": -4.561741, "real": -2.856993, "shininess": -5.254888, "specular": -5.254888, "string": -4.561741, "t": -4.338597, "texture": -5.254888, "triangle": -5.254888, "triangle_array": -5.254888, "triangles": -5.254888, "vertex": -5.254888, "vertex_array": -5.254888, "vertex_normal": -4.849423, "vertex_p": -3.645450, "vertex_position": -4.849423, "vertex_type": -5.254888, "vertex_uv": -5.254888, "vertices": -5.254888, "{": -4.156276, "|": -2.856993, "}": -4.156276, }, "ECL": map[string]float64{ "#option": -5.780744, "(": -2.315008, ")": -2.315008, "+": -3.008155, ",": -2.561868, "-": -4.171306, "/": -5.087596, "//Same": -5.780744, "//Several": -5.780744, "//This": -5.780744, ":": -3.988984, ";": -2.645249, "<": -5.780744, "=": -3.382848, ">": -5.780744, "Also": -5.780744, "END": -5.780744, "FLAT": -5.087596, "RECORD": -5.780744, "[": -4.394449, "]": -4.394449, "a": -5.780744, "age": -5.087596, "all": -5.780744, "and": -3.478158, "aveAgeL": -4.682131, "aveAgeR": -4.394449, "before": -5.780744, "between": -3.834833, "but": -5.780744, "by": -5.780744, "dadAge": -5.780744, "dataset": -5.087596, "done": -5.780744, "end": -5.780744, "ensure": -5.780744, "examples": -5.780744, "extra": -5.780744, "forename": -5.780744, "generate": -5.780744, "includes": -5.780744, "integer": -4.171306, "is": -5.780744, "join": -3.382848, "l": -5.780744, "l.dadAge": -5.780744, "l.mumAge": -5.780744, "left": -5.087596, "left.age": -3.701302, "left.surname": -5.087596, "mumAge": -5.780744, "namesRecord": -3.834833, "namesTable": -2.785011, "non": -5.780744, "not": -5.780744, "of": -5.780744, "on": -5.780744, "output": -3.583519, "r": -5.780744, "r.dadAge": -5.780744, "r.mumAge": -5.780744, "record": -5.780744, "right": -4.682131, "right.age": -3.295837, "right.surname": -4.394449, "self": -5.780744, "should": -5.780744, "simple": -5.780744, "sliding": -5.087596, "sliding.": -5.780744, "sort": -5.780744, "string": -4.682131, "strings.": -5.780744, "surname": -5.780744, "syntax": -5.780744, "to": -5.780744, "true": -5.780744, }, "ECLiPSe": map[string]float64{ "!": -5.627621, "#": -3.430397, "(": -2.631889, ")": -2.631889, ",": -1.657329, "-": -2.988564, ".": -3.548180, ":": -3.062672, ";": -5.627621, "<": -5.627621, "=": -3.548180, ">": -4.934474, "AbsVal": -3.325036, "First": -4.934474, "Length": -4.934474, "ListVar": -4.934474, "Max": -4.934474, "Min": -4.934474, "Min..Max": -5.627621, "Rest": -3.835862, "Taille": -4.241327, "VabsXi": -4.934474, "Val": -3.548180, "X": -2.583099, "Xi": -2.683182, "Xi.": -5.627621, "[": -3.430397, "]": -3.430397, "_": -4.934474, "checkPeriode": -4.529009, "checkRelation": -4.529009, "faitListe": -4.529009, "ic": -5.627621, "labeling": -4.934474, "length": -5.627621, "lib": -5.627621, "or": -5.627621, "suite": -4.529009, "vabs": -4.934474, "vabsIC": -5.627621, "|": -4.018183, }, "EJS": map[string]float64{ "%": -2.641969, "(": -4.454347, ")": -4.454347, "+": -5.147494, "../parts/depend": -6.533789, ".author": -5.840642, ".averagePracticeTime": -5.840642, ".teacherName": -5.840642, ".title": -5.147494, "/h": -4.587879, "0": -4.924351, "1": -6.533789, "10px": -5.840642, "9": -6.533789, ":": -5.147494, ";": -5.147494, "<": -3.237952, "<%>": -3.237952, "</a>": -5.147494, "</button>": -5.840642, "</center>": -5.435177, "</div>": -3.761200, "</p>": -4.336564, "</strong>": -4.336564, "<a>": -5.147494, "<button>": -5.840642, "<center>": -5.435177, "<div>": -3.761200, "<p>": -4.336564, "<strong>": -4.336564, "=": -2.406654, ">": -2.229724, "Average": -5.840642, "By": -5.840642, "Completed": -5.840642, "In": -6.533789, "No": -5.435177, "Pieces": -4.924351, "Practice": -5.147494, "Progress": -5.840642, "Teacher": -5.840642, "There": -6.533789, "Time": -5.840642, "You": -5.435177, "[": -4.231204, "]": -4.231204, "a": -6.533789, "active": -6.533789, "assigned.": -6.533789, "be": -6.533789, "bottom": -6.533789, "btn": -4.336564, "class": -3.643417, "class=": -5.435177, "col": -6.533789, "completedPieces": -4.135894, "completedPieces.length": -5.840642, "content": -6.533789, "dashboard": -5.840642, "depend": -5.840642, "else": -4.048882, "focus": -5.840642, "for": -5.840642, "h": -4.587879, "have": -5.435177, "href": -5.147494, "i": -3.275692, "id": -4.454347, "if": -4.587879, "in": -6.533789, "inProgressPieces": -4.135894, "inProgressPieces.length": -5.840642, "include": -4.587879, "length": -4.742029, "lg": -6.533789, "main": -6.533789, "margin": -6.533789, "md": -5.840642, "mins": -5.840642, "no": -6.533789, "none": -6.533789, "off": -5.840642, "parts": -5.840642, "parts/depend": -6.533789, "piece": -6.533789, "pieces": -4.924351, "pieces.length": -5.435177, "practice": -5.840642, "primary": -5.840642, "primaryAccount": -5.840642, "problem": -6.533789, "purple": -6.533789, "role": -6.533789, "role=": -6.533789, "round": -5.840642, "section": -6.533789, "seems": -6.533789, "sidebar": -5.147494, "student": -5.435177, "student/dashboard": -6.533789, "student/sidebar": -6.533789, "style": -5.840642, "style=": -6.533789, "super": -5.840642, "teacher": -5.435177, "teacher/dashboard": -6.533789, "teacher/sidebar": -6.533789, "title": -6.533789, "to": -5.435177, "type": -5.840642, "type=": -5.840642, "undefined": -4.742029, "user": -5.840642, "user.primaryAccount": -5.840642, "var": -5.147494, "{": -3.968839, "||": -5.435177, "}": -3.968839, }, "EQ": map[string]float64{ "!": -5.555775, "#include": -6.855057, "&": -7.260523, "&&": -6.161910, "(": -2.029414, ")": -2.029414, "*": -7.953670, "+": -7.953670, ",": -4.103522, "-": -5.874228, ".add": -6.161910, ".get_fd": -7.953670, ".iov_base": -7.953670, ".iov_len": -7.953670, ".printf": -6.344232, ".set_button_text": -7.953670, ".set_hover_font": -7.953670, ".set_image_hover": -7.953670, ".set_image_normal": -7.953670, ".set_image_pressed": -7.953670, ".set_normal_font": -7.953670, ".set_pressed_font": -7.953670, ".to_string": -6.161910, ":": -6.007760, ";": -2.408492, "<": -6.344232, "<sys/socket.h>": -7.953670, "<sys/types.h>": -7.953670, "<unistd.h>": -7.953670, "=": -2.829706, ">": -6.161910, "Boolean": -7.953670, "Buffer": -7.260523, "CMSG_DATA": -7.953670, "CMSG_FIRSTHDR": -7.953670, "CMSG_LEN": -7.953670, "CMSG_SPACE": -7.953670, "Client": -6.855057, "Client.create": -7.953670, "Collection": -7.260523, "Double": -7.953670, "ELSE": -6.161910, "EditableString": -7.953670, "EventLoopEntry": -7.260523, "EventLoopReadListener": -6.855057, "FileDescriptor": -7.260523, "FileDescriptorSocket": -7.953670, "HTTPServer": -6.344232, "HTTPServerVirtualHostListener": -6.344232, "HashTable": -7.953670, "HashTable.create": -7.953670, "IFDEF": -6.344232, "IFNDEF": -7.953670, "Integer": -7.953670, "Iterator": -7.953670, "LocalSocket": -6.855057, "LocalSocket.create": -7.953670, "Log.error": -7.953670, "Logger": -7.953670, "LoggerObject": -7.260523, "NULL": -7.260523, "Object": -5.651085, "SCM_RIGHTS": -7.953670, "SEButtonEntity": -6.161910, "SEButtonEntity.for_images": -7.953670, "SEImage": -6.007760, "SEImageButtonEntity": -7.260523, "SEMessageListener": -7.953670, "SEPointerInfo": -6.161910, "SEPointerListener": -7.953670, "SEResourceCache": -7.953670, "SESpriteEntity": -7.953670, "SETextButtonEntity": -7.260523, "SOL_SOCKET": -7.953670, "String": -3.893227, "String.as_string": -7.953670, "String.for_strptr": -6.344232, "String.is_empty": -6.344232, "StringBuffer.create": -6.855057, "StringFormatter": -7.953670, "StringImpl": -7.260523, "StringIterator": -7.260523, "Stringable": -6.007760, "TCPSocket.create": -7.953670, "[": -6.344232, "]": -6.344232, "_buffer": -6.855057, "alength": -7.953670, "ao": -6.567375, "append": -7.953670, "as": -7.260523, "as_editable": -7.953670, "as_string": -7.260523, "as_strptr": -7.953670, "av": -6.161910, "av.ToString": -7.260523, "base.initialize": -7.953670, "bool": -5.063298, "buf": -7.260523, "button_text": -6.567375, "c": -5.555775, "capitalize": -7.953670, "char": -7.260523, "chr": -7.953670, "class": -6.161910, "close": -6.161910, "cm": -7.953670, "cmptr": -6.161910, "cmsg_len": -7.953670, "cmsg_level": -7.953670, "cmsg_type": -7.953670, "cmsghdr": -7.953670, "cmsghdr*": -7.953670, "combine": -7.953670, "compare": -7.953670, "compare_ignore_case": -7.953670, "contains": -7.953670, "continue": -7.260523, "control": -7.953670, "control_un": -7.953670, "control_un.control": -7.260523, "create": -6.855057, "data": -6.567375, "delim": -6.567375, "double": -7.953670, "dup": -7.953670, "ee": -5.874228, "ee.remove": -7.260523, "ee.set_read_listener": -7.953670, "else": -6.344232, "embed": -5.651085, "equals": -7.953670, "equals_ignore_case": -7.953670, "equals_ignore_case_ptr": -7.953670, "equals_ptr": -7.953670, "event_loop": -7.260523, "event_loop.entry_for_object": -7.953670, "eventloop": -7.260523, "eventloop.entry_for_object": -7.953670, "false": -4.818176, "fds": -7.260523, "fds.set_fd": -7.953670, "ff": -5.651085, "flags": -6.855057, "flags.get": -7.953670, "flags.set": -7.953670, "for_boolean": -7.953670, "for_character": -7.953670, "for_double": -7.953670, "for_image": -7.953670, "for_images": -7.953670, "for_integer": -7.260523, "for_long": -7.953670, "for_object": -7.953670, "for_strptr": -7.953670, "for_text": -7.953670, "for_utf": -7.953670, "foreach": -7.260523, "get_char": -7.953670, "get_has_pointer": -6.855057, "get_height": -6.855057, "get_length": -7.953670, "get_pressed": -6.855057, "get_width": -6.855057, "get_x": -6.855057, "get_y": -6.855057, "has_pointer": -5.874228, "has_prefix": -7.953670, "has_suffix": -7.953670, "hash": -7.953670, "haszero": -7.260523, "hover": -7.260523, "hover_font": -6.344232, "ibase": -7.953670, "if": -3.734162, "image_hover": -6.855057, "image_normal": -6.567375, "image_pressed": -7.260523, "img": -5.468763, "in": -7.260523, "initialize": -7.953670, "insert": -7.953670, "instance": -7.953670, "int": -4.398322, "int*": -7.953670, "interface": -7.953670, "iov": -6.567375, "iovec": -7.953670, "is": -6.161910, "is_empty": -7.953670, "is_in_collection": -7.953670, "iterate": -7.953670, "iterate_reverse": -7.953670, "java.lang.String.valueOf": -6.855057, "len": -7.260523, "listener": -7.260523, "listener.on_message": -7.953670, "literal": -7.260523, "log_debug": -7.953670, "log_error": -6.007760, "log_warning": -7.953670, "logger": -6.855057, "long": -7.953670, "lowercase": -7.953670, "lsfd": -7.260523, "max": -7.953670, "msg": -6.855057, "msg.msg_control": -7.953670, "msg.msg_controllen": -7.953670, "msg.msg_iov": -7.953670, "msg.msg_iovlen": -7.953670, "msg.msg_name": -7.953670, "msg.msg_namelen": -7.953670, "msghdr": -7.953670, "n": -7.260523, "name": -6.007760, "new": -6.161910, "newfd": -6.161910, "newsock": -6.567375, "normal": -7.260523, "normal_font": -6.161910, "ns": -6.855057, "null": -3.859325, "o": -4.695573, "on_pointer_click": -7.260523, "on_pointer_enter": -7.260523, "on_pointer_leave": -7.260523, "on_pointer_move": -7.953670, "on_pointer_press": -7.953670, "on_pointer_release": -7.953670, "on_read_ready": -6.855057, "pi": -5.756445, "pi.is_inside": -6.855057, "pos": -7.953670, "pp": -6.567375, "prefix": -6.567375, "pressed": -5.651085, "pressed_font": -6.567375, "printf": -7.953670, "private": -7.953670, "property": -5.756445, "public": -3.559221, "r": -6.161910, "rchr": -7.953670, "receive_fd": -7.260523, "recvmsg": -7.953670, "remove": -7.953670, "replace": -7.953670, "replace_char": -7.953670, "replace_string": -7.953670, "return": -3.779283, "reverse": -7.953670, "rsc": -7.260523, "rstr": -7.953670, "s": -5.756445, "s.equals": -7.953670, "sb": -6.855057, "sb.append": -7.260523, "sb.append_c": -6.855057, "sb.count": -7.953670, "sb.to_string": -6.855057, "server": -5.314612, "server.get_eventloop": -7.260523, "server.get_logger": -6.855057, "server.on_new_client_socket": -7.953670, "set_image": -6.855057, "set_text": -6.855057, "sizeof": -6.855057, "socket": -5.063298, "socket.accept": -7.953670, "socket.close": -7.260523, "socket.listen": -7.953670, "socketname": -6.855057, "socketprefix": -7.260523, "split": -7.953670, "ssize_t": -7.953670, "st": -5.756445, "start": -6.855057, "static": -4.909147, "str": -5.120456, "str.get_char": -7.260523, "str.substring": -7.953670, "str.to_strptr": -7.953670, "strings": -7.260523, "strip": -7.953670, "strptr": -5.651085, "struct": -6.567375, "substring": -7.953670, "suffix": -7.953670, "text": -7.260523, "this": -7.953670, "to_integer_base": -7.953670, "to_strptr": -7.953670, "to_utf": -7.953670, "true": -5.756445, "truncate": -7.953670, "union": -7.953670, "unique": -7.260523, "update": -5.874228, "uppercase": -7.953670, "v": -5.009231, "v.ee": -7.260523, "v.ee.set_read_listener": -7.953670, "v.server": -7.260523, "v.set_logger": -7.260523, "v.set_strptr": -7.953670, "v.set_utf": -7.953670, "v.socket": -7.953670, "v.socketprefix": -7.953670, "v.start": -7.953670, "val": -7.260523, "var": -4.862627, "virtual": -6.567375, "void": -5.120456, "zero": -7.953670, "{": -2.866073, "||": -7.260523, "}": -2.866073, }, "Eagle": map[string]float64{ "!": -9.998093, "&": -2.078555, "(": -9.304946, ")": -9.304946, ",": -7.359036, "-": -4.047450, "/": -3.743303, "//download.siliconexpert.com/pdfs/": -9.998093, "//www.secc.co.jp/pdf/os_e/": -9.998093, "/B": -6.191430, "/FONT": -5.579252, "/RJ": -9.998093, "/Semi_Ap/": -9.998093, "/TABLE": -9.304946, "/TD": -5.555442, "/TR": -7.107721, "/VSH/Resistor/dcrcwfre.pdf": -9.998093, "/author": -9.592628, "/b": -6.532357, "/e_os_all.pdf": -9.998093, "/font": -9.998093, "/table": -9.998093, "/td": -9.304946, "/tr": -9.998093, "/u": -9.998093, "/ul": -9.998093, "0": -7.323944, "035mm": -7.983190, "15mm": -8.745330, "2mm": -8.745330, ":": -8.126291, ";": -2.066629, "<": -10.691240, "<!DOCTYPE>": -9.998093, "</attributes>": -10.691240, "</autorouter>": -10.691240, "</board>": -10.691240, "</class>": -10.691240, "</classes>": -10.691240, "</description>": -6.596896, "</designrules>": -10.691240, "</device>": -10.691240, "</devices>": -10.691240, "</deviceset>": -10.691240, "</devicesets>": -10.691240, "</drawing>": -10.691240, "</eagle>": -10.691240, "</element>": -9.592628, "</elements>": -10.691240, "</gates>": -10.691240, "</layers>": -9.998093, "</libraries>": -10.691240, "</library>": -9.592628, "</package>": -6.739996, "</packages>": -9.592628, "</pass>": -8.611799, "</plain>": -10.691240, "</polygon>": -9.998093, "</settings>": -9.998093, "</signal>": -9.592628, "</signals>": -10.691240, "</symbol>": -10.691240, "</symbols>": -10.691240, "</technologies>": -10.691240, "</text>": -6.009109, "</variantdefs>": -10.691240, "<?xml>": -9.998093, "<attribute>": -8.899481, "<attributes>": -10.691240, "<autorouter>": -10.691240, "<board>": -10.691240, "<circle>": -8.293345, "<class>": -10.691240, "<classes>": -10.691240, "<contactref>": -9.304946, "<description>": -6.596896, "<designrules>": -10.691240, "<device>": -10.691240, "<devices>": -10.691240, "<deviceset>": -10.691240, "<devicesets>": -10.691240, "<drawing>": -9.998093, "<eagle>": -9.998093, "<element>": -9.592628, "<elements>": -10.691240, "<frame>": -10.691240, "<gate>": -10.691240, "<gates>": -10.691240, "<grid>": -9.998093, "<layer>": -5.920555, "<layers>": -9.998093, "<libraries>": -9.998093, "<library>": -9.304946, "<package>": -6.720948, "<packages>": -9.304946, "<pad>": -7.027678, "<param>": -5.735413, "<pass>": -8.611799, "<plain>": -10.691240, "<polygon>": -9.998093, "<rectangle>": -5.808438, "<schematic>": -10.691240, "<setting>": -9.304946, "<settings>": -9.998093, "<signal>": -9.592628, "<signals>": -10.691240, "<smd>": -6.532357, "<symbol>": -10.691240, "<symbols>": -10.691240, "<technologies>": -10.691240, "<technology>": -10.691240, "<text>": -6.009109, "<variantdefs>": -10.691240, "<vertex>": -8.611799, "<via>": -10.691240, "<wire>": -4.482650, "=": -1.893389, ">": -3.579728, "?": -9.998093, "A": -7.395403, "A/B": -9.998093, "A/C": -9.998093, "ALIGN": -5.870959, "ALT": -6.953571, "ALTERNATE": -9.998093, "ARIAL": -5.579252, "AUX/KYOCERA": -9.304946, "All": -9.998093, "Anforderungen": -10.691240, "Anwendungen": -10.691240, "B": -5.937650, "BGCOLOR": -6.360507, "BI": -8.388655, "BORDER": -9.304946, "BOURN": -9.304946, "BOURNS": -8.899481, "BR": -3.392795, "Based": -9.998093, "C": -8.899481, "C/D": -9.998093, "CECC": -9.998093, "CELLPADDING": -9.304946, "CELLSPACING": -9.304946, "CENTER": -5.870959, "COLSPAN": -7.918651, "CROSS": -9.304946, "CT": -8.206333, "CVR": -9.304946, "Capacitors": -9.304946, "Connectors": -10.691240, "Created": -9.592628, "D": -9.998093, "DALE": -8.388655, "DIN": -10.691240, "DRAWING_NAME": -10.691240, "DVR": -9.998093, "Design": -9.081802, "Die": -10.691240, "E": -8.899481, "EAGLE": -9.998093, "EKB": -9.998093, "EKJ": -9.998093, "EKL": -9.998093, "EKM": -9.304946, "EKN": -9.998093, "EKP": -8.611799, "EKP/CT": -9.998093, "EKQ": -9.304946, "EKR": -9.304946, "EKV": -9.998093, "EKW": -8.899481, "EKX": -9.998093, "EKZ": -9.998093, "EMP": -9.998093, "EMW": -9.998093, "EMX": -9.998093, "ET": -8.899481, "EVLQ": -9.998093, "EVM": -8.206333, "EVMB": -9.998093, "EVMCBG": -9.998093, "EVMCCG": -9.998093, "EVMCOG": -9.998093, "EVMG": -9.998093, "EVMK": -9.304946, "EVMM": -8.899481, "EVMMAG": -9.998093, "EVMMBG": -9.998093, "EVMMCS": -9.998093, "EVMMSG": -9.998093, "EVMQ": -8.899481, "EVMQIG": -9.998093, "EVMS": -9.998093, "Einstellungen": -10.691240, "Electrolyt": -9.998093, "FACE": -5.579252, "FONT": -5.579252, "FRAME": -10.691240, "Frames": -10.691240, "G": -7.513186, "GA": -8.611799, "H": -7.359036, "HEADER": -10.691240, "Header": -10.691240, "IPC": -9.998093, "Inductors": -9.998093, "J": -8.206333, "K": -9.304946, "LAST_DATE_TIME": -10.691240, "Layout": -10.691240, "M": -8.388655, "MELF": -8.611799, "MILSPEC": -8.899481, "MULTI": -8.899481, "MURATA": -8.899481, "N": -9.998093, "NAME": -6.739996, "Namen": -10.691240, "P": -5.763986, "P/": -9.304946, "P/CT": -9.998093, "PA": -9.998093, "PANASONIC": -8.388655, "PH": -9.998093, "PHILIPS/MEPCO": -8.388655, "PIN": -10.691240, "PM": -9.998093, "POT": -9.304946, "PX": -9.998093, "Pin": -10.691240, "Platine": -10.691240, "R": -8.899481, "RECTANGULAR": -9.998093, "REFERENCE": -9.304946, "RESISTOR": -6.739996, "RJ": -8.052183, "RJ/RJR": -6.953571, "RT/RTR": -7.433144, "RVA": -8.611799, "RVG": -9.998093, "RX": -8.899481, "RXL": -9.998093, "RXW": -9.998093, "Resistors": -9.998093, "Rules": -9.081802, "S": -7.433144, "SANYO": -9.998093, "SHEET": -10.691240, "SINGLE": -9.304946, "SIZE": -5.579252, "SLT": -9.998093, "SMA": -9.998093, "SMB": -9.998093, "SMD": -9.304946, "SMS": -9.998093, "SPECTROL": -8.899481, "SQUARE": -9.998093, "ST": -7.359036, "SX": -8.899481, "SYSTEM": -9.304946, "Sheet": -9.998093, "Sie": -10.691240, "Sollte": -10.691240, "Source": -9.998093, "Standard": -10.691240, "T": -7.107721, "TABLE": -9.304946, "TD": -5.555442, "TECH": -8.388655, "TM": -8.899481, "TOCOS": -9.304946, "TR": -7.053654, "TRG": -9.998093, "TRIM": -9.304946, "TURN": -8.388655, "TX": -9.304946, "TXD": -9.998093, "TYA": -9.998093, "TYD": -9.998093, "TYP": -9.998093, "The": -10.691240, "V": -7.918651, "VALUE": -6.739996, "VISHAY": -8.388655, "W": -6.106273, "W/": -9.304946, "W/X": -9.998093, "X": -6.191430, "X/": -9.304946, "XA": -9.998093, "XB": -9.304946, "XH": -9.998093, "XL": -9.998093, "XW": -9.998093, "Y": -7.002361, "Y/": -9.998093, "YA": -9.304946, "YB": -8.899481, "YJ": -9.998093, "YJ/": -9.998093, "YL": -9.998093, "YL/ST": -9.998093, "YS": -9.998093, "Your": -10.691240, "Z": -7.600198, "Z/": -9.998093, "a": -9.998093, "ab.": -10.691240, "according": -9.998093, "active": -5.862926, "active=": -5.862926, "adjustments": -10.691240, "also": -9.998093, "altdistance": -9.998093, "altdistance=": -9.998093, "altunit": -9.998093, "altunit=": -9.998093, "altunitdist": -9.998093, "altunitdist=": -9.998093, "alwaysvectorfont": -9.998093, "amp": -6.501585, "and": -9.081802, "applications.": -10.691240, "are": -9.998093, "author": -9.592628, "b": -6.532357, "been": -10.691240, "besondere": -10.691240, "border": -9.998093, "by": -9.592628, "cap": -9.998093, "cap.lbr": -9.998093, "captant.lbr": -9.998093, "cellpaddding": -9.998093, "cellpadding": -9.998093, "cellspacing": -9.998093, "circle": -10.691240, "color": -5.763986, "color=": -5.920555, "columns": -10.691240, "columns=": -10.691240, "cover": -10.691240, "curve": -6.665888, "curve=": -6.665888, "customized": -10.691240, "dass": -10.691240, "default": -10.691240, "defined": -9.998093, "design": -9.998093, "die": -9.592628, "different": -10.691240, "display": -9.998093, "display=": -9.998093, "distance": -9.998093, "doc.": -10.691240, "drill": -6.977668, "drill=": -6.977668, "dtd": -9.998093, "dx": -6.532357, "dx=": -6.532357, "dy": -6.532357, "dy=": -6.532357, "eagle": -9.304946, "einem": -10.691240, "element": -9.304946, "encoding": -9.998093, "encoding=": -9.998093, "erforderlichen": -10.691240, "extent": -10.691240, "extent=": -10.691240, "f": -10.691240, "fe.lbr": -9.998093, "field": -10.691240, "fill": -5.920555, "fill=": -5.920555, "font": -8.899481, "font=": -9.304946, "for": -9.081802, "gew": -10.691240, "grid": -7.695508, "gt": -2.764638, "haben": -10.691240, "have": -9.998093, "hier": -10.691240, "hlt": -10.691240, "http": -9.304946, "ihre": -10.691240, "inc.com/cross_references/trimpotcrossref.asp": -9.998093, "ipc": -9.998093, "landscape": -10.691240, "language": -9.998093, "layer": -3.980717, "layer=": -3.980717, "li": -8.206333, "librarian@cadsoft.de": -9.592628, "libraries": -9.998093, "library": -9.592628, "library=": -9.592628, "location": -10.691240, "lt": -2.803281, "make": -10.691240, "may": -10.691240, "meisten": -10.691240, "mm": -7.695508, "multiple": -9.998093, "multiple=": -9.998093, "name": -4.588682, "name.": -10.691240, "name=": -5.912117, "nbsp": -6.501585, "necessary": -10.691240, "neuen": -10.691240, "new": -10.691240, "number": -5.912117, "of": -10.691240, "on": -9.998093, "p": -6.516853, "package": -9.592628, "package=": -9.592628, "packages": -9.998093, "pad": -9.304946, "pad=": -9.304946, "particular": -10.691240, "passen.": -10.691240, "please": -10.691240, "polcap.lbr": -9.998093, "prefix": -10.691240, "prefix=": -10.691240, "previous": -9.998093, "r": -10.691240, "r.lbr": -9.998093, "radius": -8.293345, "radius=": -8.293345, "range": -10.691240, "ratio": -6.977668, "ratio=": -6.977668, "refence": -9.998093, "refer": -8.745330, "refer=": -8.745330, "requirements": -10.691240, "rows": -10.691240, "rows=": -10.691240, "rules": -10.691240, "save": -10.691240, "see": -9.304946, "set": -10.691240, "shape": -7.027678, "shape=": -7.027678, "sie": -10.691240, "sind": -10.691240, "size": -5.937650, "size=": -5.955042, "smashed": -9.592628, "smashed=": -9.592628, "smd.lbr": -9.998093, "so": -9.998093, "soldering": -8.388655, "specifications": -9.998093, "speichern": -10.691240, "style": -9.998093, "style=": -9.998093, "symbol": -10.691240, "symbol=": -10.691240, "table": -9.998093, "td": -9.304946, "the": -9.081802, "to": -9.592628, "tr": -9.998093, "treffen": -10.691240, "trimmer": -9.998093, "type": -7.695508, "u": -9.998093, "ul": -9.998093, "und": -10.691240, "under": -10.691240, "unit": -9.998093, "unit=": -9.998093, "unitdist": -9.998093, "unitdist=": -9.998093, "unter": -10.691240, "uservalue": -10.691240, "uservalue=": -10.691240, "valign": -9.998093, "value": -5.714506, "value=": -5.714506, "version": -9.304946, "verticaltext": -9.998093, "visible": -5.920555, "visible=": -5.920555, "wave": -8.388655, "wide": -10.691240, "width": -4.443197, "width=": -4.458792, "with": -10.691240, "www.bccomponents.com": -9.998093, "www.electrospec": -9.998093, "www.kemet.com": -9.998093, "www.panasonic.com": -9.998093, "x": -3.377353, "x2=": -4.245520, "x=": -5.963852, "xreflabel": -10.691240, "xrefpart": -10.691240, "xrefpart=": -10.691240, "y": -3.377353, "y1=": -4.245520, "y2=": -4.245520, "y=": -5.206443, "your": -10.691240, "ä": -10.691240, "ü": -10.691240, }, "Eiffel": map[string]float64{ "(": -2.683182, ")": -2.683182, ",": -4.529009, ":": -2.369525, "=": -3.430397, "APPLICATION": -5.627621, "APPLICATION_CONNECTION_HANDLER": -5.627621, "ARGUMENTS": -5.627621, "BOOK": -3.835862, "BOOK_COLLECTION": -5.627621, "GIT_CHECKOUT_COMMAND": -5.627621, "GIT_COMMAND": -5.627621, "HASH_TABLE": -5.627621, "HTTP_HANDLER": -5.627621, "HTTP_SERVER": -5.627621, "HTTP_SERVER_CONFIGURATION": -5.627621, "HTTP_SERVER_SHARED_CONFIGURATION": -5.627621, "LINKED_LIST": -4.934474, "LIST": -4.241327, "NONE": -4.241327, "Result.append": -5.627621, "Result.make": -5.627621, "STRING": -4.241327, "STRING_": -4.241327, "True": -5.627621, "Void": -5.627621, "[": -3.681711, "]": -3.681711, "_": -5.627621, "a_author": -5.627621, "a_book": -5.627621, "a_book.author.name": -4.934474, "a_branch": -4.241327, "a_name": -4.529009, "across": -4.934474, "add_book": -5.627621, "add_books": -5.627621, "arguments.force_last": -5.627621, "as": -4.934474, "author": -5.627621, "book_index": -4.934474, "book_index.at": -5.627621, "book_index.make": -5.627621, "book_index.put": -5.627621, "book_list": -4.934474, "books": -4.934474, "books_by_author": -5.627621, "branch": -4.529009, "branch_set": -5.627621, "class": -4.529009, "create": -3.430397, "date": -5.627621, "debug": -5.627621, "default_document_root": -4.934474, "description": -4.934474, "detachable": -5.627621, "do": -3.681711, "end": -2.988564, "ensure": -4.934474, "feature": -3.681711, "if": -5.627621, "inherit": -4.934474, "initialize": -5.627621, "it": -4.934474, "it.item": -4.934474, "l": -4.241327, "l.force": -5.627621, "l.make": -5.627621, "l_cfg": -4.529009, "l_cfg.document_root": -5.627621, "l_cfg.http_server_port": -5.627621, "l_cfg.make": -5.627621, "l_cfg.set_is_verbose": -5.627621, "l_http_handler": -4.934474, "l_http_handler.make": -5.627621, "l_server": -4.934474, "l_server.make": -5.627621, "l_server.setup": -5.627621, "like": -5.627621, "local": -4.934474, "loop": -4.934474, "make": -3.681711, "make_master": -4.934474, "name": -4.529009, "name_set": -5.627621, "note": -4.934474, "revision": -5.627621, "set_name": -5.627621, "set_server_configuration": -5.627621, "then": -5.627621, "{": -3.681711, "}": -3.681711, }, "Elixir": map[string]float64{ "%": -4.624973, ",": -1.257677, ":": -1.223775, "cowboy": -4.624973, "cowlib": -4.624973, "hackney": -4.624973, "hex": -2.322388, "hound": -4.624973, "httpoison": -4.624973, "idna": -4.624973, "phoenix": -4.624973, "plug": -4.624973, "poison": -4.624973, "ranch": -4.624973, "{": -2.227078, "}": -2.227078, }, "Elm": map[string]float64{ "##": -6.732211, "$": -4.786301, "(": -1.961526, ")": -1.978621, "+": -4.093153, ",": -1.663307, "-": -4.429626, ".": -4.534986, ":": -4.940451, ";": -6.732211, "<": -6.732211, "<)x)>": -6.732211, "=": -3.331013, ">": -4.334315, "Each": -6.732211, "Elm.": -6.732211, "Empty": -4.652769, "List": -6.732211, "Node": -4.652769, "Text.color": -6.732211, "Text.link": -6.732211, "These": -6.732211, "Tree": -5.633598, "Website.ColorScheme": -6.732211, "Website.Skeleton": -6.732211, "Window.width": -6.732211, "[": -3.266475, "]": -3.266475, "a": -5.122773, "accent": -6.732211, "add": -6.039064, "addFolder": -5.345916, "all": -6.732211, "asText": -6.732211, "basic": -6.732211, "below": -6.732211, "blocks": -6.732211, "bold": -6.039064, "building": -6.732211, "case": -5.122773, "concat": -6.732211, "concept.": -6.732211, "content": -6.039064, "data": -6.732211, "demonstrate": -6.732211, "depth": -5.122773, "display": -5.345916, "down": -5.633598, "elements": -6.039064, "else": -6.039064, "empty": -6.039064, "example": -5.633598, "exampleSets": -6.039064, "examples": -6.732211, "f": -4.652769, "filter": -6.039064, "flow": -5.345916, "focuses": -6.732211, "folder": -6.039064, "foldl": -6.732211, "fromList": -5.633598, "function": -6.732211, "functional": -6.039064, "if": -6.039064, "import": -5.633598, "in": -6.039064, "info": -6.039064, "insert": -5.345916, "insertSpace": -6.039064, "intercalate": -6.039064, "intersperse": -5.633598, "italic": -6.732211, "left": -4.786301, "let": -6.039064, "lift": -6.732211, "links": -6.039064, "listed": -6.732211, "loc": -6.039064, "lst": -4.940451, "main": -5.633598, "map": -4.334315, "markdown": -6.732211, "max": -6.732211, "monospace": -6.732211, "n": -6.039064, "name": -4.940451, "of": -4.786301, "on": -6.732211, "or": -6.732211, "plainText": -6.732211, "qsort": -5.345916, "reactive": -6.039064, "right": -4.652769, "show": -6.039064, "single": -6.732211, "singleton": -6.039064, "skeleton": -6.732211, "spacer": -6.039064, "subsection": -6.039064, "t": -5.122773, "text": -5.345916, "the": -6.732211, "then": -6.039064, "title": -6.039064, "toLinks": -6.039064, "toText": -4.940451, "tree": -4.786301, "v": -4.652769, "w": -4.786301, "width": -5.633598, "words": -6.039064, "x": -4.167261, "xs": -4.534986, "y": -4.786301, "{": -6.732211, "|": -5.633598, "}": -6.732211, }, "Emacs Lisp": map[string]float64{ "$": -8.339023, "%": -6.547264, "&": -8.339023, "'": -6.547264, "(": -2.715005, ")": -2.707811, "*": -5.566434, "*NOT*": -8.339023, "*at": -8.339023, "*in": -8.339023, "+": -5.941128, ",": -4.842515, "-": -1.765343, ".": -4.532361, ".*": -6.259581, ".*data": -7.645876, ".frame": -7.645876, "/.emacs.d/config": -8.339023, "/.ess": -8.339023, "/.mycontribs/": -8.339023, "//docs.julialang.org/en/latest/search/": -8.339023, "0": -7.645876, "1": -7.645876, "2": -6.952729, "3": -7.645876, "9": -7.645876, ":": -4.812662, ";": -2.136487, "<": -6.547264, "<->": -8.339023, "<M-m>": -8.339023, "<SPC>": -7.645876, "<file>": -8.339023, "<leader>": -7.645876, "=": -6.036438, ">": -6.547264, "?": -5.941128, "A": -6.952729, "ANY": -8.339023, "Args": -8.339023, "Author": -8.339023, "Boston": -8.339023, "Buffer": -8.339023, "C": -8.339023, "COPYING.": -8.339023, "Commentary": -8.339023, "Copyright": -8.339023, "Created": -8.339023, "Custom.": -7.645876, "Data": -8.339023, "Default": -7.645876, "Delete": -8.339023, "Desktop": -8.339023, "Disable": -8.339023, "EDE": -8.339023, "ELDOC": -8.339023, "ESS": -6.547264, "ESS.fun_args": -8.339023, "Each": -8.339023, "Edit": -8.339023, "Either": -8.339023, "Emacs": -6.393113, "Emacs.": -8.339023, "Evil": -8.339023, "FITNESS": -8.339023, "FOR": -8.339023, "Fifth": -8.339023, "Filename": -8.339023, "Floor": -8.339023, "Foundation": -7.645876, "Franklin": -8.339023, "Free": -7.645876, "Function": -8.339023, "GNU": -6.952729, "General": -6.952729, "Git": -8.339023, "Global": -8.339023, "Guide": -7.645876, "IMENU": -8.339023, "If": -5.448651, "Inc.": -8.339023, "It": -8.339023, "Julia": -8.339023, "Key": -8.339023, "Keywords": -8.339023, "License": -7.240411, "List": -6.547264, "Load": -8.339023, "Location": -8.339023, "M": -8.339023, "MA": -8.339023, "MERCHANTABILITY": -8.339023, "Maintainer": -8.339023, "Major": -8.339023, "Not": -8.339023, "Object": -8.339023, "Other": -8.339023, "P": -8.339023, "PARTICULAR": -8.339023, "PURPOSE.": -8.339023, "Package": -8.339023, "Paths": -8.339023, "Possible": -6.952729, "Press": -8.339023, "Public": -7.240411, "R": -6.729585, "Return": -8.339023, "Run": -8.339023, "S": -6.952729, "SPC": -8.339023, "See": -7.645876, "Select": -8.339023, "Smooth": -8.339023, "Software": -7.645876, "Spacemacs": -8.339023, "Specify": -8.339023, "Spinu": -7.645876, "Spinu.": -8.339023, "Starting": -8.339023, "Street": -8.339023, "Syntax": -7.240411, "T": -8.339023, "Tell": -8.339023, "The": -7.645876, "This": -6.393113, "USA.": -8.339023, "UTF": -8.339023, "Uncomment": -8.339023, "Use": -8.339023, "Variables": -8.339023, "Vim": -7.645876, "Vitalie": -7.240411, "W": -7.645876, "WARRANTY": -8.339023, "WITHOUT": -8.339023, "When": -8.339023, "You": -8.339023, "Your": -7.645876, "[": -5.941128, "\\": -3.315142, "]": -5.774074, "^": -6.259581, "_": -6.729585, "`": -4.905036, "a": -5.630973, "abbrev": -6.952729, "active": -8.339023, "add": -5.854116, "added": -7.645876, "additional": -7.645876, "address": -7.645876, "addresses": -8.339023, "alchemist": -8.339023, "alist": -5.854116, "all": -6.547264, "all_help_topics": -8.339023, "allows": -8.339023, "along": -8.339023, "also": -8.339023, "always": -8.339023, "an": -6.952729, "and": -5.566434, "and/or": -7.645876, "another": -8.339023, "any": -8.339023, "are": -6.393113, "arg": -7.645876, "args": -6.393113, "as": -8.339023, "at": -5.854116, "attr": -8.339023, "attributes": -8.339023, "auth": -8.339023, "auto": -6.547264, "autoload": -6.952729, "autoloads": -8.339023, "autosave": -8.339023, "aux": -8.339023, "backup": -7.240411, "banner": -8.339023, "banner.": -8.339023, "bar": -7.645876, "based": -8.339023, "basic": -7.645876, "be": -6.393113, "been": -8.339023, "beginning": -7.645876, "behavior": -8.339023, "being": -8.339023, "between": -8.339023, "bindings": -8.339023, "blink": -8.339023, "bookmarks": -8.339023, "boost": -8.339023, "boot": -8.339023, "bottom": -8.339023, "bound": -8.339023, "buf": -8.339023, "buffer": -6.952729, "buffer.": -7.240411, "builds": -8.339023, "but": -7.645876, "by": -6.393113, "cache": -8.339023, "calculate": -8.339023, "can": -7.645876, "car": -7.645876, "careful.": -7.645876, "cdr": -8.339023, "changed": -7.240411, "char": -6.952729, "charlock_holmes": -8.339023, "chooses": -8.339023, "cleanup": -8.339023, "coding": -7.645876, "colour": -8.339023, "column": -7.240411, "com": -7.645876, "comint": -7.645876, "command": -6.393113, "commands": -7.645876, "comment": -6.547264, "comments": -8.339023, "compilation": -7.240411, "compiler": -7.645876, "complete": -8.339023, "completion": -7.240411, "concat": -6.259581, "cond": -8.339023, "configuration": -6.952729, "cons": -8.339023, "consider": -8.339023, "constant": -8.339023, "contain": -7.645876, "content.": -8.339023, "control": -8.339023, "copy": -8.339023, "copying": -8.339023, "core/banners": -8.339023, "could": -7.645876, "crappy.": -8.339023, "create": -7.645876, "credentials": -8.339023, "current": -6.729585, "cursor": -8.339023, "custom": -6.952729, "customise": -8.339023, "customize": -7.645876, "cycle": -7.645876, "dark": -8.339023, "default": -5.941128, "defaults": -6.952729, "defconst": -6.729585, "define": -6.729585, "defun": -5.941128, "defvar": -6.393113, "delay": -7.645876, "delete": -7.645876, "delimiter": -7.645876, "delimiters": -8.339023, "delimiters.": -8.339023, "depends": -6.952729, "derivatives.": -8.339023, "describes": -7.645876, "desktop": -7.645876, "details.": -8.339023, "dialect": -8.339023, "dir": -7.645876, "directory": -5.941128, "directory.": -8.339023, "disabled.": -8.339023, "displayed": -7.645876, "distributed": -8.339023, "doc": -6.141798, "does": -8.339023, "dolist": -8.339023, "don": -8.339023, "dotspacemacs": -5.247981, "dotspacemacs/config": -8.339023, "dotspacemacs/init": -8.339023, "dotspacemacs/layers": -8.339023, "dump": -8.339023, "dynamic": -8.339023, "e": -6.952729, "ede": -6.729585, "edit": -7.645876, "editing": -7.645876, "either": -8.339023, "eldoc": -7.240411, "element": -7.240411, "elisp": -7.645876, "emacs": -6.141798, "enable": -8.339023, "enabled": -6.952729, "enabled.": -7.645876, "end": -7.645876, "entry": -7.645876, "environment": -8.339023, "eq": -7.645876, "error": -6.729585, "escape_utils": -8.339023, "ess": -4.650144, "even": -8.339023, "ex": -8.339023, "excluded": -8.339023, "exec": -8.339023, "executable": -8.339023, "executed": -8.339023, "exhaustive": -8.339023, "exit": -8.339023, "explicit": -8.339023, "expression": -7.240411, "extension": -8.339023, "extensions": -8.339023, "f": -6.952729, "face": -6.547264, "faces": -7.645876, "file": -4.971727, "filename": -7.240411, "filename.": -8.339023, "files": -6.729585, "files.": -8.339023, "fill": -8.339023, "final": -8.339023, "first": -8.339023, "font": -6.036438, "for": -5.854116, "forloop": -8.339023, "format": -7.240411, "found": -8.339023, "frame": -7.240411, "free": -8.339023, "from": -6.393113, "full": -8.339023, "fullpath": -7.240411, "fullscreen": -7.240411, "function": -5.566434, "functions": -7.645876, "generic": -7.240411, "get": -6.729585, "global": -8.339023, "gnus": -8.339023, "great": -8.339023, "grep": -8.339023, "guide": -8.339023, "hand": -7.645876, "has": -8.339023, "have": -7.645876, "header": -7.645876, "helm": -8.339023, "help": -6.393113, "highlight": -7.645876, "highlighting": -8.339023, "history": -8.339023, "home": -8.339023, "hook": -6.547264, "hooks": -8.339023, "hope": -8.339023, "http": -8.339023, "i.e.": -8.339023, "iESS": -8.339023, "identity": -8.339023, "ido": -8.339023, "if": -7.645876, "ignore": -6.952729, "ignored": -7.645876, "image": -8.339023, "images": -8.339023, "imenu": -6.952729, "implied": -8.339023, "in": -5.247981, "inactive": -8.339023, "include": -8.339023, "increase": -8.339023, "increasing": -7.645876, "indent": -6.393113, "inf": -8.339023, "inferior": -6.952729, "inhibit": -8.339023, "init": -7.645876, "inline": -8.339023, "insert": -6.952729, "inside": -8.339023, "install": -7.645876, "installed": -7.645876, "instance.": -7.645876, "interactive": -7.645876, "is": -5.043186, "isdir": -7.240411, "it": -5.774074, "items": -8.339023, "jl": -7.645876, "julia": -4.532361, "julia.": -8.339023, "julia.el": -7.645876, "julia_eval_region": -8.339023, "keep": -7.645876, "kept": -7.645876, "key": -6.547264, "keystrokes.": -8.339023, "keyword": -7.645876, "kill": -8.339023, "lambda": -8.339023, "lang": -8.339023, "language": -8.339023, "large": -8.339023, "later": -8.339023, "layer": -7.645876, "layer.": -8.339023, "layers": -8.339023, "layers.": -8.339023, "length": -6.952729, "let": -7.240411, "let*": -8.339023, "level": -7.645876, "library": -8.339023, "licensed": -8.339023, "licensee": -8.339023, "light": -8.339023, "like": -8.339023, "line": -6.259581, "line.": -8.339023, "lisp": -7.240411, "list": -5.699966, "listing": -8.339023, "live": -8.339023, "load": -6.393113, "load.": -8.339023, "loaded": -7.645876, "loaded.": -8.339023, "loading": -7.240411, "loading.": -8.339023, "local": -6.729585, "location": -8.339023, "lock": -6.141798, "log": -7.645876, "look": -7.645876, "looked": -8.339023, "mail": -7.645876, "make": -7.240411, "map": -8.339023, "maximized": -8.339023, "may": -8.339023, "menubar": -8.339023, "mess": -7.645876, "message": -7.645876, "metasubproject": -8.339023, "micro": -7.645876, "mime": -8.339023, "minitest": -8.339023, "missing": -8.339023, "mm": -8.339023, "mocha": -8.339023, "mode": -5.080926, "mode.el": -8.339023, "modes.": -8.339023, "modify": -7.240411, "more": -7.240411, "mule": -8.339023, "must": -7.645876, "my": -8.339023, "n": -5.566434, "name": -5.854116, "namedb.el": -8.339023, "names": -8.339023, "native": -8.339023, "necessary": -8.339023, "need": -8.339023, "new": -8.339023, "newline": -8.339023, "next": -8.339023, "nil": -4.350039, "nil.": -8.339023, "nnimap": -6.952729, "no": -8.339023, "non": -6.259581, "not": -6.547264, "now.": -8.339023, "number": -7.645876, "numbers": -8.339023, "of": -5.160969, "official": -7.645876, "offset": -8.339023, "old": -7.645876, "on": -6.259581, "one": -6.393113, "only": -6.952729, "opacity": -7.645876, "optional": -7.645876, "options": -8.339023, "or": -6.729585, "original": -8.339023, "orphan": -8.339023, "other": -8.339023, "overrides": -8.339023, "p": -7.645876, "package": -6.952729, "package.": -8.339023, "packages": -6.393113, "page": -7.645876, "paragraph": -7.240411, "paren": -8.339023, "parse": -8.339023, "part": -7.645876, "paste": -7.645876, "path": -6.259581, "paths": -8.339023, "plist": -8.339023, "point": -6.952729, "pop": -7.645876, "popup": -8.339023, "port": -8.339023, "post": -8.339023, "pre": -8.339023, "prefix": -7.645876, "preload": -7.645876, "press": -8.339023, "pressing": -8.339023, "primary": -8.339023, "print": -8.339023, "proc": -7.645876, "process": -5.941128, "prog": -8.339023, "program": -6.952729, "programming": -8.339023, "progress": -7.645876, "proj": -7.240411, "project": -7.645876, "projectile": -8.339023, "projects": -7.645876, "prompt": -7.645876, "provide": -8.339023, "proximity": -8.339023, "pry": -8.339023, "pt": -8.339023, "published": -8.339023, "put": -8.339023, "q": -8.339023, "quickly": -8.339023, "quote": -8.339023, "r": -8.339023, "rake": -8.339023, "random": -8.339023, "range": -7.645876, "reaches": -8.339023, "read": -7.645876, "received": -8.339023, "recenters": -8.339023, "recents": -7.645876, "redistribute": -8.339023, "regex": -6.729585, "regexp": -5.941128, "register": -8.339023, "related": -8.339023, "relative": -7.645876, "release": -8.339023, "remove": -8.339023, "replaced.": -8.339023, "replaces": -8.339023, "repository": -7.240411, "require": -7.240411, "return": -8.339023, "right.": -7.645876, "ring": -7.240411, "ruby": -8.339023, "rugged": -8.339023, "run": -7.645876, "rust": -8.339023, "s": -5.294501, "sans": -8.339023, "save": -6.952729, "saving": -8.339023, "scope": -8.339023, "screen.": -8.339023, "scrolling": -6.952729, "search": -7.240411, "seconds.": -8.339023, "section": -7.645876, "see": -8.339023, "send": -6.729585, "separate": -8.339023, "separators": -8.339023, "server": -7.240411, "service": -8.339023, "set": -6.141798, "setenv": -7.645876, "setq": -5.043186, "settings.": -8.339023, "several": -8.339023, "sexp": -7.645876, "should": -7.240411, "show": -7.240411, "signature": -8.339023, "single": -8.339023, "size": -8.339023, "skip": -8.339023, "slash": -8.339023, "smartparens": -7.645876, "smooth": -7.645876, "smtp": -7.240411, "smtpmail": -6.952729, "so": -7.240411, "software": -8.339023, "some": -7.240411, "sort": -8.339023, "source": -7.240411, "source.": -8.339023, "spacemacs": -7.240411, "spacemacs/toggle": -8.339023, "specified": -8.339023, "specifies": -8.339023, "ssl": -8.339023, "start": -6.547264, "starts": -8.339023, "starts.": -8.339023, "startup": -6.729585, "startup.": -7.645876, "state": -6.952729, "stored": -7.645876, "storing": -8.339023, "stream": -8.339023, "strict": -7.645876, "string": -5.774074, "strings": -8.339023, "style": -6.729585, "subset": -7.645876, "substring": -8.339023, "such": -7.645876, "support": -8.339023, "supported": -8.339023, "symbol": -8.339023, "symbols": -7.240411, "syntax": -6.729585, "system": -8.339023, "systems": -8.339023, "t": -5.080926, "tab": -8.339023, "table": -5.854116, "tags": -7.645876, "target": -7.645876, "targets": -8.339023, "temp": -7.645876, "temporary": -7.645876, "terms": -8.339023, "text": -8.339023, "than": -7.240411, "that": -7.240411, "the": -4.625451, "them.": -8.339023, "theme": -8.339023, "themes": -7.240411, "then": -8.339023, "there": -7.645876, "these": -7.645876, "they": -7.645876, "this": -8.339023, "time": -8.339023, "time.": -8.339023, "times": -8.339023, "to": -4.873287, "too": -8.339023, "toolbar": -7.645876, "top": -7.240411, "topics": -7.645876, "trailing": -8.339023, "transparency": -6.952729, "turned": -8.339023, "tweak": -8.339023, "types": -8.339023, "undecided": -8.339023, "under": -8.339023, "unicode": -7.645876, "unix": -8.339023, "unquote": -8.339023, "up": -7.240411, "up.": -8.339023, "use": -7.645876, "used": -7.645876, "useful": -8.339023, "user": -7.240411, "value": -6.952729, "values": -7.240411, "variable": -7.645876, "variables": -7.645876, "variants": -8.339023, "vector": -7.645876, "verbose": -8.339023, "version": -6.729585, "version.": -8.339023, "versions": -7.240411, "versionsource": -8.339023, "vi": -8.339023, "vim": -8.339023, "viper": -7.240411, "visibly": -7.645876, "w": -8.339023, "w*": -7.645876, "warning": -8.339023, "warranty": -8.339023, "was": -7.645876, "we": -8.339023, "when": -6.141798, "where": -7.645876, "which": -6.952729, "while": -7.645876, "whitespace": -7.645876, "width": -8.339023, "will": -6.952729, "window": -8.339023, "with": -6.259581, "without": -7.645876, "won": -7.645876, "words": -7.645876, "work": -7.645876, "works": -8.339023, "wrapped": -8.339023, "write": -8.339023, "x": -8.339023, "yajl": -8.339023, "you": -6.393113, "your": -7.645876, "{": -8.339023, "|": -6.952729, "}": -8.339023, "~": -7.240411, }, "EmberScript": map[string]float64{ "(": -2.549445, ")": -2.549445, ",": -2.772589, "-": -2.772589, ".fromNow": -4.158883, ":": -2.367124, "=": -3.060271, ">": -2.549445, "@nextTick": -4.158883, "@notifyPropertyChange": -4.158883, "@set": -4.158883, "@tick": -3.465736, "@value": -4.158883, "App.FromNowView": -3.465736, "Ember.Handlebars.compile": -4.158883, "Ember.Handlebars.helper": -4.158883, "Ember.View": -4.158883, "Ember.run.cancel": -4.158883, "Ember.run.later": -4.158883, "class": -4.158883, "didInsertElement": -4.158883, "extends": -4.158883, "f": -3.465736, "moment": -4.158883, "nextTick": -2.772589, "output": -4.158883, "return": -4.158883, "tagName": -4.158883, "template": -4.158883, "this": -4.158883, "tick": -4.158883, "willDestroyElement": -4.158883, "~": -4.158883, }, "Erlang": map[string]float64{ "!": -6.793886, "#": -7.081569, "$": -4.865995, "%": -3.443982, "(": -2.821239, ")": -2.830695, "*": -7.081569, "+": -3.461682, ",": -1.868446, "-": -3.101887, ".": -4.111154, ".*foo": -8.873328, "/usr/bin/env": -7.263890, "50": -8.873328, "60": -8.873328, "70": -8.873328, "80": -8.873328, ":": -4.478879, ";": -4.163798, "<": -6.388421, "<,>": -8.180181, "<-,>": -8.873328, "<->": -7.081569, "<<": -5.541123, "<mjtruog>": -8.873328, "<|>": -8.873328, "<~,>": -8.180181, "=": -4.102643, ">": -3.286079, "?": -7.081569, "A": -6.570743, "Acc": -6.793886, "AccFields": -7.081569, "AccParentFields": -7.081569, "Args": -7.774716, "Arguments": -7.774716, "B": -6.040115, "BS": -8.873328, "Base": -6.388421, "BaseDir": -6.927418, "Binary": -8.180181, "Body": -8.180181, "BootRelVsn": -8.180181, "C": -4.746194, "C.": -8.873328, "CR": -8.873328, "Command": -7.774716, "CommandSuffix": -8.180181, "Config": -8.180181, "Context": -6.475433, "Cs": -5.346967, "Ctx": -6.676103, "D": -8.873328, "DEL": -8.180181, "Definitions.": -8.873328, "ESC": -8.873328, "End": -8.180181, "Error": -7.081569, "ExitCode": -8.180181, "Expect": -8.873328, "F": -5.982956, "FF": -8.873328, "Field": -8.180181, "FieldName": -5.695274, "Fields": -7.487034, "H": -8.180181, "HeaderComment": -8.180181, "HeaderFile": -7.487034, "HeaderFiles": -7.081569, "IS_UNICODE": -8.180181, "In": -8.180181, "InFile": -7.774716, "K": -8.180181, "KW": -8.180181, "Key": -8.180181, "KeyStr": -7.081569, "L": -5.982956, "LF": -8.873328, "Left": -6.234271, "Line": -7.081569, "List": -7.774716, "M": -6.570743, "MODULE": -8.873328, "Meta": -7.487034, "Mode": -8.873328, "ModuleDeclaration": -8.180181, "ModuleName": -7.774716, "N": -5.654452, "NSrc": -7.487034, "NewObj": -5.877596, "NewParentObject": -8.180181, "Next": -7.081569, "Node": -7.487034, "Nonassoc": -7.487034, "Nonterminals": -8.873328, "O": -8.873328, "Obj": -4.981508, "Obj#abstract_message": -6.927418, "Obj#abstract_message.body": -8.873328, "Obj#abstract_message.clientId": -8.873328, "Obj#abstract_message.destination": -8.873328, "Obj#abstract_message.headers": -8.873328, "Obj#abstract_message.messageId": -8.873328, "Obj#abstract_message.timeToLive": -8.873328, "Obj#abstract_message.timestamp": -8.873328, "Obj#async_message": -7.774716, "Obj#async_message.correlationId": -8.873328, "Obj#async_message.correlationIdBytes": -8.873328, "Obj#async_message.parent": -7.774716, "One": -8.180181, "Op": -7.263890, "Other": -7.487034, "Other.": -8.180181, "Out": -7.487034, "OutDir": -7.263890, "OutFile": -8.180181, "OverlayConfig": -7.487034, "OverlayVars": -8.180181, "PField": -8.180181, "Parent": -7.487034, "ParentProperty": -7.081569, "ParentRecordName": -6.793886, "Pid": -7.487034, "Props": -8.180181, "Reason": -8.180181, "RecordFields": -6.570743, "RecordInfo": -7.774716, "RecordName": -5.112128, "RelToolConfig": -7.263890, "Resp": -8.180181, "Rest": -6.234271, "Result": -6.570743, "Right": -6.475433, "Rootsymbol": -8.873328, "S": -6.475433, "S*N": -8.873328, "SHEBANG#!escript": -7.774716, "SPC": -8.873328, "SSYM": -8.873328, "Self": -8.180181, "SoFar": -6.793886, "Sorted": -8.180181, "Spec": -8.180181, "Splice": -8.180181, "Src": -6.475433, "Start": -8.180181, "String": -8.180181, "T": -5.695274, "TAB": -8.873328, "TargetDir": -6.234271, "Terminals": -8.873328, "Test": -7.263890, "Tests": -7.774716, "Token": -6.570743, "TokenChars": -7.774716, "TokenLen": -8.873328, "TokenLine": -8.873328, "Tree": -7.487034, "Type": -7.263890, "U": -8.180181, "V": -8.180181, "VT": -8.873328, "Val": -8.180181, "Value": -5.317980, "Vars": -6.927418, "Ver": -8.873328, "Ver.": -8.873328, "X": -6.308379, "Z": -7.774716, "[": -3.555208, "\\": -4.884344, "]": -3.565060, "^": -8.180181, "_": -4.407420, "_Base": -8.180181, "_BaseDir": -8.873328, "_Begin": -8.180181, "_Context": -8.873328, "_End": -8.180181, "_FieldName": -8.180181, "_Name": -8.873328, "_Other": -8.873328, "_RelToolConfig": -8.873328, "_S": -7.774716, "_TargetDir": -8.873328, "_Token": -8.873328, "_Type": -8.873328, "_Vars": -8.873328, "a": -6.927418, "abstract_message": -5.828806, "access_expr": -8.873328, "add_op": -8.873328, "add_op_eol": -8.873328, "add_op_eol.": -8.873328, "add_pathz": -8.180181, "aliases": -8.873328, "allowed": -8.873328, "along": -8.873328, "and": -7.263890, "and_op": -8.873328, "and_op_eol": -8.873328, "and_op_eol.": -8.873328, "app_name": -6.793886, "application": -8.873328, "applications": -8.873328, "arrow_op": -8.180181, "arrow_op_eol": -8.873328, "arrow_op_eol.": -8.873328, "assoc": -8.873328, "assoc_base": -8.873328, "assoc_expr": -8.873328, "assoc_op": -8.873328, "assoc_op_eol": -8.180181, "assoc_op_eol.": -8.873328, "assoc_update": -8.873328, "assoc_update_kw": -8.873328, "async_message": -6.388421, "at_op": -8.873328, "at_op_eol": -8.873328, "at_op_eol.": -8.873328, "atom": -6.570743, "atom_safe": -8.873328, "atom_to_list": -6.040115, "atom_unsafe": -8.873328, "attribute": -8.180181, "author": -8.873328, "b": -7.487034, "base": -6.475433, "base_token": -6.793886, "basho_stats": -8.873328, "basic": -8.873328, "bear": -8.873328, "bin_string": -8.873328, "bit_string": -8.873328, "bitcask": -8.873328, "block_comment": -8.873328, "block_eoe": -8.873328, "block_expr": -8.873328, "block_identifier": -8.873328, "block_item": -8.873328, "block_list": -8.873328, "body": -7.263890, "boot_rel_vsn": -8.180181, "bracket_arg": -8.873328, "bracket_at_expr": -8.873328, "bracket_expr": -8.873328, "bracket_identifier": -8.873328, "branch": -8.873328, "bzr": -8.873328, "c": -8.180181, "call": -8.873328, "call_args_no_parens_all": -8.873328, "call_args_no_parens_ambig": -8.873328, "call_args_no_parens_comma_expr": -8.873328, "call_args_no_parens_expr": -8.873328, "call_args_no_parens_kw": -8.873328, "call_args_no_parens_kw_expr": -8.873328, "call_args_no_parens_many": -8.873328, "call_args_no_parens_many_strict": -8.873328, "call_args_no_parens_one": -8.873328, "call_args_parens": -8.873328, "call_args_parens_base": -8.873328, "call_args_parens_expr": -8.873328, "canola": -8.873328, "capture_op": -8.873328, "capture_op_eol": -8.873328, "capture_op_eol.": -8.873328, "case": -6.475433, "catch": -7.774716, "catched_error": -8.873328, "char_token": -8.180181, "chars": -6.570743, "clean": -8.180181, "clientId": -7.263890, "clique": -8.873328, "close_bit": -8.873328, "close_bracket": -8.873328, "close_curly": -8.873328, "close_paren": -8.873328, "cluster_info": -8.873328, "cmd": -8.873328, "code": -7.774716, "coding": -8.873328, "com": -8.873328, "comp_op": -8.873328, "comp_op_eol": -8.873328, "comp_op_eol.": -8.873328, "compile": -6.927418, "compiler": -8.873328, "compiler_options": -8.873328, "concat": -7.263890, "concat_ext": -7.487034, "consult": -8.873328, "container_args": -8.873328, "container_args_base": -8.873328, "container_expr": -8.873328, "copy": -8.873328, "correlationId": -7.263890, "correlationIdBytes": -7.263890, "cover_enabled": -8.873328, "cover_print_enabled": -8.873328, "create_ctx": -8.873328, "current": -8.873328, "cuttlefish": -8.873328, "d": -7.487034, "debug": -8.873328, "debug_info": -7.774716, "define": -8.873328, "deprecated_function_calls": -8.873328, "deprecated_functions": -8.873328, "deps": -8.873328, "description": -8.873328, "destination": -7.263890, "dict": -8.180181, "dir": -8.873328, "do": -8.180181, "do.": -8.873328, "do_block": -8.873328, "do_eoe": -8.873328, "do_identifier": -8.873328, "do_js": -7.487034, "dot": -8.873328, "dot_alias": -8.873328, "dot_alias_container": -8.873328, "dot_bracket_identifier": -8.873328, "dot_call_op": -8.873328, "dot_call_op.": -8.873328, "dot_do_identifier": -8.873328, "dot_identifier": -8.873328, "dot_identifier.": -8.873328, "dot_op": -8.873328, "dot_op.": -8.873328, "dot_op_identifier": -8.873328, "dot_paren_identifier": -8.873328, "dual_op": -8.873328, "e": -7.487034, "edown": -8.873328, "eexist": -8.873328, "eleveldb": -8.873328, "elixir_errors": -8.180181, "elixir_tokenizer": -8.873328, "elixir_utils": -8.873328, "emonk": -7.774716, "empty_paren": -8.873328, "enable": -8.873328, "end": -6.570743, "end.": -6.927418, "end_eoe": -8.873328, "env": -8.180181, "eoe": -6.927418, "eof": -8.873328, "eol": -8.873328, "eper": -8.873328, "epp": -8.873328, "erl": -8.873328, "erl_opts": -8.873328, "erlang": -7.487034, "erlang_js": -8.873328, "erlydtl": -8.873328, "erlydtl_opts": -8.180181, "error": -6.388421, "erts_vsn": -8.873328, "escape_char": -6.308379, "escript": -7.263890, "escript_comment": -8.873328, "escript_emu_args": -8.873328, "escript_incl_apps": -8.873328, "escript_name": -8.873328, "escript_shebang": -8.873328, "eunit": -8.873328, "eunit_compile_opts": -8.873328, "eunit_first_files": -8.873328, "eunit_formatters": -8.873328, "eunit_opts": -8.180181, "eval": -8.873328, "eval_target_spec": -8.873328, "execute_overlay": -7.081569, "exit_code": -7.774716, "exometer_core": -8.873328, "export": -8.180181, "export_all": -8.873328, "exports_not_used": -8.873328, "expr": -7.081569, "expr_list": -6.793886, "f": -7.263890, "fA": -8.873328, "fac": -7.487034, "factorial": -8.873328, "fail_on_warning": -8.873328, "false": -7.081569, "false.": -8.873328, "field": -7.487034, "field_atom": -8.873328, "fields": -7.774716, "fields_atom": -7.774716, "file": -6.927418, "filelib": -8.873328, "filename": -7.774716, "find": -8.873328, "finished": -8.180181, "five": -8.873328, "flatten": -6.927418, "flush": -8.873328, "fn": -8.873328, "fn_eoe": -8.873328, "folsom": -8.873328, "format": -6.475433, "format_src": -6.676103, "fossil": -8.180181, "four": -8.873328, "from_list": -8.873328, "fun": -8.873328, "generate_fields_atom_function": -8.180181, "generate_fields_function": -8.180181, "generate_setter_getter_function": -7.263890, "generate_type_default_function": -8.180181, "generate_type_function": -7.263890, "get": -6.388421, "get_cwd": -8.873328, "get_target_spec": -8.873328, "getopt": -8.873328, "getter": -8.180181, "git": -4.884344, "gmail": -8.873328, "goldrush": -8.873328, "gpb_opts": -8.873328, "grammar": -6.927418, "grammar.": -8.873328, "halt": -8.180181, "headers": -7.263890, "hex_char": -7.263890, "hg": -8.873328, "hostname": -8.873328, "hrl": -8.873328, "i": -8.873328, "ibrowse": -8.873328, "identifier": -8.873328, "if": -8.873328, "in": -8.873328, "in_match_op": -8.873328, "in_match_op_eol": -8.873328, "in_match_op_eol.": -8.873328, "in_op": -8.873328, "in_op_eol": -8.873328, "in_op_eol.": -8.873328, "include": -8.873328, "indent": -8.873328, "invalid_do_error": -8.873328, "io": -6.570743, "io_lib": -7.774716, "is_atom": -8.180181, "is_binary": -8.873328, "is_file": -8.873328, "is_list": -8.873328, "is_record": -5.654452, "join": -7.774716, "js": -8.180181, "kernel": -8.873328, "keyfind": -8.873328, "kvc": -8.873328, "kw": -8.873328, "kw_base": -8.873328, "kw_eol": -8.873328, "kw_identifier": -8.873328, "kw_identifier_safe": -8.873328, "kw_identifier_unsafe": -8.873328, "lager": -8.873328, "lager_syslog": -8.873328, "length": -6.927418, "lfe_first_files": -8.873328, "lib_dirs": -8.873328, "line": -8.180181, "list": -8.873328, "list_args": -8.873328, "list_string": -8.873328, "list_to_atom": -8.873328, "list_to_binary": -8.873328, "list_to_existing_atom": -8.873328, "list_to_integer": -7.487034, "lists": -6.040115, "localhost": -8.873328, "locals_not_used": -8.873328, "lookup": -8.873328, "loop": -6.927418, "lstsort": -7.487034, "main": -6.793886, "main/": -8.873328, "make": -7.487034, "make/": -8.180181, "make_dir": -8.873328, "map": -8.873328, "map_args": -8.873328, "map_close": -8.873328, "map_expr": -8.873328, "map_op": -8.873328, "match_op": -8.873328, "match_op_eol": -8.873328, "match_op_eol.": -8.873328, "matched_expr": -8.180181, "matched_op_expr": -8.873328, "matches": -8.873328, "max_expr": -8.873328, "meck": -8.873328, "merge_index": -8.873328, "messageId": -7.263890, "meta": -8.180181, "meta_from_token": -7.487034, "mkdir": -8.873328, "mnesia": -8.873328, "mochiweb": -8.873328, "mod": -8.180181, "mode": -8.180181, "module": -8.180181, "modules": -8.873328, "mult_op": -8.873328, "mult_op_eol": -8.873328, "mult_op_eol.": -8.873328, "mustache": -6.570743, "mustache_key": -7.487034, "n": -7.263890, "neotoma": -8.873328, "net_adm": -8.873328, "nil.": -8.180181, "no_parens_expr": -8.180181, "no_parens_many_expr": -8.873328, "no_parens_one_ambig_expr": -8.873328, "no_parens_one_expr": -8.873328, "no_parens_op_expr": -8.873328, "no_parens_zero_expr": -8.873328, "node_package": -8.873328, "null": -8.180181, "number": -7.487034, "objsort": -7.487034, "of": -6.388421, "offset": -8.873328, "ok": -5.112128, "ok.": -8.873328, "one": -8.873328, "op_identifier": -8.873328, "open_bit": -8.873328, "open_bracket": -8.873328, "open_curly": -8.873328, "open_paren": -8.873328, "or_op": -8.873328, "or_op_eol": -8.873328, "or_op_eol.": -8.873328, "orelse": -8.873328, "os": -8.873328, "outdir": -8.873328, "overlay": -8.873328, "p": -8.873328, "paren_identifier": -8.873328, "parens_call": -8.873328, "parent": -7.263890, "parent_field": -8.180181, "parse": -8.180181, "parse_field": -7.081569, "parse_field_atom": -7.487034, "parse_field_name": -7.263890, "parse_field_name_atom": -7.263890, "parse_file": -8.873328, "parse_record": -7.263890, "parse_trans": -8.873328, "pbkdf": -8.873328, "pipe_op": -8.873328, "pipe_op_eol": -8.180181, "pipe_op_eol.": -8.873328, "plugin": -8.180181, "plugin_dir": -8.873328, "plugins": -8.180181, "poolboy": -8.873328, "port_env": -8.873328, "port_specs": -8.873328, "post_hooks": -8.873328, "pre_hooks": -8.873328, "process_overlay": -8.180181, "proplists": -8.873328, "proto_opts": -8.873328, "protobuffs": -8.180181, "r": -7.487034, "random": -8.873328, "random_test": -8.180181, "raw": -8.873328, "read": -7.263890, "rebar": -8.873328, "rebar_lock_deps_plugin": -8.180181, "receive": -8.873328, "record": -7.263890, "record_field": -6.676103, "record_helper": -8.873328, "record_utils": -8.873328, "ref": -7.487034, "registered": -8.873328, "rel": -8.180181, "rel_op": -8.873328, "rel_op_eol": -8.873328, "rel_op_eol.": -8.873328, "rel_vsn": -8.873328, "relative": -8.873328, "reltool": -8.180181, "report": -8.180181, "require_otp_vsn": -8.873328, "return": -8.873328, "reverse": -7.081569, "riak_api": -8.873328, "riak_auth_mods": -8.873328, "riak_control": -8.873328, "riak_core": -8.873328, "riak_dt": -8.873328, "riak_ensemble": -8.873328, "riak_kv": -8.873328, "riak_pb": -8.873328, "riak_pipe": -8.873328, "riak_search": -8.873328, "riak_sysmon": -8.873328, "riaknostic": -8.873328, "root_dir": -8.873328, "rsync": -8.873328, "run": -7.487034, "s": -7.081569, "sample": -8.873328, "sample_app": -8.873328, "self": -8.180181, "set": -6.308379, "setter": -8.180181, "setup": -8.873328, "sext": -8.873328, "shell": -7.774716, "sidejob": -8.873328, "sigil": -8.873328, "skip_past": -7.487034, "skip_token": -8.873328, "smp": -8.873328, "sname": -8.873328, "sort": -6.570743, "spawn": -8.873328, "split": -8.873328, "split_last": -8.873328, "src_dirs": -8.873328, "stab": -8.873328, "stab_eoe": -8.873328, "stab_expr": -8.873328, "stab_op": -8.180181, "stab_op_eol": -8.873328, "stab_op_eol.": -8.873328, "stab_op_eol_and_expr": -8.873328, "stab_parens_many": -8.873328, "start": -7.487034, "stdlib": -8.873328, "stop": -8.873328, "str": -8.873328, "string": -7.774716, "string_part": -8.873328, "struct_op": -8.873328, "sub_dirs": -8.180181, "substr": -8.873328, "svn": -8.180181, "symbol": -8.873328, "symbol_char": -8.180181, "symbol_token": -8.873328, "sys": -8.180181, "syslog": -8.873328, "system_info": -8.873328, "t": -7.487034, "tab": -8.873328, "tabs": -8.873328, "target_dir": -8.180181, "three_op": -8.873328, "three_op_eol": -8.873328, "three_op_eol.": -8.873328, "throw": -6.676103, "throw_bad_atom": -8.873328, "throw_invalid_kw_identifier": -8.180181, "throw_no_parens_container_strict": -8.873328, "throw_no_parens_many_strict": -8.873328, "throw_no_parens_strict": -8.873328, "timeToLive": -7.263890, "timestamp": -7.263890, "to": -8.873328, "to_block": -7.081569, "to_setter_getter_function": -7.263890, "token": -7.263890, "true": -6.308379, "trung@mdkt.org": -8.873328, "try": -8.180181, "tuple": -8.873328, "two": -8.180181, "two_op": -8.873328, "two_op_eol": -8.873328, "two_op_eol.": -8.873328, "type": -7.263890, "type_op": -8.873328, "type_op_eol": -8.180181, "type_op_eol.": -8.873328, "unary_op": -8.873328, "unary_op_eol": -8.873328, "unary_op_eol.": -8.873328, "undefined": -8.873328, "undefined.": -8.873328, "undefined_function_calls": -8.873328, "undefined_functions": -8.873328, "uniform": -8.873328, "unmatched_expr": -8.180181, "unmatched_op_expr": -8.873328, "unquote_splicing": -8.873328, "unwrap_splice": -8.180181, "unwrap_when": -8.873328, "usage": -7.774716, "utf": -8.873328, "v": -7.774716, "verbose": -7.774716, "version": -8.873328, "vsn": -8.873328, "wait": -7.487034, "warn": -8.180181, "warn_empty_stab_clause": -8.873328, "warn_pipe": -8.180181, "webmachine": -8.873328, "when": -5.159756, "when_op": -8.873328, "when_op_eol": -8.180181, "when_op_eol.": -8.873328, "width": -8.873328, "write_file": -8.873328, "x": -7.263890, "xref_checks": -8.873328, "xref_extra_paths": -8.873328, "xref_queries": -8.873328, "xref_warnings": -8.873328, "yokozuna": -8.873328, "z": -8.180181, "zA": -8.873328, "zzz": -8.873328, "{": -2.927907, "|": -4.795791, "||": -7.081569, "}": -2.925293, "~": -8.180181, }, "F#": map[string]float64{ "!": -7.281844, "#else": -7.687309, "#endif": -7.687309, "#if": -7.687309, "&&": -6.077872, "(": -2.612136, ")": -2.618405, "*": -6.994162, "+": -6.588697, ",": -3.698325, "-": -4.596267, "..": -6.183232, ".Assembly.GetName": -8.380457, ".Dispose": -8.380457, ".NET": -6.994162, ".Version": -8.380457, "/": -4.190802, "0": -6.771019, "1": -6.077872, "1024": -7.687309, "17": -8.380457, "2": -7.687309, "3": -7.687309, "40": -7.687309, ":": -3.986008, ";": -5.607868, "<": -4.302919, "<->": -5.895550, "</param>": -5.672406, "</summary>": -5.607868, "<@>": -7.687309, "<AbstractClass>": -8.380457, "<DateTime>": -8.380457, "<FsPickler>": -8.380457, "<Guid>": -8.380457, "<O;D(null)>": -6.301015, "<PerformanceTests.Marker>": -8.380457, "<RequireQualifiedAccess>": -7.687309, "<Serializer>": -7.687309, "<TestFixtureTearDown>": -8.380457, "<_>": -6.994162, "<bool>": -8.380457, "<byte>": -8.380457, "<double>": -7.687309, "<int>": -7.281844, "<param>": -5.672406, "<string>": -5.895550, "<summary>": -5.895550, "<|>": -5.607868, "=": -2.782035, ">": -3.475182, "?": -5.741399, "@": -7.281844, "Array": -6.301015, "Array.init": -7.281844, "Array.map": -8.380457, "Async.Parallel": -8.380457, "Bar": -8.380457, "Baz": -8.380457, "BigInteger.Parse": -8.380457, "Binary": -8.380457, "BinaryFormatterSerializer": -8.380457, "Boxed": -8.380457, "Bson": -7.281844, "BsonPickleFormatProvider": -8.380457, "BsonReader": -8.380457, "BsonSerializer": -7.687309, "BsonWriter": -8.380457, "Class": -6.994162, "CloseOutput": -8.380457, "Comparison": -7.281844, "Convert.FromBase": -8.380457, "CreateBson": -8.380457, "CreateJson": -8.380457, "CultureInfo.InvariantCulture": -7.687309, "Curried": -8.380457, "D": -7.687309, "D.init": -8.380457, "DAttribute": -8.380457, "DateTime": -7.687309, "DateTime.Now": -7.687309, "DefaultEncoding": -8.380457, "Dictionary": -8.380457, "Discriminated": -8.380457, "Dispose": -8.380457, "Double.Parse": -8.380457, "Encoding": -7.687309, "EndArray": -8.380457, "EndReadObject": -8.380457, "EndReadRoot": -8.380457, "EndWriteObject": -8.380457, "F": -8.380457, "FSharp": -5.672406, "Float": -6.994162, "Foo": -8.380457, "FormatException": -5.895550, "Formats": -8.380457, "Formatting": -7.687309, "Formatting.Indented": -8.380457, "Formatting.None": -8.380457, "FsPickler": -6.771019, "FsPickler.CreateBson": -8.380457, "FsPickler.CreateJson": -8.380457, "FsPickler.initBinary": -7.281844, "FsPickler.initBson": -8.380457, "FsPickler.initJson": -8.380457, "FsPickler.initXml": -8.380457, "FsPicklerSerializer": -8.380457, "FsPicklerTextSerializer": -7.687309, "Function": -8.380457, "Guid": -8.380457, "Guid.NewGuid": -8.380457, "Guid.Parse": -8.380457, "HasFlag": -7.687309, "IDisposable": -8.380457, "IPickleFormatReader": -8.380457, "IPickleFormatWriter": -8.380457, "ISerializable": -8.380457, "ITextPickleFormatProvider": -7.687309, "ImplementationComparer": -7.687309, "Indent": -7.687309, "Indented": -8.380457, "Int": -6.771019, "Invalid": -8.380457, "InvalidPickleTypeException": -7.687309, "IsNull": -8.380457, "IsSequenceHeader": -7.281844, "Json": -6.994162, "JsonDotNetBsonSerializer": -8.380457, "JsonDotNetSerializer": -8.380457, "JsonPickleFormatProvider": -7.281844, "JsonPickleReader": -6.994162, "JsonPickleWriter": -6.994162, "JsonReader": -8.380457, "JsonSerializer": -7.687309, "JsonTextReader": -7.281844, "JsonTextWriter": -7.281844, "JsonToken": -6.771019, "JsonToken.EndArray": -7.687309, "JsonToken.EndObject": -8.380457, "JsonToken.Float": -7.687309, "JsonToken.None": -8.380457, "JsonToken.Null": -7.687309, "JsonToken.StartArray": -8.380457, "JsonToken.StartObject": -7.687309, "JsonToken.String": -7.687309, "JsonWriter": -8.380457, "Key": -7.687309, "Large": -7.687309, "List": -6.588697, "List.map": -7.687309, "Map": -7.281844, "Map.ofSeq": -8.380457, "Marker": -8.380457, "MinValue": -7.687309, "MoveNext": -6.994162, "NET": -6.994162, "NUnit.Framework": -8.380457, "NUnitPerf": -8.380457, "Name": -8.380457, "Nessos.FsPickler": -6.434547, "Nessos.FsPickler.Combinators": -8.380457, "Nessos.FsPickler.Json": -6.588697, "Nessos.FsPickler.Tests": -7.687309, "Nessos.FsPickler.Tests.Serializer": -8.380457, "Nessos.FsPickler.Tests.TestTypes": -8.380457, "Nested": -8.380457, "NetDataContractSerializer": -8.380457, "Newtonsoft.Json": -7.281844, "None": -7.687309, "NotImplementedException": -7.687309, "NotSupportedException": -6.771019, "Null": -8.380457, "O": -7.281844, "OAttribute": -8.380457, "Object": -8.380457, "ObjectFlags": -6.588697, "ObjectFlags.IsNull": -7.687309, "ObjectFlags.IsSequenceHeader": -8.380457, "ObjectFlags.None": -8.380457, "Objects": -8.380457, "OmitHeader": -7.281844, "Pairs": -8.380457, "Past": -8.380457, "PastImplementationComparer": -8.380457, "Peano": -7.687309, "Peek": -8.380457, "PerfTest": -4.854096, "PerfTest.OfModuleMarker": -8.380457, "PerfTester": -6.994162, "PerfUtil": -7.687309, "PerfUtil.NUnit": -8.380457, "PerformanceTests": -8.380457, "Pickler": -6.994162, "Pop": -7.687309, "ProtoBufSerializer": -8.380457, "Push": -7.687309, "Quotation": -7.687309, "Rank": -8.380457, "Read": -6.588697, "ReadPrimitiveAs": -7.687309, "ReadProperty": -6.994162, "Record": -8.380457, "Rectype": -8.380457, "Reflection": -8.380457, "Resolution": -8.380457, "Sample": -7.687309, "Seq.map": -7.687309, "Seq.sum": -8.380457, "SequenceSeparator": -8.380457, "SerializableClass": -7.687309, "Serializer": -6.301015, "ServiceStackJsonSerializer": -8.380457, "ServiceStackTypeSerializer": -8.380457, "Set": -7.687309, "Set.ofList": -8.380457, "Simple": -8.380457, "Single.Parse": -8.380457, "Small": -7.687309, "Some": -6.588697, "Something": -8.380457, "SomethingElse": -8.380457, "SortedSet": -8.380457, "Stack": -6.994162, "StartObject": -8.380457, "StreamReader": -6.994162, "StreamWriter": -6.994162, "String": -6.771019, "String.IsNullOrWhiteSpace": -8.380457, "String.concat": -8.380457, "Subtype": -8.380457, "SupportMultipleContent": -8.380457, "System": -6.588697, "System.Collections.Generic": -7.281844, "System.Globalization": -8.380457, "System.IO": -7.281844, "System.Numerics": -8.380457, "System.Runtime.InteropServices.DefaultParameterValueAttribute": -8.380457, "System.Runtime.InteropServices.OptionalAttribute": -8.380457, "System.Text": -7.687309, "T": -6.994162, "TimeSpan.Parse": -8.380457, "TokenType": -7.281844, "Tree": -8.380457, "Tuple": -7.281844, "Type": -8.380457, "UTF": -8.380457, "UTF8Encoding": -8.380457, "Union": -8.380457, "Unions": -8.380457, "UseCustomTopLevelSequenceSeparator": -8.380457, "Value": -6.771019, "ValueAs": -8.380457, "Version": -8.380457, "Versions": -8.380457, "WeightedComparer": -7.687309, "WriteEndArray": -8.380457, "WriteNull": -8.380457, "WritePropertyName": -8.380457, "WriteStartArray": -8.380457, "WriteStartObject": -8.380457, "[": -4.089997, "]": -4.089997, "_": -5.436018, "__": -6.183232, "__.BeginReadObject": -8.380457, "__.BeginReadRoot": -8.380457, "__.BeginWriteObject": -8.380457, "__.BeginWriteRoot": -8.380457, "__.CreateReader": -7.687309, "__.CreateWriter": -7.687309, "__.DefaultEncoding": -8.380457, "__.Dispose": -7.687309, "__.EndReadObject": -8.380457, "__.EndReadRoot": -8.380457, "__.EndWriteRoot": -8.380457, "__.Indent": -7.687309, "__.IsPrimitiveArraySerializationSupported": -7.687309, "__.Name": -8.380457, "__.OmitHeader": -6.994162, "__.PerfTester": -7.281844, "__.PerfTests": -8.380457, "__.Persist": -8.380457, "__.PreferLengthPrefixInSequences": -7.687309, "__.ReadBigInteger": -8.380457, "__.ReadBoolean": -8.380457, "__.ReadByte": -8.380457, "__.ReadBytes": -8.380457, "__.ReadCachedObjectId": -8.380457, "__.ReadChar": -8.380457, "__.ReadDate": -8.380457, "__.ReadDecimal": -8.380457, "__.ReadDouble": -8.380457, "__.ReadGuid": -8.380457, "__.ReadInt": -7.281844, "__.ReadNextSequenceElement": -8.380457, "__.ReadPrimitiveArray": -8.380457, "__.ReadSByte": -8.380457, "__.ReadSingle": -8.380457, "__.ReadString": -8.380457, "__.ReadTimeSpan": -8.380457, "__.ReadUInt": -7.281844, "__.SequenceSeparator": -8.380457, "__.SerializeUnionCaseNames": -7.687309, "__.WriteBigInteger": -8.380457, "__.WriteBoolean": -8.380457, "__.WriteByte": -8.380457, "__.WriteBytes": -8.380457, "__.WriteCachedObjectId": -8.380457, "__.WriteChar": -8.380457, "__.WriteDate": -8.380457, "__.WriteDecimal": -8.380457, "__.WriteDouble": -8.380457, "__.WriteGuid": -8.380457, "__.WriteInt": -7.281844, "__.WriteNextSequenceElement": -8.380457, "__.WritePrimitiveArray": -8.380457, "__.WriteSByte": -8.380457, "__.WriteSingle": -8.380457, "__.WriteString": -8.380457, "__.WriteTimeSpan": -8.380457, "__.WriteUInt": -7.281844, "_flags": -8.380457, "`": -3.396850, "a": -7.687309, "and": -6.771019, "array": -7.687309, "arrayStack": -6.434547, "arrayStack.Peek": -7.687309, "arrayStack.Pop": -7.687309, "arrayStack.Push": -6.994162, "as": -8.380457, "async": -6.994162, "b": -6.994162, "base": -7.687309, "bclDict": -7.687309, "bclList": -7.687309, "bclSet": -7.687309, "bclStack": -7.687309, "bdn": -7.687309, "be": -8.380457, "bfs": -7.687309, "binTree": -7.687309, "binary": -7.687309, "box": -5.815507, "boxed": -7.687309, "boxedClass": -7.687309, "bson": -7.687309, "bsonPickler": -8.380457, "bsonPickler.Value.Pickle": -8.380457, "bsonPickler.Value.UnPickle": -8.380457, "but": -7.687309, "byte": -7.281844, "bytes": -7.687309, "class": -8.380457, "closure": -7.687309, "com": -8.380457, "comparer": -6.588697, "csvFlags": -7.687309, "currentValueIsNull": -6.771019, "date": -7.687309, "decimal": -8.380457, "defaultArg": -7.687309, "depth": -4.691577, "dict": -8.380457, "discussion": -8.380457, "do": -6.301015, "duArray": -7.687309, "e": -7.687309, "elif": -7.687309, "else": -5.048252, "encoding": -6.077872, "end": -7.281844, "endif": -7.687309, "expected": -7.687309, "false": -5.244962, "fibAsync": -6.771019, "flagCsv": -7.687309, "flags": -6.771019, "flags.HasFlag": -8.380457, "float": -6.994162, "floatArray": -7.687309, "fn": -7.687309, "fnn": -7.687309, "for": -6.301015, "format": -7.281844, "fsClass": -8.380457, "fsMap": -7.687309, "fsp": -6.994162, "fun": -6.434547, "get": -6.301015, "github": -8.380457, "guid": -7.687309, "hasNext": -8.380457, "historyFile": -8.380457, "https": -8.380457, "i": -5.013161, "id": -7.281844, "if": -4.642787, "ignore": -5.982561, "in": -5.895550, "indent": -6.183232, "indented": -7.281844, "inherit": -6.434547, "int": -5.490085, "intArray": -7.687309, "intList": -7.687309, "intSet": -7.687309, "interface": -6.771019, "internal": -6.771019, "invalid": -8.380457, "invalidArg": -7.281844, "isBsonReader": -6.994162, "isBsonWriter": -7.687309, "isCustomSeq": -6.434547, "isTopLevelSequence": -5.244962, "isTopLevelSequenceHead": -6.994162, "issues": -8.380457, "j": -7.687309, "jdn": -7.687309, "jr": -6.588697, "json": -6.588697, "jsonFormatVersion": -7.687309, "jsonReader": -5.161581, "jsonReader.CloseInput": -8.380457, "jsonReader.MoveNext": -6.301015, "jsonReader.Read": -6.301015, "jsonReader.ReadPrimitiveAs": -5.335934, "jsonReader.ReadProperty": -6.994162, "jsonReader.SupportMultipleContent": -8.380457, "jsonReader.TokenType": -6.434547, "jsonReader.ValueAs": -6.301015, "jsonSerializer": -8.380457, "jsonSerializer.Value.PickleToString": -8.380457, "jsonSerializer.Value.UnPickleOfString": -8.380457, "jsonWriter": -4.946469, "jsonWriter.CloseOutput": -8.380457, "jsonWriter.Flush": -8.380457, "jsonWriter.Formatting": -8.380457, "jsonWriter.WriteEnd": -8.380457, "jsonWriter.WriteEndObject": -8.380457, "jsonWriter.WriteNull": -8.380457, "jsonWriter.WritePropertyName": -7.687309, "jsonWriter.WriteStartObject": -8.380457, "jsonWriter.WriteValue": -8.380457, "jsonWriter.WriteWhitespace": -8.380457, "jw": -6.588697, "k": -7.687309, "kvarr": -7.687309, "largeTuple": -7.687309, "lazy": -7.687309, "leastAcceptableImprovementFactor": -7.687309, "leaveOpen": -5.244962, "let": -3.396850, "list": -8.380457, "match": -6.077872, "member": -3.973737, "mkFlagCsv": -8.380457, "mkTree": -8.380457, "module": -6.994162, "mutable": -6.771019, "n": -5.815507, "namespace": -6.434547, "ndc": -7.687309, "nessos": -8.380457, "nestedLst": -7.687309, "new": -4.320014, "non": -8.380457, "not": -5.672406, "null": -6.994162, "obj.ReferenceEquals": -8.380457, "objArray": -7.687309, "object": -7.281844, "of": -7.687309, "omitHeader": -5.335934, "omitTag": -4.573794, "open": -4.854096, "option": -6.994162, "override": -6.994162, "pairList": -7.687309, "parseFlagCsv": -8.380457, "pbn": -7.687309, "peano": -7.687309, "persistResults": -7.687309, "persistenceFile": -7.687309, "pickle": -6.994162, "pickler": -6.301015, "pown": -8.380457, "private": -7.281844, "quotationLarge": -7.687309, "quotationSmall": -7.687309, "raise": -5.982561, "rec": -7.687309, "record": -7.687309, "ref": -8.380457, "return": -6.994162, "root": -8.380457, "roundtrip": -4.883949, "s": -4.190802, "sTag": -6.771019, "sbyte": -8.380457, "see": -8.380457, "self": -8.380457, "self.OmitHeader": -8.380457, "self.UseCustomTopLevelSequenceSeparator": -8.380457, "sep": -6.588697, "separator": -7.687309, "sequenceSeparator": -6.588697, "serializableClass": -7.687309, "set": -6.183232, "should": -8.380457, "single": -8.380457, "smallTuple": -7.687309, "spaceFactor": -7.687309, "sprintf": -6.588697, "sr": -6.588697, "ssj": -7.687309, "sst": -7.687309, "start": -8.380457, "static": -7.687309, "stream": -6.077872, "string": -4.530309, "stringArray": -7.687309, "stringList": -7.687309, "stringValue": -5.895550, "summary": -6.994162, "supported": -7.687309, "sw": -6.588697, "tag": -3.837162, "testType": -7.687309, "tester": -6.588697, "tester.PersistCurrentResults": -8.380457, "tests": -7.687309, "textReader": -7.687309, "textWriter": -7.687309, "then": -4.488636, "throwOnError": -7.281844, "ticks": -7.687309, "token": -6.434547, "true": -5.607868, "type": -5.672406, "typeConverter": -5.895550, "typeof": -7.687309, "uint": -7.281844, "union": -7.687309, "unpickle": -7.687309, "v": -8.380457, "val": -6.994162, "value": -4.509256, "value.": -8.380457, "value.Ticks": -8.380457, "values": -7.687309, "version": -6.183232, "warmup": -7.281844, "was": -7.687309, "when": -7.281844, "whitespace": -8.380457, "with": -5.289414, "writePrimitive": -5.244962, "x": -6.771019, "x.Indent": -8.380457, "x.OmitHeader": -8.380457, "x.SequenceSeparator": -8.380457, "x.UseCustomTopLevelSequenceSeparator": -8.380457, "x.format.Indent": -7.687309, "x.format.OmitHeader": -7.687309, "x.format.SequenceSeparator": -7.687309, "x.format.UseCustomTopLevelSequenceSeparator": -7.687309, "xml": -7.687309, "xs": -7.687309, "{": -6.771019, "|": -4.269583, "||": -7.687309, "}": -6.771019, "\ufeff": -6.434547, }, "FLUX": map[string]float64{ "(": -2.578592, ")": -2.578592, "*client": -3.882648, "*fds": -6.133940, "*payload": -5.122339, "*request": -4.429192, "*rgb_data": -6.421622, "*tdata": -3.736045, ",": -2.237031, "-": -4.054499, ":": -3.993874, ";": -2.557390, "=": -2.828887, ">": -2.792847, "BigLock": -5.574324, "Bitfield": -6.827087, "Cancel": -6.827087, "CheckCache": -5.728475, "CheckSockets": -6.421622, "CheckinWithTracker": -6.133940, "Choke": -6.827087, "ChokeTimer": -6.827087, "ClientList": -5.440793, "ClientMessage": -6.421622, "Complete": -5.728475, "CompletePiece": -6.421622, "Compress": -6.133940, "Connect": -6.827087, "DataTimer": -6.421622, "DoConnect": -6.421622, "DoDisconnect": -6.421622, "DoEngine": -6.827087, "DoTurn": -6.827087, "DoUpdate": -6.421622, "FourOhFor": -6.827087, "GetClients": -5.728475, "GetTrackerResponse": -6.827087, "HandleMessage": -5.122339, "Handler": -5.574324, "Handshake": -6.827087, "Have": -6.827087, "Image": -6.827087, "Interested": -6.827087, "KeepAliveTimer": -6.827087, "Listen": -5.323010, "Message": -6.133940, "MessageDone": -6.827087, "Page": -6.421622, "ParseConnect": -6.827087, "ParseDisconnect": -6.827087, "ParseEngine": -6.827087, "ParseMessage": -6.827087, "ParseTurn": -6.827087, "PickChoked": -6.827087, "Piece": -6.827087, "ReadInFromDisk": -5.910797, "ReadMessage": -5.440793, "ReadRequest": -6.133940, "Request": -6.827087, "SelectSockets": -6.827087, "SendBitfield": -6.827087, "SendChokeUnchoke": -6.827087, "SendData": -6.827087, "SendHave": -6.827087, "SendKeepAlives": -6.421622, "SendRequest": -6.133940, "SendRequestToTracker": -6.827087, "SendUninterested": -6.827087, "SetupConnection": -6.133940, "StoreInCache": -5.910797, "TestBitfield": -7.520235, "TestCancel": -7.520235, "TestChoke": -7.520235, "TestHTML": -7.520235, "TestHave": -7.520235, "TestInCache": -6.827087, "TestInterested": -7.520235, "TestPiece": -7.520235, "TestPieceComplete": -7.520235, "TestRequest": -7.520235, "TestUnchoke": -7.520235, "TestUninterested": -7.520235, "TestXML": -7.520235, "TrackerTimer": -6.827087, "Unchoke": -6.827087, "Uninterested": -6.827087, "UpdateBoard": -6.827087, "UpdateChokeList": -6.133940, "VerifyPiece": -6.827087, "Wait": -6.827087, "Write": -6.133940, "[": -4.629863, "]": -4.629863, "_": -3.494883, "__u": -6.421622, "atomic": -4.747646, "bitfield": -6.827087, "bool": -4.429192, "cache": -5.728475, "cancel": -6.827087, "char": -5.122339, "char*": -5.122339, "choke": -6.827087, "chokelist_t": -6.827087, "client": -4.881177, "client_data_t": -3.882648, "client_lock": -6.421622, "clients": -5.440793, "clist": -6.827087, "close": -4.429192, "connect": -6.827087, "data": -5.323010, "direction": -6.133940, "disconnect": -6.827087, "engine": -6.827087, "error": -6.827087, "fd_set": -6.133940, "handle": -6.827087, "have": -6.827087, "hit": -6.827087, "host": -6.827087, "html": -7.520235, "image_tag": -4.429192, "inCache": -6.827087, "int": -3.054326, "interested": -6.827087, "isConnectMessage": -7.520235, "isDisconnectMessage": -7.520235, "isEngineMessage": -7.520235, "isTurnMessage": -7.520235, "length": -5.122339, "maxfd": -6.827087, "piece": -5.574324, "piececomplete": -6.827087, "port": -6.827087, "request": -6.827087, "socket": -4.054499, "source": -5.323010, "torrent_data_t": -3.736045, "turn": -6.827087, "type": -4.687021, "typedef": -4.629863, "unchoke": -6.827087, "uninterested": -6.827087, "xml": -7.520235, "{": -4.747646, "}": -4.747646, }, "Filebench WML": map[string]float64{ "$": -2.365284, ",": -2.020443, "/tmp": -5.198497, "=": -1.534935, "bigfileset": -4.505350, "closefile": -3.812203, "createfile": -4.505350, "define": -4.099885, "destfiles": -4.505350, "dir": -4.099885, "dirwidth": -4.505350, "echo": -5.198497, "entries": -4.505350, "fd": -3.406738, "filereader": -5.198497, "filereaderthread": -5.198497, "fileset": -4.505350, "filesetname": -4.505350, "firstdone": -5.198497, "flowop": -3.406738, "instances": -4.505350, "iosize": -3.589059, "k": -5.198497, "m": -4.505350, "meandirwidth": -4.099885, "meanfilesize": -4.099885, "memsize": -5.198497, "mode": -5.198497, "name": -2.895912, "nfiles": -4.099885, "nthreads": -4.505350, "openfile": -4.505350, "paralloc": -5.198497, "path": -4.505350, "prealloc": -5.198497, "process": -5.198497, "quit": -5.198497, "readfile": -5.198497, "readwholefile": -5.198497, "set": -3.252587, "size": -4.505350, "srcfd": -5.198497, "thread": -5.198497, "writefile": -5.198497, "writewholefile": -5.198497, "{": -4.505350, "}": -4.505350, }, "Filterscript": map[string]float64{ "#include": -5.068904, "#pragma": -4.375757, "&": -4.375757, "(": -1.890850, ")": -1.890850, ",": -3.459466, ";": -2.766319, "=": -3.682610, "Mat": -3.682610, "__attribute__": -3.459466, "_t": -3.459466, "ain": -3.970292, "clamp": -5.068904, "convert_float": -5.068904, "convert_uchar": -5.068904, "everything": -5.068904, "f": -3.277145, "float": -5.068904, "foo": -5.068904, "in": -4.375757, "in_only": -5.068904, "init": -5.068904, "int": -3.970292, "java_package_name": -5.068904, "kernel": -3.459466, "m": -4.375757, "out_only": -5.068904, "return": -3.682610, "root": -4.375757, "rs": -5.068904, "rsMatrixLoadIdentity": -5.068904, "rsMatrixMultiply": -5.068904, "rs_matrix": -4.375757, "setMatrix": -5.068904, "static": -5.068904, "uchar": -4.375757, "uint": -3.459466, "version": -5.068904, "void": -3.970292, "x": -3.970292, "y": -5.068904, "{": -3.122994, "}": -3.122994, }, "Formatted": map[string]float64{ "&": -8.537192, "(": -8.537192, ")": -8.537192, "+": -8.537192, ",": -6.927754, "-": -0.594830, "ACCEPTABLE": -8.537192, "APR": -3.864363, "AUG": -3.836712, "Al": -8.537192, "Angelo": -8.537192, "Baskes": -8.537192, "DEC": -3.827662, "E": -8.537192, "EB": -3.883232, "Engineering": -8.537192, "H": -8.537192, "I": -8.537192, "JAN": -3.783602, "JUL": -3.827662, "JUN": -3.864363, "James": -8.537192, "Jan": -8.537192, "LEFT": -8.537192, "MAR": -3.836712, "MAY": -3.827662, "Materials": -8.537192, "Michael": -8.537192, "Modelling": -8.537192, "Moody": -8.537192, "NOV": -3.873753, "Neville": -8.537192, "Ni": -8.537192, "Nino": -7.150898, "OCT": -3.818693, "PRIMERS": -8.537192, "R": -8.537192, "SEP": -3.864363, "SST": -6.927754, "SSTA": -7.150898, "Science": -8.537192, "Simulation": -8.537192, "Week": -8.537192, "Weekly": -8.537192, "aaagcatcggattagctagct": -8.537192, "aaagcatcggattagctagctg": -8.537192, "aaagcatcggattagctagctga": -8.537192, "aaagcatcggattagctagctgat": -8.537192, "aaagcatcggattagctagctgatg": -8.537192, "aagcatcggattagctagct": -8.537192, "aagcatcggattagctagctg": -8.537192, "aagcatcggattagctagctga": -8.537192, "aagcatcggattagctagctgat": -8.537192, "aagcatcggattagctagctgatg": -8.537192, "actagctagctgactgatacg": -8.537192, "actagctagctgactgatacgc": -8.537192, "actagctagctgactgatacgcg": -8.537192, "actagctagctgatcatcatcg": -8.537192, "actagctagctgatcatcatcga": -8.537192, "actagctagctgatcatcatcgat": -8.537192, "actagctagctgatcatcatcgatg": -8.537192, "actagctagctgatcatcatctac": -8.537192, "actagctagctgatcatcatctact": -8.537192, "actagctagctgatcatcatctacta": -8.537192, "actagctagctgatcatcatctactat": -8.537192, "actatcatctctgcgcgat": -8.537192, "actatcatctctgcgcgatc": -8.537192, "actatcatctctgcgcgatcg": -8.537192, "actatcatctctgcgcgatcga": -8.537192, "actatcatctctgcgcgatcgat": -8.537192, "actgatacgcgatgctagc": -8.537192, "actgatacgcgatgctagct": -8.537192, "actgatacgcgatgctagcta": -8.537192, "actgatacgcgatgctagctag": -8.537192, "actgatcgatcatcatgctagc": -8.537192, "actgatcgatcatcatgctagct": -8.537192, "actgatcgatcatcatgctagcta": -8.537192, "actgatcgatcatcatgctagctac": -8.537192, "actgatcgatcatcatgctagctact": -8.537192, "actgatcgatcatcatgctagctacta": -8.537192, "actgatcgatcgatgctagc": -8.537192, "actgatcgatcgatgctagct": -8.537192, "actgatcgatcgatgctagcta": -8.537192, "actgatcgatcgatgctagctag": -8.537192, "actgatcgatcgatgctagctagt": -8.537192, "actgatcgatcgatgctagctagta": -8.537192, "actgatcgatcgatgctagctagtag": -8.537192, "agcatcggattagctagctg": -8.537192, "agcatcggattagctagctga": -8.537192, "agcatcggattagctagctgat": -8.537192, "agcatcggattagctagctgatg": -8.537192, "agcggcgatctagctagc": -8.537192, "agcggcgatctagctagct": -8.537192, "agcggcgatctagctagctg": -8.537192, "agctactatcatctctgcgc": -8.537192, "agctactatcatctctgcgcg": -8.537192, "agctactatcatctctgcgcga": -8.537192, "agctactatcatctctgcgcgat": -8.537192, "agctactgatcgatgctacat": -8.537192, "agctactgatcgatgctacatc": -8.537192, "agctagctactatcatcgatcg": -8.537192, "agctagctactatcatcgatcga": -8.537192, "agctagctactatcatcgatcgat": -8.537192, "agctagctactatcatctctgc": -8.537192, "agctagctactatcatctctgcg": -8.537192, "agctagctactatcatctctgcgc": -8.537192, "agctagctactgatcgatgc": -8.537192, "agctagctactgatcgatgct": -8.537192, "agctagctactgatcgatgcta": -8.537192, "agctagctactgatcgatgctac": -8.537192, "agctagctactgatcgatgctaca": -8.537192, "agctagctactgatcgatgctacat": -8.537192, "agctagctactgatcgatgctacatc": -8.537192, "agctagctgactgatacgc": -8.537192, "agctagctgactgatacgcg": -8.537192, "agctagctgactgatacgcga": -8.537192, "agctagctgactgatacgcgat": -8.537192, "agctagctgactgatcgatc": -7.844045, "agctagctgactgatcgatca": -8.537192, "agctagctgactgatcgatcat": -8.537192, "agctagctgactgatcgatcatc": -8.537192, "agctagctgactgatcgatcatca": -8.537192, "agctagctgactgatcgatcatcat": -8.537192, "agctagctgactgatcgatcg": -8.537192, "agctagctgactgatcgatcga": -8.537192, "agctagctgactgatcgatcgat": -8.537192, "agctagctgatcatcatcgat": -8.537192, "agctagctgatcatcatcgatg": -8.537192, "agctagctgatcatcatcgatgc": -8.537192, "agctagctgatcatcatcgatgct": -8.537192, "agctagctgatcatcatcgatgcta": -8.537192, "agctagctgatcatcatctactat": -8.537192, "agctagctgatcatcatctactatc": -8.537192, "agctagctgatcatcatctactatca": -8.537192, "agctagctgatcatcatctactatcat": -8.537192, "agctagctgatcatcgatgc": -8.537192, "agctagctgatcatcgatgct": -8.537192, "agctagctgatcatcgatgcta": -8.537192, "agctagctgatcatcgatgctac": -8.537192, "agctagctgatcatcgatgctact": -8.537192, "agctagctgatcatcgatgctacta": -8.537192, "agctagctgatcatcgatgctactag": -8.537192, "agctagctgatcgatcgatg": -7.844045, "agctagctgatcgatcgatgc": -8.537192, "agctagctgatcgatcgatgct": -8.537192, "agctagctgatcgatcgatgcta": -8.537192, "agctagctgatcgatcgatgctag": -8.537192, "agctagctgatcgatcgatgt": -8.537192, "agctagctgatcgatcgatgtg": -8.537192, "agctagctgatcgatcgtag": -8.537192, "agctagctgatcgatcgtagc": -8.537192, "agctagctgatcgatcgtagcg": -8.537192, "agctaggcgatgctagct": -8.537192, "agctaggcgatgctagcta": -8.537192, "agctaggcgatgctagctag": -8.537192, "agctgactgatacgcgatg": -8.537192, "agctgactgatacgcgatgc": -8.537192, "agctgactgatacgcgatgct": -8.537192, "agctgactgatacgcgatgcta": -8.537192, "agctgactgatcgatcatca": -8.537192, "agctgactgatcgatcatcat": -8.537192, "agctgactgatcgatcatcatg": -8.537192, "agctgactgatcgatcatcatgc": -8.537192, "agctgactgatcgatcatcatgcta": -8.537192, "agctgactgatcgatcgatg": -8.537192, "agctgactgatcgatcgatgc": -8.537192, "agctgactgatcgatcgatgct": -8.537192, "agctgactgatcgatcgatgcta": -8.537192, "agctgatcatcatcgatgct": -8.537192, "agctgatcatcatcgatgcta": -8.537192, "agctgatcatcatcgatgctag": -8.537192, "agctgatcatcatcgatgctagc": -8.537192, "agctgatcatcatcgatgctagct": -8.537192, "agctgatcatcatcgatgctagcta": -8.537192, "agctgatcatcatctactatcatca": -8.537192, "agctgatcatcatctactatcatcat": -8.537192, "agctgatcatcatctactatcatcatc": -8.537192, "agctgatcatcatctagctagtag": -8.537192, "agctgatcatcatctagctagtagc": -8.537192, "agctgatcatcgatgctact": -8.537192, "agctgatcatcgatgctacta": -8.537192, "agctgatcatcgatgctactag": -8.537192, "agctgatcatcgatgctactagc": -8.537192, "agctgatcatcgatgctactagct": -8.537192, "agctgatcatcgatgctactagcta": -8.537192, "agctgatcatcgatgctactagctag": -8.537192, "agctgatcgatcgatgctag": -8.537192, "agctgatcgatcgatgctagc": -8.537192, "agctgatcgatcgatgctagct": -8.537192, "agctgatcgatcgatgctagcta": -8.537192, "agctgatcgatcgatgctagctag": -8.537192, "agctgatcgatcgatgtgc": -8.537192, "agctgatcgatcgatgtgcg": -8.537192, "agctgatcgatcgtagcg": -8.537192, "agctgatcgatcgtagcgg": -8.537192, "agtagtgatgtatacgtagctagt": -8.537192, "agtagtgatgtatacgtagctagtag": -8.537192, "agtagtgatgtatacgtagctagtagc": -8.537192, "agtgatgcatgctagtagtga": -8.537192, "agtgatgcatgctagtagtgat": -8.537192, "agtgatgcatgctagtagtgatg": -8.537192, "agtgatgcatgctagtagtgatgt": -8.537192, "agtgatgcatgctagtagtgatgta": -8.537192, "agtgatgcatgctagtagtgatgtat": -8.537192, "agtgatgcatgctagtagtgatgtata": -8.537192, "agtgatgtatacgtagctagtagc": -8.537192, "and": -8.537192, "atcatcatcgatgctagctagt": -8.537192, "atcatcatcgatgctagctagta": -8.537192, "atcatcatcgatgctagctagtag": -8.537192, "atcatctctgcgcgatcg": -8.537192, "atcatctctgcgcgatcga": -8.537192, "atcatctctgcgcgatcgat": -8.537192, "atcatctctgcgcgatcgatg": -8.537192, "atcgatcatcatgctagctact": -8.537192, "atcgatcatcatgctagctacta": -8.537192, "atcgatcatcatgctagctactag": -8.537192, "atcgatcgatgcatgcatg": -8.537192, "atcgatcgatgctagctagg": -8.537192, "atcgatcgatgctagctaggc": -8.537192, "atcgatcgatgctagctagtag": -8.537192, "atcgatcgatgctagtatgct": -8.537192, "atcgatcgatgctagtatgcta": -8.537192, "atcgatcgatgctagtatgctag": -8.537192, "atcgatcgatgtgcggct": -8.537192, "atcgatcgatgtgcggcta": -8.537192, "atcgatcgatgtgcggctag": -8.537192, "atcgatgctagctaggcg": -8.537192, "atcgatgctagctaggcga": -8.537192, "atcgatgctagctaggcgat": -8.537192, "atcgatgctagctaggcgatg": -8.537192, "atcggattagctagctgatgc": -8.537192, "atctactatcatcatcatctactagct": -8.537192, "atctctgcgcgatcgatg": -8.537192, "atctctgcgcgatcgatgc": -8.537192, "atctctgcgcgatcgatgcta": -8.537192, "atgcatgctagtagtgatgtatac": -8.537192, "atgcatgctagtagtgatgtatacg": -8.537192, "atgcatgctagtagtgatgtatacgt": -8.537192, "atgcatgctagtagtgatgtatacgta": -8.537192, "atgctagctaggcgatgc": -8.537192, "atgctagctaggcgatgct": -8.537192, "atgctagctaggcgatgcta": -8.537192, "atgctagctaggcgatgctag": -8.537192, "atgctagtagtgatgtatacgtagc": -8.537192, "atgctagtagtgatgtatacgtagct": -8.537192, "atgctagtagtgatgtatacgtagcta": -8.537192, "atttagctagctgactgatcga": -8.537192, "atttagctagctgactgatcgat": -8.537192, "atttagctagctgactgatcgatc": -8.537192, "atttagctagctgactgatcgatca": -8.537192, "atttagctagctgactgatcgatcat": -8.537192, "atttagctagctgactgatcgatcatc": -8.537192, "based": -8.537192, "catcgatcgatgcatgcat": -8.537192, "catcgatcgatgcatgcatg": -8.537192, "catcgatcgatgctagtatgc": -8.537192, "catcgatcgatgctagtatgct": -8.537192, "catcgatcgatgctagtatgcta": -8.537192, "catcgatcgatgctagtatgctag": -8.537192, "catcggattagctagctgatg": -8.537192, "catcggattagctagctgatgc": -8.537192, "catctactatcatcatcatctactagc": -8.537192, "catctctgcgcgatcgat": -8.537192, "catctctgcgcgatcgatg": -8.537192, "catctctgcgcgatcgatgc": -8.537192, "catgctagtagtgatgtatacgtag": -8.537192, "catgctagtagtgatgtatacgtagc": -8.537192, "catgctagtagtgatgtatacgtagct": -8.537192, "centered": -8.537192, "cgatcatcgatgctagctagc": -8.537192, "cgatcgatgctagctaggc": -8.537192, "cgatcgatgctagctaggcg": -8.537192, "cgatcgatgctagctaggcga": -8.537192, "cgatcgatgtgcggctag": -8.537192, "cgatgctagctaggcgat": -8.537192, "cgatgctagctaggcgatg": -8.537192, "cgatgctagctaggcgatgc": -8.537192, "cgcgatcgatgctagcta": -8.537192, "cgcgatcgatgctagctag": -8.537192, "cgcgatcgatgctagctagc": -8.537192, "cggcgatctagctagctg": -8.537192, "cggcgatctagctagctga": -8.537192, "cggcgatctagctagctgac": -8.537192, "cggcgatctagctagctgact": -8.537192, "cggcgatctagctagctgacta": -8.537192, "cgtagcggcgatctagct": -8.537192, "cgtagcggcgatctagcta": -8.537192, "cgtagcggcgatctagctag": -8.537192, "ctactagctagctgactgatacg": -8.537192, "ctactagctagctgactgatacgc": -8.537192, "ctactagctagctgatcatcatcg": -8.537192, "ctactagctagctgatcatcatcga": -8.537192, "ctactagctagctgatcatcatcgat": -8.537192, "ctactagctagctgatcatcatcgatg": -8.537192, "ctactagctagctgatcatcatct": -8.537192, "ctactagctagctgatcatcatcta": -8.537192, "ctactagctagctgatcatcatctac": -8.537192, "ctactagctagctgatcatcatctact": -8.537192, "ctactatcatctctgcgcga": -8.537192, "ctactatcatctctgcgcgat": -8.537192, "ctactatcatctctgcgcgatc": -8.537192, "ctactatcatctctgcgcgatcg": -8.537192, "ctactatcatctctgcgcgatcga": -8.537192, "ctagctactatcatctctgcgc": -8.537192, "ctagctactatcatctctgcgcg": -8.537192, "ctagctactatcatctctgcgcga": -8.537192, "ctagctactatcatctctgcgcgat": -8.537192, "ctagctactgatcgatgctaca": -8.537192, "ctagctactgatcgatgctacat": -8.537192, "ctagctactgatcgatgctacatc": -8.537192, "ctagctagctactatcatcgatcg": -8.537192, "ctagctagctactatcatcgatcga": -8.537192, "ctagctagctactatcatcgatcgat": -8.537192, "ctagctagctactatcatctctgc": -8.537192, "ctagctagctactatcatctctgcg": -8.537192, "ctagctagctactgatcgatgc": -8.537192, "ctagctagctactgatcgatgct": -8.537192, "ctagctagctactgatcgatgcta": -8.537192, "ctagctagctactgatcgatgctac": -8.537192, "ctagctagctactgatcgatgctaca": -8.537192, "ctagctagctactgatcgatgctacat": -8.537192, "ctagctagctgactgatacgc": -8.537192, "ctagctagctgactgatacgcg": -8.537192, "ctagctagctgactgatacgcga": -8.537192, "ctagctagctgactgatacgcgat": -8.537192, "ctagctagctgactgatcgat": -8.537192, "ctagctagctgactgatcgatc": -8.537192, "ctagctagctgactgatcgatcg": -8.537192, "ctagctagctgactgatcgatcga": -8.537192, "ctagctagctgactgatcgatcgat": -8.537192, "ctagctagctgatcatcatcga": -8.537192, "ctagctagctgatcatcatcgat": -8.537192, "ctagctagctgatcatcatcgatg": -8.537192, "ctagctagctgatcatcatcgatgc": -8.537192, "ctagctagctgatcatcatctact": -8.537192, "ctagctagctgatcatcatctacta": -8.537192, "ctagctagctgatcatcatctactat": -8.537192, "ctagctagctgatcatcatctactatc": -8.537192, "ctagctagctgatcatcgatgc": -8.537192, "ctagctagctgatcatcgatgct": -8.537192, "ctagctagctgatcatcgatgcta": -8.537192, "ctagctagctgatcatcgatgctac": -8.537192, "ctagctagctgatcatcgatgctact": -8.537192, "ctagctagctgatcatcgatgctacta": -8.537192, "ctagctagctgatcgatcga": -7.844045, "ctagctagctgatcgatcgat": -7.844045, "ctagctagctgatcgatcgatg": -7.844045, "ctagctagctgatcgatcgatgc": -8.537192, "ctagctagctgatcgatcgatgct": -8.537192, "ctagctagctgatcgatcgatgcta": -8.537192, "ctagctagctgatcgatcgatgt": -8.537192, "ctagctagctgatcgatcgatgtg": -8.537192, "ctagctagctgatcgatcgt": -8.537192, "ctagctagctgatcgatcgta": -8.537192, "ctagctagctgatcgatcgtag": -8.537192, "ctagctagctgatcgatcgtagc": -8.537192, "ctagctaggcgatgctagc": -8.537192, "ctagctaggcgatgctagct": -8.537192, "ctagctaggcgatgctagcta": -8.537192, "ctagctaggcgatgctagctag": -8.537192, "ctagctgactgatacgcga": -8.537192, "ctagctgactgatacgcgat": -8.537192, "ctagctgactgatacgcgatg": -8.537192, "ctagctgactgatacgcgatgc": -8.537192, "ctagctgactgatcgatcatca": -8.537192, "ctagctgactgatcgatcatcat": -8.537192, "ctagctgactgatcgatcatcatg": -8.537192, "ctagctgactgatcgatcatcatgc": -8.537192, "ctagctgactgatcgatcga": -8.537192, "ctagctgactgatcgatcgat": -8.537192, "ctagctgactgatcgatcgatg": -8.537192, "ctagctgactgatcgatcgatgc": -8.537192, "ctagctgactgatcgatcgatgcta": -8.537192, "ctagctgatcatcatcgatgc": -8.537192, "ctagctgatcatcatcgatgct": -8.537192, "ctagctgatcatcatcgatgcta": -8.537192, "ctagctgatcatcatcgatgctag": -8.537192, "ctagctgatcatcatcgatgctagc": -8.537192, "ctagctgatcatcatctactatcatc": -8.537192, "ctagctgatcatcatctactatcatca": -8.537192, "ctagctgatcatcatctagctagt": -8.537192, "ctagctgatcatcatctagctagta": -8.537192, "ctagctgatcatcatctagctagtag": -8.537192, "ctagctgatcatcatctagctagtagc": -8.537192, "ctagctgatcatcgatgctact": -8.537192, "ctagctgatcatcgatgctacta": -8.537192, "ctagctgatcatcgatgctactag": -8.537192, "ctagctgatcatcgatgctactagc": -8.537192, "ctagctgatcatcgatgctactagct": -8.537192, "ctagctgatcatcgatgctactagcta": -8.537192, "ctagctgatcgatcgatgct": -8.537192, "ctagctgatcgatcgatgcta": -8.537192, "ctagctgatcgatcgatgctag": -8.537192, "ctagctgatcgatcgatgctagc": -8.537192, "ctagctgatcgatcgatgctagct": -8.537192, "ctagctgatcgatcgatgctagcta": -8.537192, "ctagctgatcgatcgatgtgc": -8.537192, "ctagctgatcgatcgatgtgcg": -8.537192, "ctagctgatcgatcgtagcg": -8.537192, "ctagctgatcgatcgtagcgg": -8.537192, "ctagtagtgatgtatacgtagctagt": -8.537192, "ctagtagtgatgtatacgtagctagta": -8.537192, "ctagtgatgcatgctagtagtg": -8.537192, "ctagtgatgcatgctagtagtga": -8.537192, "ctagtgatgcatgctagtagtgat": -8.537192, "ctagtgatgcatgctagtagtgatg": -8.537192, "ctagtgatgcatgctagtagtgatgt": -8.537192, "ctagtgatgcatgctagtagtgatgta": -8.537192, "ctatcatctctgcgcgatcg": -8.537192, "ctatcatctctgcgcgatcga": -8.537192, "ctatcatctctgcgcgatcgat": -8.537192, "ctatcatctctgcgcgatcgatg": -8.537192, "ctatttagctagctgactgatcg": -8.537192, "ctatttagctagctgactgatcga": -8.537192, "ctatttagctagctgactgatcgat": -8.537192, "ctatttagctagctgactgatcgatc": -8.537192, "ctatttagctagctgactgatcgatca": -8.537192, "ctctgcgcgatcgatgct": -8.537192, "ctctgcgcgatcgatgcta": -8.537192, "ctctgcgcgatcgatgctag": -8.537192, "ctgactgatacgcgatgct": -8.537192, "ctgactgatacgcgatgcta": -8.537192, "ctgactgatacgcgatgctag": -8.537192, "ctgactgatacgcgatgctagc": -8.537192, "ctgactgatcgatcatcatgc": -8.537192, "ctgactgatcgatcatcatgct": -8.537192, "ctgactgatcgatcatcatgcta": -8.537192, "ctgactgatcgatcatcatgctag": -8.537192, "ctgactgatcgatcatcatgctagc": -8.537192, "ctgactgatcgatcgatgct": -8.537192, "ctgactgatcgatcgatgcta": -8.537192, "ctgactgatcgatcgatgctag": -8.537192, "ctgactgatcgatcgatgctagc": -8.537192, "ctgactgatcgatcgatgctagcta": -8.537192, "ctgatacgcgatgctagct": -8.537192, "ctgatacgcgatgctagcta": -8.537192, "ctgatacgcgatgctagctag": -8.537192, "ctgatcatcatcgatgctagc": -8.537192, "ctgatcatcatcgatgctagct": -8.537192, "ctgatcatcatcgatgctagcta": -8.537192, "ctgatcatcatcgatgctagctag": -8.537192, "ctgatcatcatcgatgctagctagt": -8.537192, "ctgatcatcatcgatgctagctagta": -8.537192, "ctgatcatcatcgatgctagctagtag": -8.537192, "ctgatcatcatctactatcatcatca": -8.537192, "ctgatcatcatctactatcatcatcat": -8.537192, "ctgatcatcgatgctactagct": -8.537192, "ctgatcatcgatgctactagcta": -8.537192, "ctgatcatcgatgctactagctag": -8.537192, "ctgatcgatcatcatgctagc": -8.537192, "ctgatcgatcatcatgctagct": -8.537192, "ctgatcgatcatcatgctagcta": -8.537192, "ctgatcgatcatcatgctagctac": -8.537192, "ctgatcgatcatcatgctagctact": -8.537192, "ctgatcgatcatcatgctagctacta": -8.537192, "ctgatcgatcatcatgctagctactag": -8.537192, "ctgatcgatcgatgctagct": -7.844045, "ctgatcgatcgatgctagcta": -7.844045, "ctgatcgatcgatgctagctag": -7.844045, "ctgatcgatcgatgctagctagg": -8.537192, "ctgatcgatcgatgctagctagt": -8.537192, "ctgatcgatcgatgctagctagta": -8.537192, "ctgatcgatcgatgctagctagtag": -8.537192, "ctgatcgatcgatgtgcgg": -8.537192, "ctgatcgatcgatgtgcggc": -8.537192, "ctgatcgatcgtagcggc": -8.537192, "ctgatcgatcgtagcggcg": -8.537192, "ctgcgcgatcgatgctag": -8.537192, "ctgcgcgatcgatgctagc": -8.537192, "data": -8.537192, "fcc": -7.844045, "gactgatacgcgatgctagc": -8.537192, "gactgatacgcgatgctagct": -8.537192, "gactgatacgcgatgctagcta": -8.537192, "gactgatacgcgatgctagctag": -8.537192, "gactgatcgatcatcatgctag": -8.537192, "gactgatcgatcatcatgctagc": -8.537192, "gactgatcgatcatcatgctagct": -8.537192, "gactgatcgatcatcatgctagcta": -8.537192, "gactgatcgatcatcatgctagctac": -8.537192, "gactgatcgatcgatgctagc": -8.537192, "gactgatcgatcgatgctagct": -8.537192, "gactgatcgatcgatgctagcta": -8.537192, "gactgatcgatcgatgctagctag": -8.537192, "gactgatcgatcgatgctagctagt": -8.537192, "gactgatcgatcgatgctagctagta": -8.537192, "gatcatcatcgatgctagctag": -8.537192, "gatcatcatcgatgctagctagt": -8.537192, "gatcatcatcgatgctagctagta": -8.537192, "gatcatcatcgatgctagctagtag": -8.537192, "gatcatcatctactatcatcatcatct": -8.537192, "gatcgatcatcatgctagctac": -8.537192, "gatcgatcatcatgctagctact": -8.537192, "gatcgatcatcatgctagctacta": -8.537192, "gatcgatcatcatgctagctactag": -8.537192, "gatcgatcgatgctagctagg": -8.537192, "gatcgatcgatgctagctaggc": -8.537192, "gatcgatcgatgctagctagt": -8.537192, "gatcgatcgatgctagctagta": -8.537192, "gatcgatcgatgctagctagtag": -8.537192, "gatcgatcgatgtgcggc": -8.537192, "gatcgatcgatgtgcggct": -8.537192, "gatcgatcgatgtgcggcta": -8.537192, "gatcgatcgatgtgcggctag": -8.537192, "gatcgatcgtagcggcga": -8.537192, "gatcgatgctagctaggcg": -8.537192, "gatcgatgctagctaggcga": -8.537192, "gatcgatgctagctaggcgat": -8.537192, "gatcgatgctagctaggcgatg": -8.537192, "gatgcatgctagtagtgatgtatac": -8.537192, "gatgcatgctagtagtgatgtatacg": -8.537192, "gatgcatgctagtagtgatgtatacgt": -8.537192, "gatgctagctaggcgatgc": -8.537192, "gatgctagctaggcgatgct": -8.537192, "gatgctagctaggcgatgcta": -8.537192, "gatgctagctaggcgatgctag": -8.537192, "gcatcggattagctagctga": -8.537192, "gcatcggattagctagctgat": -8.537192, "gcatcggattagctagctgatg": -8.537192, "gcatcggattagctagctgatgc": -8.537192, "gcatgctagtagtgatgtatacg": -8.537192, "gcatgctagtagtgatgtatacgt": -8.537192, "gcatgctagtagtgatgtatacgta": -8.537192, "gcatgctagtagtgatgtatacgtag": -8.537192, "gcatgctagtagtgatgtatacgtagc": -8.537192, "gcgatctagctagctgact": -8.537192, "gcgcgatcgatgctagct": -8.537192, "gcgcgatcgatgctagcta": -8.537192, "gcgcgatcgatgctagctag": -8.537192, "gcggcgatctagctagct": -8.537192, "gcggcgatctagctagctg": -8.537192, "gcggcgatctagctagctga": -8.537192, "gctactagctagctgactgat": -8.537192, "gctactagctagctgactgata": -8.537192, "gctactagctagctgactgatac": -8.537192, "gctactagctagctgactgatacg": -8.537192, "gctactagctagctgatcatca": -7.844045, "gctactagctagctgatcatcat": -7.844045, "gctactagctagctgatcatcatc": -7.844045, "gctactagctagctgatcatcatcg": -8.537192, "gctactagctagctgatcatcatcga": -8.537192, "gctactagctagctgatcatcatct": -8.537192, "gctactagctagctgatcatcatcta": -8.537192, "gctactagctagctgatcatcatctac": -8.537192, "gctactatcatctctgcgcg": -8.537192, "gctactatcatctctgcgcga": -8.537192, "gctactatcatctctgcgcgat": -8.537192, "gctactatcatctctgcgcgatc": -8.537192, "gctactgatcgatgctacatc": -8.537192, "gctagctactatcatcgatcga": -8.537192, "gctagctactatcatcgatcgat": -8.537192, "gctagctactatcatctctgcg": -8.537192, "gctagctactatcatctctgcgc": -8.537192, "gctagctactgatcgatgct": -8.537192, "gctagctactgatcgatgcta": -8.537192, "gctagctactgatcgatgctac": -8.537192, "gctagctactgatcgatgctaca": -8.537192, "gctagctactgatcgatgctacat": -8.537192, "gctagctactgatcgatgctacatc": -8.537192, "gctagctagctactatcatcga": -8.537192, "gctagctagctactatcatcgat": -8.537192, "gctagctagctactatcatcgatc": -8.537192, "gctagctagctactatcatcgatcg": -8.537192, "gctagctagctactatcatcgatcga": -8.537192, "gctagctagctactatcatcgatcgat": -8.537192, "gctagctagctactatcatctct": -8.537192, "gctagctagctactatcatctctg": -8.537192, "gctagctagctactatcatctctgc": -8.537192, "gctagctagctactgatcgat": -8.537192, "gctagctagctactgatcgatg": -8.537192, "gctagctagctactgatcgatgc": -8.537192, "gctagctagctactgatcgatgct": -8.537192, "gctagctagctactgatcgatgcta": -8.537192, "gctagctagctgactgatcg": -8.537192, "gctagctagctgactgatcga": -8.537192, "gctagctagctgactgatcgat": -8.537192, "gctagctagctgactgatcgatc": -8.537192, "gctagctagctgatcatcatct": -8.537192, "gctagctagctgatcatcatcta": -8.537192, "gctagctagctgatcatcatctag": -8.537192, "gctagctagctgatcatcga": -8.537192, "gctagctagctgatcatcgat": -8.537192, "gctagctagctgatcatcgatg": -8.537192, "gctagctagctgatcatcgatgc": -8.537192, "gctagctagctgatcgatcg": -7.438580, "gctagctagctgatcgatcga": -7.844045, "gctagctagctgatcgatcgat": -7.844045, "gctagctagctgatcgatcgatg": -7.844045, "gctagctagctgatcgatcgt": -8.537192, "gctagctagctgatcgatcgta": -8.537192, "gctagctagctgatcgatcgtag": -8.537192, "gctagctaggcgatgctag": -8.537192, "gctagctaggcgatgctagc": -8.537192, "gctagctgactgatacgcg": -8.537192, "gctagctgactgatacgcga": -8.537192, "gctagctgactgatacgcgat": -8.537192, "gctagctgactgatacgcgatg": -8.537192, "gctagctgactgatcgatca": -8.537192, "gctagctgactgatcgatcat": -8.537192, "gctagctgactgatcgatcatc": -8.537192, "gctagctgactgatcgatcatca": -8.537192, "gctagctgactgatcgatcatcat": -8.537192, "gctagctgactgatcgatcatcatg": -8.537192, "gctagctgactgatcgatcg": -8.537192, "gctagctgactgatcgatcga": -8.537192, "gctagctgactgatcgatcgat": -8.537192, "gctagctgactgatcgatcgatg": -8.537192, "gctagctgatcatcatcgatg": -8.537192, "gctagctgatcatcatcgatgc": -8.537192, "gctagctgatcatcatcgatgct": -8.537192, "gctagctgatcatcatcgatgcta": -8.537192, "gctagctgatcatcatcgatgctag": -8.537192, "gctagctgatcatcatctactatc": -8.537192, "gctagctgatcatcatctactatca": -8.537192, "gctagctgatcatcatctactatcat": -8.537192, "gctagctgatcatcatctactatcatc": -8.537192, "gctagctgatcatcgatgct": -8.537192, "gctagctgatcatcgatgcta": -8.537192, "gctagctgatcatcgatgctac": -8.537192, "gctagctgatcatcgatgctact": -8.537192, "gctagctgatcatcgatgctacta": -8.537192, "gctagctgatcatcgatgctactag": -8.537192, "gctagctgatcgatcgatgc": -8.537192, "gctagctgatcgatcgatgct": -8.537192, "gctagctgatcgatcgatgcta": -8.537192, "gctagctgatcgatcgatgctag": -8.537192, "gctagctgatcgatcgatgt": -8.537192, "gctagctgatcgatcgatgtg": -8.537192, "gctagctgatcgatcgatgtgc": -8.537192, "gctagctgatcgatcgtagc": -8.537192, "gctagctgatcgatcgtagcg": -8.537192, "gctaggcgatgctagctag": -8.537192, "gctagtagtgatgtatacgtagct": -8.537192, "gctagtagtgatgtatacgtagcta": -8.537192, "gctagtagtgatgtatacgtagctag": -8.537192, "gctagtagtgatgtatacgtagctagt": -8.537192, "gctagtgatgcatgctagtagt": -8.537192, "gctagtgatgcatgctagtagtg": -8.537192, "gctagtgatgcatgctagtagtga": -8.537192, "gctagtgatgcatgctagtagtgat": -8.537192, "gctagtgatgcatgctagtagtgatg": -8.537192, "gctatttagctagctgactgatc": -8.537192, "gctatttagctagctgactgatcg": -8.537192, "gctatttagctagctgactgatcga": -8.537192, "gctatttagctagctgactgatcgat": -8.537192, "gctatttagctagctgactgatcgatc": -8.537192, "gctgactgatacgcgatgc": -8.537192, "gctgactgatacgcgatgct": -8.537192, "gctgactgatacgcgatgcta": -8.537192, "gctgactgatacgcgatgctag": -8.537192, "gctgactgatcgatcatcatg": -8.537192, "gctgactgatcgatcatcatgc": -8.537192, "gctgactgatcgatcatcatgct": -8.537192, "gctgactgatcgatcatcatgcta": -8.537192, "gctgactgatcgatcatcatgctag": -8.537192, "gctgactgatcgatcgatgc": -8.537192, "gctgactgatcgatcgatgct": -8.537192, "gctgactgatcgatcgatgcta": -8.537192, "gctgactgatcgatcgatgctag": -8.537192, "gctgatcatcatcgatgctag": -8.537192, "gctgatcatcatcgatgctagc": -8.537192, "gctgatcatcatcgatgctagct": -8.537192, "gctgatcatcatcgatgctagcta": -8.537192, "gctgatcatcatcgatgctagctag": -8.537192, "gctgatcatcatctactatcatcat": -8.537192, "gctgatcatcatctactatcatcatc": -8.537192, "gctgatcatcatctactatcatcatca": -8.537192, "gctgatcatcatctagctagtagc": -8.537192, "gctgatcatcgatgctactagc": -8.537192, "gctgatcatcgatgctactagct": -8.537192, "gctgatcatcgatgctactagcta": -8.537192, "gctgatcatcgatgctactagctag": -8.537192, "gctgatcgatcgatgctagc": -8.537192, "gctgatcgatcgatgctagct": -8.537192, "gctgatcgatcgatgctagcta": -8.537192, "gctgatcgatcgatgctagctag": -8.537192, "gctgatcgatcgatgtgc": -8.537192, "gctgatcgatcgatgtgcg": -8.537192, "gctgatcgatcgatgtgcgg": -8.537192, "gctgatcgatcgtagcgg": -8.537192, "gctgatcgatcgtagcggc": -8.537192, "ggcgatctagctagctgac": -8.537192, "ggcgatctagctagctgact": -8.537192, "ggcgatctagctagctgacta": -8.537192, "gtagcggcgatctagctag": -8.537192, "gtagcggcgatctagctagc": -8.537192, "gtagcggcgatctagctagct": -8.537192, "gtagtgatgtatacgtagctagtagc": -8.537192, "gtgatgcatgctagtagtgatg": -8.537192, "gtgatgcatgctagtagtgatgt": -8.537192, "gtgatgcatgctagtagtgatgta": -8.537192, "gtgatgcatgctagtagtgatgtat": -8.537192, "gtgatgcatgctagtagtgatgtata": -8.537192, "gtgatgcatgctagtagtgatgtatac": -8.537192, "in": -8.537192, "on": -8.537192, "pp.": -8.537192, "see": -8.537192, "starts": -8.537192, "tactagctagctgactgatacg": -8.537192, "tactagctagctgactgatacgc": -8.537192, "tactagctagctgactgatacgcg": -8.537192, "tactagctagctgatcatcatcg": -8.537192, "tactagctagctgatcatcatcga": -8.537192, "tactagctagctgatcatcatcgat": -8.537192, "tactagctagctgatcatcatcgatg": -8.537192, "tactagctagctgatcatcatctac": -8.537192, "tactagctagctgatcatcatctact": -8.537192, "tactagctagctgatcatcatctacta": -8.537192, "tactatcatctctgcgcgatc": -8.537192, "tactatcatctctgcgcgatcg": -8.537192, "tactatcatctctgcgcgatcga": -8.537192, "tactatcatctctgcgcgatcgat": -8.537192, "tagcggcgatctagctagc": -8.537192, "tagcggcgatctagctagct": -8.537192, "tagcggcgatctagctagctg": -8.537192, "tagctactatcatctctgcgc": -8.537192, "tagctactatcatctctgcgcg": -8.537192, "tagctactatcatctctgcgcga": -8.537192, "tagctactatcatctctgcgcgat": -8.537192, "tagctactatcatctctgcgcgatc": -8.537192, "tagctactgatcgatgctacat": -8.537192, "tagctactgatcgatgctacatc": -8.537192, "tagctagctactatcatcgatcg": -8.537192, "tagctagctactatcatcgatcga": -8.537192, "tagctagctactatcatcgatcgat": -8.537192, "tagctagctactatcatctctgc": -8.537192, "tagctagctactatcatctctgcg": -8.537192, "tagctagctactatcatctctgcgc": -8.537192, "tagctagctactgatcgatgc": -8.537192, "tagctagctactgatcgatgct": -8.537192, "tagctagctactgatcgatgcta": -8.537192, "tagctagctactgatcgatgctac": -8.537192, "tagctagctactgatcgatgctaca": -8.537192, "tagctagctactgatcgatgctacat": -8.537192, "tagctagctactgatcgatgctacatc": -8.537192, "tagctagctgactgatacgc": -8.537192, "tagctagctgactgatacgcg": -8.537192, "tagctagctgactgatacgcga": -8.537192, "tagctagctgactgatacgcgat": -8.537192, "tagctagctgactgatcgatc": -7.844045, "tagctagctgactgatcgatca": -8.537192, "tagctagctgactgatcgatcat": -8.537192, "tagctagctgactgatcgatcatc": -8.537192, "tagctagctgactgatcgatcatca": -8.537192, "tagctagctgactgatcgatcatcat": -8.537192, "tagctagctgactgatcgatcg": -8.537192, "tagctagctgactgatcgatcga": -8.537192, "tagctagctgactgatcgatcgat": -8.537192, "tagctagctgactgatcgatcgatg": -8.537192, "tagctagctgatcatcatcgat": -8.537192, "tagctagctgatcatcatcgatg": -8.537192, "tagctagctgatcatcatcgatgc": -8.537192, "tagctagctgatcatcatcgatgct": -8.537192, "tagctagctgatcatcatcgatgcta": -8.537192, "tagctagctgatcatcatctactat": -8.537192, "tagctagctgatcatcatctactatc": -8.537192, "tagctagctgatcatcatctactatca": -8.537192, "tagctagctgatcatcgatgc": -8.537192, "tagctagctgatcatcgatgct": -8.537192, "tagctagctgatcatcgatgcta": -8.537192, "tagctagctgatcatcgatgctac": -8.537192, "tagctagctgatcatcgatgctact": -8.537192, "tagctagctgatcatcgatgctacta": -8.537192, "tagctagctgatcatcgatgctactag": -8.537192, "tagctagctgatcgatcgatg": -7.844045, "tagctagctgatcgatcgatgc": -8.537192, "tagctagctgatcgatcgatgct": -8.537192, "tagctagctgatcgatcgatgcta": -8.537192, "tagctagctgatcgatcgatgctag": -8.537192, "tagctagctgatcgatcgatgt": -8.537192, "tagctagctgatcgatcgatgtg": -8.537192, "tagctagctgatcgatcgtag": -8.537192, "tagctagctgatcgatcgtagc": -8.537192, "tagctagctgatcgatcgtagcg": -8.537192, "tagctaggcgatgctagct": -8.537192, "tagctaggcgatgctagcta": -8.537192, "tagctaggcgatgctagctag": -8.537192, "tagctgactgatacgcgatg": -8.537192, "tagctgactgatacgcgatgc": -8.537192, "tagctgactgatacgcgatgct": -8.537192, "tagctgactgatacgcgatgcta": -8.537192, "tagctgactgatcgatcatca": -8.537192, "tagctgactgatcgatcatcat": -8.537192, "tagctgactgatcgatcatcatg": -8.537192, "tagctgactgatcgatcatcatgc": -8.537192, "tagctgactgatcgatcatcatgct": -8.537192, "tagctgactgatcgatcatcatgcta": -8.537192, "tagctgactgatcgatcgatg": -8.537192, "tagctgactgatcgatcgatgc": -8.537192, "tagctgactgatcgatcgatgct": -8.537192, "tagctgactgatcgatcgatgcta": -8.537192, "tagctgactgatcgatcgatgctag": -8.537192, "tagctgatcatcatcgatgct": -8.537192, "tagctgatcatcatcgatgcta": -8.537192, "tagctgatcatcatcgatgctag": -8.537192, "tagctgatcatcatcgatgctagc": -8.537192, "tagctgatcatcatcgatgctagct": -8.537192, "tagctgatcatcatcgatgctagcta": -8.537192, "tagctgatcatcatctactatcatca": -8.537192, "tagctgatcatcatctactatcatcat": -8.537192, "tagctgatcatcatctagctagtag": -8.537192, "tagctgatcatcatctagctagtagc": -8.537192, "tagctgatcatcgatgctact": -8.537192, "tagctgatcatcgatgctacta": -8.537192, "tagctgatcatcgatgctactag": -8.537192, "tagctgatcatcgatgctactagc": -8.537192, "tagctgatcatcgatgctactagct": -8.537192, "tagctgatcatcgatgctactagcta": -8.537192, "tagctgatcatcgatgctactagctag": -8.537192, "tagctgatcgatcgatgctag": -8.537192, "tagctgatcgatcgatgctagc": -8.537192, "tagctgatcgatcgatgctagct": -8.537192, "tagctgatcgatcgatgctagcta": -8.537192, "tagctgatcgatcgatgctagctag": -8.537192, "tagctgatcgatcgatgtgc": -8.537192, "tagctgatcgatcgatgtgcg": -8.537192, "tagctgatcgatcgtagcg": -8.537192, "tagctgatcgatcgtagcgg": -8.537192, "tagtagtgatgtatacgtagctagtag": -8.537192, "tagtgatgcatgctagtagtga": -8.537192, "tagtgatgcatgctagtagtgat": -8.537192, "tagtgatgcatgctagtagtgatg": -8.537192, "tagtgatgcatgctagtagtgatgt": -8.537192, "tagtgatgcatgctagtagtgatgta": -8.537192, "tagtgatgcatgctagtagtgatgtat": -8.537192, "tagtgatgtatacgtagctagtagc": -8.537192, "tatcatctctgcgcgatcg": -8.537192, "tatcatctctgcgcgatcga": -8.537192, "tatcatctctgcgcgatcgat": -8.537192, "tatcatctctgcgcgatcgatg": -8.537192, "tatttagctagctgactgatcga": -8.537192, "tatttagctagctgactgatcgat": -8.537192, "tatttagctagctgactgatcgatc": -8.537192, "tatttagctagctgactgatcgatca": -8.537192, "tatttagctagctgactgatcgatcat": -8.537192, "tcatcatcgatgctagctagt": -8.537192, "tcatcatcgatgctagctagta": -8.537192, "tcatcatcgatgctagctagtag": -8.537192, "tcatctctgcgcgatcga": -8.537192, "tcatctctgcgcgatcgat": -8.537192, "tcatctctgcgcgatcgatg": -8.537192, "tcgatcatcatgctagctact": -8.537192, "tcgatcatcatgctagctacta": -8.537192, "tcgatcatcatgctagctactag": -8.537192, "tcgatcgatgctagctaggc": -8.537192, "tcgatcgatgctagctaggcg": -8.537192, "tcgatcgatgctagctagtag": -8.537192, "tcgatcgatgctagtatgctag": -8.537192, "tcgatcgatgtgcggcta": -8.537192, "tcgatcgatgtgcggctag": -8.537192, "tcgatgctagctaggcga": -8.537192, "tcgatgctagctaggcgat": -8.537192, "tcgatgctagctaggcgatg": -8.537192, "tcggattagctagctgatgc": -8.537192, "tcgtagcggcgatctagc": -8.537192, "tcgtagcggcgatctagct": -8.537192, "tcgtagcggcgatctagcta": -8.537192, "tcgtagcggcgatctagctag": -8.537192, "tctactatcatcatcatctactagct": -8.537192, "tctactatcatcatcatctactagcta": -8.537192, "tctctgcgcgatcgatgc": -8.537192, "tctctgcgcgatcgatgct": -8.537192, "tctctgcgcgatcgatgcta": -8.537192, "tctgcgcgatcgatgcta": -8.537192, "tctgcgcgatcgatgctag": -8.537192, "tgactgatacgcgatgct": -8.537192, "tgactgatacgcgatgctag": -8.537192, "tgactgatacgcgatgctagc": -8.537192, "tgactgatacgcgatgctagct": -8.537192, "tgactgatacgcgatgctagcta": -8.537192, "tgactgatcgatcatcatgct": -8.537192, "tgactgatcgatcatcatgcta": -8.537192, "tgactgatcgatcatcatgctag": -8.537192, "tgactgatcgatcatcatgctagc": -8.537192, "tgactgatcgatcatcatgctagct": -8.537192, "tgactgatcgatcatcatgctagcta": -8.537192, "tgactgatcgatcgatgctag": -8.537192, "tgactgatcgatcgatgctagc": -8.537192, "tgactgatcgatcgatgctagct": -8.537192, "tgactgatcgatcgatgctagcta": -8.537192, "tgactgatcgatcgatgctagctag": -8.537192, "tgatacgcgatgctagctag": -8.537192, "tgatcatcatcgatgctagct": -8.537192, "tgatcatcatcgatgctagcta": -8.537192, "tgatcatcatcgatgctagctag": -8.537192, "tgatcatcatcgatgctagctagt": -8.537192, "tgatcatcatcgatgctagctagta": -8.537192, "tgatcatcatcgatgctagctagtag": -8.537192, "tgatcatcatctactatcatcatcatc": -8.537192, "tgatcatcgatgctactagct": -8.537192, "tgatcatcgatgctactagcta": -8.537192, "tgatcatcgatgctactagctag": -8.537192, "tgatcgatcatcatgctagct": -8.537192, "tgatcgatcatcatgctagcta": -8.537192, "tgatcgatcatcatgctagctac": -8.537192, "tgatcgatcatcatgctagctact": -8.537192, "tgatcgatcatcatgctagctacta": -8.537192, "tgatcgatcatcatgctagctactag": -8.537192, "tgatcgatcgatgctagctag": -7.844045, "tgatcgatcgatgctagctagg": -8.537192, "tgatcgatcgatgctagctaggc": -8.537192, "tgatcgatcgatgctagctagt": -8.537192, "tgatcgatcgatgctagctagta": -8.537192, "tgatcgatcgatgctagctagtag": -8.537192, "tgatcgatcgatgtgcgg": -8.537192, "tgatcgatcgatgtgcggc": -8.537192, "tgatcgatcgatgtgcggct": -8.537192, "tgatcgatcgatgtgcggcta": -8.537192, "tgatcgatcgtagcggcg": -8.537192, "tgatcgatcgtagcggcga": -8.537192, "tgatgcatgctagtagtgatgt": -8.537192, "tgatgcatgctagtagtgatgta": -8.537192, "tgatgcatgctagtagtgatgtat": -8.537192, "tgatgcatgctagtagtgatgtata": -8.537192, "tgatgcatgctagtagtgatgtatac": -8.537192, "tgatgcatgctagtagtgatgtatacg": -8.537192, "tgcatgctagtagtgatgtatacg": -8.537192, "tgcatgctagtagtgatgtatacgt": -8.537192, "tgcatgctagtagtgatgtatacgta": -8.537192, "tgcatgctagtagtgatgtatacgtag": -8.537192, "tgcgcgatcgatgctagc": -8.537192, "tgcgcgatcgatgctagcta": -8.537192, "tgctagctaggcgatgct": -8.537192, "tgctagctaggcgatgcta": -8.537192, "tgctagctaggcgatgctag": -8.537192, "tgctagtagtgatgtatacgtagc": -8.537192, "tgctagtagtgatgtatacgtagct": -8.537192, "tgctagtagtgatgtatacgtagcta": -8.537192, "tgctagtagtgatgtatacgtagctag": -8.537192, "tgctagtgatgcatgctagt": -8.537192, "tgctagtgatgcatgctagta": -8.537192, "tgctagtgatgcatgctagtag": -8.537192, "tgctagtgatgcatgctagtagt": -8.537192, "tgctagtgatgcatgctagtagtg": -8.537192, "tgctagtgatgcatgctagtagtga": -8.537192, "tgctagtgatgcatgctagtagtgat": -8.537192, "ttagctagctgactgatcgatc": -8.537192, "ttagctagctgactgatcgatca": -8.537192, "ttagctagctgactgatcgatcat": -8.537192, "ttagctagctgactgatcgatcatc": -8.537192, "ttagctagctgactgatcgatcatca": -8.537192, "ttagctagctgactgatcgatcatcat": -8.537192, "tttagctagctgactgatcga": -8.537192, "tttagctagctgactgatcgat": -8.537192, "tttagctagctgactgatcgatc": -8.537192, "tttagctagctgactgatcgatca": -8.537192, "tttagctagctgactgatcgatcat": -8.537192, "tttagctagctgactgatcgatcatc": -8.537192, "tttagctagctgactgatcgatcatca": -8.537192, "vol.": -8.537192, "week": -8.537192, }, "Forth": map[string]float64{ "!": -4.000720, "#source": -7.689600, "#tib": -7.689600, "'": -6.773309, "(": -3.074479, ")": -4.450921, "*": -5.984852, "**": -7.689600, "**n": -8.382747, "+": -4.719185, ",": -3.339322, "-": -1.994186, ".": -6.080162, "...": -6.590988, ".r": -8.382747, ".s": -7.689600, "/": -6.436837, "//www.codekata.com/": -8.382747, "/code_kata_fifte.html": -8.382747, "0": -6.773309, "1": -6.080162, ":": -2.614426, ";": -2.975575, "<": -5.549534, "<#>": -6.773309, "<char>": -6.080162, "<chars>": -6.773309, "<destination>": -8.382747, "<opcode>": -8.382747, "<paren>": -6.590988, "<quote>": -5.610158, "<reg>": -7.284135, "<source>": -6.590988, "<string>": -7.689600, "=": -5.743690, ">": -3.629157, "?": -5.124651, "@": -4.511546, "@bits": -7.689600, "A": -6.773309, "ADJACENT": -7.284135, "ASSEMBLER": -7.689600, "Access": -8.382747, "Addressing": -7.689600, "Adds": -8.382747, "All": -8.382747, "Assembler": -8.382747, "B": -8.382747, "BE": -8.382747, "BEGIN": -7.284135, "BITS": -7.284135, "Bit": -8.382747, "Block": -7.689600, "Brinkhoff": -6.185523, "But": -8.382747, "C": -5.817798, "CD": -8.382747, "CODE": -7.284135, "CODE.": -7.689600, "Conventional": -8.382747, "Copyright": -6.185523, "Creates": -8.382747, "DEPTH": -7.689600, "DO": -8.382747, "DOES": -8.382747, "DROP": -6.996453, "DUP": -5.984852, "Define": -8.382747, "Double": -8.382747, "E": -7.689600, "EB": -8.382747, "ELSE": -6.436837, "EMPTY": -8.382747, "END": -8.382747, "ENUM.": -8.382747, "F": -6.185523, "FA": -8.382747, "FB": -8.382747, "FC": -8.382747, "FD": -8.382747, "FE": -8.382747, "FF": -6.773309, "FORTH": -8.382747, "Forth": -6.996453, "HELLO": -6.996453, "HOW": -8.382747, "I": -6.773309, "IF": -6.436837, "INVERT": -8.382747, "If": -6.773309, "Implements": -7.689600, "Instruction": -7.689600, "KataDiversion": -8.382747, "Kernel": -6.773309, "LOG": -8.382747, "LOOP": -8.382747, "Lars": -6.185523, "MANY": -8.382747, "MAX": -7.689600, "MAXPOW": -7.689600, "N": -6.590988, "N.": -8.382747, "NB": -7.284135, "NIP": -7.284135, "NOT": -7.284135, "OR": -8.382747, "OVER": -8.382747, "Process": -8.382747, "R": -6.080162, "Register": -8.382747, "Runtime": -8.382747, "SIB": -8.382747, "SP": -8.382747, "SWAP": -6.436837, "Set": -7.689600, "Simplifies": -8.382747, "Standard": -8.382747, "THEN": -6.185523, "TODO": -5.204693, "TWO": -7.284135, "Todo": -8.382747, "Tools": -6.996453, "UNTIL": -7.284135, "Usage": -8.382747, "Write": -8.382747, "X": -6.773309, "[": -4.450921, "\\": -3.007469, "]": -4.431503, "a": -6.590988, "abort": -5.674697, "abs": -6.773309, "accept": -6.773309, "action": -8.382747, "adc": -8.382747, "add": -8.382747, "addr": -5.247253, "address": -8.382747, "addressing": -8.382747, "adjacent": -7.689600, "ah": -8.382747, "ahead": -6.080162, "al": -8.382747, "algorithm": -8.382747, "align": -6.590988, "allot": -5.984852, "also": -7.689600, "alu": -6.436837, "and": -5.984852, "arrays.": -8.382747, "asm": -7.689600, "assembler": -6.590988, "ax": -8.382747, "bar": -8.382747, "base": -8.382747, "be": -7.689600, "begin": -5.984852, "below": -8.382747, "bh": -8.382747, "bit": -7.284135, "bit@": -8.382747, "bitmap": -8.382747, "bits": -6.303306, "bits.": -8.382747, "bl": -5.492375, "blk": -7.284135, "block": -6.303306, "body": -8.382747, "bounds": -8.382747, "bp": -8.382747, "branch": -5.163871, "buffer": -7.689600, "buffers": -7.689600, "bx": -8.382747, "bye": -7.689600, "byte.": -8.382747, "c": -5.015451, "c@": -6.080162, "call": -7.689600, "can": -7.689600, "cell": -7.284135, "cells": -6.773309, "ch": -8.382747, "char": -4.621547, "chars": -6.080162, "cl": -8.382747, "clc": -8.382747, "cld": -8.382747, "cli": -8.382747, "cmc": -8.382747, "cmove": -6.590988, "cmp": -8.382747, "code": -5.549534, "codes.": -8.382747, "compile": -6.590988, "compiling": -8.382747, "compute": -8.382747, "condition": -8.382747, "constant": -6.590988, "core": -8.382747, "cr": -5.897840, "create": -5.984852, "cs": -6.996453, "csp": -8.382747, "current": -6.773309, "cx": -8.382747, "d": -6.590988, "dec": -8.382747, "defer": -7.284135, "defined": -7.284135, "definitions": -7.689600, "depth": -7.689600, "dh": -8.382747, "di": -8.382747, "dictionary": -7.689600, "direct": -7.689600, "direct.": -8.382747, "disp": -6.185523, "displaced": -8.382747, "displacement": -8.382747, "dl": -8.382747, "do": -8.382747, "dodoes_code": -6.773309, "does": -4.948760, "drop": -5.387015, "ds": -6.185523, "dup": -4.771829, "dx": -8.382747, "e.g.": -7.689600, "eax": -8.382747, "ebp": -8.382747, "ebx": -8.382747, "ecx": -8.382747, "edi": -8.382747, "editor": -7.689600, "edx": -8.382747, "else": -5.387015, "elsewhere.": -8.382747, "emit": -7.284135, "empty": -7.689600, "end": -8.382747, "entry": -8.382747, "enum": -7.689600, "esi": -8.382747, "esp": -8.382747, "evaluate": -8.382747, "except": -8.382747, "execute": -6.590988, "extended": -7.284135, "extension": -6.590988, "f": -8.382747, "false": -8.382747, "find": -6.436837, "flag": -6.773309, "flush": -8.382747, "following": -8.382747, "foo": -7.689600, "for": -7.689600, "forget": -7.689600, "format": -6.303306, "formats.": -7.689600, "forth": -6.996453, "fs": -8.382747, "given": -7.284135, "gs": -8.382747, "h": -8.382747, "has": -8.382747, "have": -7.689600, "header": -8.382747, "here": -4.621547, "highest": -8.382747, "hlt": -8.382747, "http": -8.382747, "i": -6.996453, "i*": -8.382747, "if": -5.015451, "image.": -8.382747, "imm": -5.387015, "immediate": -3.748018, "in": -6.080162, "inc": -8.382747, "indexed": -7.689600, "indirect": -6.996453, "indirect.": -8.382747, "input": -7.689600, "instruction": -7.284135, "int": -8.382747, "interpret": -8.382747, "invert": -7.689600, "is": -6.080162, "jcc": -8.382747, "jmp": -7.284135, "keep": -6.773309, "kernel": -7.689600, "lastxt": -5.610158, "less": -8.382747, "lib/common.fth": -8.382747, "list": -8.382747, "literal": -5.387015, "load": -8.382747, "lock": -8.382747, "loop": -7.284135, "lshift": -7.689600, "made": -7.689600, "maximum": -8.382747, "memory.": -8.382747, "mnemonic": -8.382747, "mnemonics.": -8.382747, "mod": -8.382747, "mode": -8.382747, "modes": -7.689600, "mov": -6.773309, "movsx": -8.382747, "movzx": -8.382747, "mrrm": -5.674697, "n": -4.431503, "n*x": -8.382747, "n1": -6.773309, "n2": -6.773309, "name": -7.689600, "names.": -8.382747, "necessary": -6.773309, "neg": -8.382747, "negate": -6.080162, "nip": -6.436837, "noname": -8.382747, "nonimmediate": -6.773309, "nop": -7.284135, "not": -7.284135, "nr": -7.689600, "number": -6.996453, "numbers": -8.382747, "of": -6.996453, "off": -6.773309, "one": -8.382747, "only": -8.382747, "op": -4.511546, "opcode": -5.897840, "opcodes.": -8.382747, "operand": -8.382747, "operand.": -8.382747, "operands": -8.382747, "opsize": -6.590988, "or": -8.382747, "other": -8.382747, "over": -5.549534, "pad": -5.674697, "parse": -5.492375, "parsing.": -6.773309, "parts": -8.382747, "pick": -7.689600, "picture": -8.382747, "points.": -8.382747, "pop": -8.382747, "postpone": -4.223864, "postponers": -6.773309, "power": -7.689600, "prefix": -8.382747, "previous": -8.382747, "push": -6.996453, "query": -8.382747, "r": -4.771829, "r/m": -7.689600, "r@": -6.590988, "recurse": -6.773309, "refill": -6.590988, "reg": -5.050543, "reg@": -8.382747, "register": -7.689600, "rel": -8.382747, "relative": -8.382747, "rep": -8.382747, "repeat": -6.080162, "repz": -8.382747, "require": -7.689600, "resolve": -5.387015, "restore": -8.382747, "ret": -8.382747, "return": -6.773309, "reveal": -7.284135, "rm": -6.185523, "rm@": -7.284135, "roll": -7.689600, "rot": -7.284135, "rshift": -7.284135, "s": -5.743690, "save": -7.689600, "scr": -7.689600, "search.fth": -8.382747, "see": -8.382747, "semantics": -7.284135, "si": -8.382747, "sib": -6.773309, "simpler.": -8.382747, "size.": -8.382747, "source": -5.897840, "sp": -7.689600, "stack": -6.996453, "start": -7.689600, "state": -6.436837, "stc": -8.382747, "std": -8.382747, "sti": -8.382747, "string": -5.674697, "sub": -8.382747, "supported": -8.382747, "swap": -4.771829, "synonym": -7.689600, "syntax": -7.689600, "target": -8.382747, "test": -6.996453, "the": -6.185523, "then": -5.291705, "this": -8.382747, "thru": -8.382747, "tib": -8.382747, "to": -6.773309, "tools": -7.689600, "traverse": -7.689600, "true": -8.382747, "tuck": -8.382747, "two": -7.689600, "twobyte": -7.689600, "type": -6.303306, "u": -6.436837, "u.r": -8.382747, "undefined": -6.996453, "unresolved": -5.387015, "until": -6.773309, "unused": -8.382747, "update": -8.382747, "uses": -8.382747, "value": -8.382747, "variable": -7.284135, "vocabulary": -7.284135, "which": -7.284135, "while": -6.080162, "with": -6.996453, "within": -8.382747, "word": -5.163871, "words.": -6.080162, "x": -5.291705, "xor": -8.382747, "xt": -8.382747, "y": -7.284135, "yet": -8.382747, "|": -6.996453, "…": -8.382747, }, "Fortran": map[string]float64{ "!": -5.429346, "(": -2.433613, ")": -2.433613, "*": -4.043051, ",": -2.864396, "-": -4.043051, "/": -4.330733, "/src_": -5.429346, "=": -4.043051, "C": -5.429346, "CALL": -5.429346, "COMPLEX": -5.429346, "Codes/HYCOM/hycom/ATLb": -5.429346, "DOUBLE": -5.429346, "END": -4.043051, "FUNCTION": -5.429346, "IF": -4.736198, "INTEGER": -4.043051, "LOGICAL": -4.043051, "MAIN": -5.429346, "PROGRAM": -5.429346, "REAL": -4.043051, "RETURN": -4.736198, "SUBROUTINE": -5.429346, "THEN": -5.429346, "_": -5.429346, "_one/": -5.429346, "b": -3.349904, "bar": -4.043051, "baz": -3.349904, "c": -4.330733, "call": -4.330733, "comment": -3.349904, "complex": -4.330733, "d": -3.349904, "data": -4.330733, "double": -4.330733, "e": -5.429346, "end": -2.864396, "foo": -4.043051, "function": -4.330733, "i": -2.944439, "i.NE.": -5.429346, "i.ne.": -4.330733, "if": -3.637586, "main": -4.330733, "onemu": -5.429346, "onemu/": -5.429346, "program": -4.330733, "real": -5.429346, "return": -3.637586, "subroutine": -4.330733, "then": -4.330733, "threemu/": -5.429346, "twomu": -5.429346, "twomu/": -5.429346, "x": -3.349904, }, "FreeMarker": map[string]float64{ "$": -3.718438, ",": -5.327876, "-": -3.718438, ".now": -5.327876, ".version": -5.327876, "/": -3.536117, "0": -5.327876, ":": -4.634729, "<!doctype>": -5.327876, "<#--->": -5.327876, "<#-->": -5.327876, "<#assign>": -5.327876, "<#compress>": -5.327876, "<#else>": -5.327876, "<#ftl>": -5.327876, "<#if>": -5.327876, "<#import>": -5.327876, "<#list>": -5.327876, "<#macro>": -3.941582, "<#nested>": -5.327876, "</#compress>": -5.327876, "</#if>": -5.327876, "</#list>": -5.327876, "</#macro>": -3.941582, "</@layout.page>": -5.327876, "</body>": -5.327876, "</head>": -5.327876, "</html>": -5.327876, "</li>": -5.327876, "</p>": -4.634729, "</strong>": -5.327876, "</title>": -5.327876, "</ul>": -5.327876, "<@currentTime>": -5.327876, "<@footer>": -5.327876, "<@layout.page>": -5.327876, "<@metaTags>": -5.327876, "<body>": -5.327876, "<head>": -5.327876, "<html>": -5.327876, "<li>": -5.327876, "<meta>": -3.941582, "<p>": -4.634729, "<strong>": -5.327876, "<title>": -5.327876, "<ul>": -5.327876, "=": -2.762927, ">": -2.236834, "?": -4.634729, "Default": -4.634729, "Example": -4.634729, "FreeMarker": -4.229264, "Lorem": -5.327876, "Result": -5.327876, "There": -5.327876, "This": -4.634729, "[": -5.327876, "]": -5.327876, "a": -4.634729, "amet": -5.327876, "as": -3.941582, "charset": -5.327876, "comment": -4.634729, "content": -4.229264, "content=": -4.229264, "currentTime": -5.327876, "description": -5.327876, "dictum": -5.327876, "dolor": -5.327876, "equiv": -5.327876, "footer": -5.327876, "html": -5.327876, "http": -5.327876, "id": -5.327876, "in": -5.327876, "ipsum": -5.327876, "is": -4.229264, "lang": -5.327876, "layout": -4.634729, "libero": -5.327876, "meta": -4.634729, "metaTags": -5.327876, "name": -4.634729, "no": -5.327876, "page": -4.634729, "pede": -5.327876, "pellentesque": -5.327876, "result": -4.634729, "result.description": -5.327876, "result.title": -5.327876, "results": -4.229264, "results.": -5.327876, "sed": -4.229264, "sit": -5.327876, "size": -5.327876, "sollicitudin": -5.327876, "string.full": -5.327876, "strip_text": -5.327876, "tags": -4.634729, "title": -3.718438, "true": -5.327876, "turpis": -5.327876, "using": -5.327876, "v": -5.327876, "were": -5.327876, "{": -3.536117, "}": -3.536117, }, "Frege": map[string]float64{ "!": -6.375025, "#": -8.454466, "$": -8.454466, "&&": -7.761319, "(": -3.391871, ")": -3.348521, "*": -6.845028, "*n": -8.454466, "+": -3.718268, ",": -3.753986, "-": -4.360122, ".": -5.621253, "..": -8.454466, ".long": -8.454466, "1": -5.815409, "100000": -7.761319, "120L": -8.454466, "160L": -8.454466, "2": -6.151881, "20": -8.454466, "3": -6.151881, "300L": -7.761319, "4": -6.257242, "5": -8.454466, "60L": -8.454466, "8": -8.454466, "80L": -8.454466, "9": -7.355854, ":": -4.072440, "<": -7.355854, "<->": -4.899118, "<~>": -8.454466, "=": -3.218024, ">": -4.023650, "A": -6.508556, "ALL": -7.761319, "ActionListener": -7.761319, "ActionListener.new": -7.761319, "Apply": -8.454466, "Assumption": -5.409944, "Assumption.show": -8.454466, "B": -7.068172, "BE": -8.454466, "Bool": -7.761319, "Brett": -5.969560, "BufferedReader": -7.761319, "Button": -8.454466, "C": -6.845028, "Celsius": -7.761319, "CelsiusConverterGUI": -8.454466, "CelsiusConverterProject": -8.454466, "Control.Concurrent": -8.454466, "Convert": -8.454466, "Converter": -8.454466, "DL": -8.454466, "Data.List": -8.454466, "Data.TreeMap": -8.454466, "Date": -7.355854, "Date.new": -8.454466, "Demo": -8.454466, "Disable": -8.454466, "Element": -6.662707, "Enable": -8.454466, "Encoded": -8.454466, "Eq": -8.454466, "FIRST": -8.454466, "FOR": -6.056571, "Feld": -7.355854, "Fish": -8.454466, "For": -7.761319, "Frege": -7.355854, "GroupLayout": -8.454466, "HIDDEN": -7.761319, "Haskell": -8.454466, "Hello": -7.761319, "Hit": -8.454466, "IMPLIES": -8.454466, "IN": -6.257242, "IO": -5.969560, "IS": -5.681878, "ISNOT": -5.815409, "InputStream": -8.454466, "InputStreamReader": -7.761319, "InputStreamReader.new": -8.454466, "Int": -6.508556, "InterruptedException": -7.355854, "JButton": -6.508556, "JFrame": -6.662707, "JLabel": -7.355854, "JPanel": -8.454466, "JTextField": -8.454466, "Java": -8.454466, "Java.Awt": -8.454466, "Java.Net": -8.454466, "Java.Swing": -8.454466, "Jellyfish": -7.761319, "Just": -7.761319, "Kant": -8.454466, "LET": -8.454466, "Lang": -8.454466, "Left": -7.068172, "List": -8.454466, "Locke": -8.454466, "Long": -7.355854, "MVar": -6.845028, "MVar.new": -8.454466, "MVar.newEmpty": -8.454466, "Middle": -8.454466, "Mises": -8.454466, "Mutable": -8.454466, "MutableIO": -8.454466, "N": -6.845028, "NAKED": -7.761319, "Nothing": -7.761319, "Nozick": -8.454466, "OR": -6.508556, "Ord": -8.454466, "PAIRS": -7.761319, "Position": -5.318972, "QUADS": -7.761319, "Random": -7.761319, "Random.newStdGen": -8.454466, "Random.randomR": -7.761319, "Right": -6.845028, "Runnable": -8.454466, "Runnable.new": -8.454466, "S": -7.761319, "SELECT": -7.355854, "SINGLE": -8.454466, "SINGLEs": -8.454466, "SOLVE": -8.454466, "SOLVING": -8.454466, "ST": -8.454466, "STRATEGIES": -8.454466, "SUDOKU": -8.454466, "Show": -8.454466, "Solved": -8.454466, "SomeException": -7.761319, "Strategy": -8.454466, "String": -6.056571, "SwingConstants": -6.662707, "Swordfish": -7.761319, "System.Random": -8.454466, "THE": -8.454466, "TODO": -8.454466, "TRIPLES": -7.761319, "Therefore": -8.454466, "This": -7.761319, "Thread": -7.761319, "Thread.sleep": -7.068172, "Throwable": -8.454466, "Tree": -6.845028, "Tree.fromList": -8.454466, "URL": -8.454466, "URL.new": -8.454466, "UTF": -8.454466, "UnsupportedEncodingException": -8.454466, "W": -8.454466, "WHERE": -7.761319, "When": -7.761319, "Wing": -7.355854, "Wittgenstein": -8.454466, "World": -7.761319, "X": -6.662707, "XY": -8.454466, "Y": -7.068172, "Z": -6.845028, "Zelle": -6.375025, "[": -4.047747, "\\": -7.068172, "]": -4.097758, "^": -8.454466, "_": -4.604319, "`": -4.928106, "a": -3.921867, "a*": -8.454466, "a0": -8.454466, "a1": -8.454466, "a2": -8.454466, "a=": -7.355854, "aPos": -6.845028, "acht": -7.068172, "acst": -7.355854, "acstree": -7.355854, "action": -7.761319, "action1": -7.761319, "action3": -8.454466, "add": -8.454466, "addActionListener": -7.761319, "ai": -7.761319, "all": -5.815409, "allboxs": -6.508556, "allcols": -6.662707, "allrcb": -6.845028, "allrows": -6.257242, "already": -8.454466, "alter": -8.454466, "an": -6.662707, "and": -6.151881, "any": -7.068172, "anymore": -8.454466, "anything": -8.454466, "appears": -8.454466, "applied": -8.454466, "apply": -5.196370, "are": -6.662707, "args": -7.761319, "argument": -8.454466, "as": -5.087171, "ass": -7.761319, "assumption": -6.375025, "assumptions": -6.375025, "at": -8.454466, "available": -8.454466, "avoid": -8.454466, "b": -3.457254, "b*": -8.454466, "b1": -6.151881, "b2": -6.257242, "b3": -6.662707, "be": -6.257242, "because": -8.454466, "board": -4.790905, "box": -5.681878, "boxmuster": -7.355854, "boxstarts": -7.355854, "br": -7.068172, "brd": -7.761319, "bs": -6.257242, "but": -7.761319, "button": -7.355854, "buttonDemoGUI": -7.355854, "c": -4.870947, "c*": -8.454466, "c0": -8.454466, "c1": -7.355854, "c2": -7.355854, "can": -6.662707, "candi": -7.761319, "candidate": -6.508556, "candidates": -5.815409, "cannot": -8.454466, "case": -6.508556, "catch": -7.761319, "catchAll": -7.355854, "cell": -5.235591, "cellRegionChain": -7.761319, "cellas": -7.761319, "cells": -8.454466, "celsius": -7.355854, "celsiusConverterGUI": -7.355854, "celsiusLabel": -7.761319, "center": -7.355854, "certain": -8.454466, "chain": -7.761319, "chainContra": -7.761319, "chains": -7.355854, "changed": -8.454466, "changes": -8.454466, "charset": -7.068172, "check": -8.454466, "chr": -7.761319, "ci": -7.355854, "cname": -7.355854, "code": -8.454466, "col": -5.458734, "collect": -8.454466, "cols": -7.068172, "colss": -7.355854, "colstarts": -7.355854, "columns": -7.761319, "com": -6.662707, "comment": -8.454466, "common": -7.355854, "comparing": -7.761319, "compute": -8.454466, "con": -6.508556, "concat": -8.454466, "concatMap": -8.454466, "conclusion": -7.355854, "conclusions": -7.761319, "confine": -8.454466, "conlusions": -8.454466, "connect": -8.454466, "conseq": -7.355854, "consequences": -6.662707, "consider": -7.355854, "conslusion": -8.454466, "construct": -7.761319, "container": -6.151881, "containername": -8.454466, "containers": -6.662707, "contains": -8.454466, "content": -8.454466, "contentPane": -7.355854, "continue": -8.454466, "contra": -7.068172, "contradict": -7.761319, "contradictory": -7.761319, "contradicts": -6.508556, "convertButton": -7.761319, "convertButton.addActionListener": -8.454466, "convertButtonActionPerformed": -7.761319, "cp": -7.068172, "cpos": -6.508556, "cs": -5.087171, "css": -6.375025, "cstart": -7.761319, "ctyp": -7.761319, "current": -7.355854, "d": -7.761319, "d.toString": -8.454466, "data": -7.761319, "decode": -7.068172, "defined": -8.454466, "derive": -7.761319, "digit": -8.454466, "dining": -8.454466, "displayCode": -8.454466, "dispose_on_close": -7.355854, "div": -7.355854, "do": -4.740894, "docs": -7.761319, "does": -7.761319, "double": -8.454466, "doubt": -8.454466, "e": -5.746416, "e.show": -7.761319, "eT": -7.068172, "each": -7.761319, "eatTime": -7.068172, "either": -8.454466, "elem": -5.564095, "elements": -6.151881, "eliminate": -8.454466, "else": -8.454466, "empty": -7.068172, "end": -8.454466, "enter": -8.454466, "error": -7.761319, "exactly": -8.454466, "example": -8.454466, "example1": -8.454466, "example2": -8.454466, "examples": -8.454466, "examples.CommandLineClock": -8.454466, "examples.Concurrent": -8.454466, "examples.Sudoku": -8.454466, "examples.SwingExamples": -8.454466, "exists": -6.662707, "expandchain": -7.761319, "f": -5.318972, "fahrenheitLabel": -8.454466, "fahrenheitLabel.setText": -7.355854, "false": -5.746416, "felder": -7.761319, "field": -7.355854, "fields": -6.845028, "file": -7.355854, "files": -7.761319, "filter": -5.122262, "final": -7.761319, "find": -6.845028, "finds": -8.454466, "first": -7.761319, "fish": -6.662707, "fishname": -6.845028, "fl": -6.845028, "fold": -6.508556, "foldM": -7.355854, "for": -5.458734, "forM_": -8.454466, "forever": -8.454466, "fork": -5.681878, "fork1": -7.761319, "fork2": -7.761319, "fork3": -7.761319, "fork4": -7.761319, "fork5": -7.761319, "forkIO": -5.621253, "form": -8.454466, "fr": -7.355854, "frame": -5.969560, "frame.getContentPane": -8.454466, "frame.pack": -8.454466, "frame.setContentPane": -8.454466, "frame.setVisible": -8.454466, "frege": -8.454466, "from": -6.508556, "fromMaybe": -8.454466, "fs": -5.318972, "fst": -5.969560, "functions": -7.761319, "g": -6.056571, "g1": -7.761319, "g2": -8.454466, "get": -7.761319, "getContentPane": -8.454466, "getContentType": -8.454466, "getInputStream": -8.454466, "getLine": -7.761319, "getLines": -7.761319, "getText": -8.454466, "getURL": -7.068172, "getc": -5.969560, "getf": -5.621253, "give": -8.454466, "go": -8.454466, "going": -8.454466, "got": -8.454466, "happen": -8.454466, "have": -8.454466, "head": -5.564095, "helloWorldGUI": -7.355854, "hidden": -8.454466, "hiddenPair": -7.761319, "hiddenSingle": -7.761319, "hiding": -8.454466, "his": -8.454466, "hit": -6.151881, "html": -8.454466, "htto": -8.454466, "http": -7.068172, "i": -5.681878, "if": -7.068172, "immediate": -8.454466, "impl": -7.761319, "implication": -7.355854, "implications": -6.845028, "implies": -8.454466, "impls": -7.761319, "import": -6.508556, "in": -5.564095, "indeed": -8.454466, "index": -7.761319, "ine": -7.761319, "instance": -8.454466, "inter": -7.355854, "intersection": -7.068172, "intersectionlist": -7.355854, "intersections": -7.355854, "into": -8.454466, "invokeLater": -7.761319, "ir": -7.761319, "is": -5.815409, "iss": -7.355854, "it": -8.454466, "iterate": -8.454466, "java": -7.068172, "java.util.Date": -8.454466, "javase": -7.761319, "joined": -7.068172, "keys": -7.761319, "label": -7.761319, "lang": -7.761319, "layout": -7.355854, "leading": -7.355854, "leads": -8.454466, "learn": -7.761319, "least": -8.454466, "left": -7.355854, "left.put": -7.761319, "length": -5.564095, "let": -6.257242, "line": -7.355854, "lines": -7.355854, "list": -7.355854, "located": -7.761319, "log": -8.454466, "logs": -8.454466, "long": -7.068172, "look": -6.151881, "loops": -8.454466, "m": -6.257242, "m.group": -8.454466, "m.put": -7.355854, "m1": -7.761319, "m2": -7.355854, "m3": -7.355854, "main": -5.969560, "mainPhil": -7.761319, "map": -4.522641, "mapM": -7.355854, "mapM_": -6.845028, "may": -8.454466, "me": -5.815409, "middle": -7.761319, "millis": -8.454466, "minus": -7.355854, "mkPaths": -7.068172, "mkrow": -6.845028, "mod": -7.355854, "module": -7.761319, "more": -7.761319, "msg": -6.508556, "must": -7.068172, "n": -4.625825, "naked": -8.454466, "nakedPair": -7.761319, "name": -7.761319, "native": -7.068172, "nc": -6.845028, "neun": -7.761319, "new": -5.510027, "newContentPane": -7.761319, "newContentPane.add": -7.355854, "newContentPane.setOpaque": -8.454466, "newEmpty": -7.761319, "newEmptyMVar": -8.454466, "newb": -6.508556, "next": -8.454466, "nf": -7.761319, "nm": -6.662707, "no": -7.761319, "non": -8.454466, "not": -6.662707, "notElem": -6.508556, "nothing": -7.761319, "ns": -7.761319, "null": -8.454466, "number": -7.068172, "numbers": -8.454466, "occurences": -8.454466, "occurs": -7.068172, "of": -5.276413, "off": -5.815409, "on": -8.454466, "one": -8.454466, "only": -8.454466, "openConnection": -8.454466, "openReader": -8.454466, "or": -6.508556, "oracle": -7.761319, "ord": -6.662707, "org": -7.355854, "os": -7.355854, "oss": -7.761319, "other": -7.761319, "otherwise": -6.151881, "ourselves": -8.454466, "outof": -6.257242, "p": -4.085019, "p0": -8.454466, "p1=": -8.454466, "p=": -8.454466, "pack": -7.761319, "package": -7.761319, "packed": -8.454466, "particular": -8.454466, "passing": -8.454466, "paths": -5.815409, "per": -8.454466, "performance": -8.454466, "pfld": -7.068172, "phil": -6.845028, "philosopher": -5.889517, "pi": -8.454466, "pi=": -8.454466, "place": -8.454466, "pname": -6.508556, "poll": -8.454466, "pos": -6.662707, "position": -8.454466, "positions": -6.257242, "print": -6.662707, "printb": -7.355854, "println": -5.276413, "pro": -6.375025, "process": -6.845028, "ps": -6.151881, "public": -8.454466, "put": -6.662707, "putChar": -7.761319, "putStrLn": -8.454466, "quot": -8.454466, "r": -6.662707, "r1": -7.761319, "r2": -7.761319, "r3": -7.355854, "rFork": -7.761319, "randomR": -7.761319, "rcb": -5.681878, "rcba": -6.845028, "reason": -6.151881, "reasoning": -8.454466, "reduce": -7.068172, "region": -7.761319, "regionas": -7.761319, "remove": -7.355854, "repeat": -7.355854, "replicateM_": -7.068172, "res": -5.122262, "res@": -6.257242, "reson": -8.454466, "resons": -8.454466, "result": -6.056571, "return": -5.681878, "returns": -7.761319, "reverse": -7.068172, "rflds": -7.761319, "ri": -7.761319, "right": -7.761319, "right.put": -8.454466, "room": -8.454466, "row": -5.409944, "rows": -7.355854, "rowstarts": -7.068172, "rs": -7.355854, "rset": -7.068172, "s": -5.458734, "s@#": -8.454466, "same": -6.662707, "seat": -8.454466, "select": -8.454466, "set": -7.761319, "setDefaultCloseOperation": -7.355854, "setEnabled": -6.508556, "setHorizontalTextPosition": -7.355854, "setLayout": -8.454466, "setReminder": -7.355854, "setText": -7.761319, "setTitle": -8.454466, "setVerticalTextPosition": -7.355854, "setVisible": -7.761319, "sets": -8.454466, "setto": -7.068172, "share": -8.454466, "shares": -7.761319, "show": -5.318972, "showcs": -6.845028, "since": -8.454466, "single": -6.257242, "sleep": -7.068172, "snd": -5.363424, "so": -8.454466, "solution": -6.662707, "solvable": -8.454466, "solve": -5.889517, "some": -8.454466, "sort": -7.068172, "sortBy": -7.761319, "src": -8.454466, "ss": -6.375025, "sss": -7.068172, "static": -8.454466, "stderr": -7.355854, "stderr.println": -7.355854, "stdout.flush": -8.454466, "strategies": -8.454466, "strategy": -7.761319, "string": -8.454466, "subset": -7.355854, "sudoku": -7.761319, "sum": -7.761319, "supposed": -8.454466, "t": -5.564095, "t.lookup": -8.454466, "tT": -7.068172, "table": -8.454466, "table.notifyAll": -7.761319, "table.wait": -8.454466, "tail": -7.761319, "take": -5.458734, "takeUntil": -8.454466, "takes": -7.355854, "tempTextField": -7.761319, "than": -7.761319, "that": -5.889517, "the": -6.508556, "themself": -8.454466, "then": -8.454466, "there": -6.662707, "thinkTime": -7.068172, "this": -7.761319, "those": -7.761319, "throw": -8.454466, "throws": -7.355854, "to": -6.257242, "toClear": -6.508556, "toString": -7.761319, "toh": -7.068172, "tried": -8.454466, "true": -5.681878, "tuple": -7.355854, "tuples": -7.761319, "turn": -8.454466, "turned": -8.454466, "turnoff": -5.621253, "turnoff1": -8.454466, "turnoffh": -7.761319, "tutorial": -7.761319, "two": -8.454466, "typ": -6.662707, "type": -6.375025, "u": -6.662707, "uiswing": -8.454466, "undefined": -7.761319, "uni": -7.355854, "union": -6.151881, "uniq": -7.068172, "uniqBy": -7.761319, "unknown": -8.454466, "unpacked": -7.761319, "unsolved": -6.151881, "unsupportedEncoding": -7.355854, "until": -8.454466, "up": -8.454466, "url": -7.761319, "using": -7.761319, "void": -7.761319, "we": -6.845028, "when": -7.761319, "where": -4.899118, "which": -7.761319, "whose": -8.454466, "wiki": -7.355854, "wikipedia": -7.355854, "will": -7.068172, "with": -5.815409, "without": -8.454466, "www": -7.355854, "x": -4.765587, "x.catched": -8.454466, "x.getClass.getName": -8.454466, "x=": -7.761319, "xs": -7.068172, "xx": -7.355854, "xyWing": -7.761319, "y": -5.815409, "yields": -8.454466, "z": -5.889517, "z..": -8.454466, "zip": -6.508556, "zs": -8.454466, "{": -8.454466, "|": -4.843548, "}": -8.454466, "~": -8.454466, "´": -7.761319, "•": -6.508556, }, "G-code": map[string]float64{ "(": -4.955827, ")": -4.955827, "-": -4.955827, ";": -2.876386, "Absolute": -4.955827, "Board": -4.955827, "Debug": -4.955827, "E": -3.857215, "Extruder": -4.955827, "Extrusion": -4.955827, "F": -3.346389, "G": -1.292265, "GCodes": -4.955827, "M": -1.911305, "Motor": -4.955827, "Ormerod": -4.955827, "P": -2.011388, "RepRapPro": -4.955827, "S": -3.346389, "T": -4.262680, "X": -2.758602, "Y": -2.758602, "Z": -3.857215, "currents": -4.955827, "mA": -4.955827, "mm": -4.955827, "on": -4.955827, "positioning": -4.955827, "relative": -4.955827, "test": -4.955827, }, "GAMS": map[string]float64{ "#user": -6.013715, "$": -4.404277, "'": -6.013715, "(": -2.922673, ")": -2.922673, "*": -6.013715, "*Basic": -6.013715, "*x": -6.013715, ",": -2.681511, "-": -4.221956, "..": -4.915103, "/": -3.615820, "/all/": -6.013715, ":": -4.915103, ";": -3.305665, "=": -3.934274, "A": -4.915103, "B": -6.013715, "Basic": -5.320568, "California": -6.013715, "Chapter": -5.320568, "City": -6.013715, "Dantzig": -6.013715, "Description": -6.013715, "Display": -6.013715, "E": -6.013715, "Equations": -6.013715, "Extensions.": -6.013715, "Featured": -4.627421, "G": -6.013715, "GAMS": -4.404277, "Guide.": -6.013715, "In": -5.320568, "Jersey": -6.013715, "Linear": -6.013715, "Main": -6.013715, "Model": -6.013715, "New": -6.013715, "Offtext": -6.013715, "Ontext": -6.013715, "Parameter": -6.013715, "Parameters": -6.013715, "Positive": -6.013715, "Press": -5.320568, "Princeton": -5.320568, "Problem": -6.013715, "Programming": -6.013715, "R": -6.013715, "Redwood": -6.013715, "Rosenthal": -6.013715, "SEQ": -6.013715, "Scalar": -6.013715, "Scientific": -6.013715, "Sets": -6.013715, "Solve": -6.013715, "TRNSPORT": -6.013715, "Table": -6.013715, "The": -5.320568, "This": -5.320568, "Title": -6.013715, "Transportation": -6.013715, "Trnsport": -6.013715, "Tutorial.": -6.013715, "University": -6.013715, "User": -6.013715, "Variable": -6.013715, "Variables": -6.013715, "a": -4.915103, "and": -5.320568, "at": -4.404277, "b": -5.320568, "because": -6.013715, "book": -6.013715, "c": -4.915103, "canning": -6.013715, "capacity": -6.013715, "case": -5.320568, "cases": -4.915103, "chicago": -4.915103, "comments.": -6.013715, "cost": -4.627421, "costs": -6.013715, "d": -5.320568, "define": -6.013715, "demand": -4.627421, "described": -6.013715, "detail": -6.013715, "diego": -4.915103, "distance": -6.013715, "dollars": -4.915103, "e": -6.013715, "example": -5.320568, "f": -5.320568, "factories.": -6.013715, "finds": -6.013715, "formulation": -6.013715, "freight": -6.013715, "from": -5.320568, "function": -6.013715, "g": -6.013715, "i": -3.123343, "in": -3.711130, "is": -6.013715, "item": -4.627421, "j": -3.123343, "l": -6.013715, "least": -6.013715, "library": -4.915103, "limit": -6.013715, "line": -6.013715, "lp": -6.013715, "market": -5.320568, "markets": -5.320568, "match": -6.013715, "meets": -6.013715, "miles": -5.320568, "minimizing": -6.013715, "model": -4.221956, "new": -4.915103, "not": -6.013715, "numbers": -6.013715, "objective": -6.013715, "observe": -6.013715, "of": -4.067805, "offtext": -6.013715, "ontext": -6.013715, "per": -4.915103, "plant": -5.320568, "plants": -6.013715, "problem": -6.013715, "quantities": -6.013715, "requirements": -6.013715, "s": -6.013715, "san": -4.915103, "satisfy": -6.013715, "schedule": -6.013715, "seattle": -4.915103, "shipment": -6.013715, "shipping": -6.013715, "stuff": -6.013715, "sum": -4.915103, "supplies": -6.013715, "supply": -4.915103, "that": -6.013715, "the": -6.013715, "these": -6.013715, "those": -6.013715, "thousand": -6.013715, "thousands": -4.915103, "topeka": -4.915103, "topic": -6.013715, "total": -6.013715, "transport": -4.404277, "transportation": -6.013715, "using": -6.013715, "will": -6.013715, "x": -4.627421, "x.l": -6.013715, "x.m": -6.013715, "york": -4.915103, "z": -4.915103, }, "GAP": map[string]float64{ "!": -4.018349, "#": -2.518110, "###": -6.404815, "############################################################################": -5.066530, "#A": -7.231494, "#AcceptDate": -9.177404, "#C": -7.231494, "#CommunicatedBy": -9.177404, "#E": -8.484257, "#F": -6.344191, "#Info": -9.177404, "#M": -6.181672, "#O": -8.484257, "#P": -9.177404, "#Print": -9.177404, "#R": -9.177404, "#T": -7.385644, "#TestFile": -9.177404, "#W": -7.791110, "#Y": -7.385644, "&": -6.612455, "(": -2.782142, ")": -2.736457, "*": -6.874819, "*G.": -9.177404, "*f": -9.177404, "*g": -7.791110, "+": -7.567966, ",": -2.430992, "-": -4.833598, ".": -3.792909, "..": -7.385644, ".BookName": -8.484257, ".PackageWWWHome": -8.484257, ".TitlePage": -9.177404, ".TitlePage.Title": -8.484257, ".Version": -8.484257, ".associatedIterator": -8.078792, ".basis": -8.484257, ".dimension": -6.980179, ".g": -8.484257, ".gd": -8.484257, ".gi": -8.484257, ".mats": -9.177404, ".message": -9.177404, ".structure": -6.980179, "/": -6.779509, "/y": -9.177404, "0": -8.484257, "1": -7.791110, "2": -8.484257, "3": -7.567966, "9": -9.177404, ":": -3.713572, ";": -2.885835, "<": -6.469354, "<!-->": -7.791110, "<!ENTITY>": -8.484257, "<![CDATA[>": -6.612455, "<#/GAPDoc>": -6.344191, "<#GAPDoc>": -6.344191, "</A>": -4.146966, "</C>": -6.344191, "</Description>": -5.845199, "</E>": -6.404815, "</Enum>": -9.177404, "</Example>": -6.692497, "</F>": -7.385644, "</Item>": -5.881567, "</K>": -6.469354, "</List>": -7.385644, "</Listing>": -8.078792, "</M>": -5.463832, "</ManSection>": -5.845199, "</Mark>": -5.999350, "</Package>": -9.177404, "</Q>": -8.484257, "</a[>": -9.177404, "</span>": -8.484257, "<A>": -4.153523, "<AsStruct>": -8.484257, "<Attr>": -7.231494, "<Br/>": -7.791110, "<C>": -6.469354, "<D>": -6.612455, "<Description>": -5.845199, "<E>": -6.404815, "<Enum>": -9.177404, "<Example>": -6.692497, "<F>": -6.344191, "<Filt>": -7.231494, "<Func>": -6.538347, "<Item>": -5.881567, "<K>": -6.469354, "<List>": -7.385644, "<Listing>": -8.078792, "<M>": -5.439734, "<ManSection>": -5.845199, "<Mark>": -5.999350, "<Meth>": -8.484257, "<Oper>": -8.484257, "<P/>": -5.776206, "<Prop>": -9.177404, "<Q>": -8.484257, "<R>": -8.078792, "<Ref>": -4.859916, "<Struct>": -8.484257, "<Substruct>": -8.484257, "<U>": -7.385644, "<V>": -5.539818, "<W>": -8.484257, "<a>": -9.177404, "<dim>": -9.177404, "<extL>": -8.484257, "<fp>": -9.177404, "<free>": -9.177404, "<gens>": -7.385644, "<k>": -9.177404, "<m>": -9.177404, "<map>": -8.484257, "<n>": -8.484257, "<span>": -8.484257, "<val>": -8.484257, "<vector>": -6.779509, "<vectors>": -9.177404, "<x>": -9.177404, "<y>": -9.177404, "<z>": -9.177404, "<zero>": -8.078792, "=": -3.628328, ">": -4.398280, "?": -7.567966, "@Arguments": -9.177404, "@ChapterInfo": -9.177404, "@Description": -9.177404, "@Returns": -9.177404, "A": -6.538347, "AUTODOC_APPEND_RECORD_WRITEONCE": -8.078792, "AUTODOC_CreateDirIfMissing": -9.177404, "AUTODOC_FindMatchingFiles": -8.484257, "AUTODOC_GetSuffix": -8.484257, "AUTODOC_PROCESS_INTRO_STRINGS": -9.177404, "AUTODOC_WriteOnce": -6.874819, "Aachen": -8.484257, "AbelianPcpGroup": -8.078792, "AbstractHTML": -9.177404, "Acknowledgements": -9.177404, "Add": -7.791110, "Andrews": -8.484257, "Append": -8.484257, "ArchiveFormats": -9.177404, "ArchiveURL": -9.177404, "ArchiveURLSubset": -9.177404, "Arg=": -5.680896, "As": -9.177404, "AsField": -8.484257, "AsLeftModule": -7.791110, "AsStructure": -8.078792, "AsSubspace": -8.484257, "AsVectorSpace": -8.484257, "AutoDoc": -6.874819, "AutoDocScanFiles": -9.177404, "AvailabilityTest": -9.177404, "B": -6.287032, "Basis": -7.567966, "BasisVectors": -8.078792, "BindGlobal": -7.385644, "BookName": -9.177404, "BookName=": -8.078792, "Breuer": -8.484257, "C": -6.469354, "CRRecordByMats": -9.177404, "CRRecordBySubgroup": -9.177404, "CallFuncList": -9.177404, "CanonicalBasis": -9.177404, "Centre": -8.484257, "Characteristic": -8.484257, "ClosureLeftModule": -9.177404, "Coefficients": -8.078792, "CollectionsFamily": -8.484257, "Comp.": -8.484257, "Concatenation": -6.612455, "CopyHTMLStyleFiles": -8.484257, "Copyright": -7.791110, "CreateDir": -9.177404, "CreateMainPage": -9.177404, "CreateMakeTest": -9.177404, "CreateTitlePage": -9.177404, "D": -5.776206, "Date": -9.177404, "DeclareGlobalFunction": -8.484257, "DeclareOperation": -9.177404, "DeclareSynonym": -7.567966, "DeclareSynonymAttr": -9.177404, "Default": -8.078792, "Dependencies": -9.177404, "Dimension": -7.567966, "DirectProduct": -9.177404, "DirectoriesPackageLibrary": -8.484257, "DirectoriesPackagePrograms": -9.177404, "Directory": -7.567966, "DirectoryContents": -9.177404, "DirectoryCurrent": -9.177404, "Division": -9.177404, "DocumentationTree": -9.177404, "Each": -9.177404, "Email": -9.177404, "Embedding": -9.177404, "Enumerator": -9.177404, "Error": -7.231494, "ExamplesOfSomePcpGroups": -8.484257, "ExtensionsCR": -9.177404, "ExternalConditions": -9.177404, "ExtractTitleInfoFromPackageInfo": -9.177404, "F": -6.132881, "F.": -8.484257, "F/": -9.177404, "FamilyObj": -8.484257, "Filename": -7.231494, "First": -9.177404, "FirstNames": -9.177404, "ForAny": -9.177404, "FreeGroup": -9.177404, "FreeLeftModule": -9.177404, "FullMatrixModule": -8.484257, "FullMatrixSpace": -9.177404, "FullRowModule": -9.177404, "FullRowSpace": -8.484257, "G": -6.041910, "G.": -6.086361, "G/H": -9.177404, "GAP": -7.567966, "GAPDoc": -6.181672, "GAPDocManualLab": -9.177404, "GF": -7.791110, "Gaussian": -9.177404, "GeneratorsOfGroup": -9.177404, "GeneratorsOfLeftModule": -6.874819, "GeneratorsOfLeftOperatorAdditiveGroup": -8.484257, "GeneratorsOfLeftVectorSpace": -9.177404, "GeneratorsOfVectorSpace": -9.177404, "Germany": -8.484257, "Group": -8.484257, "GroupHomomorphismByImages": -7.791110, "H": -7.385644, "HTML": -9.177404, "HTMLStart": -9.177404, "HasBasis": -9.177404, "HasDimension": -9.177404, "HasGeneratorsOfLeftModule": -8.484257, "HasIsDivisionRing": -9.177404, "HasParent": -8.484257, "HasZero": -9.177404, "HeisenbergPcpGroup": -7.791110, "IdentityMapping": -8.484257, "If": -7.567966, "Igs": -9.177404, "Image": -8.078792, "ImagesSource": -9.177404, "Implement": -9.177404, "In": -8.078792, "InfoWarning": -9.177404, "InstallGlobalFunction": -9.177404, "InstallMethod": -7.791110, "InstallOtherMethod": -9.177404, "InstallTrueMethod": -8.078792, "Installation": -9.177404, "Institution": -9.177404, "Int": -9.177404, "Intersection": -7.231494, "IsAssociative": -9.177404, "IsAssociativeLOpDProd": -8.484257, "IsAttributeStoringRep": -8.484257, "IsAuthor": -9.177404, "IsBool": -7.791110, "IsBound": -5.680896, "IsCollection": -8.484257, "IsCollsElms": -9.177404, "IsComponentObjectRep": -9.177404, "IsDirectory": -9.177404, "IsDirectoryPath": -9.177404, "IsDivisionRing": -7.567966, "IsDoneIterator": -8.078792, "IsDoneIterator_Subspaces": -9.177404, "IsEmpty": -7.385644, "IsEuclideanRing": -9.177404, "IsExtLSet": -9.177404, "IsFinite": -8.078792, "IsFiniteDimensional": -8.484257, "IsFreeLeftModule": -8.484257, "IsFullMatrixModule": -9.177404, "IsFullRowModule": -9.177404, "IsGaussianMatrixSpace": -9.177404, "IsGaussianRowSpace": -9.177404, "IsGaussianSpace": -8.078792, "IsGeneralMapping": -9.177404, "IsGeneratorsOfMagmaWithInverses": -9.177404, "IsIdenticalObj": -7.567966, "IsInt": -8.078792, "IsLeftActedOnByDivisionRing": -8.078792, "IsLeftActedOnByRing": -8.484257, "IsLeftModule": -7.791110, "IsLeftOperatorAdditiveGroup": -8.484257, "IsLeftOperatorRing": -9.177404, "IsLeftOperatorRingWithOne": -8.484257, "IsLeftVectorSpace": -8.078792, "IsLinearMapping": -9.177404, "IsList": -9.177404, "IsMagmaWithInversesIfNonzero": -9.177404, "IsMaintainer": -9.177404, "IsMatrixSpace": -9.177404, "IsNonGaussianMatrixSpace": -9.177404, "IsNonGaussianRowSpace": -9.177404, "IsNonTrivial": -9.177404, "IsObject": -9.177404, "IsQuuxFrobnicator": -9.177404, "IsReadableFile": -8.484257, "IsRecord": -7.231494, "IsRing": -9.177404, "IsRingWithOne": -9.177404, "IsRowSpace": -9.177404, "IsString": -7.231494, "IsSubset": -7.791110, "IsSubspace": -8.484257, "IsSubspacesVectorSpace": -7.231494, "IsSubspacesVectorSpaceDefaultRep": -7.231494, "IsTorsionFree": -9.177404, "IsTrivial": -9.177404, "IsVector": -9.177404, "IsVectorSpace": -6.086361, "IsVectorSpaceHomomorphism": -8.484257, "IsomorphismPcGroup": -9.177404, "IsomorphismPcpGroup": -9.177404, "It": -7.567966, "Iterator": -7.791110, "IteratorByFunctions": -9.177404, "JoinStringsWithSeparator": -9.177404, "K": -6.692497, "K.": -7.567966, "Keywords": -9.177404, "Kinds": -9.177404, "Label=": -8.484257, "LastName": -9.177404, "LastSystemError": -9.177404, "LeftActingDomain": -5.776206, "LeftModuleByGenerators": -7.567966, "Lehrstuhl": -8.484257, "Length": -6.538347, "LinearCombination": -8.484257, "List": -7.567966, "LongTitle": -9.177404, "LowerCentralSeriesOfGroup": -9.177404, "LowercaseString": -8.078792, "M": -7.231494, "MakeGAPDocDoc": -8.484257, "Many": -9.177404, "MappingGeneratorsImages": -8.484257, "Math": -8.484257, "Mathematik": -8.484257, "Matrix": -9.177404, "Method": -9.177404, "Methods": -9.177404, "Must": -9.177404, "NaturalHomomorphism": -9.177404, "NaturalHomomorphismBySubspace": -9.177404, "NeededOtherPackages": -9.177404, "New": -9.177404, "NewType": -8.484257, "NextIterator": -8.078792, "NextIterator_Subspaces": -9.177404, "NonAbelianExteriorSquare": -9.177404, "NonAbelianTensorSquare": -8.484257, "Normalizer": -7.791110, "NormedRowVectors": -9.177404, "Objectify": -8.484257, "OrthogonalSpaceInFullRowSpace": -9.177404, "PACKAGENAME.xml": -9.177404, "PDF": -9.177404, "PDFFile": -9.177404, "Package": -9.177404, "PackageDoc": -9.177404, "PackageInfo": -9.177404, "PackageInfoURL": -9.177404, "PackageName": -8.484257, "PackageWWWHome": -9.177404, "Parent": -8.078792, "PcGroupToPcpGroup": -8.484257, "Pcp": -5.845199, "Persons": -9.177404, "Place": -9.177404, "Position": -8.484257, "PositionSublist": -7.567966, "PostalAddress": -9.177404, "Print": -5.999350, "PrintObj": -8.078792, "Projection": -9.177404, "PushOptions": -9.177404, "R": -7.791110, "README_URL": -9.177404, "RWTH": -8.484257, "Range": -8.078792, "Rationals": -7.791110, "RecNames": -9.177404, "Remove": -8.484257, "ReplacedString": -8.484257, "Rings": -9.177404, "S": -7.791110, "SHOW_STAT": -9.177404, "START_TEST": -8.484257, "STOP_TEST": -8.484257, "School": -8.484257, "SchurExtension": -8.078792, "Sci.": -8.484257, "Scotland": -8.484257, "Selection": -9.177404, "SetGapDocLaTeXOptions": -9.177404, "SetGapDocLaTeXOptions.": -9.177404, "SetIsLeftActedOnByDivisionRing": -9.177404, "SetIsTrivial": -9.177404, "SetLeftActingDomain": -9.177404, "SetPackageInfo": -9.177404, "SetParent": -9.177404, "Sets": -9.177404, "ShallowCopy": -8.484257, "ShallowCopy_Subspaces": -9.177404, "SixFile": -9.177404, "Size": -8.078792, "SmallGroup": -8.484257, "SomeGlobalFunction": -9.177404, "SomeOperation": -9.177404, "SomePackage": -9.177404, "Sort": -9.177404, "Source": -8.078792, "Spaces": -7.567966, "St": -8.484257, "Status": -9.177404, "StringFile": -8.484257, "Struct": -9.177404, "Structure": -8.484257, "Subgroup": -6.779509, "SubmoduleNC": -9.177404, "Subspace": -8.078792, "SubspaceNC": -8.484257, "Subspaces": -7.791110, "Substruct": -9.177404, "Substructure": -8.078792, "Subtitle": -9.177404, "SuggestedOtherPackages": -9.177404, "SumIntersectionMat": -9.177404, "That": -9.177404, "The": -6.874819, "This": -7.231494, "Thomas": -8.484257, "Title": -9.177404, "Tree": -8.484257, "TrivialSubspace": -9.177404, "TryNextMethod": -7.231494, "Tutorials": -9.177404, "TwoCohomologyCR": -9.177404, "Type=": -7.231494, "U": -7.791110, "Unbind": -9.177404, "UnitriangularPcpGroup": -9.177404, "University": -8.484257, "UseBasis": -9.177404, "UseIsomorphismRelation": -8.484257, "UseSubsetRelation": -7.791110, "Usually": -8.484257, "V": -4.734753, "VW": -8.078792, "ValueOption": -9.177404, "Vector": -9.177404, "VectorSpace": -8.078792, "Vectors": -9.177404, "Version": -9.177404, "ViewObj": -8.078792, "W": -6.132881, "WWWHome": -9.177404, "When": -8.484257, "WriteDocumentation": -9.177404, "XML": -7.791110, "Zero": -7.567966, "[": -3.978907, "\\": -6.980179, "]": -3.973397, "^": -6.538347, "a": -5.439734, "aTeXProcs.Head": -6.538347, "addition": -9.177404, "all": -7.791110, "allowed": -9.177404, "also": -7.791110, "an": -7.567966, "and": -5.018521, "ank": -7.385644, "any": -9.177404, "are": -8.078792, "arg": -6.538347, "as": -7.385644, "associatedIterator": -8.484257, "at": -9.177404, "autodoc": -7.097962, "autodoc.files": -7.231494, "autodoc.level": -8.078792, "autodoc.scan_dirs": -7.385644, "autodoc.section_intros": -8.484257, "b": -7.567966, "base": -7.567966, "basis": -7.385644, "be": -6.404815, "beginning": -9.177404, "below.": -8.484257, "but": -8.484257, "by": -7.231494, "c": -9.177404, "can": -7.097962, "cases": -8.484257, "cc": -9.177404, "cc.factor.prei": -9.177404, "cc.factor.rels": -9.177404, "cc.gcb": -9.177404, "cc.gcc": -9.177404, "check": -9.177404, "closure": -9.177404, "collection": -9.177404, "combination": -9.177404, "command": -9.177404, "commands": -9.177404, "comments.": -7.567966, "contain": -8.484257, "containing": -9.177404, "content": -9.177404, "continue": -8.078792, "controls": -8.484257, "convenient": -8.484257, "cr": -8.484257, "create": -9.177404, "created": -8.484257, "d": -6.692497, "d_rel": -7.385644, "declared": -9.177404, "default": -9.177404, "default.": -9.177404, "defines": -9.177404, "depends": -9.177404, "differs": -9.177404, "dim": -8.484257, "dimension": -7.791110, "dims": -9.177404, "directly": -8.484257, "directory": -7.567966, "disabled.": -8.484257, "division": -9.177404, "do": -6.469354, "doc": -9.177404, "doc/PACKAGENAME.xml": -9.177404, "doc/chap": -9.177404, "doc/manual.pdf": -9.177404, "doc/manual.six": -9.177404, "doc_dir": -6.287032, "doc_dir_rel": -8.484257, "documentation": -7.385644, "documentation.": -8.484257, "domain": -7.567966, "each": -9.177404, "easily": -9.177404, "either": -8.078792, "elif": -6.132881, "elms": -7.791110, "else": -5.958528, "empty": -8.078792, "enabled": -8.078792, "enabled.": -8.078792, "end": -5.651043, "ength": -9.177404, "entities": -9.177404, "entries": -8.078792, "entries.": -8.484257, "entry": -8.484257, "entry.": -9.177404, "equivalent": -8.078792, "example.": -9.177404, "example.gd": -8.484257, "examples": -9.177404, "executed": -9.177404, "existing": -9.177404, "exists": -9.177404, "extL": -8.484257, "extensions": -9.177404, "f": -6.980179, "factor": -8.484257, "fail": -6.469354, "false": -6.779509, "feature": -7.567966, "fi": -4.677594, "field": -8.484257, "file": -7.791110, "file.": -8.484257, "filename": -8.484257, "filename.": -9.177404, "files": -6.469354, "files.": -9.177404, "first": -9.177404, "following": -7.791110, "for": -5.845199, "format": -9.177404, "from": -8.078792, "func": -8.078792, "function": -5.711668, "g": -6.612455, "gap": -4.533013, "gapdoc": -6.874819, "gapdoc.bookname": -7.791110, "gapdoc.files": -7.567966, "gapdoc.main": -7.097962, "gapdoc.scan_dirs": -7.791110, "gapdoc_latex_option_record": -8.078792, "gapdoc_latex_options": -9.177404, "gen": -7.567966, "generate": -8.484257, "generated": -9.177404, "generators": -6.692497, "gens": -7.231494, "gensV": -7.231494, "gensW": -7.231494, "given": -7.567966, "group": -5.776206, "have": -9.177404, "here": -9.177404, "higher": -9.177404, "hom": -6.538347, "how": -8.484257, "html": -9.177404, "i": -6.344191, "if": -4.677594, "in": -6.132881, "integer": -9.177404, "integers": -9.177404, "inters": -6.344191, "into": -9.177404, "invoke": -9.177404, "is": -5.743417, "is_worksheet": -6.692497, "iso": -8.078792, "iso*iso": -8.484257, "it": -6.980179, "item": -9.177404, "iter": -6.538347, "its": -9.177404, "itself": -9.177404, "j": -8.078792, "k": -7.385644, "key": -8.078792, "latexheader.tex": -9.177404, "latter": -8.078792, "level": -8.484257, "level_value": -9.177404, "library": -8.484257, "list": -7.385644, "local": -6.404815, "m": -7.567966, "main": -7.791110, "maketest": -6.612455, "maketest.folder": -8.078792, "maketest.g": -9.177404, "maketest.scan_dir": -8.078792, "manual": -8.078792, "manual.": -7.791110, "map": -7.791110, "mapi": -7.385644, "mats": -8.484257, "may": -8.484257, "missing": -8.484257, "missing.": -9.177404, "mod": -8.484257, "more": -8.484257, "must": -9.177404, "n": -6.287032, "name": -8.078792, "named": -9.177404, "necessary": -9.177404, "newC": -7.231494, "newgens": -7.791110, "next": -7.567966, "normed": -9.177404, "not": -5.680896, "nothing": -9.177404, "od": -6.469354, "of": -5.743417, "on": -7.567966, "one": -8.078792, "opt": -8.078792, "opt.": -9.177404, "opt.autodoc": -7.231494, "opt.dir": -8.078792, "opt.gapdoc": -7.231494, "opt.maketest": -7.791110, "opt.scaffold": -7.567966, "option": -9.177404, "option_record": -9.177404, "options.": -9.177404, "or": -6.779509, "orders": -5.845199, "other": -8.484257, "over": -6.779509, "package": -6.874819, "package.": -8.484257, "package_info": -8.078792, "package_info.AutoDoc": -8.078792, "package_info.Dependencies.NeededOtherPackages": -9.177404, "package_info.Dependencies.SuggestedOtherPackages": -9.177404, "package_info.PackageDoc": -8.078792, "package_name": -9.177404, "packages": -9.177404, "pair": -9.177404, "part": -9.177404, "particular": -8.078792, "parts": -9.177404, "passed": -9.177404, "paths": -7.791110, "perform": -9.177404, "pkg": -5.743417, "pkg_dir": -7.567966, "position_document_class": -7.231494, "primarily": -9.177404, "printed": -9.177404, "produce": -9.177404, "q": -6.779509, "qd": -6.874819, "qn": -6.874819, "r": -8.484257, "re": -9.177404, "read": -9.177404, "really": -8.484257, "rec": -6.181672, "record": -6.874819, "record.": -7.791110, "relative": -7.791110, "repeat": -9.177404, "result": -7.791110, "return": -5.488524, "ring": -9.177404, "row": -9.177404, "s": -8.484257, "scaffold": -6.612455, "scaffold.MainPage": -8.484257, "scaffold.TitlePage": -7.791110, "scaffold.TitlePage.Title": -8.484257, "scaffold.bib": -7.231494, "scaffold.book_name": -9.177404, "scaffold.dir": -9.177404, "scaffold.document_class": -7.231494, "scaffold.gapdoc_latex_options": -7.791110, "scaffold.gapdoc_latex_options.": -7.567966, "scaffold.includes": -7.791110, "scaffold.latex_header_file": -8.484257, "scaffold.main_xml_file": -8.484257, "scaffolding.": -9.177404, "scan_dirs": -8.484257, "scanned": -7.791110, "scanning": -9.177404, "scans": -8.484257, "second": -9.177404, "see": -8.484257, "should": -8.078792, "simple": -9.177404, "size": -6.692497, "some": -9.177404, "space": -6.980179, "spaces": -9.177404, "specify": -9.177404, "specifying": -7.791110, "str": -7.097962, "string": -8.484257, "strings": -9.177404, "structure": -7.791110, "subdirectories": -8.484257, "subdirs": -8.484257, "subspace": -7.791110, "subspaces": -7.567966, "suffix": -8.078792, "support": -9.177404, "tasks": -9.177404, "test": -8.078792, "text": -9.177404, "thanks": -9.177404, "the": -5.513842, "then": -4.441205, "these": -8.484257, "they": -9.177404, "this": -7.385644, "three": -9.177404, "title_page": -7.231494, "tmp": -6.181672, "to": -6.086361, "tree": -7.097962, "true": -5.743417, "two": -8.078792, "understood": -9.177404, "unnecessary": -9.177404, "until": -9.177404, "use": -8.078792, "used": -8.484257, "using": -9.177404, "val": -7.791110, "value": -7.097962, "various": -9.177404, "vector": -6.980179, "vectors": -7.791110, "view": -8.078792, "vspc.gd": -9.177404, "vspc.gi": -9.177404, "w": -8.078792, "when": -9.177404, "whether": -8.484257, "which": -7.097962, "while": -7.567966, "why": -9.177404, "will": -7.791110, "with": -5.463832, "x": -6.287032, "x/y": -9.177404, "y": -6.469354, "your": -7.791110, "z": -8.078792, "zero": -9.177404, "{": -7.385644, "}": -7.385644, "~": -7.791110, "ü": -8.484257, }, "GCC Machine Description": map[string]float64{ "!": -9.370161, "\"": -9.370161, "&": -7.424251, "&&": -7.172936, "(": -2.052948, ")": -2.055608, "*": -7.172936, "**p": -8.677013, "*f": -8.677013, "*insn": -9.370161, "*move_and_skipsf": -9.370161, "*move_and_skipsi": -9.370161, "*p": -9.370161, "+": -6.192107, ",": -2.934010, "-": -4.607987, ".": -5.732575, "..": -8.271548, "...": -7.983866, ":": -2.864377, ";": -1.790993, "<": -7.760723, "<<": -6.972265, "<lars@nocrew.org>": -9.370161, "=": -4.566140, ">": -6.662110, "?": -6.972265, "A": -7.983866, "AC": -5.608961, "ACOS": -9.370161, "ACOSH": -9.370161, "ADD": -9.370161, "ADDB": -9.370161, "ADDI": -9.370161, "ADDM": -9.370161, "ADDRESS": -8.677013, "ADJBP": -8.677013, "ADJSP": -8.677013, "AND": -8.271548, "ANDB": -9.370161, "ANDCA": -9.370161, "ANDCAB": -9.370161, "ANDCAI": -9.370161, "ANDCAM": -9.370161, "ANDCB": -9.370161, "ANDCBB": -9.370161, "ANDCBI": -8.677013, "ANDCBM": -9.370161, "ANDCM": -9.370161, "ANDCMB": -9.370161, "ANDCMI": -8.271548, "ANDCMM": -9.370161, "ANDI": -8.271548, "ANDM": -9.370161, "AOBJN": -9.370161, "AOBJP": -9.370161, "AOJ": -9.370161, "AOS": -8.677013, "AOSA": -9.370161, "ASH": -9.370161, "ASHC": -8.271548, "ASIN": -9.370161, "ASINH": -9.370161, "ATAN": -9.370161, "ATANH": -9.370161, "Add": -9.370161, "Adding": -9.370161, "Addition": -8.677013, "All": -9.370161, "And": -9.370161, "Answer": -9.370161, "Any": -8.677013, "Arithmetic": -7.983866, "As": -8.677013, "Attributes": -8.677013, "Avoid": -9.370161, "B": -7.290719, "BAR": -9.370161, "BITS_PER_WORD": -7.983866, "BLKmode": -7.760723, "BLT": -8.677013, "Brinkhoff": -9.370161, "Brinkhoff.": -9.370161, "Byte": -9.370161, "C": -9.370161, "CAI": -9.370161, "CAM": -9.370161, "CAME": -9.370161, "CAMN": -9.370161, "CMPBP": -8.677013, "CMPS": -8.677013, "CONST": -9.370161, "COS": -9.370161, "COSH": -9.370161, "Clear/set": -9.370161, "Comparisons": -9.370161, "Conditional": -8.677013, "Constants": -8.677013, "Constraints": -8.677013, "Contributed": -9.370161, "Conversions": -8.271548, "Converting": -9.370161, "Copyright": -9.370161, "DADD": -9.370161, "DCOS": -9.370161, "DDFIX": -8.677013, "DDFIXR": -9.370161, "DDFLTR": -8.677013, "DDIV": -9.370161, "DFAD": -9.370161, "DFDV": -9.370161, "DFIX": -8.271548, "DFIXR": -8.677013, "DFLTR": -8.271548, "DFMP": -9.370161, "DFSB": -9.370161, "DFSC": -9.370161, "DFmode": -9.370161, "DGFLTR": -9.370161, "DI": -5.936173, "DIV": -9.370161, "DIVB": -9.370161, "DIVI": -9.370161, "DIVM": -9.370161, "DImode": -7.578401, "DMOVE": -9.370161, "DMOVEM": -9.370161, "DMOVN": -8.271548, "DMOVNM": -8.677013, "DMUL": -9.370161, "DPB": -9.370161, "DPBI": -8.677013, "DSIN": -9.370161, "DSQRT": -8.677013, "DSUB": -9.370161, "Data": -8.271548, "Double": -7.290719, "EQV": -9.370161, "EQVB": -9.370161, "EQVI": -9.370161, "EQVM": -9.370161, "EXCH": -9.370161, "EXP": -9.370161, "Effective": -9.370161, "FADR": -9.370161, "FADRB": -9.370161, "FADRI": -9.370161, "FADRM": -9.370161, "FDVR": -9.370161, "FDVRB": -9.370161, "FDVRI": -9.370161, "FDVRM": -9.370161, "FFO": -9.370161, "FFS": -8.271548, "FIX": -9.370161, "FLTR": -9.370161, "FMPR": -9.370161, "FMPRB": -9.370161, "FMPRI": -9.370161, "FMPRM": -9.370161, "FOO": -9.370161, "FP_REGNUM": -9.370161, "FSBR": -9.370161, "FSBRB": -9.370161, "FSBRI": -9.370161, "FSBRM": -9.370161, "FSC": -8.677013, "Find": -9.370161, "Fixed": -9.370161, "Float": -7.983866, "Floating": -7.578401, "Frame": -9.370161, "Front": -9.370161, "Function": -9.370161, "GCOS": -9.370161, "GDBLE": -9.370161, "GDFIX": -9.370161, "GEN_INT": -6.597572, "GET_CODE": -8.271548, "GFAD": -9.370161, "GFDV": -9.370161, "GFIX": -9.370161, "GFLTR": -9.370161, "GFMP": -9.370161, "GFSB": -9.370161, "GFSC": -9.370161, "GSIN": -9.370161, "GSNGL": -9.370161, "GSQRT": -8.677013, "HAKMEM.": -9.370161, "HI": -5.814813, "HLL": -9.370161, "HLLE": -9.370161, "HLLM": -9.370161, "HLLZ": -9.370161, "HLR": -9.370161, "HLRE": -9.370161, "HLRM": -9.370161, "HLRZ": -9.370161, "HOST_WIDE_INT": -6.536947, "HRL": -9.370161, "HRLE": -9.370161, "HRLM": -9.370161, "HRLOI": -8.677013, "HRLZ": -9.370161, "HRR": -8.677013, "HRRE": -8.677013, "HRRE.": -8.677013, "HRRM": -9.370161, "HRROI": -8.677013, "HRRZ": -8.677013, "Historical": -9.370161, "I": -8.271548, "IBP": -9.370161, "IDIV": -9.370161, "IDIVI": -9.370161, "IDIVM": -9.370161, "IDPB": -9.370161, "ILDB": -9.370161, "ILDBE": -8.677013, "IMUL": -9.370161, "IMULB": -9.370161, "IMULI": -9.370161, "IMULM": -9.370161, "INTVAL": -6.479789, "IOR": -9.370161, "IORB": -9.370161, "IORI": -9.370161, "IORM": -9.370161, "If": -9.370161, "Immediate": -8.677013, "In": -9.370161, "Index": -8.677013, "Instruction": -8.271548, "Instructions": -9.370161, "Integer": -7.290719, "Is": -9.370161, "JFCL": -9.370161, "JFFO": -8.677013, "JRST": -9.370161, "JSP": -9.370161, "JUMP": -9.370161, "JUMP_INSNs": -9.370161, "Jumps": -8.677013, "KA": -9.370161, "LDB": -8.677013, "LDBE": -8.677013, "LDBEI": -8.677013, "LDBI": -8.677013, "LEFT_HALF": -6.972265, "LLC.": -9.370161, "LN": -9.370161, "LOG": -8.677013, "LSH": -8.271548, "LSHC": -9.370161, "Lars": -8.677013, "Left": -9.370161, "Length": -9.370161, "List": -7.983866, "Load": -7.983866, "Local": -9.370161, "Logical": -8.677013, "MAX": -9.370161, "MIN": -9.370161, "MOVE": -8.677013, "MOVE.": -8.677013, "MOVEI": -8.271548, "MOVEM": -9.370161, "MOVEM.": -8.677013, "MOVM": -8.677013, "MOVMM": -8.677013, "MOVMS": -8.677013, "MOVN": -8.677013, "MOVNI": -9.370161, "MOVNM": -8.677013, "MOVNS": -8.677013, "MOVS": -9.370161, "MOVSI": -8.677013, "MOVSLJ": -8.677013, "MOVST": -8.677013, "MUL": -9.370161, "MULB": -9.370161, "MULI": -9.370161, "MULM": -9.370161, "Machine": -9.370161, "Magnitude": -9.370161, "Miscellaneous": -9.370161, "Movement": -8.271548, "Moving": -9.370161, "Multiplication": -9.370161, "Negation": -9.370161, "Note": -9.370161, "ORCA": -9.370161, "ORCAB": -9.370161, "ORCAI": -9.370161, "ORCAM": -9.370161, "ORCB": -9.370161, "ORCBB": -9.370161, "ORCBI": -9.370161, "ORCBM": -9.370161, "ORCM": -9.370161, "ORCMB": -9.370161, "ORCMI": -8.677013, "ORCMM": -9.370161, "Ok": -9.370161, "Operand": -5.732575, "Operands": -8.271548, "Operations": -9.370161, "Optimizations": -8.677013, "PDP": -9.370161, "PLUS": -9.370161, "POP": -9.370161, "POPJ": -7.983866, "POW": -9.370161, "PUSH": -9.370161, "PUSHJ": -8.271548, "Page": -9.370161, "Peepholes": -8.677013, "Pmode": -7.578401, "Pointer": -9.370161, "Precision": -7.983866, "Prepare": -9.370161, "QI": -5.520013, "REG": -8.677013, "REGNO": -7.067576, "REG_P": -8.677013, "RIGHT_HALF": -6.597572, "ROT": -9.370161, "ROTC": -9.370161, "Reload": -8.677013, "Right": -9.370161, "Rotating": -8.677013, "Round": -7.983866, "S": -8.677013, "SETCA": -9.370161, "SETCAB": -9.370161, "SETCAM": -9.370161, "SETCM": -9.370161, "SETCMB": -9.370161, "SETCMM": -9.370161, "SETOM": -9.370161, "SETZB": -9.370161, "SETZM": -9.370161, "SEXT": -8.677013, "SFmode": -9.370161, "SI": -3.159561, "SIGNBIT": -6.597572, "SIN": -9.370161, "SINH": -9.370161, "SImode": -6.536947, "SKIP": -9.370161, "SKIPA": -9.370161, "SKIPE": -9.370161, "SKIPG": -9.370161, "SKIPGE": -9.370161, "SKIPL": -9.370161, "SKIPLE": -9.370161, "SKIPN": -9.370161, "SOJ": -9.370161, "SOS": -8.677013, "SOSA.": -9.370161, "SP_REGNUM": -7.983866, "SQRT": -8.677013, "SUB": -8.677013, "SUBB": -8.677013, "SUBBP": -8.677013, "SUBI": -9.370161, "SUBM": -9.370161, "SUBREG": -9.370161, "Sequence": -9.370161, "Shifting": -8.677013, "Sign": -9.370161, "Signed": -8.271548, "Single": -9.370161, "Special": -9.370161, "Stack": -9.370161, "Store": -8.677013, "String": -9.370161, "Subtraction": -9.370161, "TAN": -9.370161, "TANH": -9.370161, "TARGET_EXTENDED": -8.271548, "TARGET_SMALLISH": -9.370161, "TDNE": -9.370161, "TDNN": -9.370161, "TDZA": -9.370161, "TI": -7.578401, "TLC": -8.677013, "TLN": -9.370161, "TLNE": -7.983866, "TLNN": -9.370161, "TLO": -7.578401, "TLZ": -8.677013, "TLZA": -8.677013, "TLZN": -9.370161, "TODO": -9.370161, "TRNE": -8.677013, "TRNN": -9.370161, "TRZ": -9.370161, "TSC": -9.370161, "TSNE": -9.370161, "TSNN.": -9.370161, "TSO": -9.370161, "TSZ.": -9.370161, "Test": -8.677013, "The": -7.172936, "Therefore": -9.370161, "This": -8.271548, "To": -8.677013, "Truncate": -9.370161, "UCAI": -9.370161, "UCAM": -9.370161, "UDDIV": -9.370161, "UDFLTR": -9.370161, "UDIV": -9.370161, "UDMOD": -9.370161, "UGFLTR": -9.370161, "UIDIV": -8.677013, "UIDIVB": -9.370161, "UIDIVI": -8.677013, "UIDIVM": -9.370161, "UIMOD": -8.677013, "UIMODB": -9.370161, "UIMODI": -8.677013, "UIMODM": -9.370161, "UJUMP": -9.370161, "UMAX": -9.370161, "UMIN": -9.370161, "UMOD": -9.370161, "UNITS_PER_WORD": -9.370161, "UNSPEC_ADDRESS": -8.677013, "UNSPEC_ADJBP": -8.677013, "UNSPEC_ADJSP": -8.677013, "UNSPEC_ASH": -9.370161, "UNSPEC_ASHC": -9.370161, "UNSPEC_CMPBP": -9.370161, "UNSPEC_FFO": -8.677013, "UNSPEC_FSC": -9.370161, "UNSPEC_LSHC": -9.370161, "UNSPEC_MUL": -9.370161, "UNSPEC_REAL_ASHIFT": -8.271548, "UNSPEC_SHIFT": -9.370161, "UNSPEC_SHIFTRT": -9.370161, "UNSPEC_SIGN_EXTEND": -7.983866, "UNSPEC_SUBBP": -8.677013, "UNSPEC_TLNE_TLZA_TLO": -9.370161, "UNSPEC_TRNE_TLO": -9.370161, "UNSPEC_TRUNCATE": -8.677013, "UNSPEC_ZERO_EXTEND": -7.983866, "USKIP": -9.370161, "Unconditional": -9.370161, "Unsigned": -8.271548, "Unspec": -8.677013, "Usage": -8.677013, "Use": -8.677013, "Used": -8.677013, "VUNSPEC_BLOCKAGE": -9.370161, "VUNSPEC_BLT": -8.677013, "VUNSPEC_CMPS": -9.370161, "VUNSPEC_FSC": -9.370161, "VUNSPEC_MOVSLJ": -8.677013, "VUNSPEC_MOVST": -8.677013, "VUNSPEC_XBLT": -8.677013, "Variable": -9.370161, "WAIT": -9.370161, "Wish": -8.677013, "X": -8.677013, "XBLT": -8.677013, "XEXP": -7.983866, "XKL": -9.370161, "XOR": -9.370161, "XORB": -9.370161, "XORI": -9.370161, "XORM": -9.370161, "XPOP": -9.370161, "XPOPJ": -9.370161, "XPUSH": -9.370161, "XPUSHJ": -9.370161, "Zero": -9.370161, "[": -3.445905, "]": -3.448582, "^": -6.885254, "__attribute__": -9.370161, "__builtin_cos": -9.370161, "__builtin_sin": -9.370161, "_output_extv_sequence": -9.370161, "_output_extzv": -9.370161, "_output_extzv_sequence": -8.677013, "_output_jrst": -8.677013, "_output_movhi": -9.370161, "_output_range_compare": -7.578401, "_output_store_byte": -8.677013, "_pointer_alignment": -9.370161, "_pointer_offset": -9.370161, "_reg_dead_p": -9.370161, "_remove_unnecessary_label": -8.677013, "`": -8.677013, "a": -6.479789, "abort": -8.677013, "about": -9.370161, "abs": -8.271548, "accumulator": -8.271548, "add": -7.983866, "address": -8.271548, "address.": -8.677013, "adjustment.": -8.677013, "advantages": -9.370161, "after": -8.677013, "allocate": -9.370161, "allocation": -9.370161, "allocation.": -8.677013, "allow": -8.677013, "allows": -8.677013, "also": -9.370161, "alternative": -8.271548, "amount": -7.424251, "and": -5.541519, "any": -8.677013, "anyone": -9.370161, "aoja": -7.760723, "are": -7.983866, "arithmetic": -8.271548, "arithmetic.": -7.983866, "as": -8.271548, "ash": -7.760723, "ashc": -9.370161, "ashift": -7.760723, "ashiftrt": -9.370161, "attr": -8.271548, "back": -9.370161, "bad": -9.370161, "bar": -9.370161, "be": -7.983866, "beneficial": -9.370161, "bit": -7.067576, "bit.": -9.370161, "bits": -7.424251, "bitsize": -7.760723, "block": -7.760723, "by": -6.805211, "by.": -7.983866, "byte": -7.424251, "byte.": -8.677013, "c": -9.370161, "cache.": -9.370161, "cail": -9.370161, "calculation": -9.370161, "call": -9.370161, "cam": -9.370161, "can": -8.677013, "cares": -9.370161, "case": -7.172936, "causes": -9.370161, "char": -9.370161, "chars": -8.271548, "clobber": -7.983866, "clobbers": -9.370161, "cmpdi": -9.370161, "code": -9.370161, "commented": -9.370161, "compare": -8.677013, "comparison": -8.677013, "compensate": -8.677013, "compiler.": -9.370161, "cond": -8.677013, "conditional": -9.370161, "const": -8.677013, "const_int": -4.599476, "const_string": -8.677013, "constant": -9.370161, "constant.": -8.677013, "constraint": -7.424251, "cosine": -9.370161, "could": -8.271548, "count.": -8.677013, "counting": -9.370161, "default": -8.677013, "define_attr": -8.271548, "define_constants": -8.271548, "define_expand": -6.597572, "define_insn": -4.407316, "dependent": -9.370161, "description": -9.370161, "destination": -8.677013, "differ.": -9.370161, "difference": -9.370161, "digit": -9.370161, "div": -7.760723, "division": -8.677013, "divmoddi": -9.370161, "divmodsi": -9.370161, "divsi": -9.370161, "dmul": -8.677013, "do": -8.677013, "done": -8.677013, "double": -7.760723, "each": -9.370161, "either": -9.370161, "else": -6.112064, "epilogue": -9.370161, "eq": -8.677013, "eq_attr": -7.760723, "expand_builtin_jffo": -9.370161, "extend": -9.370161, "extend.": -7.983866, "extend_bits": -6.972265, "extended": -9.370161, "extension": -8.677013, "factor.": -9.370161, "fall": -9.370161, "false": -9.370161, "fast": -9.370161, "fastcall": -9.370161, "faster": -9.370161, "fastest": -8.677013, "ffs": -8.677013, "ffsM": -9.370161, "ffssi.": -9.370161, "find": -9.370161, "first": -7.983866, "fix_truncdfdi": -9.370161, "fix_truncdfsi": -9.370161, "fix_truncsfdi": -9.370161, "float": -8.677013, "floatdidf": -9.370161, "floatdisf": -9.370161, "floating": -8.271548, "floatsidf": -9.370161, "floatuns...": -9.370161, "foo": -9.370161, "for": -6.972265, "from": -7.760723, "full": -9.370161, "function": -8.271548, "functions": -9.370161, "funded": -9.370161, "games": -9.370161, "ge": -7.424251, "gen_int_mode": -7.578401, "gen_rtx_PLUS": -9.370161, "generated": -8.271548, "get_attr_length": -8.271548, "giant": -9.370161, "global": -9.370161, "goto": -8.677013, "half": -9.370161, "handle": -9.370161, "hardware.": -9.370161, "has": -9.370161, "have": -8.677013, "here": -9.370161, "high": -9.370161, "if": -5.873653, "if_then_else": -6.805211, "immediate": -9.370161, "in": -6.279118, "increment": -9.370161, "increment.": -9.370161, "index": -9.370161, "indexing": -8.677013, "insn": -6.192107, "instisting": -9.370161, "instruction": -7.983866, "instruction.": -9.370161, "instructions": -9.370161, "instructions.": -8.677013, "int": -7.290719, "integer": -8.677013, "interrupt.": -9.370161, "invalid": -8.677013, "ior": -6.885254, "iori": -8.677013, "is": -5.344809, "it": -9.370161, "jcry": -8.271548, "jfcl": -7.578401, "jov": -8.271548, "jrst": -7.760723, "jumpe": -7.983866, "jumpge": -8.677013, "jumple": -9.370161, "just": -8.677013, "label": -8.677013, "label_ref": -7.290719, "last": -8.271548, "le": -8.677013, "least": -8.677013, "left": -8.677013, "length": -8.677013, "length.": -9.370161, "like": -9.370161, "load": -8.677013, "load/deposit": -9.370161, "loop": -9.370161, "lsh": -6.885254, "lshc": -6.805211, "lshiftrt": -6.972265, "lt": -7.760723, "machine": -9.370161, "mask": -7.760723, "match_dup": -5.681281, "match_operand": -3.351567, "match_operator": -8.271548, "match_scratch": -7.983866, "mathematical": -9.370161, "maxsi": -9.370161, "may": -9.370161, "mem": -8.677013, "memory": -7.578401, "min/max": -9.370161, "minsi": -9.370161, "minus": -8.677013, "missing.": -7.760723, "mod": -7.983866, "modify": -9.370161, "modulo": -9.370161, "most": -9.370161, "move": -9.370161, "movei": -8.677013, "moving": -9.370161, "movn": -7.983866, "movsi": -7.760723, "mul": -7.983866, "mulm": -9.370161, "multiplicands.": -9.370161, "multiplication": -7.760723, "multiplication.": -9.370161, "multiply": -7.760723, "must": -9.370161, "n": -7.424251, "ne": -9.370161, "needs": -9.370161, "neg": -6.885254, "negate": -9.370161, "negation": -8.677013, "not": -9.370161, "not.": -9.370161, "now.": -9.370161, "number": -7.983866, "octal": -9.370161, "of": -7.290719, "offset": -9.370161, "on": -7.983866, "one": -8.677013, "only": -8.677013, "only.": -9.370161, "op": -7.983866, "operand": -7.067576, "operand.": -7.578401, "operands": -4.642773, "operation": -6.805211, "ops": -5.195773, "optimized": -9.370161, "or": -7.424251, "other": -9.370161, "out": -9.370161, "output_asm_insn": -6.479789, "outputs.": -9.370161, "over": -9.370161, "p": -9.370161, "parallel": -8.677013, "parentheses": -9.370161, "part": -9.370161, "pass.": -9.370161, "pattern": -9.370161, "patterns.": -9.370161, "pc": -6.479789, "pdp": -6.425722, "peep": -9.370161, "peepholes.": -9.370161, "perhaps": -9.370161, "play": -9.370161, "plus": -7.172936, "point": -7.760723, "point.": -9.370161, "pointer": -7.172936, "pointer.": -7.424251, "pointers.": -8.677013, "possible": -9.370161, "potentially": -9.370161, "precision": -9.370161, "predicate": -8.677013, "processors": -9.370161, "prologue": -9.370161, "r": -9.370161, "r.": -9.370161, "really": -9.370161, "recognize": -8.677013, "reg": -8.677013, "register": -7.067576, "register.": -7.983866, "reorg": -9.370161, "reorg_type": -9.370161, "replaced": -9.370161, "resort": -8.677013, "result": -6.972265, "return": -5.309718, "right": -8.271548, "root": -9.370161, "rotc": -8.677013, "rounding.": -9.370161, "rtx": -7.172936, "s": -9.370161, "scalar": -7.290719, "scale": -9.370161, "scratch": -9.370161, "searches": -8.677013, "second": -8.677013, "seem": -9.370161, "self": -9.370161, "sequence": -8.677013, "set": -4.155225, "set_attr": -5.759243, "setca": -8.677013, "setcm": -9.370161, "shift": -6.662110, "shift.": -7.983866, "shifts": -8.677013, "shortcut": -9.370161, "shorts": -8.271548, "sign": -7.067576, "sign_extend": -6.536947, "sign_extended_p": -8.271548, "sign_extract": -6.972265, "signed": -8.677013, "significant": -8.271548, "similar.": -9.370161, "sine": -9.370161, "single": -8.677013, "skip": -8.271548, "skipge": -8.677013, "smax": -9.370161, "smin": -9.370161, "so": -8.677013, "software": -9.370161, "sojg": -9.370161, "source": -8.677013, "special": -8.677013, "spilled": -8.271548, "sqrtM": -9.370161, "square": -9.370161, "stack": -7.983866, "stack.": -8.677013, "stack_pointer_rtx": -9.370161, "static": -8.677013, "strange": -9.370161, "sub": -8.271548, "subi": -9.370161, "subreg": -6.374428, "subtract": -9.370161, "subtraction": -9.370161, "such": -9.370161, "supported": -9.370161, "switch": -8.677013, "symbol.": -8.271548, "symbol_ref": -9.370161, "t": -8.677013, "taken": -9.370161, "tdza": -9.370161, "than": -9.370161, "that": -8.677013, "the": -5.259287, "them": -9.370161, "then": -8.677013, "there": -7.760723, "this": -8.271548, "tlne": -7.760723, "tlnn": -9.370161, "tlo": -7.760723, "tloa": -9.370161, "tlz": -9.370161, "to": -5.732575, "treatment": -9.370161, "trne": -8.677013, "trunc.": -9.370161, "truncate": -7.424251, "truncate.": -9.370161, "truncdfsf": -9.370161, "type": -9.370161, "udiv": -9.370161, "udivdi": -9.370161, "udivsi": -9.370161, "umaxsi": -9.370161, "uminsi": -9.370161, "umod": -9.370161, "umoddi": -9.370161, "umodsi": -9.370161, "unnecessary": -8.677013, "unsigned": -7.760723, "unspec": -7.172936, "until": -8.677013, "use": -8.677013, "used": -9.370161, "using": -7.424251, "valid": -9.370161, "value": -7.424251, "value.": -7.983866, "values.": -9.370161, "variable.": -8.677013, "version": -9.370161, "versions": -9.370161, "versions.": -9.370161, "void": -7.983866, "wait": -9.370161, "well": -8.677013, "when": -8.677013, "which_alternative": -7.760723, "while": -9.370161, "with": -7.424251, "word": -7.424251, "words.": -9.370161, "works": -8.677013, "would": -9.370161, "x": -6.885254, "xor": -6.597572, "xxxxxx": -8.271548, "y": -7.983866, "zero": -9.370161, "zero.": -9.370161, "zero_extend": -6.972265, "zero_extended_p": -7.578401, "zero_extract": -6.002865, "{": -5.563498, "||": -9.370161, "}": -5.563498, "~": -7.578401, }, "GDB": map[string]float64{ "$": -2.585627, "(": -2.852942, ")": -2.852942, "+": -6.286929, ",": -3.396557, "-": -4.341019, ".": -6.286929, ".abcs": -6.980076, ":": -1.826784, "<": -6.286929, "=": -2.954724, ">": -4.341019, "AS": -6.286929, "AUTO_ARGUMENT": -4.900634, "AUTO_LOCAL": -4.900634, "AUTO_THIS": -6.980076, "AvmCore": -5.188316, "DebugCLI": -6.286929, "Debugger": -3.453715, "Execution": -6.980076, "If": -6.980076, "Information": -6.980076, "Print": -5.881464, "Requires": -6.980076, "USBtoSerial.hex": -6.980076, "With": -5.593782, "\\": -4.089704, "_asframe_selected": -5.881464, "_last_type": -4.089704, "a": -5.881464, "acount": -6.286929, "after": -6.980076, "all": -6.286929, "arg": -4.415127, "argc": -6.286929, "argument": -5.188316, "arguments": -6.980076, "arguments.": -6.980076, "asarg": -5.881464, "aslocal": -5.881464, "asmixon": -6.286929, "asprint": -6.980076, "asprintframe": -5.881464, "aspstring": -5.881464, "asstep*": -6.980076, "asstepinto": -6.980076, "asstepout": -6.980076, "asstepover": -6.980076, "asthis": -6.286929, "at": -6.980076, "autoAtomKindAt": -6.286929, "autoVarAsBoolean": -6.286929, "autoVarAsDouble": -6.286929, "autoVarAsInteger": -6.286929, "autoVarAsObject": -5.881464, "autoVarAsString": -6.286929, "autoVarCount": -6.286929, "autoVarName": -6.286929, "available": -6.980076, "avmplus": -3.291196, "avmshell": -6.286929, "be": -6.286929, "call": -5.188316, "continue": -5.881464, "currently": -5.881464, "debugger": -5.034166, "debuggerInterruptOnEnter": -6.286929, "debugging": -6.286929, "debuging": -6.980076, "define": -4.900634, "document": -5.593782, "echo": -4.415127, "ecno": -6.980076, "else": -5.370638, "end": -3.424728, "erase": -6.980076, "exit": -6.980076, "flash": -5.881464, "for": -6.286929, "frame": -3.684239, "frame.": -6.286929, "frameAt": -5.881464, "further": -6.286929, "gdb": -5.881464, "getActiveCore": -5.188316, "halt": -6.980076, "history": -6.286929, "if": -3.844582, "in": -5.881464, "incorrect": -6.980076, "info": -6.980076, "information": -6.286929, "instructions.": -6.980076, "is": -6.980076, "k": -4.341019, "lcount": -6.286929, "lname": -6.286929, "local": -5.881464, "localhost": -6.980076, "manipulation": -6.286929, "may": -6.980076, "monitor": -4.677491, "n": -4.677491, "name": -5.881464, "names": -6.980076, "namespace": -6.286929, "no": -5.188316, "not": -6.286929, "numeric": -6.286929, "of": -5.881464, "on": -6.980076, "output": -5.593782, "present.": -6.980076, "print": -4.495169, "printed.": -6.980076, "probe": -6.980076, "propmpt": -6.980076, "quit": -6.980076, "receiver": -6.980076, "remote": -6.980076, "reset": -6.286929, "return": -6.980076, "run": -6.980076, "safepoint.": -6.980076, "selected": -5.881464, "set": -4.415127, "sleep": -6.286929, "specific": -6.286929, "stack": -6.286929, "stepInto": -6.980076, "stepOut": -6.980076, "stepOver": -6.980076, "stepping.": -6.980076, "store": -6.286929, "symbols": -6.980076, "target": -6.980076, "the": -4.900634, "to": -6.980076, "traits": -6.980076, "true": -6.980076, "turn": -6.980076, "undefined": -6.286929, "unfinished": -6.286929, "unknown": -6.286929, "unlock": -6.980076, "value": -6.286929, "var": -4.415127, "variable": -6.980076, "variables": -6.980076, "variables.": -6.980076, "wait_halt": -6.980076, "while": -6.286929, "will": -5.593782, "write_image": -6.980076, }, "GDScript": map[string]float64{ "!": -6.289344, "#add": -7.898782, "#apply": -7.898782, "#check": -7.898782, "#default": -7.898782, "#else": -7.898782, "#flip": -7.205635, "#game": -7.898782, "#horizontal": -7.898782, "#if": -7.205635, "#integrate": -7.898782, "#linear_dir": -7.898782, "#lv": -7.898782, "#move": -7.205635, "#print": -7.898782, "#var": -7.898782, "#where": -7.898782, "%": -7.898782, "(": -2.012678, ")": -2.018249, "*": -5.065569, "*block.get_size": -7.898782, "*bs": -7.205635, "+": -4.566578, ",": -2.811186, "-": -4.209903, ".add_child": -7.898782, ".basis": -7.898782, ".blend": -7.205635, ".get_global_transform": -6.800170, ".get_pos": -6.289344, ".get_size": -7.898782, ".get_texture": -7.898782, ".get_transform": -7.898782, ".grow": -7.898782, ".instance": -7.898782, ".normalized": -6.107023, ".orthonormalized": -7.898782, ".play": -7.205635, ".scaled": -7.898782, ".set_active": -7.898782, ".set_pos": -6.800170, ".set_text": -7.205635, ".set_transform": -7.898782, ".size": -7.898782, ".start": -7.898782, ".transition_node_set_current": -7.898782, ".xform": -7.898782, "/": -7.898782, "/hspeed*turn_speed": -7.205635, "0": -5.819341, "1": -6.800170, "2": -7.205635, "7": -7.898782, ":": -3.254391, "<": -5.126194, "<max_speed):>": -7.898782, "<turn):>": -7.898782, "=": -2.678427, ">": -5.008411, "ANIM_AIR_DOWN": -7.205635, "ANIM_AIR_UP": -7.205635, "ANIM_FLOOR": -6.800170, "Armature": -7.205635, "BaseClass": -7.898782, "CHAR_SCALE": -6.800170, "Color": -5.952872, "Control": -7.898782, "D": -7.898782, "INITIAL_BALL_SPEED": -6.800170, "Input": -6.107023, "Input.is_action_pressed": -5.596197, "MAX_SHAPES": -7.898782, "Math": -7.898782, "Matrix": -6.289344, "Matrix3": -7.898782, "Node": -7.898782, "PAD_SPEED": -7.898782, "PAD_SPEED*delta": -6.512488, "PS.body_add_collision_exception": -7.898782, "Rect": -6.289344, "RigidBody": -7.898782, "SHOOT_SCALE": -7.205635, "SHOOT_TIME": -7.205635, "Something": -7.898782, "Something.new": -7.898782, "Transform": -7.205635, "Vector": -3.664676, "Vector3": -7.898782, "[": -4.602945, "]": -4.602945, "_draw": -7.898782, "_init": -7.898782, "_input": -7.898782, "_integrate_forces": -7.205635, "_node_set_amount": -7.205635, "_process": -7.898782, "_ready": -6.800170, "a": -5.952872, "a=": -7.205635, "abs": -7.898782, "accel": -6.800170, "accel*delta": -7.898782, "accum_down": -6.107023, "accum_down*": -7.898782, "acos": -7.898782, "adjust_facing": -6.512488, "adv": -7.205635, "against": -7.898782, "air_idle_deaccel": -7.205635, "and": -5.126194, "ang": -5.126194, "anim": -6.289344, "answer": -7.898782, "apply": -7.898782, "arr": -7.898782, "atan": -7.898782, "ball": -7.205635, "ball_pos": -6.107023, "ball_pos.x": -7.205635, "ball_pos.y": -7.205635, "ball_speed": -7.205635, "ball_speed*": -7.898782, "basis": -6.512488, "block": -6.800170, "block.get_size": -7.898782, "block_colors": -6.800170, "block_rotations": -7.205635, "block_shapes": -6.512488, "brake_angular_limit": -7.898782, "brake_velocity_limit": -7.898782, "break": -7.205635, "bs": -6.800170, "bullet": -6.800170, "bullet.get_rid": -7.898782, "bullet.set_linear_velocity": -7.898782, "bullet.set_transform": -7.898782, "c": -6.107023, "cam_xform": -6.107023, "cam_xform.basis": -6.512488, "camera": -7.898782, "cells": -5.819341, "cells.clear": -7.898782, "cells.erase": -7.898782, "change": -7.898782, "class": -7.898782, "collapse": -6.800170, "const": -5.500887, "continue": -7.205635, "cos": -6.800170, "cross": -7.898782, "ctarget_dir": -7.898782, "current_gn": -7.205635, "d": -6.289344, "d=": -7.898782, "deaccel": -6.800170, "deaccel*delta": -7.898782, "deg": -7.205635, "delta": -5.259725, "delta*state.get_total_density": -7.898782, "dict": -7.898782, "dir": -5.259725, "dir.length": -7.205635, "direction": -6.107023, "direction*ball_speed*delta": -7.898782, "direction.normalized": -7.898782, "direction.x": -6.512488, "direction.y": -6.289344, "does": -7.205635, "dot": -6.800170, "draw_style_box": -7.898782, "draw_texture_rect": -7.205635, "elif": -6.512488, "else": -5.190732, "er": -6.512488, "extends": -6.512488, "facing_dir": -7.205635, "facing_mesh": -5.333833, "facing_mesh.cross": -7.898782, "facing_mesh=": -7.898782, "false": -5.065569, "floor": -7.898782, "floor_velocity": -5.819341, "for": -5.596197, "func": -4.903050, "g": -6.289344, "g.normalized": -7.898782, "game_over": -7.205635, "gameover": -7.898782, "get_contact_collider_velocity_at_pos": -7.898782, "get_contact_count": -7.205635, "get_contact_local_shape": -7.898782, "get_global_transform": -7.898782, "get_linear_velocity": -7.898782, "get_node": -4.566578, "get_parent": -7.898782, "get_rid": -7.898782, "get_size": -7.898782, "get_step": -7.898782, "get_stylebox": -7.898782, "get_total_density": -7.898782, "get_total_gravity": -7.898782, "get_transform": -7.898782, "get_viewport_rect": -7.898782, "gravity": -6.800170, "h": -6.800170, "hdir": -5.819341, "hdir*hspeed": -7.205635, "height": -6.107023, "horizontal": -6.800170, "hs": -7.898782, "hspeed": -4.903050, "hspeed=": -7.898782, "hv": -5.596197, "hv.length": -7.205635, "hv.normalized": -7.205635, "i": -5.596197, "ie": -7.898782, "ie.is_action": -6.512488, "ie.is_pressed": -7.898782, "if": -3.694090, "in": -5.333833, "increase": -7.898782, "intend": -7.205635, "is": -7.898782, "is_action_pressed": -6.107023, "it": -7.898782, "jump": -7.205635, "jump_attempt": -6.512488, "jumping": -5.952872, "keep_jump_inertia": -7.205635, "last_floor_velocity": -6.289344, "left": -7.898782, "left_pos": -7.205635, "left_pos.y": -6.512488, "left_rect": -7.898782, "left_rect.has_point": -7.898782, "length": -7.205635, "linear": -7.898782, "linear_dir.dot": -7.898782, "linear_h_velocity/linear_vel": -7.898782, "linear_vel": -7.898782, "local_var": -6.512488, "lv": -5.333833, "lv.a": -7.898782, "m": -7.205635, "m3": -7.205635, "max_speed": -6.512488, "mesh_xform": -6.800170, "mesh_xform.basis": -7.898782, "mesh_xform.origin": -7.898782, "min": -7.898782, "move_backwards": -7.898782, "move_forward": -7.898782, "move_left": -7.898782, "move_right": -7.898782, "movement_dir": -6.800170, "n": -6.800170, "n.cross": -7.898782, "n.dot": -7.898782, "new": -7.898782, "new_piece": -6.800170, "normalized": -6.289344, "not": -6.107023, "null": -7.898782, "ofs": -7.205635, "on_floor": -6.800170, "onfloor": -5.701558, "or": -6.512488, "origin": -7.898782, "over": -7.898782, "p": -7.205635, "p_adjust_rate": -7.205635, "p_facing": -6.289344, "p_facing.length": -7.898782, "p_step": -7.205635, "p_target": -7.205635, "pad": -7.205635, "pad_size": -6.512488, "pad_size*": -7.205635, "pads": -7.898782, "param": -5.701558, "pass": -7.205635, "piece_active": -5.952872, "piece_cell_xform": -6.512488, "piece_check_fit": -6.107023, "piece_move_down": -7.205635, "piece_pos": -6.800170, "piece_pos.x": -7.205635, "piece_pos.y": -7.205635, "piece_rot": -6.289344, "piece_rotate": -7.205635, "piece_shape": -5.819341, "play": -7.898782, "player": -7.205635, "pos": -6.512488, "pos.x": -7.205635, "pos.y": -7.205635, "postion": -7.898782, "preload": -7.205635, "prev_shoot": -6.800170, "print": -6.107023, "r": -7.205635, "rad": -7.205635, "randf": -7.898782, "randi": -7.898782, "range": -5.952872, "restart_pressed": -7.898782, "return": -5.190732, "right": -7.898782, "right_pos": -7.205635, "right_pos.y": -6.512488, "right_rect": -7.898782, "right_rect.has_point": -7.898782, "roof": -7.898782, "s": -6.289344, "sb": -7.205635, "scaled": -7.898782, "score": -6.512488, "score_label": -7.205635, "score_label.set_text": -7.205635, "screen_size": -7.205635, "screen_size*": -7.898782, "screen_size.x": -7.898782, "screen_size.y": -6.800170, "set_process": -7.898782, "set_process_input": -7.898782, "set_size": -7.898782, "set_transform": -7.898782, "setup": -7.205635, "sfx": -7.898782, "sharp_turn": -6.800170, "sharp_turn_threshhold": -7.205635, "shoot": -7.898782, "shoot_attempt": -6.512488, "shoot_blend": -5.952872, "sign": -7.898782, "sin": -7.205635, "some_function": -7.898782, "speed": -6.800170, "state": -5.596197, "state.get_contact_collider_velocity_at_pos": -7.898782, "state.get_contact_count": -7.205635, "state.get_contact_local_shape": -7.898782, "state.get_linear_velocity": -7.898782, "state.get_step": -7.898782, "state.get_total_gravity": -7.898782, "state.set_linear_velocity": -7.898782, "str": -7.898782, "t": -6.800170, "t.dot": -7.898782, "target": -7.898782, "target_dir": -5.952872, "target_dir.dot": -7.898782, "test_collapse_rows": -7.205635, "the": -7.205635, "thename": -7.898782, "to": -6.289344, "touching": -7.205635, "true": -5.413876, "turn": -7.205635, "turn_speed": -7.205635, "up": -5.008411, "up*dir.dot": -7.898782, "up*facing_mesh.dot": -7.898782, "up*vv": -7.205635, "up.dot": -7.898782, "update": -5.952872, "v": -7.205635, "var": -3.225954, "velocity": -6.800170, "vertical": -7.898782, "vv": -5.819341, "w": -6.800170, "walk": -7.205635, "when": -7.205635, "where": -7.898782, "while": -7.898782, "width": -6.289344, "width/": -7.898782, "x": -5.500887, "y": -5.500887, "{": -7.205635, "}": -7.205635, }, "GLSL": map[string]float64{ "#define": -5.913103, "#else": -6.906354, "#endif": -5.876735, "#extension": -7.822645, "#ifdef": -5.876735, "#version": -7.129498, "&&": -6.213207, "(": -2.402110, ")": -2.402110, "*": -3.644419, "*N": -7.417180, "*P": -7.417180, "*barPos": -9.208939, "*dot": -9.208939, "*gl_in": -8.110327, "*iNormal": -8.110327, "*iTexCoord": -8.110327, "*ns.x": -7.822645, "*s": -7.129498, "*t": -7.822645, "*uvw": -6.500889, "*uvwSquared": -7.011715, "*x": -7.417180, "+": -3.703608, ",": -2.882790, "-": -3.842963, ".": -8.515792, ".b": -5.625420, ".g": -8.515792, ".gl_Position": -7.599501, ".gl_Position.xyz": -7.263029, ".gl_Position.xyz*uvwCubed": -8.110327, ".n": -6.724033, ".r": -7.417180, ".rgb": -7.822645, ".x": -7.129498, ".xzy": -7.822645, ".y": -7.822645, ".z": -6.906354, "/": -5.131402, "//": -7.129498, "//#define": -6.213207, "//Normalise": -8.515792, "//if": -8.515792, "//vec": -7.417180, "/dot": -9.208939, ":": -6.724033, ";": -2.467239, "<": -5.402277, "=": -2.752170, ">": -5.337738, "?": -7.129498, "AMBIENT": -8.515792, "C": -8.515792, "C.xxx": -7.822645, "C.yyy": -7.822645, "CA": -8.515792, "CAT": -8.515792, "CB": -7.822645, "CBT": -6.906354, "CC": -8.515792, "CCT": -8.515792, "CD": -7.822645, "CDT": -7.417180, "D": -6.318568, "D.wyz": -8.515792, "D.xzx": -8.515792, "D.yyy": -8.515792, "DETAILED_NOISE": -7.417180, "E": -8.110327, "FrontColor": -8.515792, "GL_ARB_separate_shader_objects": -8.515792, "GL_ARB_shading_language_": -8.515792, "GRASS": -7.417180, "GetDiffuse": -8.515792, "HEAVY_AA": -7.822645, "HIGHQUALITY": -7.822645, "LIGHT_AA": -7.417180, "MAX_DIST": -8.110327, "MAX_DIST_SQUARED": -8.110327, "MEDIUMQUALITY": -7.822645, "N": -7.011715, "NUM_LIGHTS": -7.822645, "Ni_plus_Nj": -8.515792, "P": -6.318568, "PI": -7.417180, "Pj_minus_Pi": -7.822645, "PnPatch": -7.822645, "RAGGED_LEAVES": -6.906354, "REFLECTIONS": -7.417180, "SHADOWS": -6.906354, "SMALL_WAVES": -7.129498, "STRINGIFY": -9.208939, "SimpleFragmentShader": -9.208939, "TONEMAP": -6.906354, "UBO": -8.515792, "V": -8.515792, "[": -3.994004, "]": -3.994004, "_aspect": -8.515792, "_frameratio": -6.906354, "_h": -7.417180, "_w": -7.129498, "a": -6.724033, "a_color": -8.515792, "a_position": -9.208939, "aberrate": -7.129498, "abs": -7.822645, "adsk_input": -5.950843, "adsk_result_h": -7.822645, "adsk_result_w": -7.417180, "alpha": -7.417180, "angleOffset": -7.417180, "ao": -6.906354, "apply_disto": -7.129498, "attribute": -8.515792, "b": -5.219955, "b*b": -7.822645, "barNormal": -8.515792, "barPos": -9.208939, "binding": -8.515792, "bool": -8.515792, "bump": -7.822645, "c": -6.724033, "camera": -6.569882, "cameraDir": -8.515792, "cameraVector": -8.515792, "cbar": -7.822645, "ccw": -9.208939, "cfoo": -8.515792, "char*": -9.208939, "chroma": -7.822645, "chroma_blue": -7.822645, "chroma_green": -7.822645, "chroma_red": -7.822645, "chromaticize_and_invert": -7.822645, "clamp": -7.599501, "col": -5.050056, "col*exposure": -8.515792, "color": -8.110327, "color.rgb": -9.208939, "const": -5.712432, "core": -8.515792, "cos": -7.129498, "ct": -7.822645, "d": -6.213207, "d.xzy": -8.515792, "det": -6.117897, "diffuse": -7.129498, "diffuseDot": -8.515792, "dir": -7.822645, "dir.xy": -8.515792, "dir.z": -8.515792, "dist": -6.724033, "distFactor": -8.110327, "distortion_f": -7.417180, "dot": -5.148496, "e": -6.436351, "e.xyy": -8.515792, "e.yxy": -8.515792, "else": -8.515792, "enable": -7.822645, "eps": -6.906354, "eps.xyy": -8.515792, "eps.yxy": -8.515792, "eps.yyx": -8.515792, "exp": -7.822645, "exposure": -8.515792, "f": -5.682579, "fbm": -7.822645, "final": -6.906354, "finalPos": -8.515792, "float": -3.745108, "floor": -6.436351, "for": -6.643990, "fract": -8.515792, "fractional_odd_spacing": -9.208939, "fragmentNormal": -8.515792, "fresnel": -7.822645, "ftransform": -9.208939, "g": -7.822645, "g.xyz": -7.822645, "gl_Color.rgb": -9.208939, "gl_FragColor": -7.599501, "gl_FragColor.rgba": -8.515792, "gl_FragCoord.xy": -6.569882, "gl_FragData": -9.208939, "gl_InvocationID": -5.841644, "gl_MultiTexCoord": -9.208939, "gl_Position": -8.110327, "gl_TessCoord": -6.906354, "gl_TessLevelInner": -9.208939, "gl_TessLevelOuter": -9.208939, "gl_in": -6.811044, "gl_out": -9.208939, "gradients": -8.515792, "grass": -7.822645, "grassCol": -7.822645, "h": -5.471270, "h.w": -8.515792, "h.x": -8.515792, "h.y": -8.515792, "h.z": -8.515792, "halfAngle": -8.515792, "i": -4.665645, "i.x": -8.515792, "i.y": -8.515792, "i.z": -8.515792, "iChannel": -7.417180, "iGlobalTime": -6.569882, "iGlobalTime*": -8.515792, "iNormal": -7.822645, "iPnPatch": -5.774952, "iResolution.x/iResolution.y*": -8.515792, "iResolution.yy": -8.515792, "iTexCoord": -9.208939, "if": -5.183588, "impulse": -7.822645, "in": -7.417180, "inNormal": -7.129498, "inUV": -8.515792, "incr": -7.822645, "input": -7.129498, "int": -6.318568, "intersectCylinder": -8.515792, "intersectLeaf": -7.822645, "intersectPlane": -7.417180, "intersectSand": -7.417180, "intersectSphere": -7.822645, "intersectTreasure": -7.822645, "intersectWater": -7.822645, "inverse_f": -7.822645, "j": -6.811044, "k": -6.436351, "k*": -8.515792, "k*res.x/t": -8.515792, "k*x": -8.515792, "kCoeff": -7.822645, "kCube": -7.822645, "l": -8.515792, "l.zxy": -7.822645, "layout": -6.569882, "leaves": -7.129498, "leavesCol": -7.129498, "leavesPos": -7.129498, "leavesPos.xz": -7.822645, "length": -6.569882, "lessThan": -7.822645, "light": -7.129498, "lightColor": -8.110327, "lightDir": -8.110327, "lightLeaves": -7.417180, "lightVector": -7.822645, "location": -6.906354, "lut": -6.318568, "lut_r": -6.906354, "m": -6.436351, "m*m": -8.515792, "m*pos.xy": -8.515792, "main": -6.569882, "mat": -7.263029, "max": -6.318568, "max_r": -7.822645, "min": -6.213207, "mix": -7.822645, "mod": -7.129498, "model": -9.208939, "n": -5.337738, "n.x": -8.515792, "n.y": -7.417180, "n_": -7.822645, "norA": -7.129498, "norB": -7.417180, "norC": -8.515792, "norD": -8.515792, "norE": -7.129498, "norF": -8.515792, "norG": -8.515792, "norH": -8.515792, "norI": -8.515792, "norcA": -7.822645, "norcB": -7.417180, "norcC": -7.822645, "norcD": -7.822645, "norcE": -8.515792, "norm": -8.515792, "norm.w": -8.515792, "norm.x": -8.515792, "norm.y": -8.515792, "norm.z": -8.515792, "normal": -7.263029, "normalize": -5.990064, "ns": -7.129498, "ns.yyyy": -7.822645, "ns.z": -7.417180, "oNormal": -8.515792, "oTexCoord": -8.515792, "offset": -6.906354, "op": -6.906354, "op.yz": -7.417180, "openAmount": -7.129498, "out": -7.417180, "outNormal": -8.515792, "outPatch": -6.375726, "outUV": -8.515792, "p": -4.709130, "p*": -8.515792, "p.x": -7.822645, "p.xz": -7.822645, "p.xzy": -8.515792, "p.y": -8.515792, "p.z": -7.822645, "pack": -8.515792, "permute": -7.129498, "plants": -7.417180, "plantsShadow": -7.822645, "pnNormal": -9.208939, "pnPos": -9.208939, "pos": -4.766288, "pos*": -7.822645, "pos.x": -8.515792, "pos.xz": -7.822645, "pos.y": -6.436351, "pos.y*": -7.822645, "pos.yz": -7.822645, "pos.z": -7.822645, "pow": -7.599501, "projection": -9.208939, "px": -7.129498, "px.x": -7.822645, "px.y": -7.822645, "r": -5.876735, "r*r": -8.515792, "rad": -7.822645, "rad*rad": -7.822645, "rayDir": -4.754592, "rayDir*res": -8.515792, "rayDir*res.w": -8.515792, "rayDir*t": -7.822645, "rayDir.y": -8.515792, "rayPos": -4.878206, "rayPos.y": -8.515792, "rd": -8.515792, "rd.x": -8.515792, "rd.y": -8.515792, "rdir": -6.569882, "rdir*t": -8.515792, "rdir.yz": -8.515792, "refl": -7.417180, "reflDir": -7.417180, "reflect": -8.515792, "res": -6.117897, "res.w": -6.724033, "res.x": -7.417180, "res.xyz": -8.515792, "res.y": -7.822645, "resLeaves": -7.417180, "resLeaves.w": -6.213207, "resLeaves.xyz": -7.822645, "resPlants": -7.822645, "resPlants.w": -6.724033, "resPlants.xyz": -7.822645, "resSand": -7.822645, "resSand.w": -7.129498, "resSand.xyz": -8.515792, "resTreasure": -8.515792, "resTreasure.w": -7.129498, "resTreasure.xyz": -8.515792, "resWater": -8.515792, "resWater.t": -8.515792, "resWater.w": -7.129498, "return": -4.634228, "rgb_f": -6.906354, "rgb_f.bb": -8.515792, "rgb_f.gg": -8.515792, "rgb_f.rr": -8.515792, "rgb_uvs": -6.030886, "rotate": -6.906354, "rpos": -6.906354, "rpos.yz": -7.822645, "s": -5.183588, "s*s*": -8.515792, "sample": -9.208939, "sample.a": -9.208939, "sample.rgb": -9.208939, "sampled": -8.515792, "sampled.b": -8.515792, "sampled.g": -8.515792, "sampled.r": -8.515792, "sampled.rgb": -8.515792, "sampler": -8.110327, "sandCol": -7.822645, "scene": -6.569882, "sh": -8.515792, "shadow": -7.417180, "sign": -8.515792, "sin": -6.436351, "sky": -6.906354, "skyCol": -7.129498, "snoise": -6.569882, "specular": -8.110327, "specularColor": -8.515792, "specularDot": -8.515792, "sqrt": -6.724033, "st": -9.208939, "static": -9.208939, "step": -7.822645, "struct": -8.515792, "sunCol": -6.906354, "sunDir": -6.906354, "sunDir*": -7.822645, "sway": -6.906354, "t": -4.731603, "taylorInvSqrt": -7.822645, "tessAlpha": -9.208939, "tessLevel": -9.208939, "tex": -6.724033, "texcoord": -7.822645, "texture": -6.500889, "theta": -6.724033, "trace": -7.822645, "traceReflection": -7.822645, "trans": -7.822645, "tree": -7.822645, "treeCol": -7.822645, "triangles": -9.208939, "uShift": -7.417180, "u_MVPMatrix": -8.515792, "ubo": -8.515792, "ubo.model": -9.208939, "ubo.projection": -9.208939, "ubo.tessAlpha": -8.515792, "ubo.tessAlpha*pnNormal": -9.208939, "ubo.tessAlpha*pnPos": -9.208939, "ubo.tessLevel": -8.515792, "uniform": -6.375726, "upDownSway": -7.822645, "uv": -6.030886, "uv.x": -6.117897, "uv.x*uv.x": -8.515792, "uv.y": -6.569882, "uv.y*uv.y": -8.515792, "uvFact": -7.822645, "uvw": -7.822645, "uvwCubed": -9.208939, "uvwSquared": -8.110327, "v": -6.436351, "vShift": -7.417180, "v_color": -7.822645, "varying": -6.906354, "vec": -2.882790, "vertices": -9.208939, "vgrass": -7.822645, "vij": -7.822645, "void": -5.034552, "vtree": -7.129498, "w": -7.129498, "waterHeight": -7.129498, "width": -7.822645, "wij": -7.263029, "x": -4.989432, "x*": -7.417180, "x.xy": -8.515792, "x.zw": -8.515792, "x_": -7.417180, "xy": -7.822645, "xyz": -8.515792, "xzyw": -7.822645, "xzyw*sh.xxyy": -8.515792, "xzyw*sh.zzww": -8.515792, "y": -7.129498, "y.xy": -8.515792, "y.zw": -8.515792, "y_": -7.822645, "yzx": -8.515792, "z": -7.822645, "zw": -7.822645, "{": -4.049884, "||": -7.417180, "}": -4.049884, }, "GN": map[string]float64{ "!": -4.749842, "##############################################################################": -8.209308, "$": -7.739305, "&&": -5.127398, "(": -2.458006, ")": -2.458006, "+": -3.551546, ",": -1.834965, "-": -8.720134, ".whitelist": -8.720134, "=": -2.222856, "[": -2.902031, "\\": -7.046158, "]": -2.900051, "_all_resources_zip_path": -9.818746, "_all_target_cpu": -9.125599, "_all_toolchains": -9.125599, "_android_aapt_path": -8.720134, "_android_log_stdout": -9.125599, "_android_manifest": -8.026987, "_android_manifest_deps": -8.720134, "_apk_build_config": -9.125599, "_apk_under_test": -9.125599, "_apk_under_test_build_config": -9.125599, "_app_as_shared_lib": -8.432452, "_apply_gcc_target_name": -9.125599, "_arch_binary_output": -9.125599, "_arch_binary_target": -9.125599, "_arch_executable_source": -9.125599, "_arch_executable_target": -9.125599, "_arch_shared_library_source": -9.125599, "_arch_shared_library_target": -9.125599, "_assert_input_jar": -8.720134, "_assert_output_jar": -8.432452, "_assert_target": -9.125599, "_bad_deps": -9.818746, "_base_apk_path": -8.209308, "_base_gen_dir": -9.125599, "_base_output_name": -9.818746, "_base_path": -7.739305, "_binary_script_target_name": -9.125599, "_build_config": -6.874307, "_build_config_target_name": -9.125599, "_bundle_binary_output": -9.125599, "_bundle_binary_target": -8.432452, "_bundle_data_info_plist": -9.125599, "_bundle_extension": -9.818746, "_bundle_root_dir": -8.432452, "_cache_dir": -9.125599, "_can_use_fpu_instructions": -8.720134, "_classname_list": -8.720134, "_compile_headers_map_target": -9.125599, "_compile_xib": -9.125599, "_component": -9.818746, "_config": -8.720134, "_config_path": -8.720134, "_convert_target": -9.125599, "_copy_public_headers_target": -9.125599, "_coverage_file": -8.720134, "_cpu": -9.818746, "_create_abi_split": -9.125599, "_create_density_splits": -9.125599, "_create_language_splits": -9.125599, "_create_module_map_target": -9.125599, "_current_cpu": -6.874307, "_current_target": -9.125599, "_density": -9.818746, "_dep_gen_dir": -9.818746, "_dep_name": -9.818746, "_deprecation_warnings": -9.125599, "_deps": -6.640692, "_deps_configs": -8.720134, "_dex_path": -7.872836, "_dex_target": -8.720134, "_dex_target_name": -9.125599, "_dsyms_output_dir": -9.818746, "_embed_script": -8.432452, "_emma_device_jar": -9.125599, "_emma_jar": -8.720134, "_emma_never_instrument": -9.818746, "_enable_assert": -9.125599, "_enable_backtrace": -9.818746, "_enable_code_signing": -8.432452, "_enable_disassembler": -8.432452, "_enable_gdbjit": -8.209308, "_enable_gdbjit_default": -9.125599, "_enable_handle_zapping": -9.125599, "_enable_i": -7.621522, "_enable_inspector": -9.818746, "_enable_multidex": -8.720134, "_enable_relocation_packing": -9.125599, "_enable_slow_dchecks": -9.125599, "_enable_verify_heap": -9.125599, "_entitlements_path": -7.516161, "_entitlements_target_outputs": -8.432452, "_exclusions_file": -8.720134, "_executable": -7.872836, "_experimental_extra_library_files": -9.818746, "_extra_library_files": -9.818746, "_extra_native_libs": -9.818746, "_extra_native_libs_deps": -9.818746, "_filter_input_jar": -8.720134, "_filter_jar": -9.125599, "_filter_output_jar": -8.432452, "_filter_target": -9.125599, "_final_apk_path": -7.621522, "_final_apk_path_no_ext": -9.125599, "_final_apk_path_no_ext_list": -9.125599, "_final_deps": -9.818746, "_finalize_apk_rule_name": -9.125599, "_framework": -8.432452, "_framework_headers_config": -9.125599, "_framework_headers_target": -9.125599, "_framework_public_config": -9.125599, "_framework_root": -9.125599, "_fuzzer": -8.209308, "_gcmole": -9.818746, "_gen_info_plist_outputs": -9.125599, "_generate_entitlements_output": -8.432452, "_generate_entitlements_target": -9.125599, "_generate_incremental_manifest_target_name": -8.720134, "_generate_info_plist": -9.125599, "_generated_peephole_source": -8.432452, "_has_native_libs": -9.125599, "_has_public_headers": -8.209308, "_has_valgrind": -9.818746, "_header_map_filename": -8.432452, "_headers_map_config": -9.125599, "_host_output": -8.720134, "_host_target": -9.125599, "_ignore_aidl": -9.125599, "_ignore_assets": -9.125599, "_ignore_manifest": -9.125599, "_ignore_native_libraries": -9.125599, "_ijar_path": -9.125599, "_ijar_target_name": -9.125599, "_imminent_deprecation_warnings": -8.209308, "_imminent_deprecation_warnings_default": -9.125599, "_include_path": -8.720134, "_incremental_android_manifest": -8.432452, "_incremental_deps": -8.209308, "_incremental_final_apk_path": -9.125599, "_incremental_final_apk_path_helper": -9.125599, "_incremental_finalize_apk_rule_name": -9.125599, "_incremental_install": -8.432452, "_incremental_install_script_path": -9.125599, "_incremental_package_resources_target_name": -9.125599, "_incremental_package_target": -9.125599, "_incremental_packaged_apk_path": -8.720134, "_incremental_resource_packaged_apk_path": -8.720134, "_index": -8.432452, "_info_plist": -8.720134, "_info_plist_bundle": -9.125599, "_info_plist_path": -8.720134, "_info_plist_target": -9.125599, "_info_plist_target_output": -9.125599, "_input_jar_path": -9.125599, "_install_script_name": -9.125599, "_interpreted_regexp": -9.125599, "_ios_platform_library": -9.818746, "_is_prebuilt_binary": -9.818746, "_isolate_run": -8.026987, "_jar_deps": -8.209308, "_jar_excluded_patterns": -8.720134, "_jar_path": -7.516161, "_jar_target_name": -8.720134, "_java_binary_target_name": -9.125599, "_java_files": -9.125599, "_java_files_build_rel": -9.125599, "_java_target_blacklist": -9.125599, "_java_target_whitelist": -9.125599, "_keystore_name": -8.026987, "_keystore_password": -8.026987, "_keystore_path": -8.026987, "_language": -9.818746, "_lib_dex_path": -9.125599, "_lipo_executable_target": -9.125599, "_lipo_shared_library_target": -9.125599, "_load_library_from_apk": -8.209308, "_main_class": -9.125599, "_main_dex_list_path": -8.209308, "_main_dex_list_target_name": -9.125599, "_msg": -9.818746, "_native_lib_placeholders": -8.432452, "_native_lib_version_arg": -9.125599, "_native_lib_version_rule": -9.125599, "_native_libs": -8.432452, "_native_libs_deps": -8.209308, "_native_libs_even_when_incremental": -8.209308, "_object_print": -8.432452, "_optimized_debug": -9.125599, "_output_jar_path": -8.209308, "_output_jar_target": -9.125599, "_output_name": -6.560650, "_output_path": -8.209308, "_output_paths": -9.125599, "_package_resources_target_name": -9.125599, "_packaged_apk_path": -8.720134, "_parent_invoker": -9.818746, "_platform_xml_path": -8.720134, "_possible_dep": -8.432452, "_postmortem_support": -9.125599, "_previous_output_jar": -7.516161, "_process_jar_target_name": -9.125599, "_proguard_config_path": -8.720134, "_proguard_enabled": -8.720134, "_proguard_input_jar": -8.720134, "_proguard_jar_path": -8.432452, "_proguard_output_jar": -8.720134, "_proguard_output_jar_path": -9.818746, "_proguard_preprocess": -9.125599, "_proguard_target": -9.125599, "_proto_path": -9.125599, "_protoc_bin": -9.125599, "_protoc_dep": -8.720134, "_protoc_out_dir": -9.818746, "_public_headers": -9.125599, "_random_seed": -8.720134, "_rebased_android_sdk_jar": -8.026987, "_rebased_apk_build_config": -9.125599, "_rebased_apk_path": -9.818746, "_rebased_apk_under_test_build_config": -9.818746, "_rebased_asset_renaming_sources": -9.818746, "_rebased_asset_sources": -9.818746, "_rebased_build_config": -7.739305, "_rebased_bundled_srcjars": -9.818746, "_rebased_depfile": -9.818746, "_rebased_deps_configs": -9.818746, "_rebased_dex_path": -9.818746, "_rebased_emma_device_jar": -9.818746, "_rebased_extra_native_libs": -9.818746, "_rebased_incremental_apk_path": -9.818746, "_rebased_incremental_install_script_path": -9.818746, "_rebased_incremental_manifest": -9.818746, "_rebased_input_jars_paths": -9.818746, "_rebased_input_paths": -9.818746, "_rebased_java_sources_file": -9.125599, "_rebased_lib_dex_path": -9.818746, "_rebased_lint_android_sdk_root": -9.818746, "_rebased_native_libs": -9.818746, "_rebased_packaged_apk_path": -9.818746, "_rebased_proguard_configs": -9.125599, "_rebased_resource_packaged_apk_path": -9.818746, "_rebased_sources": -9.125599, "_rebased_src_manifest": -9.818746, "_rebased_srcjar_path": -9.818746, "_requires_sdk_api_level_": -8.432452, "_res_target_name": -8.720134, "_resource_packaged_apk_path": -8.720134, "_resources_zip": -7.516161, "_result_path": -8.026987, "_retrolambda": -9.125599, "_retrolambda_input_jar": -8.720134, "_retrolambda_output_jar": -8.432452, "_retrolambda_target": -9.125599, "_rezip_jar_path": -9.125599, "_runtime_deps": -8.720134, "_runtime_deps_file": -8.026987, "_runtime_deps_target": -9.125599, "_scanned_files": -9.818746, "_scanned_files.aidl": -9.818746, "_scanned_files.assets": -9.818746, "_scanned_files.has_classes_jar": -8.720134, "_scanned_files.has_native_libraries": -9.818746, "_scanned_files.has_proguard_flags": -9.125599, "_scanned_files.is_manifest_empty": -9.818746, "_scanned_files.resources": -8.432452, "_scanned_files.subjar_tuples": -9.818746, "_scanned_files.subjars": -9.125599, "_script_name": -9.818746, "_secondary_abi_native_libs_deps": -8.209308, "_secondary_abi_runtime_deps_file": -9.125599, "_secondary_abi_shared_libraries_is_valid": -8.720134, "_secondary_native_libs": -9.818746, "_shared_libraries_is_valid": -8.720134, "_shared_resources": -8.432452, "_shell": -9.125599, "_skip": -9.818746, "_snapshot_toolchain": -9.125599, "_source_dirs_listing_file": -8.720134, "_source_extension": -8.209308, "_source_set": -7.179689, "_split": -8.432452, "_split_densities": -8.209308, "_split_deps": -8.209308, "_split_languages": -8.209308, "_split_rule": -8.432452, "_srcjar_deps": -9.125599, "_srcjar_path": -8.720134, "_stamp_file": -8.720134, "_strip_all_in_config": -8.720134, "_strip_resource_classes": -8.720134, "_subjar_targets": -8.720134, "_supports_android": -7.621522, "_suppressions_file": -8.720134, "_target_cpu": -9.818746, "_target_dir_name": -9.125599, "_target_label": -8.026987, "_target_name": -6.235227, "_template_name": -8.432452, "_test_apk": -9.125599, "_test_isolation_mode": -7.872836, "_test_name": -9.818746, "_test_runner_target_name": -9.125599, "_test_type": -8.026987, "_toolchain": -9.818746, "_toolset_for_shell": -8.432452, "_tuple": -9.818746, "_type": -9.818746, "_unpack_target_name": -9.125599, "_use_chromium_linker": -8.432452, "_use_external_startup_data": -7.333840, "_use_mips_abi_hardfloat": -8.720134, "_use_snapshot": -8.720134, "_version_code": -8.209308, "_version_name": -8.209308, "_xctest_arch_loadable_module_target": -9.125599, "_xctest_bundle": -9.125599, "_xctest_info_plist_bundle": -9.125599, "_xctest_info_plist_target": -9.125599, "_xctest_lipo_loadable_module_target": -9.125599, "_xctest_output": -8.026987, "_xctest_target": -7.739305, "action": -6.155185, "action_foreach": -9.818746, "additional_apk": -8.720134, "additional_target_cpus": -9.818746, "additional_toolchains": -9.818746, "aidl_path": -8.720134, "android_app_secondary_abi": -9.125599, "android_assets": -9.818746, "android_configuration_name": -9.125599, "android_default_aapt_path": -9.125599, "android_default_version_code": -9.818746, "android_default_version_name": -9.818746, "android_full_debug": -9.125599, "android_keystore_name": -9.818746, "android_keystore_password": -9.818746, "android_keystore_path": -9.818746, "android_library": -9.818746, "android_manifest": -8.026987, "android_manifest_dep": -9.818746, "android_resources": -9.818746, "android_sdk": -9.818746, "android_sdk_build_tools": -9.818746, "android_sdk_jar": -8.026987, "android_test_runner_script": -9.125599, "apk_path": -9.818746, "apk_under_test_config": -9.125599, "apk_under_test_gen_dir": -9.818746, "apk_under_test_name": -9.818746, "ar": -8.432452, "ar_wrapper": -9.125599, "arch_binary_output": -8.720134, "arch_binary_target": -8.720134, "args": -4.855902, "arm_float_abi": -9.125599, "arm_fpu": -8.720134, "arm_version": -9.818746, "asan": -9.125599, "asmflags": -8.432452, "assert": -5.462037, "auto_profile_path": -9.818746, "base_dir": -8.432452, "base_output_dir": -9.125599, "base_path": -8.432452, "binutils_path": -9.818746, "build_config": -7.621522, "build_config_target": -9.125599, "build_config_target_name": -9.125599, "build_dotfile_settings.exec_script_whitelist": -9.818746, "buildconfig": -9.818746, "bundle_binary_output": -8.720134, "bundle_binary_target": -8.720134, "bundle_data": -7.872836, "bundle_deps": -8.026987, "bundle_executable_dir": -9.818746, "bundle_extension": -8.209308, "bundle_plugins_dir": -9.818746, "bundle_resources_dir": -9.818746, "bundle_root_dir": -9.125599, "bypass_platform_checks": -9.818746, "cc": -8.720134, "cc_wrapper": -9.125599, "cfi_vptr": -9.125599, "cflags": -5.629092, "cflags_c": -9.818746, "cflags_cc": -7.872836, "cflags_objc": -9.125599, "cflags_objcc": -9.125599, "check_includes": -9.125599, "check_targets": -9.818746, "chromium_code": -9.818746, "clang_base_path": -9.818746, "clang_revision": -9.818746, "clang_use_chrome_plugins": -9.818746, "class": -8.720134, "classname": -9.818746, "code_signing_args": -8.209308, "code_signing_outputs": -8.432452, "code_signing_script": -9.818746, "code_signing_sources": -9.818746, "command": -7.739305, "common_flags": -8.720134, "common_optimize_on_cflags": -7.333840, "common_optimize_on_ldflags": -8.209308, "compile_wrapper": -8.432452, "compile_xibs": -9.818746, "compiler_prefix": -8.209308, "component": -9.125599, "config": -6.451450, "configs": -5.867503, "configuration_name": -9.125599, "convert_plist": -9.818746, "copy": -9.125599, "copy_command": -9.818746, "copy_description": -9.818746, "create_bundle": -9.818746, "create_signed_bundle": -8.720134, "current_cpu": -6.823014, "current_toolchain": -6.985533, "cxx": -8.432452, "data": -8.432452, "data_deps": -7.516161, "dcheck_always_on": -9.125599, "declare_args": -8.432452, "def": -9.125599, "default_executable_configs": -8.720134, "default_executable_extension": -9.125599, "default_output_dir": -9.818746, "default_output_extension": -9.818746, "default_shared_library_configs": -9.818746, "default_shlib_extension": -9.125599, "default_toolchain": -7.516161, "defined": -4.212944, "defines": -5.707872, "depfile": -6.012084, "deps": -4.898765, "deps_dex": -9.818746, "depsformat": -8.720134, "description": -8.026987, "dex": -9.818746, "dex_path": -8.432452, "disable_compression": -9.818746, "disable_incremental_isolated_processes": -9.818746, "else": -4.998465, "emma_coverage": -8.720134, "emma_filter": -9.125599, "enable_dsyms": -9.818746, "enable_full_stack_frames_for_profiling": -9.125599, "enable_incremental_dx": -9.818746, "enable_inspector": -9.125599, "enable_java_templates": -9.125599, "enable_multidex": -9.125599, "enable_profiling": -8.720134, "enable_resource_whitelist_generation": -8.432452, "enable_stripping": -9.818746, "exclude_unwind_tables": -9.818746, "exec_script": -8.432452, "exec_script_whitelist": -9.818746, "executable": -9.818746, "executable_name": -8.720134, "extra_cflags": -9.125599, "extra_cppflags": -9.125599, "extra_cxxflags": -9.125599, "extra_ldflags": -9.125599, "extra_substitutions": -8.432452, "extra_system_frameworks": -9.818746, "false": -6.774224, "fatal_linker_warnings": -9.125599, "final_dex_path": -8.720134, "final_dex_target_name": -9.818746, "final_target_name": -8.720134, "finalize_apk": -8.720134, "finalize_split": -9.125599, "findbugs_verbose": -9.818746, "foreach": -7.253797, "format": -9.125599, "forward_variables_from": -5.341410, "framework_aidl": -9.125599, "full_wpo_on_official": -9.818746, "gcc_toolchain": -9.818746, "gcmole": -9.125599, "gen_dir": -9.818746, "generate_interface_jar": -9.818746, "generate_strings_outputs": -9.125599, "generated_resource_dirs": -9.818746, "generated_resource_files": -9.818746, "generated_script": -8.432452, "get_label_info": -6.599870, "get_path_info": -7.739305, "get_target_outputs": -7.420851, "gold_path": -8.432452, "grit_output_dir": -9.818746, "group": -6.599870, "has_valgrind": -9.125599, "headers": -9.125599, "hermetic_xcode_path": -8.720134, "host_cpu": -9.125599, "host_os": -9.818746, "host_toolchain": -8.026987, "ibtool_flags": -9.818746, "icu_use_data_file": -9.818746, "icu_use_data_file_flag": -9.125599, "if": -3.572640, "ignore_all_data_deps": -9.818746, "import": -6.057546, "imports": -8.432452, "include_dirs": -7.739305, "incremental_apk_path": -9.818746, "incremental_install_script_path": -9.818746, "info_plist": -8.720134, "input_apk_path": -8.720134, "input_jar": -9.125599, "input_jar_path": -9.818746, "inputs": -5.926926, "invoker": -5.364399, "invoker.aar_path": -8.720134, "invoker.additional_apks": -9.125599, "invoker.alternative_android_sdk_ijar": -9.818746, "invoker.alternative_android_sdk_ijar_dep": -9.818746, "invoker.alternative_android_sdk_jar": -8.209308, "invoker.android_aapt_path": -9.125599, "invoker.android_manifest": -7.516161, "invoker.android_manifest_dep": -9.125599, "invoker.apk_name": -8.720134, "invoker.apk_path": -8.720134, "invoker.apk_target": -8.720134, "invoker.apk_under_test": -7.872836, "invoker.app_as_shared_lib": -9.125599, "invoker.ar": -9.125599, "invoker.arch_binary_output": -9.125599, "invoker.arch_binary_target": -9.125599, "invoker.args": -7.739305, "invoker.asset_renaming_sources": -9.125599, "invoker.asset_sources": -9.125599, "invoker.assets_build_config": -8.720134, "invoker.base_path": -9.818746, "invoker.bootclasspath": -9.125599, "invoker.build_config": -7.739305, "invoker.bundle_binary_output": -9.125599, "invoker.bundle_binary_target": -9.125599, "invoker.bundle_deps": -8.432452, "invoker.bundle_extension": -9.125599, "invoker.bundled_srcjars": -9.125599, "invoker.bypass_platform_checks": -9.125599, "invoker.cc": -9.125599, "invoker.classes": -9.125599, "invoker.clear_dir": -9.125599, "invoker.configs": -9.125599, "invoker.create_abi_split": -9.125599, "invoker.create_cache": -9.125599, "invoker.create_density_splits": -8.432452, "invoker.custom_package": -9.125599, "invoker.cxx": -9.125599, "invoker.defines": -9.125599, "invoker.deps": -6.417549, "invoker.dest": -9.818746, "invoker.dex_path": -7.872836, "invoker.disable_compression": -9.125599, "invoker.emma_instrument": -9.125599, "invoker.enable_code_signing": -9.125599, "invoker.enable_multidex": -8.432452, "invoker.enable_relocation_packing": -9.125599, "invoker.entitlements_path": -8.026987, "invoker.entitlements_target": -7.739305, "invoker.executable_dist_dir": -8.720134, "invoker.executable_extension": -9.125599, "invoker.extensions_to_not_compress": -9.125599, "invoker.extra_cflags": -8.720134, "invoker.extra_cppflags": -8.720134, "invoker.extra_cxxflags": -8.720134, "invoker.extra_ldflags": -8.720134, "invoker.extra_substitutions": -9.125599, "invoker.extra_system_frameworks": -8.432452, "invoker.file_list_json": -9.818746, "invoker.final_apk_path": -8.720134, "invoker.generated_files": -9.818746, "invoker.gradle_treat_as_prebuilt": -9.125599, "invoker.grit_output_dir": -9.818746, "invoker.ignore_aidl": -9.125599, "invoker.ignore_all_data_deps": -9.125599, "invoker.ignore_assets": -9.125599, "invoker.ignore_manifest": -9.125599, "invoker.ignore_native_libraries": -9.125599, "invoker.import_include": -8.432452, "invoker.include_path": -9.125599, "invoker.incremental_apk_path": -9.818746, "invoker.incremental_deps": -9.125599, "invoker.incremental_install": -9.125599, "invoker.incremental_install_script_path": -9.818746, "invoker.info_plist": -8.432452, "invoker.info_plist_target": -8.209308, "invoker.input": -8.720134, "invoker.input_apk_path": -9.125599, "invoker.input_jar_path": -8.720134, "invoker.input_jars_paths": -9.125599, "invoker.inputs": -8.432452, "invoker.install_script_name": -9.125599, "invoker.interface_file": -8.720134, "invoker.invoker": -9.818746, "invoker.isolate": -8.720134, "invoker.jar_dep": -9.125599, "invoker.jar_excluded_patterns": -9.125599, "invoker.jar_file": -9.125599, "invoker.jar_path": -7.420851, "invoker.java_files": -8.720134, "invoker.java_sources_file": -8.209308, "invoker.jni_package": -9.125599, "invoker.keystore_name": -8.720134, "invoker.keystore_password": -8.720134, "invoker.keystore_path": -8.209308, "invoker.language_splits": -8.432452, "invoker.ld": -9.125599, "invoker.libs_section_postfix": -9.125599, "invoker.libs_section_prefix": -9.125599, "invoker.load_library_from_apk": -8.720134, "invoker.main_class": -8.026987, "invoker.native_lib_placeholders": -9.125599, "invoker.native_lib_version_arg": -9.125599, "invoker.native_lib_version_rule": -9.125599, "invoker.native_libs": -8.026987, "invoker.native_libs_even_when_incremental": -9.125599, "invoker.native_libs_filearg": -8.720134, "invoker.nm": -9.125599, "invoker.output": -7.621522, "invoker.output_apk_path": -8.209308, "invoker.output_jar_path": -8.432452, "invoker.output_name": -7.333840, "invoker.page_align_shared_libraries": -9.125599, "invoker.possible_config_deps": -9.125599, "invoker.product_type": -9.818746, "invoker.proguard_configs": -9.125599, "invoker.proguard_enabled": -8.432452, "invoker.proguard_info": -9.818746, "invoker.proguard_jar_path": -8.720134, "invoker.proguard_preprocess": -8.432452, "invoker.proguard_preprocess_config": -9.818746, "invoker.proto_path": -9.818746, "invoker.public_deps": -7.516161, "invoker.public_headers": -8.720134, "invoker.r_text": -9.125599, "invoker.readelf": -9.125599, "invoker.rebuild_define": -9.125599, "invoker.renaming_destinations": -9.125599, "invoker.renaming_sources": -8.720134, "invoker.requires_android": -8.432452, "invoker.requires_sdk_api_level_": -9.125599, "invoker.res_dir": -9.125599, "invoker.resource_dirs": -9.125599, "invoker.resource_packaged_apk_path": -8.432452, "invoker.resources": -8.720134, "invoker.resources_zip": -8.432452, "invoker.rezip_apk": -9.125599, "invoker.script_name": -9.818746, "invoker.secondary_abi_native_libs_filearg": -9.818746, "invoker.secondary_abi_shared_libraries": -8.720134, "invoker.secondary_abi_shared_libraries_runtime_deps_file": -9.818746, "invoker.secondary_native_libs": -8.432452, "invoker.shard_timeout": -9.818746, "invoker.shared_libraries": -8.720134, "invoker.shared_libraries_runtime_deps_file": -9.818746, "invoker.shared_resources": -9.125599, "invoker.shlib_extension": -9.125599, "invoker.solink_libs_section_postfix": -9.125599, "invoker.solink_libs_section_prefix": -9.125599, "invoker.source": -7.872836, "invoker.sources": -7.516161, "invoker.split_config": -9.818746, "invoker.split_type": -9.818746, "invoker.srcjar": -9.125599, "invoker.srcjar_deps": -9.125599, "invoker.strip": -9.818746, "invoker.strip_resource_classes": -9.125599, "invoker.supports_android": -7.739305, "invoker.target_name": -8.432452, "invoker.test_jar": -9.818746, "invoker.test_name": -9.818746, "invoker.test_suite": -8.432452, "invoker.test_type": -9.818746, "invoker.testonly": -9.125599, "invoker.toolchain_args": -8.432452, "invoker.toolprefix": -9.125599, "invoker.uncompress_shared_libraries": -9.125599, "invoker.use_chromium_linker": -9.125599, "invoker.variables": -8.432452, "invoker.version_code": -8.720134, "invoker.version_name": -8.720134, "invoker.wrapper_script_args": -9.125599, "invoker.wrapper_script_name": -9.125599, "invoker.write_asset_list": -9.125599, "invoker_toolchain_args": -9.125599, "invoker_toolchain_args.current_cpu": -9.125599, "invoker_toolchain_args.current_os": -9.818746, "invoker_toolchain_args.v": -9.818746, "ios_app_bundle": -9.125599, "ios_code_signing_identity": -9.125599, "ios_deployment_target": -9.818746, "ios_enable_code_signing": -9.818746, "ios_info_plist": -8.720134, "ios_sdk_name": -9.818746, "is_android": -6.823014, "is_android_assets": -8.432452, "is_android_resources": -8.026987, "is_apk": -7.621522, "is_asan": -8.720134, "is_cfi": -9.818746, "is_chromeos": -8.209308, "is_clang": -6.823014, "is_component_build": -7.739305, "is_debug": -7.253797, "is_deps_dex": -8.209308, "is_group": -8.720134, "is_ios": -7.872836, "is_java": -8.026987, "is_java_debug": -9.818746, "is_linux": -7.739305, "is_mac": -7.516161, "is_msan": -9.818746, "is_nacl": -7.739305, "is_nacl_irt": -9.125599, "is_official_build": -8.720134, "is_posix": -7.872836, "is_prebuilt_binary": -9.818746, "is_tsan": -9.818746, "is_win": -6.727704, "isolate": -8.026987, "jar_excluded_patterns": -8.720134, "jar_file": -8.432452, "jar_path": -8.026987, "java_binary": -9.818746, "java_binary_script": -9.818746, "java_files": -9.818746, "java_group": -9.818746, "java_library_impl": -9.125599, "java_prebuilt": -9.125599, "java_prebuilt_impl": -9.125599, "java_script": -8.720134, "jni_actions": -8.720134, "jni_generator_include": -9.125599, "jni_output_dir": -8.720134, "jni_package": -9.818746, "jni_target_name": -9.125599, "keystore_name": -8.720134, "keystore_password": -8.720134, "keystore_path": -8.720134, "ld": -8.720134, "ldflags": -6.207828, "lib_dir_switch": -9.818746, "lib_dirs": -9.818746, "lib_switch": -9.818746, "libs": -7.621522, "libs_section_postfix": -9.125599, "libs_section_prefix": -9.125599, "lint_android_sdk_root": -9.818746, "lint_suppressions_file": -8.720134, "linux_use_bundled_binutils": -8.432452, "linux_use_bundled_binutils_override": -9.818746, "lipo_binary": -8.720134, "llvm_force_head_revision": -9.818746, "loadable_module": -9.818746, "main_class": -9.818746, "main_dex_rules": -8.720134, "mips_arch_variant": -8.209308, "mips_fpu_mode": -8.720134, "msan": -9.125599, "msvs_xtree_patched": -9.818746, "n_support": -7.621522, "name": -8.026987, "native_lib_placeholders": -9.818746, "native_libs": -9.125599, "nm": -8.720134, "object_subdir": -9.818746, "optimize_for_fuzzing": -8.432452, "optimize_for_size": -8.720134, "output": -7.739305, "output_apk_path": -8.209308, "output_dir": -8.720134, "output_extension": -9.125599, "output_jar": -9.818746, "output_jar_path": -9.125599, "output_name": -7.253797, "output_prefix": -9.818746, "output_prefix_override": -8.720134, "outputs": -5.528287, "package_apk": -9.125599, "package_resources_helper": -9.125599, "package_target": -9.125599, "packages": -9.125599, "pkg_config": -9.125599, "plist_templates": -9.818746, "pool": -9.818746, "possible_config_deps": -8.720134, "prefix": -9.818746, "process_file_template": -8.432452, "process_java_prebuilt": -9.818746, "product_type": -8.209308, "proguard": -9.818746, "proguard_configs": -8.720134, "proguard_verbose": -9.818746, "public_configs": -7.420851, "public_deps": -5.867503, "readelf": -8.720134, "rebase_path": -4.486028, "rebased_android_sdk": -9.818746, "rebased_android_sdk_build_tools": -8.720134, "rebased_android_sdk_jar": -8.720134, "rebased_import_includes": -9.818746, "rebased_imports": -9.818746, "rebased_output": -9.125599, "rebased_renaming_sources": -9.818746, "rebased_resources": -9.818746, "rebased_sources": -9.818746, "rebuild_string": -9.125599, "renaming_destinations": -8.720134, "renaming_sources": -9.818746, "requires_android": -7.516161, "resource_dirs": -9.125599, "resource_packaged_apk_path": -8.432452, "resources_zip": -8.209308, "resources_zip_path": -9.125599, "rezip_apk": -9.818746, "root_build_dir": -4.525441, "root_gen_dir": -9.818746, "root_out_dir": -9.125599, "root_path": -9.125599, "rspfile": -8.720134, "rspfile_content": -9.818746, "save_unstripped_output": -9.818746, "script": -6.129867, "script_name": -9.125599, "secondary_source": -9.818746, "set_defaults": -8.432452, "set_sources_assignment_filter": -6.322239, "shared_library": -9.818746, "shared_resources": -9.818746, "shim_headers": -9.125599, "shlib_extension": -9.818746, "sofile": -8.720134, "solink_libs_section_postfix": -9.125599, "solink_libs_section_prefix": -9.125599, "soname": -9.818746, "source": -9.818746, "source_set": -8.209308, "sources": -5.155307, "split_config": -9.125599, "split_type": -9.125599, "srcjar_deps": -9.818746, "srcjar_path": -8.026987, "stamp_command": -9.818746, "stamp_description": -9.818746, "strip_resource_classes": -9.818746, "supports_android": -7.516161, "symbol_level": -8.720134, "target_arch": -9.125599, "target_cpu": -8.720134, "target_name": -5.741209, "template": -6.105174, "test_name": -9.818746, "test_runner_args": -7.110696, "test_runner_script": -9.818746, "test_suite": -9.818746, "test_type": -9.818746, "testonly": -7.872836, "tool": -7.872836, "toolchain": -9.818746, "toolchain_args": -9.125599, "toolchain_args.cc_wrapper": -9.125599, "toolchain_args.use_goma": -9.125599, "toolchain_cc_wrapper": -8.209308, "toolchain_uses_goma": -8.720134, "toolprefix": -9.125599, "treat_warnings_as_errors": -8.432452, "true": -6.081077, "tsan": -9.125599, "type": -6.599870, "unstripped_sofile": -9.125599, "update_args": -8.720134, "use_cfi_diag": -9.818746, "use_debug_fission": -8.432452, "use_external_startup_data": -9.125599, "use_gold": -9.125599, "use_goma": -9.818746, "use_ios_simulator": -8.432452, "use_java": -9.818746, "use_order_profiling": -9.818746, "use_snapshot": -9.125599, "use_system_xcode": -8.720134, "use_xcode_clang": -9.818746, "using_sanitizer": -8.720134, "v": -4.801466, "variables": -9.125599, "visibility": -5.926926, "want_v": -9.125599, "whitelist_file": -9.125599, "whitelist_flag": -8.432452, "wrapper_script_name": -9.818746, "write_build_config": -8.432452, "write_runtime_deps": -8.720134, "zip": -8.720134, "zip_target_name": -9.125599, "zipalign_path": -9.818746, "{": -3.053707, "||": -5.449298, "}": -3.047957, }, "Game Maker Language": map[string]float64{ "!": -5.230514, "#define": -5.376468, "$": -6.329127, "&&": -6.916913, "'": -8.526351, "(": -2.419328, ")": -2.420071, "*": -6.852375, "*/": -9.624963, "*argument_count": -9.624963, "*n": -8.526351, "*rand": -7.140057, "+": -3.856642, ",": -2.842771, "-": -4.489165, "/": -8.931816, "//": -6.533921, "//////////////////////////": -8.931816, "/////////////////////////////////": -8.931816, "////////////////////////////////////": -8.931816, "///////////////////////////////////////": -8.238669, "////////////////////////////////////////": -8.931816, "///draw_menu": -8.931816, "//A": -8.931816, "//Add": -8.238669, "//Advance": -9.624963, "//Am": -8.931816, "//Append": -8.931816, "//Automated": -9.624963, "//Background": -8.238669, "//Backspace": -9.624963, "//Bug": -9.624963, "//Build": -7.227068, "//But": -8.931816, "//Call": -7.833204, "//Can": -9.624963, "//Capture": -9.624963, "//Carriage": -9.624963, "//Catch": -7.833204, "//Check": -8.015526, "//Compare": -8.931816, "//Convert": -9.624963, "//Determine": -8.931816, "//Distributed": -8.931816, "//Done": -7.322378, "//Double": -9.624963, "//Draw": -8.931816, "//Ended": -8.526351, "//Error": -8.526351, "//Escape": -9.624963, "//Find": -8.931816, "//For": -8.931816, "//Form": -9.624963, "//Get": -9.624963, "//Go": -8.526351, "//Grab": -8.238669, "//Horizontal": -9.624963, "//If": -7.545522, "//Iteratively": -8.526351, "//Lists": -8.931816, "//Look": -8.238669, "//Loop": -8.238669, "//Maps": -8.931816, "//Menu": -8.931816, "//New": -9.624963, "//No": -8.931816, "//Not": -9.624963, "//Numeric": -9.624963, "//Pass": -8.015526, "//Position": -9.624963, "//Prefix": -9.624963, "//Prepend": -9.624963, "//Read": -8.526351, "//Real": -8.238669, "//Regular": -9.624963, "//Replace": -9.624963, "//Required": -8.931816, "//Reset": -8.931816, "//Return": -7.833204, "//Safe": -9.624963, "//Search": -9.624963, "//Seek": -7.833204, "//Select": -8.931816, "//Start": -9.624963, "//String": -8.015526, "//This": -8.931816, "//Trying": -9.624963, "//Unknown": -9.624963, "//Verify": -9.624963, "//argument": -8.931816, "//can": -9.624963, "//draw_rectangle": -8.238669, "//draw_sprite": -9.624963, "//draws": -9.624963, "//ds_map_add": -8.931816, "//global.currLevel": -9.624963, "//if": -8.015526, "//instance_create": -8.931816, "//jso_encode_map": -9.624963, "//jso_list_check": -8.526351, "//jso_list_exists": -9.624963, "//jso_list_lookup": -8.931816, "//jso_list_lookup_type": -8.931816, "//jso_map_check": -8.931816, "//key": -9.624963, "//let": -9.624963, "//limit": -9.624963, "//playSound": -9.624963, "//the": -8.931816, "//xx": -8.931816, "/dist*": -9.624963, "/pi": -8.526351, "/power": -9.624963, "/xVel": -9.624963, "0": -6.916913, "0=": -9.624963, "0d": -9.624963, "1": -7.545522, "15": -9.624963, "1=": -9.624963, "2": -8.015526, "2=": -9.624963, "3": -9.624963, "30": -9.624963, "4": -9.624963, "5": -9.624963, "6": -9.624963, ":": -3.850412, ";": -2.510194, "<": -5.818301, "<):>": -9.624963, "<,>": -8.931816, "<ajf@ajf.me>": -6.580441, "<argument_count;>": -7.833204, "<bool>": -8.238669, "<char>": -9.624963, "<errormsg>": -8.526351, "<expected>": -9.624963, "<hex_string>": -9.624963, "<http://spelunkyworld.com/>": -8.526351, "<index>": -8.931816, "<int>": -8.238669, "<json>": -7.140057, "<key>": -7.545522, "<l;>": -8.238669, "<list>": -7.427739, "<map>": -7.322378, "<n>": -8.931816, "<num>": -9.624963, "<real>": -9.624963, "<result>": -8.526351, "<size;>": -8.931816, "<startindex>": -7.833204, "<str>": -8.238669, "<sublist>": -8.526351, "<submap>": -8.526351, "<tuple_source>": -8.931816, "<val>": -8.015526, "<xx+width)>": -8.931816, "=": -2.655173, ">": -5.753762, "?": -7.140057, "@author": -9.624963, "@version": -9.624963, "A": -8.526351, "API": -8.931816, "ARROW_BOMB": -8.931816, "ARROW_NORM": -8.931816, "Add": -9.624963, "Advance": -9.624963, "An": -9.624963, "B": -9.624963, "Build": -9.624963, "C": -9.624963, "CALL": -9.624963, "CLIMBING": -8.015526, "CR": -8.526351, "Call": -7.833204, "Cannot": -8.931816, "Check": -7.545522, "Crash": -9.624963, "D": -9.624963, "DIRECTLY": -9.624963, "DO": -9.624963, "DUCKING": -8.238669, "DUCKTOHANG": -9.624963, "Done": -7.322378, "E": -8.238669, "End": -8.931816, "FALLING": -7.545522, "Find": -9.624963, "Found": -7.545522, "GMTuple": -8.931816, "GameGeisha": -8.931816, "HANGING": -7.322378, "I": -7.833204, "IN_AIR": -8.015526, "Iteratively": -9.624963, "JSON": -8.526351, "JSOnion": -8.238669, "JUMPING": -7.833204, "Kernel": -9.624963, "LEFT": -7.679053, "LOOKING_UP": -8.238669, "Lists": -8.931816, "Look": -8.931816, "Looking": -8.015526, "MIT": -8.931816, "Maps": -8.931816, "Multiple": -7.427739, "NOT": -9.624963, "No": -8.931816, "ON_GROUND": -6.734592, "PLEASE": -9.624963, "Position": -9.624963, "Prefix": -9.624963, "Prepend": -9.624963, "RIGHT": -7.322378, "RUNNING": -8.526351, "Recursively": -7.679053, "Return": -8.526351, "SS_IsSoundPlaying": -8.931816, "STANDING": -8.931816, "Save": -8.931816, "Single": -9.624963, "Step.": -8.931816, "The": -8.931816, "UP": -9.624963, "[": -6.014046, "]": -5.961402, "_PIWIK_REQS": -8.931816, "_PiwikDebugOutput": -9.624963, "_Piwik_CacheFile": -8.015526, "_Piwik_IniFile": -8.931816, "_Piwik_baseurl": -8.931816, "_Piwik_id": -8.931816, "_Piwik_idsite": -8.931816, "_Piwik_idts": -8.931816, "_Piwik_idvc": -8.931816, "_Piwik_viewts": -8.931816, "__http_client_destroy": -8.238669, "__http_client_step": -9.624963, "__http_init": -9.624963, "__http_parse_hex": -9.624963, "__http_parse_url": -9.624963, "__http_split": -9.624963, "__jso_gmt_elem": -5.911391, "__jso_gmt_numtostr": -6.916913, "__jso_gmt_size": -7.833204, "__jso_gmt_test_all": -9.624963, "__jso_gmt_test_elem": -8.931816, "__jso_gmt_test_numtostr": -8.931816, "__jso_gmt_test_size": -8.931816, "__jso_gmt_tuple": -6.533921, "_assert_debug_value": -9.624963, "_assert_error_popup": -8.931816, "_assert_newline": -8.931816, "_decode": -9.624963, "_encode": -9.624963, "_file": -8.931816, "_jso_decode_boolean": -8.238669, "_jso_decode_integer": -8.931816, "_jso_decode_list": -8.238669, "_jso_decode_map": -8.238669, "_jso_decode_real": -8.015526, "_jso_decode_string": -8.015526, "_jso_hex_to_decimal": -8.931816, "_jso_is_whitespace_char": -6.852375, "_jso_lookup_kernel": -6.916913, "_piwikStringExplode": -8.931816, "_piwikUrlEncode": -6.629231, "_string_utf": -8.931816, "_test_jso_bugs": -9.624963, "a": -5.987377, "above": -9.624963, "abs": -7.060014, "actual": -7.227068, "actualResponseBody": -8.015526, "actualResponseBodySize": -9.624963, "actualResponseSize": -9.624963, "add": -8.931816, "added": -8.931816, "added.": -9.624963, "adding": -8.931816, "addr_table": -7.679053, "address": -8.015526, "after": -9.624963, "afterend": -8.015526, "alarm": -7.227068, "all": -8.931816, "already": -8.931816, "always": -8.526351, "an": -7.427739, "analytics": -9.624963, "and": -4.594525, "animation": -9.624963, "any": -8.931816, "approximatelyZero": -8.238669, "are": -8.931816, "aren": -8.931816, "arg_keyval": -7.833204, "args": -5.887294, "argstring": -7.545522, "argument": -4.226801, "argument0": -6.916913, "argument1": -7.833204, "argument2": -9.624963, "argument3": -8.931816, "argument_count": -6.791750, "arguments": -7.060014, "as": -8.526351, "assert_equal": -7.833204, "assert_false": -7.833204, "assert_true": -8.526351, "at": -8.526351, "attempt": -9.624963, "author": -9.624963, "b": -6.734592, "background": -7.322378, "background_index": -9.624963, "backslash": -8.931816, "backslashes": -9.624963, "base": -8.931816, "be": -6.852375, "because": -8.526351, "been": -9.624963, "being": -8.931816, "bgExtras": -9.624963, "bgExtrasIce": -9.624963, "bgExtrasLush": -9.624963, "bgExtrasTemple": -9.624963, "bgTemple": -9.624963, "blinkToggle": -9.624963, "boolean": -9.624963, "both": -8.931816, "bounding": -9.624963, "braces": -9.624963, "brackets": -9.624963, "break": -4.627751, "browser_not_a_browser": -9.624963, "buffer_bytes_left": -8.238669, "buffer_create": -9.624963, "buffer_destroy": -8.526351, "button": -8.931816, "by": -7.545522, "c": -4.880031, "ca": -7.322378, "cache": -8.931816, "cacheSig": -8.931816, "cachedJson": -8.931816, "calls": -7.833204, "can": -8.931816, "canRun": -9.624963, "cantJump": -8.526351, "case": -4.041467, "changed": -9.624963, "character": -7.060014, "characters": -8.526351, "check": -8.931816, "checkAttack": -8.931816, "checkAttackPressed": -9.624963, "checkAttackReleased": -9.624963, "checkDown": -9.624963, "checkItemPressed": -9.624963, "checkJump": -9.624963, "checkJumpPressed": -9.624963, "checkJumpReleased": -9.624963, "checkLeft": -9.624963, "checkLeftPressed": -9.624963, "checkLeftReleased": -9.624963, "checkRight": -9.624963, "checkRightPressed": -9.624963, "checkRightReleased": -9.624963, "checkRun": -9.624963, "checkUp": -9.624963, "choice": -8.931816, "chose": -8.931816, "chr": -7.679053, "chunkSize": -7.545522, "clean": -8.238669, "cleanup": -7.140057, "clicked": -7.833204, "clicking": -8.931816, "client": -6.985906, "client.error": -9.624963, "client.errored": -8.526351, "client.reasonPhrase": -9.624963, "client.responseBodyProgress": -9.624963, "client.responseHeaders": -9.624963, "client.state": -8.526351, "client.statusCode": -9.624963, "climbAcc": -8.931816, "climbAnimSpeed": -9.624963, "closing": -9.624963, "code": -8.931816, "colBot": -7.227068, "colIceBot": -8.931816, "colLadder": -8.526351, "colLeft": -7.833204, "colPlat": -8.015526, "colPlatBot": -7.833204, "colRight": -7.833204, "colSolidLeft": -8.238669, "colSolidRight": -8.526351, "colTop": -8.238669, "colWaterTop": -8.526351, "collision_point": -6.292759, "comma": -8.238669, "compatible": -8.526351, "content": -8.238669, "contents": -8.526351, "continue": -9.624963, "correct": -8.526351, "corrected": -8.931816, "corrupted.": -9.624963, "could": -8.238669, "count": -8.238669, "ctz": -8.238669, "curCacheSig": -8.931816, "current": -8.931816, "current_day": -9.624963, "current_hour": -9.624963, "current_key": -7.545522, "current_minute": -9.624963, "current_month": -9.624963, "current_second": -9.624963, "current_year": -9.624963, "cut": -8.931816, "data": -6.446910, "datastr": -7.833204, "date_current_datetime": -8.931816, "date_get_hour": -8.931816, "date_get_minute": -8.931816, "date_get_second": -8.931816, "date_get_timezone": -8.526351, "date_set_timezone": -7.833204, "dead": -8.526351, "decimal": -8.238669, "default": -6.128456, "define": -7.227068, "delimeter": -7.679053, "departLadderXVel": -8.931816, "departLadderYVel": -9.624963, "dev": -8.931816, "digit": -8.015526, "digit_value": -8.238669, "digits": -7.322378, "display": -9.624963, "display_get_height": -9.624963, "display_get_width": -9.624963, "do": -7.679053, "don": -9.624963, "done": -7.140057, "dot": -8.238669, "double": -8.526351, "down": -9.624963, "draw": -8.015526, "draw_button": -8.931816, "draw_menu": -9.624963, "draw_set_color": -8.238669, "draw_sprite": -7.427739, "draw_sprite_ext": -8.526351, "draws": -8.931816, "ds_args_list": -7.322378, "ds_exists": -9.624963, "ds_list": -8.526351, "ds_list_add": -6.329127, "ds_list_create": -7.227068, "ds_list_destroy": -6.985906, "ds_list_find_value": -8.526351, "ds_list_size": -7.060014, "ds_map_add": -6.190976, "ds_map_add_list": -9.624963, "ds_map_create": -7.833204, "ds_map_destroy": -8.015526, "ds_map_exists": -8.526351, "ds_map_find_first": -8.015526, "ds_map_find_next": -7.679053, "ds_map_find_value": -8.931816, "ds_map_size": -7.833204, "ds_type_map": -9.624963, "e": -8.526351, "e/E": -8.931816, "each": -8.015526, "early": -8.526351, "edge": -8.931816, "elem": -9.624963, "element": -7.227068, "elements": -8.526351, "else": -4.880031, "empty": -7.833204, "encode": -8.238669, "encoding": -8.526351, "end": -8.526351, "ending": -7.140057, "entries": -9.624963, "entry": -8.931816, "equality": -9.624963, "error": -7.833204, "errored": -8.526351, "escape": -8.238669, "escape_mode": -7.227068, "every": -9.624963, "except": -8.931816, "exist": -9.624963, "existence": -8.931816, "exists": -8.931816, "exit": -8.931816, "expected": -7.227068, "expecting": -8.931816, "exponent": -7.679053, "extracted": -8.526351, "f": -8.931816, "facing": -6.791750, "fallTimer": -8.931816, "false": -5.147627, "feed": -9.624963, "fh": -7.679053, "file_exists": -9.624963, "file_text_close": -8.931816, "file_text_open_read": -9.624963, "file_text_open_write": -9.624963, "file_text_read_string": -9.624963, "file_text_write_string": -9.624963, "final": -9.624963, "find": -8.931816, "fine": -8.931816, "first": -7.322378, "fix": -8.931816, "floating": -9.624963, "floor": -7.679053, "for": -5.390857, "forbid": -9.624963, "foreground": -7.833204, "found": -5.796322, "found_end": -6.791750, "frac": -9.624963, "free": -9.624963, "fresh": -9.624963, "functions": -8.931816, "further": -8.526351, "game_id": -8.238669, "give": -8.931816, "global.__HttpClient": -8.931816, "global.alienCraft": -9.624963, "global.blackMarket": -8.526351, "global.cemetary": -8.526351, "global.cityOfGold": -8.526351, "global.currLevel": -6.533921, "global.customLevel": -9.624963, "global.darkLevel": -8.238669, "global.endRoomX": -9.624963, "global.endRoomY": -9.624963, "global.gameStart": -8.931816, "global.genMarketEntrance": -8.238669, "global.genUdjatEye": -8.238669, "global.graphicsHigh": -9.624963, "global.hadDarkLevel": -8.238669, "global.hasCape": -9.624963, "global.hasGloves": -8.526351, "global.hasJetpack": -8.238669, "global.hasJordans": -9.624963, "global.hasSpringShoes": -9.624963, "global.isTunnelMan": -9.624963, "global.lake": -8.238669, "global.levelType": -6.446910, "global.madeMarketEntrance": -9.624963, "global.madeUdjatEye": -9.624963, "global.murderer": -9.624963, "global.noDarkLevel": -9.624963, "global.probCemetary": -9.624963, "global.probDarkLevel": -9.624963, "global.roomPath": -9.624963, "global.sacrificePit": -9.624963, "global.snakePit": -9.624963, "global.sndJump": -9.624963, "global.sndLand": -9.624963, "global.sndPush": -8.238669, "global.startRoomX": -9.624963, "global.startRoomY": -9.624963, "global.temp": -8.931816, "global.thiefLevel": -9.624963, "global.yetiLair": -8.931816, "go": -8.015526, "good": -9.624963, "grav": -6.533921, "gravNorm": -7.679053, "gravityIntensity": -8.931816, "hacky": -8.931816, "handle": -9.624963, "hangCount": -6.985906, "hangCountMax": -8.931816, "hasn": -8.931816, "have": -9.624963, "haven": -8.931816, "header": -9.624963, "heaven": -9.624963, "height": -7.322378, "height*": -8.238669, "height*ds_list_size": -8.931816, "height*i": -8.931816, "hex_digits": -8.526351, "hex_string": -8.238669, "high": -9.624963, "holdArrow": -8.238669, "holdArrowToggle": -8.931816, "holdItem": -9.624963, "hpadding": -8.238669, "hpadding*": -8.931816, "http_destroy": -9.624963, "http_reason_phrase": -9.624963, "http_response_body": -9.624963, "http_response_headers": -9.624963, "http_status_code": -9.624963, "i": -4.045234, "i*": -6.852375, "if": -3.844220, "ii": -8.931816, "image_alpha": -8.526351, "image_angle": -8.526351, "image_blend": -8.931816, "image_index": -9.624963, "image_speed": -7.545522, "image_xscale": -8.015526, "image_yscale": -8.526351, "in": -6.791750, "index": -9.624963, "indicate": -8.238669, "indices": -7.679053, "ini_close": -8.931816, "ini_open": -8.931816, "ini_read_string": -9.624963, "ini_write_string": -9.624963, "initialJumpAcc": -7.833204, "instance_create": -7.545522, "instance_destroy": -8.931816, "instance_exists": -8.238669, "instance_nearest": -9.624963, "instance_place": -8.526351, "instead": -9.624963, "is": -6.446910, "isCollisionBottom": -9.624963, "isCollisionLadder": -9.624963, "isCollisionLeft": -8.931816, "isCollisionMoveableSolidLeft": -9.624963, "isCollisionMoveableSolidRight": -9.624963, "isCollisionPlatform": -9.624963, "isCollisionPlatformBottom": -9.624963, "isCollisionRight": -8.931816, "isCollisionTop": -9.624963, "isCollisionWaterTop": -9.624963, "isLevel": -9.624963, "isRealLevel": -9.624963, "isRoom": -8.526351, "is_real": -9.624963, "is_string": -7.679053, "is_undefined": -9.624963, "isn": -8.931816, "isstr": -7.545522, "it": -7.322378, "item": -7.545522, "item_list": -7.140057, "item_string": -6.985906, "items": -8.931816, "j": -7.545522, "j*": -7.140057, "jetpackFuel": -8.931816, "jso_": -9.624963, "jso_cleanup_list": -6.852375, "jso_cleanup_map": -7.545522, "jso_compare_lists": -7.679053, "jso_compare_maps": -8.015526, "jso_decode_boolean": -9.624963, "jso_decode_integer": -9.624963, "jso_decode_list": -7.322378, "jso_decode_map": -8.526351, "jso_decode_real": -9.624963, "jso_decode_string": -9.624963, "jso_ds": -8.931816, "jso_encode_boolean": -8.526351, "jso_encode_integer": -9.624963, "jso_encode_list": -8.526351, "jso_encode_map": -8.238669, "jso_encode_real": -7.833204, "jso_encode_string": -8.238669, "jso_list_add_boolean": -8.931816, "jso_list_add_integer": -9.624963, "jso_list_add_real": -8.931816, "jso_list_add_string": -8.931816, "jso_list_add_sublist": -8.931816, "jso_list_add_submap": -8.931816, "jso_list_check": -7.545522, "jso_list_get": -6.916913, "jso_list_get_type": -7.427739, "jso_list_lookup": -8.015526, "jso_list_lookup_type": -8.015526, "jso_map_add_boolean": -8.526351, "jso_map_add_integer": -9.624963, "jso_map_add_real": -8.931816, "jso_map_add_string": -8.931816, "jso_map_add_sublist": -8.931816, "jso_map_add_submap": -8.931816, "jso_map_check": -8.015526, "jso_map_get": -6.916913, "jso_map_get_type": -7.427739, "jso_map_lookup": -8.526351, "jso_map_lookup_type": -8.526351, "jso_new_list": -8.931816, "jso_new_map": -8.526351, "jso_type": -8.931816, "jso_type_boolean": -8.015526, "jso_type_integer": -9.624963, "jso_type_list": -6.629231, "jso_type_map": -6.533921, "jso_type_real": -8.015526, "jso_type_string": -8.238669, "json": -6.533921, "jsonMap": -7.227068, "json_decode": -9.624963, "json_encode": -9.624963, "jump": -9.624963, "jumpButtonReleased": -7.679053, "jumpTime": -7.545522, "jumpTime/jumpTimeTotal": -9.624963, "jumpTimeTotal": -8.931816, "jumps": -9.624963, "just": -9.624963, "k": -5.599612, "kAttack": -8.931816, "kAttackPressed": -8.931816, "kAttackReleased": -8.931816, "kDown": -8.015526, "kItemPressed": -8.931816, "kJump": -7.833204, "kJumpPressed": -7.227068, "kJumpReleased": -8.015526, "kJumped": -7.679053, "kLeft": -7.140057, "kLeftPressed": -8.931816, "kLeftPushedSteps": -8.526351, "kLeftReleased": -8.526351, "kRight": -7.140057, "kRightPressed": -8.931816, "kRightPushedSteps": -8.526351, "kRightReleased": -8.526351, "kRun": -8.931816, "kUp": -8.015526, "kernel": -7.140057, "key": -7.227068, "key1": -7.833204, "key2": -7.833204, "key_list": -5.753762, "keys": -7.679053, "keys/indices": -7.833204, "keys_size": -8.015526, "l": -7.227068, "ladder": -8.015526, "ladder.x": -8.526351, "ladderTimer": -8.238669, "language": -9.624963, "later": -8.931816, "lead": -8.931816, "leaf": -9.624963, "len": -6.580441, "level": -7.833204, "licence": -8.931816, "limit": -8.238669, "line": -9.624963, "list": -5.911391, "list1": -8.931816, "list2": -9.624963, "lists": -8.931816, "ll": -8.931816, "local": -8.238669, "log": -9.624963, "look": -7.679053, "looking": -7.140057, "looks": -9.624963, "lookup": -6.916913, "loop": -8.931816, "lost": -9.624963, "main": -8.931816, "make": -9.624963, "make_color_rgb": -9.624963, "malicious": -9.624963, "mantissa": -7.322378, "map": -6.223766, "maps": -9.624963, "maxDownSlope": -8.931816, "mb": -8.238669, "menu": -7.833204, "mismatches": -8.238669, "mode": -8.931816, "more": -7.140057, "mouse": -8.238669, "mouse_button": -8.931816, "mouse_check_button_released": -8.931816, "mouse_x": -8.238669, "mouse_y": -7.545522, "move": -9.624963, "moveTo": -8.931816, "move_snap": -7.833204, "n": -7.833204, "need": -8.238669, "nested": -8.015526, "new": -8.931816, "newCachedJson": -8.931816, "next": -7.679053, "no": -8.526351, "not": -5.936084, "notation": -9.624963, "nothing": -8.238669, "now": -7.545522, "num": -8.015526, "number": -8.931816, "oArrow": -8.015526, "oBrick": -9.624963, "oCape": -8.931816, "oCape.open": -7.833204, "oDark": -8.931816, "oEntrance": -9.624963, "oEntrance.x": -9.624963, "oEntrance.y": -9.624963, "oExit": -9.624963, "oFlare": -9.624963, "oGame.levelGen": -8.931816, "oIce": -9.624963, "oLadder": -8.238669, "oLadderTop": -8.931816, "oLush": -8.931816, "oPlayer": -8.015526, "oRoom": -9.624963, "oShopkeeper": -9.624963, "oSolid": -6.985906, "oSpikes": -9.624963, "oTemple": -8.931816, "oTreasure": -9.624963, "oTree": -8.238669, "oWater": -9.624963, "oWeb": -8.931816, "obj": -7.322378, "obj.invincible": -8.015526, "obj.life": -9.624963, "obj.sprite_index": -7.833204, "obj.status": -9.624963, "obj.stuck": -9.624963, "object_add": -9.624963, "object_set_persistent": -9.624963, "of": -6.257668, "off": -8.931816, "old": -9.624963, "on": -8.931816, "one": -8.526351, "one_map": -8.015526, "or": -5.307475, "ord": -8.526351, "os_browser": -9.624963, "os_get_language": -9.624963, "otz": -8.931816, "ounce": -9.624963, "outside": -7.833204, "pair": -9.624963, "pairwise": -8.931816, "passed": -9.624963, "perfectly": -8.931816, "pi": -7.833204, "placed": -8.931816, "platformCharacterIs": -6.489469, "playSound": -8.526351, "pos": -7.833204, "position": -8.526351, "positions": -9.624963, "pound": -9.624963, "preceding": -8.931816, "prevkey": -6.985906, "probably": -8.931816, "properly": -8.238669, "pushTimer": -8.526351, "query": -8.931816, "quote": -8.526351, "quotes": -8.931816, "rand": -7.322378, "random": -8.931816, "ratio": -9.624963, "re": -8.931816, "read_string": -8.526351, "real": -6.791750, "reals": -9.624963, "reason": -8.931816, "reconstruct": -9.624963, "rectange": -8.931816, "recurse": -8.015526, "recursed": -8.238669, "recursively": -8.931816, "redColor": -8.931816, "regular": -9.624963, "repeat": -8.526351, "requestList": -8.526351, "requestToCache": -8.526351, "requested": -9.624963, "requests": -8.526351, "reserved": -8.931816, "resolution": -9.624963, "responseBody": -7.679053, "result": -6.041444, "return": -4.796650, "returned": -8.931816, "room": -8.015526, "room_get_name": -9.624963, "round": -8.238669, "runAcc": -8.931816, "runAnimSpeed": -9.624963, "runHeld": -8.526351, "runKey": -8.238669, "s": -6.159228, "sArrowLeft": -9.624963, "sArrowRight": -9.624963, "sBombArrowLeft": -8.931816, "sBombArrowRight": -8.931816, "sBrick": -9.624963, "sDamselExit": -9.624963, "sDark": -9.624963, "sJetpackBack": -9.624963, "sJetpackLeft": -9.624963, "sJetpackRight": -9.624963, "sLavaTop": -9.624963, "sLush": -8.931816, "sPExit": -9.624963, "sTemple": -8.931816, "sTunnelAttackL": -9.624963, "sTunnelExit": -9.624963, "sWaterTop": -9.624963, "same": -8.931816, "scientific": -9.624963, "scrCheckWaterTop": -9.624963, "scrEntityGen": -9.624963, "scrLevelGen": -9.624963, "scrRoomGen": -8.015526, "scrRoomGenMarket": -9.624963, "scrRoomGenYeti": -9.624963, "scrSetupWalls": -8.526351, "security.": -9.624963, "sent": -8.931816, "separator": -8.931816, "sequence": -9.624963, "setCollisionBounds": -8.526351, "sha": -8.238669, "should": -8.238669, "show_debug_message": -9.624963, "show_error": -5.796322, "show_message": -6.916913, "sides": -8.931816, "sign": -8.526351, "signature": -9.624963, "significant": -9.624963, "since": -9.624963, "size": -7.322378, "slashes": -9.624963, "slope": -9.624963, "slopeChangeInY": -9.624963, "so": -8.238669, "some": -8.931816, "something": -8.526351, "sprite": -9.624963, "sprite_index": -7.322378, "sqr": -8.931816, "sqrt": -9.624963, "square": -9.624963, "start": -7.833204, "starting": -7.833204, "state": -5.147627, "still": -8.931816, "stored": -9.624963, "storedSig": -8.931816, "str": -5.911391, "string": -5.320898, "string_char_at": -6.329127, "string_copy": -7.140057, "string_count": -9.624963, "string_delete": -8.238669, "string_format": -8.526351, "string_length": -7.060014, "string_lower": -9.624963, "string_pos": -6.916913, "string_repeat": -8.931816, "string_replace_all": -9.624963, "string_width": -8.238669, "strings": -9.624963, "structure": -6.098603, "stunned": -8.526351, "support": -9.624963, "sure": -9.624963, "switch": -5.818301, "syntax": -8.931816, "t": -6.629231, "tab": -9.624963, "table": -8.015526, "task": -9.624963, "task_type": -7.227068, "temporary": -8.238669, "testing": -9.624963, "text": -7.227068, "th": -8.526351, "that": -7.060014, "the": -5.194147, "then": -8.931816, "there": -8.931816, "they": -7.679053, "thing": -8.931816, "this": -7.545522, "through": -7.545522, "throw": -8.526351, "tile_add": -8.238669, "time": -8.931816, "timezone_local": -8.931816, "timezone_utc": -9.624963, "to": -5.961402, "tolerance": -7.833204, "too": -8.238669, "top": -7.833204, "true": -4.952135, "tuple": -8.238669, "tuple_source": -9.624963, "type": -6.128456, "type_string": -7.322378, "u": -9.624963, "under": -8.931816, "unexpected": -8.526351, "unknown": -9.624963, "until": -7.140057, "unwanted": -9.624963, "up": -7.227068, "upYPrev": -8.526351, "use": -8.238669, "user": -8.931816, "v": -6.329127, "value": -7.227068, "valued": -9.624963, "values": -8.526351, "var": -5.029844, "variable": -9.624963, "version": -8.931816, "vpadding": -7.833204, "want": -8.015526, "was": -8.238669, "we": -8.238669, "when": -9.624963, "whether": -9.624963, "while": -8.238669, "whipping": -8.015526, "width": -6.852375, "will": -8.931816, "with": -6.852375, "won": -9.624963, "works": -8.931816, "worth": -9.624963, "x": -5.599612, "xAcc": -7.140057, "xPrev": -9.624963, "xVel": -6.489469, "xVel/": -8.526351, "xVelInteger": -8.931816, "xVelInteger*ratio": -9.624963, "xx": -6.629231, "y": -5.405456, "yAcc": -6.366867, "yAccLimit": -8.931816, "yPrev": -9.624963, "yPrevHigh": -9.624963, "yVel": -6.629231, "yVel*": -9.624963, "yVelInteger*ratio": -9.624963, "yy": -6.446910, "{": -3.663958, "||": -7.322378, "}": -3.631002, }, "Genie": map[string]float64{ "(": -1.791759, ")": -1.791759, ".run": -3.583519, ":": -2.890372, "=": -2.484907, "Demo": -2.890372, "_message": -2.484907, "class": -3.583519, "construct": -3.583519, "def": -3.583519, "init": -2.890372, "message": -2.890372, "new": -3.583519, "print": -2.890372, "run": -3.583519, "string": -2.890372, }, "Gnuplot": map[string]float64{ "!": -7.183112, "#": -7.183112, "#set": -6.489965, "%": -6.489965, "(": -3.231868, ")": -3.231868, "*cos": -7.183112, "*dx": -6.489965, "*n": -7.183112, "*sin": -7.183112, "+": -5.391352, ",": -1.962756, "-": -2.558139, ".": -5.237202, "/": -6.084499, "/usr/bin/env": -7.183112, ":": -3.627764, "<": -4.880527, "=": -3.469540, "?": -4.698205, "GPFUN_sinc": -6.489965, "Right": -7.183112, "SHEBANG#!gnuplot": -7.183112, "[": -4.292740, "\\": -5.391352, "]": -4.292740, "absolute": -7.183112, "altdiagonal": -6.489965, "angles": -7.183112, "arrow": -5.237202, "at": -4.544054, "autojustify": -7.183112, "autotitles": -7.183112, "back": -4.047617, "bdefault": -7.183112, "bentover": -6.489965, "bmargin": -7.183112, "border": -6.084499, "boxwidth": -7.183112, "by": -6.084499, "cblabel": -7.183112, "cbrange": -7.183112, "character": -4.092069, "clustered": -7.183112, "col": -5.796817, "colorbox": -6.084499, "cos": -4.985887, "d": -6.489965, "data": -7.183112, "datafile": -7.183112, "default": -5.796817, "degrees": -7.183112, "dummy": -6.084499, "dx": -6.489965, "fence": -6.489965, "fill": -7.183112, "floor": -6.084499, "font": -5.103670, "from": -5.237202, "front": -7.183112, "gap": -7.183112, "gnuplot": -7.183112, "green": -7.183112, "head": -5.237202, "hidden": -6.489965, "histogram": -7.183112, "histograms": -7.183112, "i": -7.183112, "in": -7.183112, "inside": -7.183112, "isosamples": -6.084499, "key": -7.183112, "label": -4.544054, "labels": -7.183112, "lc": -6.084499, "left": -4.475062, "line": -5.796817, "linecolor": -5.796817, "lines": -6.489965, "linetype": -4.785216, "linewidth": -4.785216, "ls": -5.796817, "lt": -4.475062, "lw": -7.183112, "mapping": -7.183112, "missing": -7.183112, "n": -7.183112, "nobox": -7.183112, "noenhanced": -7.183112, "nofilled": -5.237202, "nomirror": -7.183112, "nopoint": -4.544054, "norangelimit": -6.084499, "noreverse": -4.618162, "norotate": -4.292740, "notitle": -4.475062, "nowriteback": -4.698205, "noxtics": -6.489965, "noytics": -6.489965, "noztics": -7.183112, "offset": -3.964236, "orange": -7.183112, "origin": -7.183112, "output": -7.183112, "pal": -7.183112, "parametric": -6.084499, "plot": -5.573674, "png": -7.183112, "point": -7.183112, "pointinterval": -5.796817, "pointsize": -5.796817, "pointtype": -5.796817, "pt": -6.489965, "red": -7.183112, "reset": -7.183112, "rgb": -5.103670, "right": -7.183112, "rotate": -6.084499, "samples": -6.084499, "scale": -7.183112, "screen": -6.489965, "set": -2.598144, "sin": -6.084499, "sinc": -4.618162, "size": -7.183112, "solid": -7.183112, "spherical": -7.183112, "splot": -6.084499, "sqrt": -5.796817, "style": -5.237202, "tc": -7.183112, "terminal": -7.183112, "textcolor": -4.618162, "ti": -5.796817, "title": -4.618162, "to": -5.237202, "top": -7.183112, "trianglepattern": -6.489965, "u": -3.964236, "u**": -5.796817, "u/": -6.489965, "undefined": -6.489965, "unset": -6.489965, "urange": -7.183112, "user": -7.183112, "using": -6.489965, "v": -3.749124, "v**": -5.796817, "vertical": -6.489965, "view": -6.084499, "vrange": -7.183112, "with": -6.084499, "x": -3.332964, "xlabel": -5.391352, "xmax": -7.183112, "xmin": -6.084499, "xr": -7.183112, "xrange": -6.084499, "xtic": -7.183112, "xtics": -6.084499, "xx": -6.489965, "yellow": -7.183112, "ylabel": -5.573674, "yr": -7.183112, "yrange": -5.796817, "zbase": -6.489965, "zlabel": -5.796817, "zrange": -6.489965, "ztics": -6.489965, }, "Go": map[string]float64{ "!": -5.952825, "\"": -10.418733, "&": -8.472823, "&&": -10.418733, "(": -4.395286, ")": -4.397710, "*AdminMergeRequest": -9.032439, "*AdminMergeResponse": -9.320121, "*AdminSplitRequest": -9.320121, "*AdminSplitResponse": -9.320121, "*BatchRequest": -9.032439, "*BatchResponse": -9.032439, "*ConditionalPutRequest": -8.339292, "*ConditionalPutResponse": -8.626974, "*ContainsRequest": -8.626974, "*ContainsResponse": -8.472823, "*DeleteRangeRequest": -8.472823, "*DeleteRangeResponse": -8.472823, "*DeleteRequest": -8.626974, "*DeleteResponse": -8.626974, "*EndTransactionRequest": -8.221509, "*EndTransactionResponse": -8.472823, "*EnqueueMessageRequest": -8.472823, "*EnqueueMessageResponse": -8.626974, "*EnqueueUpdateRequest": -8.626974, "*EnqueueUpdateResponse": -8.626974, "*Error": -9.725586, "*GetRequest": -8.626974, "*GetResponse": -9.320121, "*IncrementRequest": -8.472823, "*IncrementResponse": -8.472823, "*MergeTrigger": -9.725586, "*PutRequest": -9.320121, "*PutResponse": -9.320121, "*ReapQueueRequest": -8.472823, "*ReapQueueResponse": -8.472823, "*RequestHeader": -8.116148, "*RequestUnion": -7.585520, "*ResponseHeader": -8.626974, "*ResponseUnion": -7.585520, "*ScanRequest": -8.472823, "*ScanResponse": -8.472823, "*SplitTrigger": -9.725586, "*Transaction": -9.032439, "*Value": -9.725586, "*asset": -8.626974, "*int": -10.418733, "*m": -6.984746, "*m.UserPriority": -10.418733, ",": -5.976082, ":": -4.831485, "=": -5.236950, "AdminMergeRequest": -9.725586, "AdminMergeResponse": -9.725586, "AdminSplitRequest": -9.725586, "AdminSplitResponse": -9.725586, "BatchRequest": -9.725586, "BatchResponse": -9.725586, "ClientCmdID": -9.725586, "Commit": -10.418733, "CommitWait": -10.418733, "CompactTextString": -6.984746, "ConditionalPut": -9.725586, "ConditionalPutRequest": -9.725586, "ConditionalPutResponse": -9.725586, "Contains": -9.725586, "ContainsRequest": -9.725586, "ContainsResponse": -9.725586, "D": -10.418733, "Default_RequestHeader_UserPriority": -9.725586, "Delete": -9.725586, "DeleteRange": -9.725586, "DeleteRangeRequest": -9.725586, "DeleteRangeResponse": -9.725586, "DeleteRequest": -9.725586, "DeleteResponse": -9.725586, "EndTransaction": -9.725586, "EndTransactionRequest": -9.725586, "EndTransactionResponse": -9.725586, "EnqueueMessage": -9.725586, "EnqueueMessageRequest": -9.725586, "EnqueueMessageResponse": -9.725586, "EnqueueUpdate": -9.725586, "EnqueueUpdateRequest": -9.725586, "EnqueueUpdateResponse": -9.725586, "Error": -10.418733, "Exists": -10.418733, "ExpValue": -10.418733, "Get": -9.725586, "GetCmdID": -10.418733, "GetCommit": -10.418733, "GetCommitWait": -10.418733, "GetConditionalPut": -9.725586, "GetContains": -9.725586, "GetDelete": -9.725586, "GetDeleteRange": -9.725586, "GetEndTransaction": -9.725586, "GetEnqueueMessage": -9.725586, "GetEnqueueUpdate": -9.725586, "GetError": -10.418733, "GetExists": -10.418733, "GetExpValue": -10.418733, "GetGet": -9.725586, "GetIncrement": -9.320121, "GetMaxEntriesToDelete": -10.418733, "GetMaxResults": -9.725586, "GetMergeTrigger": -10.418733, "GetMessages": -10.418733, "GetMsg": -10.418733, "GetNewValue": -10.418733, "GetNumDeleted": -10.418733, "GetPut": -9.725586, "GetRaftID": -10.418733, "GetReapQueue": -9.725586, "GetReplica": -10.418733, "GetRequest": -9.725586, "GetRequests": -10.418733, "GetResponses": -10.418733, "GetRows": -10.418733, "GetScan": -9.725586, "GetSplitTrigger": -10.418733, "GetSubsumedRange": -10.418733, "GetTimestamp": -9.725586, "GetTxn": -9.725586, "GetUser": -10.418733, "GetUserPriority": -10.418733, "GetValue": -9.320121, "Increment": -9.320121, "IncrementRequest": -9.725586, "IncrementResponse": -9.725586, "IsDir": -10.418733, "Key": -10.418733, "KeyValue": -9.725586, "Marshal": -10.418733, "MaxEntriesToDelete": -10.418733, "MaxResults": -9.725586, "MergeTrigger": -10.418733, "Messages": -10.418733, "MinCss": -9.320121, "MinCssBytes": -9.725586, "MinJs": -10.418733, "ModTime": -10.418733, "Mode": -10.418733, "Msg": -10.418733, "Name": -10.418733, "NewValue": -10.418733, "NumDeleted": -10.418733, "NvD": -8.809295, "ProtoMessage": -6.984746, "Put": -9.725586, "RangeDescriptor": -9.320121, "ReapQueue": -9.725586, "ReapQueueRequest": -9.725586, "ReapQueueResponse": -9.725586, "Replica": -9.725586, "RequestHeader": -7.710683, "RequestUnion": -9.032439, "Requests": -10.418733, "Reset": -6.984746, "ResponseHeader": -7.710683, "ResponseUnion": -9.032439, "Responses": -10.418733, "Rows": -10.418733, "Scan": -9.725586, "ScanRequest": -9.725586, "ScanResponse": -9.725586, "SetValue": -9.725586, "Size": -10.418733, "SplitKey": -10.418733, "SplitTrigger": -10.418733, "String": -6.984746, "SubsumedRange": -10.418733, "Sys": -10.418733, "Timestamp": -8.626974, "Txn": -9.725586, "UserPriority": -10.418733, "Value": -8.221509, "XXX_unrecognized": -6.984746, "[": -6.411400, "\\": -0.939741, "]": -6.411400, "_": -8.626974, "_uiCssAppCss": -9.725586, "_uiCssGraphCss": -9.725586, "_uiCssLibsNvd": -9.725586, "_uiCssRest_explorerCss": -9.725586, "_uiIndexHtml": -9.725586, "_uiJsAppJs": -9.725586, "_uiJsLibsD": -10.418733, "`": -5.052757, "a": -4.149637, "asset": -8.472823, "b": -4.178458, "bindataFileInfo": -7.853784, "bindataRead": -8.472823, "bool": -8.472823, "buf": -9.725586, "buf.Bytes": -10.418733, "byte": -6.568586, "bytes": -7.474294, "bytes.Buffer": -10.418733, "bytes.Equal": -10.418733, "bytes.NewBuffer": -10.418733, "c": -4.164905, "case": -7.240680, "clErr": -9.725586, "const": -10.418733, "d": -4.294050, "data": -9.725586, "default": -9.725586, "e": -4.134599, "err": -7.199858, "error": -7.853784, "false": -8.809295, "fi": -8.626974, "fi.modTime": -10.418733, "fi.mode": -10.418733, "fi.name": -10.418733, "fi.size": -10.418733, "fmt.Errorf": -9.725586, "fmt.Printf": -10.418733, "func": -5.277070, "gz": -9.725586, "gz.Close": -10.418733, "gzip.NewReader": -10.418733, "if": -5.964386, "import": -9.032439, "info": -7.474294, "init": -9.725586, "int": -7.474294, "interface": -8.809295, "io.Copy": -10.418733, "json": -5.745905, "linguist": -10.418733, "m": -5.125429, "m.CmdID": -10.418733, "m.Commit": -10.418733, "m.CommitWait": -10.418733, "m.ConditionalPut": -9.725586, "m.Contains": -9.725586, "m.Delete": -9.725586, "m.DeleteRange": -9.725586, "m.EndTransaction": -9.725586, "m.EnqueueMessage": -9.725586, "m.EnqueueUpdate": -9.725586, "m.Error": -10.418733, "m.Exists": -10.418733, "m.ExpValue": -10.418733, "m.Get": -9.725586, "m.Increment": -9.320121, "m.MaxEntriesToDelete": -10.418733, "m.MaxResults": -9.725586, "m.MergeTrigger": -10.418733, "m.Messages": -10.418733, "m.Msg": -10.418733, "m.NewValue": -10.418733, "m.NumDeleted": -10.418733, "m.Put": -9.725586, "m.RaftID": -10.418733, "m.ReapQueue": -9.725586, "m.Replica": -10.418733, "m.Requests": -10.418733, "m.Responses": -10.418733, "m.Rows": -10.418733, "m.Scan": -9.725586, "m.SplitTrigger": -10.418733, "m.SubsumedRange": -10.418733, "m.Timestamp": -9.725586, "m.Txn": -9.725586, "m.User": -10.418733, "m.UserPriority": -10.418733, "m.Value": -10.418733, "math": -10.418733, "math.Inf": -10.418733, "modTime": -8.472823, "mode": -8.472823, "name": -8.116148, "nil": -5.477091, "os.FileInfo": -10.418733, "os.FileMode": -8.339292, "package": -9.320121, "proto": -6.892373, "protobuf": -6.088000, "resource": -10.418733, "return": -5.145734, "size": -8.472823, "string": -6.863385, "struct": -6.952997, "switch": -9.725586, "this": -9.032439, "this.ConditionalPut": -8.626974, "this.Contains": -8.626974, "this.Delete": -8.626974, "this.DeleteRange": -8.626974, "this.EndTransaction": -8.626974, "this.EnqueueMessage": -8.626974, "this.EnqueueUpdate": -8.626974, "this.Get": -8.626974, "this.Increment": -8.626974, "this.Put": -8.626974, "this.ReapQueue": -8.626974, "this.Scan": -8.626974, "thrift.ZERO": -10.418733, "time.Time": -9.725586, "time.Unix": -8.626974, "true": -9.725586, "type": -6.892373, "uiCssAppCss": -10.418733, "uiCssAppCssBytes": -9.725586, "uiCssGraphCss": -10.418733, "uiCssGraphCssBytes": -9.725586, "uiCssLibsNvd": -9.320121, "uiCssRest_explorerCss": -10.418733, "uiCssRest_explorerCssBytes": -9.725586, "uiIndexHtml": -10.418733, "uiIndexHtmlBytes": -9.725586, "uiJsAppJs": -10.418733, "uiJsAppJsBytes": -9.725586, "value": -9.725586, "value.": -9.725586, "var": -7.853784, "vt": -7.160637, "x": -1.405382, "xa": -4.263875, "xaa": -6.705161, "xab": -6.526913, "xac": -6.156054, "xad": -6.448441, "xae": -6.657533, "xaf": -6.729854, "xb": -4.204125, "xba": -6.429749, "xbb": -6.375682, "xbc": -6.681064, "xbd": -6.467490, "xbe": -6.358290, "xbf": -6.526913, "xc": -4.143971, "xca": -6.634544, "xcb": -6.590092, "xcc": -6.634544, "xcd": -6.568586, "xce": -6.486908, "xcf": -6.506710, "xd": -4.110635, "xda": -6.568586, "xdb": -6.568586, "xdc": -6.486908, "xdd": -6.393382, "xde": -6.429749, "xdf": -6.547532, "xe": -4.222289, "xea": -6.547532, "xeb": -6.657533, "xec": -6.486908, "xed": -6.275599, "xee": -6.590092, "xef": -6.448441, "xf": -4.188252, "xfa": -6.568586, "xfb": -6.612071, "xfc": -6.088000, "xfd": -6.429749, "xfe": -6.467490, "xff": -6.547532, "{": -4.572295, "}": -4.569409, }, "Golo": map[string]float64{ "!": -7.778630, "$": -7.373165, "(": -1.985617, ")": -1.985617, "*": -8.471777, "*a": -7.778630, "+": -3.675987, ",": -3.353784, "-": -4.267085, "/": -7.778630, ":": -2.926600, "<": -6.680018, "<!DOCTYPE>": -8.471777, "<%>": -7.778630, "<%@params>": -8.471777, "</body>": -8.471777, "</div>": -7.778630, "</form>": -8.471777, "</head>": -8.471777, "</html>": -8.471777, "</title>": -8.471777, "<body>": -8.471777, "<div>": -7.778630, "<form>": -8.471777, "<head>": -8.471777, "<html>": -8.471777, "<input>": -7.778630, "<title>": -8.471777, "=": -3.139059, ">": -4.344643, "?": -7.778630, "@checkArguments": -7.085483, "@checkResult": -8.471777, "@decorator_with_params": -8.471777, "@generic_decorator": -7.085483, "@list_sum_decorator": -8.471777, "@log": -7.373165, "@logEnterExit": -8.471777, "@memo": -7.778630, "@myCheck": -8.471777, "@sayHello": -8.471777, "@simple_decorator": -8.471777, "@withContext": -8.471777, "ActionListener.class": -7.778630, "AdapterFabric": -8.471777, "BufferedReader": -8.471777, "Closures": -8.471777, "CoinChange": -8.471777, "ConcurrentLinkedQueue": -8.471777, "DealingWithNull": -8.471777, "DynamicObject": -8.471777, "DynamicVariable": -8.471777, "EXIT_ON_CLOSE": -7.778630, "EchoArgs": -8.471777, "EvaluationEnvironment": -8.471777, "HttpServer.create": -7.778630, "ImmutablePoint": -8.471777, "InetSocketAddress": -7.778630, "InputStreamReader": -8.471777, "Integer.class": -8.471777, "JButton": -8.471777, "JFrame": -7.778630, "JLabel": -8.471777, "LinkedList": -7.085483, "Matching": -8.471777, "MoreCoolContainers": -8.471777, "Observable": -8.471777, "Point": -7.085483, "SECONDS": -8.471777, "Send": -8.471777, "State": -8.471777, "State.NEW": -8.471777, "State.values": -8.471777, "StringBuilder": -8.471777, "StructDemo": -8.471777, "StructDemo.types.Point": -8.471777, "System.currentTimeMillis": -6.680018, "Thread": -7.085483, "Thread.sleep": -6.862339, "WorkerEnvironment.builder": -8.471777, "Workers": -8.471777, "[": -4.975270, "\\": -8.471777, "]": -4.975270, "^": -7.373165, "_F": -7.373165, "_L": -6.525867, "a": -5.336283, "a.": -8.471777, "acc": -6.680018, "add": -5.380735, "addActionListener": -7.373165, "addToTen": -7.373165, "adder": -6.862339, "adding": -7.373165, "addingTen": -7.778630, "all": -8.471777, "andThen": -7.085483, "anonymousModule": -8.471777, "any": -8.471777, "append": -6.525867, "arg": -7.778630, "args": -4.687588, "args...": -7.373165, "array": -7.778630, "asFunction": -8.471777, "asInterfaceInstance": -8.471777, "asModule": -8.471777, "augment": -7.085483, "awaitTermination": -7.778630, "b": -5.763727, "b.": -8.471777, "bar": -7.778630, "baz": -7.778630, "bean": -7.085483, "bindTo": -6.862339, "body": -7.373165, "button": -6.525867, "cancel": -8.471777, "carbonCopy": -6.862339, "catch": -5.527338, "change": -6.274553, "checkArguments": -8.471777, "close": -6.862339, "code": -5.986871, "coins": -5.906828, "com.sun.net.httpserver": -7.778630, "com.sun.net.httpserver.HttpServer": -7.778630, "compile": -8.471777, "conf": -7.085483, "contacts": -7.373165, "contains": -8.471777, "count": -7.085483, "createContext": -7.373165, "data": -7.085483, "decorator_with_params": -8.471777, "def": -8.471777, "defaultContext": -8.471777, "define": -6.862339, "deriveFont": -7.778630, "doToEach": -7.778630, "duration": -6.680018, "dyn": -6.525867, "e": -4.734108, "each": -8.471777, "egg": -7.778630, "elem": -7.778630, "element": -6.392336, "else": -6.862339, "email": -7.373165, "enqueue": -7.778630, "env": -5.252902, "event": -7.373165, "exchange": -5.175940, "executor": -6.073882, "expected": -7.778630, "extract_post": -7.778630, "f": -6.274553, "fabric": -6.525867, "fib": -5.763727, "fib_": -5.986871, "finishPort": -7.778630, "foo": -5.638564, "for": -7.778630, "foreach": -6.073882, "frame": -6.169192, "frozenCopy": -7.778630, "fun": -6.680018, "func": -5.986871, "function": -4.005869, "future": -6.862339, "futures": -7.778630, "generator": -7.778630, "generatorPort": -7.778630, "generic_adder": -6.392336, "generic_decorator": -8.471777, "get": -5.699189, "getBytes": -7.373165, "getClass": -7.373165, "getContentPane": -7.778630, "getFont": -7.778630, "getMessage": -8.471777, "getRequestBody": -8.471777, "getRequestMethod": -8.471777, "getRequestURI": -8.471777, "getResponseBody": -7.373165, "getResponseHeaders": -7.085483, "gololang.Async": -8.471777, "gololang.Decorators": -7.373165, "gololang.EvaluationEnvironment": -8.471777, "gololang.TemplateEngine": -8.471777, "gololang.concurrent.workers.WorkerEnvironment": -8.471777, "handler": -7.778630, "hashCode": -7.085483, "head": -8.471777, "headers": -7.778630, "hello": -6.680018, "hello.World": -8.471777, "i": -5.476045, "if": -6.525867, "import": -5.006041, "in": -5.986871, "index": -7.778630, "index_template": -7.778630, "index_tpl": -7.778630, "inv": -7.373165, "invokeWithArguments": -6.680018, "isEmpty": -8.471777, "isInteger": -7.085483, "isNotNull": -8.471777, "isNumber": -8.471777, "isOfType": -8.471777, "isPositive": -7.373165, "isPositiveInt": -7.778630, "isString": -7.778630, "isnt": -8.471777, "item": -6.169192, "java.awt.event": -8.471777, "java.io": -8.471777, "java.io.Serializable.class": -8.471777, "java.lang": -7.778630, "java.lang.Integer.MAX_VALUE": -8.471777, "java.lang.Runnable.class": -8.471777, "java.lang.System": -7.778630, "java.lang.Thread": -7.778630, "java.net.InetSocketAddress": -7.778630, "java.net.URLDecoder.decode": -8.471777, "java.util": -8.471777, "java.util.Collection": -8.471777, "java.util.Date": -8.471777, "java.util.LinkedList": -6.862339, "java.util.List": -7.778630, "java.util.TreeMap": -8.471777, "java.util.concurrent": -8.471777, "java.util.concurrent.ConcurrentLinkedDeque": -8.471777, "java.util.concurrent.Executors": -8.471777, "java.util.concurrent.TimeUnit": -8.471777, "javax.swing": -7.778630, "javax.swing.WindowConstants": -7.778630, "join": -7.373165, "label": -7.085483, "larry": -7.778630, "length": -6.392336, "lengthIs": -8.471777, "let": -3.960918, "line": -6.862339, "list": -5.175940, "list_sample": -7.778630, "list_sum_decorator": -8.471777, "listener": -7.778630, "local": -5.175940, "log": -6.680018, "logEnterExit": -8.471777, "main": -5.175940, "maker": -7.778630, "map": -6.169192, "mapped": -7.778630, "match": -7.778630, "max_int": -7.778630, "members": -8.471777, "memo": -8.471777, "memoizer": -8.471777, "message": -7.085483, "method=": -8.471777, "mod": -6.680018, "module": -5.175940, "money": -6.862339, "move": -7.778630, "mrbean": -6.862339, "msg": -7.373165, "msgAfter": -7.778630, "msgBefore": -7.778630, "mul": -7.373165, "myCheck": -8.471777, "myContext": -7.373165, "n": -5.638564, "name": -6.274553, "name=": -8.471777, "new": -7.373165, "newCachedThreadPool": -8.471777, "newInstance": -7.778630, "next": -7.778630, "notnull": -7.373165, "null": -7.778630, "num": -6.525867, "number": -8.471777, "offer": -8.471777, "offsetX": -7.085483, "offsetY": -7.085483, "oftype": -7.778630, "onChange": -7.778630, "onFail": -7.778630, "onSet": -6.862339, "or": -8.471777, "orIfNull": -7.373165, "ordinal": -7.778630, "otherwise": -7.778630, "p": -5.139573, "pack": -7.778630, "param": -7.085483, "parametrized_adder": -7.778630, "play_with_literals": -7.778630, "play_with_tuples": -7.778630, "port": -7.778630, "post": -7.778630, "posts": -6.392336, "print": -8.471777, "println": -3.335979, "promise": -6.862339, "pump_it": -7.778630, "pusher": -7.778630, "pusherPort": -7.778630, "queue": -6.862339, "range": -7.085483, "readLine": -7.778630, "reader": -7.085483, "redirect": -7.778630, "reduce": -8.471777, "relative": -7.778630, "require": -8.471777, "res": -7.778630, "respond": -7.778630, "response": -6.680018, "result": -5.832720, "results": -7.778630, "return": -5.139573, "run": -6.169192, "run_map": -8.471777, "runnable_sample": -7.778630, "runner": -7.085483, "sample.EnumsThreadState": -8.471777, "samples.Adapters": -8.471777, "samples.AsyncHelpers": -8.471777, "samples.Augmentations": -8.471777, "samples.CollectionLiterals": -8.471777, "samples.ContextDecorator": -8.471777, "samples.Decorators": -8.471777, "samples.DynamicEvaluation": -8.471777, "samples.DynamicObjectPerson": -8.471777, "samples.Fibonacci": -8.471777, "samples.LogDeco": -8.471777, "samples.MaxInt": -8.471777, "samples.MemoizeDecorator": -8.471777, "samples.PrepostDecorator": -8.471777, "samples.SwingActionListener": -8.471777, "samples.SwingHelloWorld": -8.471777, "samples.TemplatesChatWebapp": -8.471777, "samples.WebServer": -8.471777, "sayHello": -7.373165, "send": -7.373165, "sendResponseHeaders": -7.085483, "server": -6.392336, "set": -5.906828, "setDefaultCloseOperation": -7.778630, "setFont": -7.778630, "setVisible": -7.778630, "shutdown": -7.778630, "simple_adder": -7.778630, "simple_decorator": -8.471777, "spam": -7.778630, "spawn": -7.373165, "start": -6.169192, "startsWith": -7.373165, "stop": -8.471777, "str": -7.778630, "strange_use": -7.778630, "street": -8.471777, "struct": -8.471777, "submit": -6.525867, "substring": -8.471777, "sum": -7.778630, "super": -7.778630, "t": -6.525867, "tail": -8.471777, "template": -7.778630, "test_anonymousModule": -7.778630, "test_asFunction": -7.778630, "test_asModule": -7.778630, "test_def": -7.778630, "test_run": -7.778630, "test_run_map": -7.778630, "text": -8.471777, "then": -6.862339, "this": -5.104481, "throw": -8.471777, "to": -7.373165, "toString": -6.862339, "true": -7.085483, "truth": -7.373165, "try": -5.527338, "tuple": -8.471777, "v": -5.380735, "value": -6.392336, "value=": -8.471777, "values": -7.373165, "var": -6.862339, "vector": -8.471777, "w": -8.471777, "what_it_could_be": -7.778630, "when": -6.862339, "while": -7.778630, "who": -7.778630, "with": -7.085483, "withContext": -8.471777, "withFixedThreadPool": -8.471777, "withValue": -7.778630, "write": -7.373165, "x": -5.476045, "y": -5.699189, "z": -7.778630, "{": -3.396604, "|": -3.016456, "}": -3.396604, }, "Gosu": map[string]float64{ "!": -6.249975, "$": -5.844510, "%": -5.556828, "(": -2.308393, ")": -2.298732, "*/": -6.943122, "+": -6.249975, ",": -3.477387, "-": -5.333685, ".DefaultAction": -6.943122, ".DefaultController": -6.943122, ".ErrorHandler": -6.943122, ".LogHandler": -6.249975, ".LogLevel": -6.943122, ".Mode": -6.943122, ".Name": -6.943122, ".RoninServlet": -6.943122, ".debug": -6.943122, ".error": -6.943122, ".info": -6.943122, ".orderBy": -6.943122, ".trace": -6.943122, ".warn": -6.943122, ":": -2.917771, ";": -6.943122, "<": -6.943122, "<%!-->": -6.943122, "<%>": -6.249975, "<%@>": -6.943122, "<Contact>": -6.943122, "<RoninRequest>": -6.943122, "<String,>": -6.943122, "<T>": -6.249975, "=": -3.181922, ">": -4.745898, "?": -4.109909, "@Deprecated": -6.943122, "ALL_PEOPLE": -6.249975, "ALL_PEOPLE.Values": -5.844510, "ALL_PEOPLE.containsKey": -6.249975, "APPLICATION": -5.844510, "Age": -6.943122, "ApplicationMode": -6.943122, "BUSINESS_CONTACT": -6.943122, "CacheStore": -5.844510, "Collection": -6.249975, "Config": -6.943122, "Contact": -6.943122, "CurrentRequest": -6.943122, "DBConnectionManager.getConnection": -6.943122, "DEBUG": -6.249975, "DefaultAction": -6.943122, "DefaultController": -6.943122, "ERROR": -6.943122, "EmailHelper": -6.943122, "ErrorHandler": -6.943122, "FAMILY": -6.943122, "FATAL": -6.943122, "FRIEND": -6.943122, "File": -6.249975, "FileWriter": -6.943122, "HashMap": -6.943122, "Hello": -6.249975, "Hello.gst": -6.943122, "IEmailable": -6.249975, "IErrorHandler": -6.943122, "ILogHandler": -6.943122, "INFO": -6.249975, "IRoninConfig": -6.943122, "IllegalArgumentException": -6.943122, "Integer": -5.844510, "List": -6.943122, "LogHandler": -6.943122, "LogLevel": -5.556828, "Logger.ROOT_LOGGER_NAME": -5.333685, "LoggerFactory.getLogger": -5.333685, "Mode": -6.943122, "Name": -5.844510, "Object": -6.943122, "Person": -4.997212, "PersonCSVTemplate.render": -6.943122, "PersonCSVTemplate.renderToString": -6.943122, "REQUEST": -5.844510, "Relationship": -5.844510, "Relationship.valueOf": -6.249975, "RelationshipOfPerson": -6.943122, "ReloadManager.detectAndReloadChangedResources": -6.943122, "Ronin": -6.943122, "RoninRequest": -6.943122, "RoninServlet": -6.249975, "SESSION": -5.844510, "String": -4.304065, "T": -6.249975, "TESTING": -6.943122, "TRACE": -6.943122, "ThreadLocal": -6.943122, "TraceEnabled": -6.943122, "Type": -6.943122, "User": -6.943122, "WARN": -6.943122, "[": -5.556828, "\\": -5.844510, "]": -5.556828, "_CONFIG": -4.640537, "_CONFIG.ApplicationCache.getValue": -6.943122, "_CONFIG.ApplicationCache.invalidate": -6.943122, "_CONFIG.LogHandler.log": -6.943122, "_CONFIG.RequestCache.getValue": -6.943122, "_CONFIG.RequestCache.invalidate": -6.943122, "_CONFIG.SessionCache.getValue": -6.943122, "_CONFIG.SessionCache.invalidate": -6.943122, "_CONFIG.TraceEnabled": -6.943122, "_CURRENT_REQUEST": -6.943122, "_CURRENT_REQUEST.get": -6.943122, "_age": -5.844510, "_emailHelper": -6.249975, "_name": -5.556828, "_relationship": -6.249975, "addAllPeople": -6.943122, "addPerson": -5.556828, "age": -5.556828, "allPeople": -6.943122, "allPeople.where": -6.943122, "and": -6.943122, "as": -5.151363, "block": -5.844510, "boolean": -6.943122, "break": -5.333685, "cache": -6.943122, "case": -5.151363, "class": -6.249975, "component": -4.997212, "conn": -6.943122, "conn.prepareStatement": -6.943122, "construct": -6.943122, "contact": -5.844510, "contact.Name": -6.943122, "contacts": -6.249975, "defined": -6.943122, "delegate": -6.943122, "else": -4.863681, "enhancement": -6.943122, "enum": -6.249975, "example": -6.249975, "exception": -4.997212, "extends": -6.943122, "file": -5.844510, "file.eachLine": -6.943122, "for": -5.844510, "function": -4.235072, "get": -4.640537, "getAllPeopleOlderThanNOrderedByName": -6.943122, "getEmailName": -6.943122, "gst": -6.943122, "gw.lang.reflect.*": -6.943122, "gw.util.concurrent.LockingLazyVar": -6.943122, "hello": -6.943122, "id": -6.943122, "if": -4.304065, "implements": -6.943122, "in": -5.333685, "incrementAge": -6.943122, "int": -6.249975, "invalidate": -6.943122, "j.*": -6.943122, "java.io.*": -6.943122, "java.io.File": -6.943122, "java.lang.*": -6.943122, "java.lang.Throwable": -6.943122, "java.util.*": -6.943122, "level": -5.151363, "line": -6.943122, "line.HasContent": -6.943122, "line.toPerson": -6.943122, "loadChanges": -6.943122, "loadFromFile": -6.943122, "loadPersonFromDB": -6.943122, "log": -6.943122, "msg": -5.556828, "msgStr": -4.745898, "name": -4.458216, "new": -4.997212, "not": -6.943122, "null": -4.640537, "or": -6.249975, "org.slf": -6.943122, "override": -6.943122, "p": -5.333685, "p.Age": -6.943122, "p.Name": -6.249975, "package": -5.844510, "params": -6.943122, "print": -5.844510, "printPersonInfo": -6.943122, "property": -4.545227, "readonly": -6.943122, "relationship": -6.249975, "represents": -6.943122, "result": -6.943122, "result.getInt": -6.943122, "result.getString": -6.249975, "result.next": -6.943122, "return": -4.170534, "ronin": -6.943122, "ronin.config.*": -6.943122, "saveToFile": -6.943122, "set": -6.943122, "static": -3.807628, "stmt": -6.943122, "stmt.executeQuery": -6.943122, "stmt.setInt": -6.943122, "store": -4.640537, "switch": -6.943122, "this": -6.943122, "this.split": -6.943122, "throw": -5.844510, "toPerson": -6.943122, "true": -6.943122, "typeis": -6.249975, "user": -6.249975, "user.Department": -6.943122, "user.FirstName": -6.943122, "user.LastName": -6.943122, "users": -5.556828, "uses": -4.863681, "using": -6.249975, "vals": -5.556828, "value": -5.556828, "var": -4.378173, "writer": -6.249975, "{": -2.865585, "}": -2.865585, }, "Grace": map[string]float64{ "!": -6.270358, "&&": -6.675823, "(": -2.065665, ")": -2.065665, "+": -4.324448, ",": -2.903062, "-": -4.596382, ".grace": -7.368970, "//Removes": -7.368970, "//TODO": -7.368970, ":": -3.194583, "<": -5.759532, "=": -2.420211, ">": -5.982676, "Number": -5.982676, "aComp": -7.368970, "aComp.Auto_Completer.new": -7.368970, "ack": -5.982676, "as": -5.423060, "buttonBox": -6.675823, "buttonBox.add": -6.675823, "button_factory": -7.368970, "button_factory.make": -5.066385, "clearButton": -6.675823, "clearButton.on": -7.368970, "clearConsoles": -5.982676, "closeButton": -6.675823, "closeButton.on": -7.368970, "collections": -7.368970, "collections.map.new": -5.982676, "completer": -7.368970, "consoleBox": -6.675823, "consoleBox.add": -5.759532, "consoleBox.remove": -6.675823, "consoleBox.reparent": -6.270358, "consoleButtons": -6.675823, "consoleButtons.add": -5.982676, "createError": -6.270358, "createOut": -6.270358, "cur_page": -5.759532, "cur_page.buffer.get_iter_at_offset": -5.982676, "cur_page.buffer.get_text": -6.675823, "cur_page.set_size_request": -6.270358, "cur_page_label": -5.982676, "cur_page_num": -4.660920, "cur_scrolled": -5.171746, "cur_scrolled.set_size_request": -6.270358, "currentConsole": -4.660920, "def": -3.398678, "deleteCompileFiles": -6.270358, "dialog_factory": -7.368970, "dialog_factory.new.new": -7.368970, "dialog_factory.open.new": -7.368970, "dialog_factory.save.new": -6.675823, "do": -4.729913, "eIter": -5.171746, "eValue": -5.982676, "e_map": -6.675823, "e_map.put": -6.675823, "editorBox": -6.675823, "editorBox.add": -6.675823, "editor_map": -5.289529, "editor_map.get": -5.423060, "editor_map.put": -7.368970, "else": -5.423060, "elseif": -7.368970, "errorButton": -6.675823, "errorButton.on": -7.368970, "errorConsole": -6.270358, "errorConsole.buffer.apply_tag": -7.368970, "errorConsole.buffer.create_tag": -6.675823, "errorConsole.buffer.get_iter_at_offset": -6.675823, "errorConsole.buffer.set_text": -6.270358, "errorConsole.editable": -7.368970, "errorConsole.set_size_request": -5.759532, "errorScroll": -5.982676, "errorScroll.add": -7.368970, "errorScroll.set_size_request": -5.759532, "errorTag": -6.270358, "errorText": -6.270358, "errorText.size": -7.368970, "exit": -6.675823, "extension": -7.368970, "false": -5.289529, "file": -7.368970, "file.close": -7.368970, "file.write": -7.368970, "filename": -5.577211, "filename.size": -7.368970, "filename.substringFrom": -7.368970, "gtk": -7.368970, "gtk.GTK_ORIENTATION_HORIZONTAL": -5.759532, "gtk.GTK_ORIENTATION_VERTICAL": -5.982676, "gtk.GTK_WINDOW_TOPLEVEL": -6.270358, "gtk.box": -5.577211, "gtk.main": -7.368970, "gtk.main_quit": -7.368970, "gtk.notebook": -7.368970, "gtk.paned": -7.368970, "gtk.scrolled_window": -5.759532, "gtk.separator": -6.675823, "gtk.text_iter": -5.577211, "gtk.text_view": -5.759532, "gtk.window": -6.270358, "hSeparator": -5.982676, "highlighter": -7.368970, "highlighter.Syntax_Highlighter.new": -7.368970, "if": -4.324448, "import": -5.423060, "io": -7.368970, "io.open": -7.368970, "io.system": -4.971075, "lighter": -6.270358, "lighter.highlightLine": -7.368970, "m": -5.759532, "mBox": -6.675823, "mBox.add": -6.270358, "menuBox": -6.675823, "menuBox.add": -5.982676, "method": -5.066385, "n": -5.982676, "newButton": -6.675823, "newButton.on": -7.368970, "new_window": -7.368970, "new_window.show_all": -7.368970, "new_window_class": -7.368970, "new_window_class.window": -7.368970, "notebook": -5.289529, "notebook.add": -7.368970, "notebook.current_page": -5.577211, "notebook.get_tab_label_text": -6.270358, "notebook.n_pages": -6.675823, "notebook.remove_page": -7.368970, "notebook.scrollable": -7.368970, "notebook.set_tab_label_text": -7.368970, "notebook.show_all": -7.368970, "num_pages": -6.270358, "openButton": -6.675823, "openButton.on": -7.368970, "open_window": -7.368970, "open_window.show_all": -7.368970, "open_window_class": -7.368970, "open_window_class.window": -7.368970, "out": -5.171746, "outButton": -6.675823, "outButton.on": -7.368970, "outConsole": -6.270358, "outConsole.buffer.set_text": -6.270358, "outConsole.editable": -7.368970, "outConsole.set_size_request": -5.759532, "outScroll": -5.759532, "outScroll.add": -7.368970, "outScroll.set_size_request": -5.759532, "outText": -6.270358, "outText.size": -7.368970, "page_num": -5.423060, "popButton": -6.675823, "popButton.label": -6.270358, "popButton.on": -7.368970, "popIn": -6.675823, "popInBlock": -6.675823, "popOut": -6.675823, "popped": -6.270358, "popped.connect": -7.368970, "popped.show_all": -6.270358, "popped.visible": -6.270358, "populateConsoles": -5.982676, "print": -6.675823, "runButton": -6.675823, "runButton.on": -7.368970, "sIter": -5.171746, "sValue": -5.982676, "s_map": -6.675823, "s_map.put": -6.675823, "saveAsButton": -6.675823, "saveAsButton.on": -7.368970, "saveAs_window": -6.675823, "saveAs_window.show_all": -6.675823, "saveAs_window_class": -6.675823, "saveAs_window_class.window": -6.675823, "saveButton": -6.675823, "saveButton.on": -7.368970, "scrolled_main": -5.982676, "scrolled_main.add": -7.368970, "scrolled_main.set_size_request": -7.368970, "scrolled_map": -5.577211, "scrolled_map.get": -5.289529, "scrolled_map.put": -7.368970, "splitPane": -5.982676, "splitPane.add": -6.675823, "switch_to_errors": -6.675823, "switch_to_output": -6.675823, "switched": -7.368970, "tEdit": -6.270358, "tEdit.buffer.on": -7.368970, "tEdit.set_size_request": -7.368970, "text": -6.270358, "then": -4.277928, "to": -7.368970, "true": -5.577211, "var": -3.903234, "while": -6.270358, "window": -6.675823, "window.add": -7.368970, "window.connect": -7.368970, "window.set_default_size": -7.368970, "window.show_all": -6.270358, "window.title": -7.368970, "x": -4.324448, "{": -3.291433, "}": -3.291433, }, "Gradle": map[string]float64{ "(": -2.685577, ")": -2.685577, ",": -3.784190, ":": -3.784190, "<<": -3.784190, "<Project>": -3.784190, "=": -3.091042, "GreetingPlugin": -3.091042, "GreetingPluginExtension": -3.091042, "Plugin": -3.784190, "Project": -3.784190, "String": -3.378725, "apply": -3.091042, "class": -3.091042, "def": -4.477337, "greeter": -3.784190, "greeting": -4.477337, "greeting.message": -4.477337, "implements": -3.784190, "message": -3.378725, "plugin": -3.784190, "println": -3.784190, "project": -3.784190, "project.extensions.create": -3.784190, "project.greeting.message": -4.477337, "project.task": -3.784190, "void": -3.784190, "{": -2.280112, "}": -2.280112, }, "Grammatical Framework": map[string]float64{ "!": -4.137288, "(": -4.150651, ")": -4.150651, "*": -9.557823, "**": -9.557823, "+": -3.392405, ",": -4.000995, "-": -3.433140, ":": -3.337233, ";": -2.319326, "<": -7.255238, "<Attr,Pl>": -9.557823, "<Attr,Sg>": -9.557823, "<Indep,Pl>": -9.557823, "<Indep,Sg>": -9.557823, "<NFem,_>": -9.557823, "<NMasc,_>": -9.557823, "<NNeut,Pl>": -9.557823, "<NNeut,Sg>": -9.557823, "<Pl,Fem>": -9.557823, "<Pl,Masc>": -9.557823, "<Sg,Fem>": -9.557823, "<Sg,Masc>": -9.557823, "<a,n>": -9.557823, "<g,n,t>": -9.557823, "<n,g>": -9.557823, "<ng,n>": -9.557823, "=": -2.008214, ">": -2.628306, "?": -8.864676, "A": -7.766064, "AAttr": -8.459211, "AForm": -8.171529, "AP": -8.171529, "APl": -7.159928, "APred": -7.478382, "ASg": -6.422329, "Add": -7.478382, "Adj": -8.171529, "AdjAP": -7.255238, "AdjType": -8.171529, "AdjUse": -8.171529, "Adjective": -7.360599, "Agr": -8.459211, "Attr": -7.360599, "Bool": -7.948385, "Boring": -6.190527, "CN": -8.171529, "Case": -7.255238, "Cheese": -6.190527, "Comment": -6.123836, "Copula": -9.557823, "Create": -7.766064, "Dana": -9.557823, "Dannells": -9.557823, "Def": -6.513301, "Defin": -7.360599, "Delicious": -6.190527, "Expensive": -6.190527, "F": -8.864676, "False": -8.459211, "Fem": -5.398940, "Fish": -6.190527, "Foods": -6.031463, "FoodsAfr": -9.557823, "FoodsAmh": -9.557823, "FoodsBul": -9.557823, "FoodsCat": -9.557823, "FoodsChi": -9.557823, "FoodsCze": -9.557823, "FoodsDut": -9.557823, "FoodsEng": -9.557823, "FoodsEpo": -9.557823, "FoodsFin": -9.557823, "FoodsFre": -9.557823, "FoodsGer": -9.557823, "FoodsHeb": -9.557823, "FoodsHin": -8.864676, "FoodsI": -7.766064, "FoodsIce": -9.557823, "FoodsIta": -9.557823, "FoodsJpn": -9.557823, "FoodsLav": -9.557823, "FoodsMlt": -9.557823, "FoodsMon": -9.557823, "FoodsNep": -9.557823, "FoodsOri": -9.557823, "FoodsPes": -9.557823, "FoodsPor": -9.557823, "FoodsRon": -9.557823, "FoodsSpa": -9.557823, "FoodsSwe": -9.557823, "FoodsTha": -9.557823, "FoodsTsn": -9.557823, "FoodsTur": -9.557823, "FoodsUrd": -9.557823, "Fresh": -6.190527, "Gen": -7.948385, "Gender": -5.025224, "Hard": -8.459211, "Harmony": -7.948385, "IAdj": -8.459211, "I_Har": -8.171529, "Ih": -9.557823, "Ih_Har": -8.171529, "Ind": -6.918766, "Indef": -7.766064, "Indep": -8.171529, "Italian": -6.190527, "Item": -6.123836, "ItemT": -8.864676, "Kind": -6.061316, "KindT": -8.171529, "LexFoods": -7.072917, "LexFoodsCat": -8.864676, "LexFoodsFin": -8.864676, "LexFoodsGer": -8.864676, "LexFoodsIta": -8.864676, "LexFoodsSwe": -8.864676, "LexiconTha": -9.557823, "M": -9.557823, "M.Masc": -8.864676, "Masc": -5.368168, "Mod": -6.190527, "ModV": -8.171529, "Modified": -7.948385, "MorphoCat": -9.557823, "N": -8.171529, "NC": -6.225619, "NFem": -8.459211, "NGender": -7.766064, "NMasc": -8.864676, "NNeut": -8.864676, "NP": -8.171529, "NaAdj": -8.459211, "Neutr": -6.513301, "Nom": -7.360599, "Noun": -7.360599, "NounClass": -6.225619, "NounPhrase": -8.459211, "Number": -4.229947, "P": -8.171529, "ParadigmsCat": -9.557823, "ParadigmsFin": -9.557823, "ParadigmsFre": -9.557823, "ParadigmsGer": -9.557823, "ParadigmsIta": -9.557823, "ParadigmsSpa": -9.557823, "ParadigmsSwe": -9.557823, "ParadigmsTha": -9.557823, "Param": -8.864676, "Params": -8.171529, "Pizza": -6.225619, "Pl": -4.376040, "Plain": -8.459211, "Plural": -8.864676, "Polite": -8.171529, "Pred": -6.190527, "Predef": -8.459211, "Predef.tk": -8.864676, "Predic": -8.459211, "Prelude": -7.159928, "Q": -6.992874, "Quality": -6.031463, "QualityT": -7.948385, "R": -8.171529, "R.thword": -8.171529, "ResCze": -8.864676, "ResTha": -9.557823, "SS": -7.766064, "Sg": -4.364866, "Sg/Pl": -9.557823, "Sing": -8.171529, "Singular": -9.557823, "Soft": -8.459211, "Softness": -7.948385, "Species": -7.478382, "Str": -3.584014, "StructuralSpa": -9.557823, "Style": -8.459211, "Syntax": -7.611913, "SyntaxCat": -8.864676, "SyntaxFin": -8.864676, "SyntaxFre": -9.557823, "SyntaxGer": -8.864676, "SyntaxIta": -8.864676, "SyntaxSpa": -9.557823, "SyntaxSwe": -8.864676, "SyntaxTha": -9.557823, "T": -8.864676, "TType": -6.785234, "That": -6.190527, "These": -6.225619, "This": -6.190527, "Those": -6.225619, "True": -8.459211, "Type": -7.360599, "U_Har": -8.171529, "Uh": -9.557823, "Uh_Har": -8.171529, "Utt": -8.171529, "V": -8.171529, "Very": -6.190527, "Warm": -6.190527, "Wine": -6.190527, "[": -8.864676, "\\": -4.205965, "]": -8.864676, "_": -4.932850, "a": -5.532472, "a.c": -9.557823, "a.h": -9.557823, "a.prep": -9.557823, "a.s": -7.478382, "a.softness": -9.557823, "abstract": -9.557823, "acch": -7.766064, "account": -9.557823, "aceasta": -8.864676, "acesta": -8.864676, "adj": -5.946905, "adjPl": -8.864676, "adjSozinho": -8.864676, "adjUtil": -8.864676, "adjective": -6.466781, "akai": -8.864676, "an": -8.864676, "animais": -8.864676, "animal": -8.864676, "article": -8.459211, "at": -8.864676, "b": -7.360599, "base": -8.171529, "bonita": -8.864676, "bonitas": -8.864676, "bonito": -8.864676, "bonitos": -8.864676, "bor": -8.864676, "boring_A": -7.611913, "buzz": -9.557823, "c": -5.844251, "c@": -8.459211, "ca": -8.864676, "car": -7.766064, "carro": -8.459211, "case": -5.820154, "cat": -9.557823, "cheese_N": -7.611913, "chosen": -8.864676, "chosenna": -8.864676, "cn": -7.159928, "cn.g": -7.255238, "cn.mod": -8.864676, "cn.s": -7.478382, "coding": -6.190527, "cold": -8.171529, "concrete": -6.061316, "cons": -9.557823, "cons@": -9.557823, "copula": -6.261986, "coupla": -8.864676, "d": -7.766064, "declAdj_e": -8.864676, "declAdj_g": -8.864676, "declAdj_oog": -8.864676, "declNoun_aa": -8.864676, "declNoun_e": -8.864676, "declNoun_s": -8.864676, "declNoun_ss": -8.864676, "defH": -7.611913, "defOrInd": -8.864676, "default": -9.557823, "delicious_A": -7.611913, "det": -5.103476, "det.s": -9.557823, "determinant": -9.557823, "dure": -8.864676, "duur": -8.864676, "eg": -9.557823, "en_US": -9.557823, "expensive_A": -7.611913, "f": -6.785234, "fem": -8.864676, "feminine": -8.864676, "fersk": -7.159928, "fersk_pl": -8.864676, "ferska": -8.864676, "ferskar": -8.864676, "ferski": -8.864676, "ferskir": -8.864676, "ferskt": -8.864676, "fersku": -8.864676, "ferskur": -7.948385, "first": -9.557823, "fish_N": -7.478382, "flags": -6.092087, "fpl": -8.459211, "fresh_A": -7.611913, "frisk": -8.171529, "fsg": -8.459211, "full": -9.557823, "fun": -9.557823, "function": -9.557823, "g": -4.690289, "geKind": -7.948385, "gen": -8.171529, "gender": -9.557823, "getAgrGender": -8.459211, "getHarmony": -8.864676, "getSoftness": -8.864676, "gg": -8.459211, "gvina": -7.766064, "gvinot": -7.766064, "h": -8.171529, "hagvina": -8.459211, "hagvinot": -8.459211, "i": -8.864676, "in": -6.123836, "incomplete": -9.557823, "inherent": -9.557823, "init": -8.171529, "instance": -7.948385, "interface": -9.557823, "into": -9.557823, "is": -9.557823, "iswed": -8.864676, "italian_A": -7.611913, "italk": -8.171529, "italki": -8.459211, "italyan": -8.171529, "item": -6.002475, "item.a": -8.864676, "item.c": -9.557823, "item.g": -7.255238, "item.n": -6.261986, "item.s": -6.422329, "kaas": -9.557823, "kind": -4.812891, "kind.c": -7.159928, "kind.g": -5.920237, "kind.prep": -9.557823, "kind.q": -8.171529, "kind.s": -5.729182, "kind.w": -8.171529, "kotba": -8.864676, "koud": -8.459211, "ktieb": -8.864676, "language": -8.864676, "lark": -7.478382, "last": -8.459211, "let": -7.478382, "letter": -9.557823, "lin": -6.225619, "lincat": -6.225619, "linking": -9.557823, "longQuality": -7.478382, "m": -7.360599, "man": -7.255238, "masc": -8.459211, "masculine": -8.171529, "men": -7.255238, "mkA": -5.707676, "mkAP": -6.225619, "mkAdj": -6.261986, "mkAdjReg": -7.611913, "mkCN": -6.562091, "mkCl": -8.171529, "mkDemPron": -7.766064, "mkDescrCop": -8.864676, "mkDescrCop_PName": -8.864676, "mkKind": -8.864676, "mkMod": -8.864676, "mkN": -5.729182, "mkNP": -6.785234, "mkNoun": -7.948385, "mkNounNC": -7.766064, "mkOrdAdj": -8.171529, "mkPerAdj": -8.864676, "mkPredDescrCop": -8.864676, "mkQualRelPart": -8.864676, "mkQualRelPart_PName": -8.864676, "mkTab": -7.948385, "mkUtt": -8.171529, "mkVarAdj": -8.864676, "mkVerbRel": -8.864676, "mkVeryAdj": -8.864676, "mkVeryVerb": -8.459211, "mkn": -9.557823, "mlad": -7.611913, "mod": -7.611913, "mp": -8.171529, "mpl": -8.459211, "mrd": -7.478382, "ms": -8.171529, "msg": -8.459211, "muz": -8.864676, "muzi": -8.864676, "n": -4.239703, "ne": -8.864676, "neutr": -8.864676, "next": -9.557823, "ng": -9.557823, "noexpand": -9.557823, "noun": -5.645800, "noun.g": -8.459211, "noun.s": -7.611913, "nova": -8.459211, "npl": -8.459211, "nsg": -8.459211, "num": -7.766064, "number": -9.557823, "of": -5.163374, "open": -6.422329, "oper": -6.190527, "operations": -8.864676, "optimize": -9.557823, "overload": -9.557823, "p": -7.159928, "p_form": -6.667451, "param": -6.466781, "peste": -8.864676, "pesti": -8.864676, "peynir": -8.864676, "peynirler": -8.864676, "pizza": -9.557823, "pizza_N": -7.611913, "pr": -8.171529, "pre": -9.557823, "prefixSS": -9.557823, "prep": -7.159928, "pytzA": -8.459211, "pytzAhA": -8.459211, "pytzAy": -9.557823, "q": -7.255238, "qual": -7.478382, "qual.s": -7.478382, "quality": -5.069187, "quality.c": -9.557823, "quality.h": -9.557823, "quality.p": -8.864676, "quality.p_form": -9.557823, "quality.prep": -9.557823, "quality.s": -5.666003, "quality.softness": -9.557823, "quality.t": -8.459211, "r": -7.360599, "regAdj": -5.398940, "regN": -6.849773, "regNoun": -5.920237, "regadj": -7.766064, "regnfAdj": -8.864676, "regular": -9.557823, "replaceLastLetter": -7.611913, "resource": -9.557823, "s": -3.657926, "sakana": -7.766064, "sarabi": -8.864676, "sarap": -8.864676, "saraplar": -8.864676, "saraplari": -8.864676, "scump": -8.864676, "scumpa": -8.864676, "scumpe": -8.864676, "scumpi": -8.864676, "sewda": -8.864676, "skaist": -7.478382, "skaista": -8.864676, "skaistaa": -8.864676, "skaistaas": -8.864676, "skaistais": -8.864676, "skaistas": -8.864676, "skaisti": -8.864676, "skaistie": -8.864676, "skaists": -7.948385, "smartAdj_e": -8.171529, "smartDescrCop": -7.948385, "smartQualRelPart": -7.948385, "smartVery": -8.864676, "softness": -8.171529, "sozinh": -8.171529, "sozinho": -8.459211, "sp": -7.159928, "spec": -8.864676, "specAdj": -8.864676, "ss": -7.072917, "startcat": -9.557823, "string": -9.557823, "suwed": -8.459211, "sv_SE": -9.557823, "t": -6.225619, "tAzh": -7.478382, "tAzhy": -8.864676, "table": -4.560611, "taking": -9.557823, "tal": -9.557823, "that_Det": -8.864676, "that_QuantSg": -8.864676, "these_Det": -8.864676, "these_QuantPl": -8.864676, "this_Det": -8.864676, "this_QuantSg": -8.864676, "those_Det": -8.864676, "those_QuantPl": -8.864676, "tk": -9.557823, "to": -7.948385, "tov": -7.766064, "tova": -8.459211, "tovim": -8.459211, "tovot": -8.459211, "uni": -8.171529, "uniAdj": -8.864676, "uteis": -8.459211, "utf": -6.190527, "util": -8.459211, "v": -7.766064, "verb": -9.557823, "veryAdj": -8.864676, "very_AdA": -8.171529, "vino": -8.459211, "vis": -9.557823, "vynikajici": -7.611913, "w": -6.849773, "warm_A": -7.478382, "wijn": -8.459211, "wine_N": -7.611913, "with": -7.948385, "word": -9.557823, "wyn": -9.557823, "x": -5.175797, "x.p_form": -8.864676, "x.s": -7.478382, "x.t": -7.255238, "y": -8.459211, "y.b": -9.557823, "y.c": -6.918766, "y.q": -8.171529, "y.r": -8.864676, "y.w": -8.864676, "{": -3.199981, "|": -4.753802, "}": -3.198249, "Ü": -9.557823, "İ": -9.557823, }, "Graph Modeling Language": map[string]float64{ "[": -1.658228, "]": -1.658228, "directed": -3.044522, "edge": -3.044522, "graph": -3.044522, "id": -2.351375, "label": -2.351375, "node": -2.351375, "source": -3.044522, "target": -3.044522, "value": -2.351375, }, "GraphQL": map[string]float64{ "!": -4.412798, "$": -3.601868, "(": -2.854654, ")": -2.854654, ",": -3.234143, "...": -4.700480, "...frag": -5.799093, ":": -2.061423, "=": -3.853183, "@defer": -5.105945, "@include": -5.105945, "@skip": -5.105945, "Advert": -5.799093, "Article": -5.799093, "Bar": -5.105945, "Boolean": -5.105945, "ComplexType": -5.799093, "CustomScalar": -5.799093, "DESKTOP": -5.799093, "FIELD": -5.105945, "FRAGMENT_SPREAD": -5.105945, "Feed": -5.799093, "Foo": -5.105945, "Friend": -5.799093, "INLINE_FRAGMENT": -5.105945, "InputType": -4.412798, "Int": -5.105945, "MOBILE": -5.105945, "MutationType": -5.799093, "QueryType": -5.799093, "Site": -5.105945, "Story": -5.799093, "StoryLikeSubscribeInput": -5.799093, "StoryLikeSubscription": -5.799093, "String": -3.601868, "Type": -4.189655, "User": -5.799093, "[": -4.412798, "]": -4.412798, "after": -5.799093, "alias": -5.799093, "answer": -5.799093, "argument": -3.853183, "b": -5.799093, "bar": -5.799093, "count": -5.799093, "directive": -5.105945, "enum": -5.799093, "extend": -5.799093, "false": -5.799093, "falsey": -5.799093, "field": -5.105945, "first": -5.799093, "five": -5.799093, "foo": -4.189655, "four": -5.105945, "frag": -5.799093, "fragment": -5.799093, "id": -3.853183, "if": -4.700480, "implements": -5.799093, "input": -4.412798, "interface": -5.799093, "is": -5.799093, "key": -4.700480, "like": -5.799093, "likeSentence": -5.799093, "likeStory": -5.799093, "likers": -5.799093, "mutation": -5.105945, "node": -5.799093, "obj": -5.799093, "on": -4.412798, "one": -5.105945, "other": -5.799093, "query": -4.700480, "queryName": -5.799093, "scalar": -5.799093, "schema": -5.799093, "seven": -5.799093, "site": -5.799093, "six": -5.799093, "size": -5.105945, "story": -4.700480, "storyLikeSubscribe": -5.799093, "subscription": -5.799093, "text": -5.799093, "three": -5.799093, "true": -5.799093, "truthy": -5.799093, "two": -5.799093, "type": -5.105945, "union": -5.799093, "unless": -5.799093, "unnamed": -5.799093, "whoever": -5.799093, "{": -2.580217, "|": -4.007333, "}": -2.580217, }, "Graphviz (DOT)": map[string]float64{ ",": -3.869898, "-": -2.235768, ";": -2.037317, "=": -2.099192, ">": -2.235768, "A": -5.256192, "B": -5.949340, "BD": -5.543875, "C": -5.949340, "D": -5.256192, "DOT": -5.033049, "E": -5.949340, "F": -5.256192, "G": -4.850727, "GF": -5.543875, "GFWYBD": -5.543875, "H": -5.256192, "I": -5.256192, "J": -5.949340, "JW": -5.543875, "K": -5.949340, "L": -5.256192, "M": -5.949340, "N": -5.256192, "O": -5.256192, "R": -5.949340, "S": -5.256192, "SPACE": -5.256192, "T": -5.256192, "U": -5.256192, "W": -5.256192, "WYBD": -5.543875, "X": -5.949340, "Y": -5.256192, "YX": -5.543875, "YXJW": -5.543875, "[": -2.285778, "]": -2.285778, "_": -4.244592, "digraph": -5.949340, "edge": -5.949340, "graph": -5.949340, "label": -2.324999, "node": -6.642487, "ranksep": -5.949340, "record": -3.809273, "shape": -3.809273, "{": -5.949340, "}": -5.949340, }, "Groovy": map[string]float64{ "!": -4.649187, "#": -4.649187, "(": -2.777385, ")": -2.777385, ",": -3.396424, "-": -4.649187, ".each": -5.342334, "//Docs": -5.342334, "//Echo": -5.342334, "//Gather": -5.342334, "//Print": -5.342334, "//ant.apache.org/manual/Types/fileset.html": -5.342334, "/usr/bin/env": -4.649187, ":": -2.777385, "=": -4.243722, ">": -5.342334, "CWD": -5.342334, "Gradle": -5.342334, "SHEBANG#!groovy": -4.649187, "a": -5.342334, "ant": -5.342334, "ant.echo": -4.243722, "ant.fileScanner": -5.342334, "args": -5.342334, "body": -5.342334, "checkout": -4.649187, "component": -5.342334, "concurrency": -4.649187, "def": -4.243722, "description": -5.342334, "dir": -4.649187, "duration": -5.342334, "each": -5.342334, "echo": -4.243722, "echoDirListViaAntBuilder": -5.342334, "file": -5.342334, "files": -5.342334, "fileset": -5.342334, "groovy": -4.649187, "head": -4.649187, "html": -4.243722, "http": -5.342334, "id": -5.342334, "in": -5.342334, "includes": -5.342334, "input": -5.342334, "it.toString": -5.342334, "jettyUrl": -5.342334, "list": -5.342334, "load": -5.342334, "longerTests": -5.342334, "message": -4.649187, "mvn": -4.243722, "name": -3.956040, "node": -3.956040, "of": -5.342334, "p": -5.342334, "parallel": -5.342334, "path": -4.649187, "plugin": -5.342334, "println": -4.243722, "project": -5.342334, "project.name": -5.342334, "projectDir": -5.342334, "quickerTests": -5.342334, "removed.": -5.342334, "runTests": -4.243722, "scm": -4.649187, "screen": -5.342334, "servers": -3.732896, "servers.deploy": -4.649187, "servers.runWithServer": -5.342334, "sh": -4.649187, "stage": -3.956040, "stash": -5.342334, "subdirectory": -5.342334, "task": -5.342334, "the": -4.243722, "title": -4.649187, "to": -5.342334, "via": -5.342334, "with": -5.342334, "{": -2.397895, "}": -2.397895, }, "Groovy Server Pages": map[string]float64{ "$": -4.948760, "%": -4.948760, "-": -3.850148, "/": -3.850148, "<%@>": -4.948760, "</a>": -4.255613, "</body>": -3.562466, "</div>": -4.255613, "</head>": -3.562466, "</html>": -3.562466, "</title>": -3.562466, "<a>": -4.255613, "<body>": -3.562466, "<div>": -4.255613, "<head>": -3.562466, "<html>": -3.562466, "<meta>": -3.562466, "<r:require>": -4.255613, "<title>": -3.562466, "=": -2.004321, ">": -2.550865, "Download": -4.948760, "Print": -4.948760, "Resources": -4.255613, "SiteMesh": -4.255613, "Testing": -3.850148, "Using": -4.948760, "alt": -4.255613, "alt=": -4.255613, "and": -4.255613, "charset=": -3.850148, "class": -4.255613, "content": -3.562466, "content=": -3.562466, "contentType": -4.948760, "contentType=": -4.948760, "directive": -4.948760, "equiv": -3.850148, "example": -4.948760, "href": -4.255613, "http": -3.850148, "id": -4.255613, "id=": -4.255613, "module": -4.255613, "name": -4.948760, "page": -4.255613, "tag": -4.948760, "with": -3.850148, "{": -4.948760, "}": -4.948760, }, "HCL": map[string]float64{ ",": -4.174387, "=": -1.203973, "Name": -4.867534, "[": -2.995732, "]": -2.995732, "ami": -5.560682, "associate_public_ip_address": -5.560682, "bar": -5.560682, "bastion_host": -5.560682, "bastion_port": -5.560682, "bastion_private_key": -5.560682, "bastion_user": -5.560682, "cidr_blocks": -3.951244, "connection": -5.560682, "consul": -5.560682, "cross_zone_load_balancing": -5.560682, "description": -4.462069, "destination": -4.462069, "egress": -4.462069, "false": -4.867534, "from_port": -3.768922, "health_check": -5.560682, "healthy_threshold": -5.560682, "idle_timeout": -5.560682, "ingress": -4.462069, "inline": -5.560682, "instance_port": -5.560682, "instance_protocol": -5.560682, "instance_type": -5.560682, "instances": -5.560682, "interval": -5.560682, "key_name": -5.560682, "lb_port": -5.560682, "lb_protocol": -5.560682, "listener": -5.560682, "name": -4.462069, "private_key": -5.560682, "protocol": -3.768922, "provisioner": -4.174387, "records": -4.867534, "resource": -3.481240, "security_groups": -4.867534, "source": -4.462069, "subnet_id": -5.560682, "subnets": -5.560682, "tags": -4.867534, "target": -5.560682, "template": -5.560682, "timeout": -5.560682, "to_port": -3.768922, "ttl": -4.867534, "type": -4.867534, "unhealthy_threshold": -5.560682, "user": -5.560682, "vpc_id": -4.462069, "vpc_security_group_ids": -5.560682, "zone_id": -4.867534, "{": -2.382628, "}": -2.382628, }, "HLSL": map[string]float64{ "#define": -6.781625, "#else": -6.781625, "#endif": -6.376160, "#if": -6.781625, "#ifndef": -7.474772, "#include": -7.474772, "(": -2.591970, ")": -2.591970, "*": -3.863854, "+": -3.582952, ",": -3.144039, "-": -4.584400, ".r": -6.781625, ".rgb": -7.474772, ".xyz": -6.088478, "/": -5.277548, ":": -3.891253, ";": -2.142053, "<": -7.474772, "=": -2.607238, ">": -7.474772, "AddressU": -5.865334, "AddressV": -5.865334, "AlphaBlendEnable": -7.474772, "BINORMAL": -6.781625, "Binormal": -6.781625, "Brightness": -5.865334, "COLOR": -5.865334, "D": -4.073575, "DecodeHDR": -4.430250, "DownsampleAntiFlickerFilter": -7.474772, "DownsampleFilter": -7.474772, "False": -6.781625, "Geometry": -7.474772, "In": -6.376160, "In.Binormal": -7.474772, "In.Normal": -7.474772, "In.Pos": -7.474772, "In.Tangent": -7.474772, "In.fresnel": -7.474772, "In.reflection": -7.474772, "In.refraction": -7.474772, "In.tex": -7.474772, "Input": -7.474772, "Input.TangentToView": -7.474772, "Input.TexCoord": -6.088478, "LINEAR": -5.277548, "Linear": -4.989866, "MOBILE_OR_CONSOLE": -7.474772, "MagFilter": -5.528862, "Max": -7.474772, "Median": -7.474772, "MinFilter": -5.528862, "MipFilter": -5.528862, "NORMAL": -6.781625, "Normal": -6.781625, "Out": -5.683013, "Out.Pos": -7.474772, "Out.color": -7.474772, "Out.fresnel": -7.474772, "Out.pos": -7.474772, "Out.reflection": -7.474772, "Out.refraction": -7.474772, "Out.tex": -7.474772, "P": -6.781625, "POSITION": -5.528862, "PS_INPUT": -6.781625, "PS_OUTPUT": -5.683013, "PixelShader": -6.376160, "Pos": -6.781625, "Position": -6.781625, "TANGENT": -6.781625, "TEXCOORD": -4.989866, "Tangent": -6.781625, "TangentToView": -7.474772, "TexCoord": -6.088478, "Texture": -5.528862, "True": -6.088478, "UpsampleFilter": -7.474772, "VIEW": -7.474772, "VS_INPUT": -6.088478, "VS_OUTPUT": -4.989866, "Vertex": -6.376160, "VertexShader": -6.376160, "WORLD": -7.474772, "WORLDVIEW": -6.781625, "WORLDVIEWPROJECTION": -6.781625, "WRAP": -6.781625, "Wrap": -5.395331, "ZWriteEnable": -7.474772, "[": -6.376160, "]": -6.376160, "_": -5.395331, "__BLOOM__": -6.781625, "a": -6.088478, "albedo": -6.781625, "albedo_samp": -6.781625, "albedo_tex": -6.781625, "alpha": -6.781625, "amt": -7.474772, "amt.x": -7.474772, "amt.y": -7.474772, "amt.z": -7.474772, "ao": -6.376160, "ao_samp": -6.781625, "ao_tex": -6.781625, "b": -6.088478, "blur_ps_vs_": -6.781625, "c": -5.683013, "color": -7.474772, "compile": -5.683013, "cross": -7.474772, "d": -6.088478, "d.wy": -6.781625, "d.xw": -6.088478, "d.xy": -5.865334, "d.zw": -6.088478, "d.zy": -5.865334, "deform": -6.088478, "dot": -7.474772, "eyeNormal": -6.781625, "float": -3.092746, "fresnel": -6.088478, "gbuffer": -6.781625, "half": -4.430250, "input": -6.376160, "input.Binormal": -7.474772, "input.Normal": -7.474772, "input.Position": -7.474772, "input.Tangent": -7.474772, "input.TexCoord": -6.781625, "ipos": -6.781625, "lerp": -7.474772, "matView": -7.474772, "matWorld": -7.474772, "matWorldView": -5.865334, "matWorldViewProjection": -5.865334, "max": -6.781625, "mesh": -7.474772, "min": -6.781625, "mul": -5.528862, "name": -7.474772, "norm": -5.528862, "normal_samp": -6.781625, "normal_tex": -6.781625, "normalize": -5.683013, "o": -6.781625, "o.gbuffer": -6.781625, "one_div_wsum": -6.781625, "output": -6.781625, "output.Position": -7.474772, "output.TangentToView": -6.376160, "output.TexCoord": -6.781625, "p": -4.641559, "pass": -6.376160, "phase": -6.781625, "pixel": -6.781625, "pixelMain": -7.474772, "pos": -5.172187, "position": -7.474772, "pow": -7.474772, "ps_": -6.376160, "ps_main": -6.088478, "reflect": -6.781625, "reflection": -6.376160, "reflectionMap": -6.088478, "reflectionMapSampler": -6.088478, "refraction": -6.376160, "return": -4.766722, "s": -3.485788, "sRGBTexture": -6.088478, "sampleScale": -6.376160, "sampler": -5.277548, "samplerCUBE": -6.781625, "sampler_state": -5.528862, "scale": -6.781625, "sin": -6.376160, "spec": -6.781625, "specular_samp": -6.781625, "specular_tex": -6.781625, "string": -6.781625, "struct": -5.395331, "t": -7.474772, "tangentNormal": -6.781625, "technique": -6.376160, "tex": -3.449420, "texCUBE": -6.781625, "texCoord": -6.376160, "tex_sampler": -6.781625, "texelSize": -6.376160, "texelSize.xyxy": -6.088478, "texture": -5.528862, "textureCUBE": -7.474772, "type": -7.474772, "uniform": -6.088478, "uv": -4.296718, "vViewPosition": -7.474772, "vViewPosition.xyz": -7.474772, "vertex": -6.781625, "vertexMain": -7.474772, "view": -6.088478, "vs_": -6.376160, "vs_main": -6.088478, "w": -4.989866, "x": -5.395331, "y": -7.474772, "z": -7.474772, "{": -3.919424, "}": -3.919424, }, "HTML": map[string]float64{ "!": -4.682440, "#example": -8.083637, "$": -4.617901, "&": -6.985025, "(": -3.027391, ")": -3.027391, "+": -7.390490, ",": -5.518688, "-": -2.868701, ".": -6.474199, "/": -6.291878, "/h": -5.598731, "0": -6.697343, "1": -7.390490, "4": -8.083637, ":": -4.394758, ";": -4.500118, "<": -4.751433, "<!DOCTYPE>": -6.697343, "<![CDATA[>": -8.083637, "</A>": -8.083637, "</BODY>": -8.083637, "</HEAD>": -8.083637, "</P>": -8.083637, "</UL>": -8.083637, "</a>": -6.004196, "</body>": -6.474199, "</button>": -5.444580, "</div>": -4.557277, "</head>": -6.697343, "</html>": -6.697343, "</loop-tpl>": -6.291878, "</p>": -5.444580, "</script>": -8.083637, "</strong>": -8.083637, "</style>": -8.083637, "</table>": -5.598731, "</tbody>": -8.083637, "</td>": -4.751433, "</text>": -6.291878, "</title>": -6.985025, "</tr>": -5.444580, "<A>": -8.083637, "<P>": -8.083637, "<a>": -6.004196, "<body>": -6.474199, "<br/>": -6.985025, "<button>": -5.444580, "<div>": -4.587130, "<head>": -6.474199, "<html>": -6.474199, "<img>": -7.390490, "<link>": -6.985025, "<loop-tpl>": -6.291878, "<meta>": -7.390490, "<p>": -5.444580, "<script>": -8.083637, "<strong>": -8.083637, "<style>": -8.083637, "<table>": -5.598731, "<tbody>": -8.083637, "<td>": -4.751433, "<text>": -6.291878, "<title>": -6.985025, "<tr>": -5.444580, "=": -1.382906, ">": -3.170982, "?": -8.083637, "@ex": -4.864761, "A": -8.083637, "API": -6.137727, "API.": -6.985025, "APIs": -8.083637, "APIs.": -8.083637, "All": -8.083637, "Android": -6.474199, "B": -8.083637, "Button": -7.390490, "Class": -7.390490, "Classes": -8.083637, "Click": -6.985025, "Common_meta": -8.083637, "Congratulation": -8.083637, "DTD": -6.474199, "Differences": -7.390490, "Doxygen": -8.083637, "EN": -6.985025, "Each": -8.083637, "Example": -5.193265, "For": -8.083637, "Frameset": -8.083637, "Generated": -8.083637, "Go": -7.390490, "HREF": -8.083637, "HTML": -7.390490, "Header": -8.083637, "Here": -8.083637, "Hierarchy": -8.083637, "It": -7.390490, "Just": -8.083637, "Layout": -8.083637, "Main": -8.083637, "ModelElementRow": -8.083637, "Next": -7.390490, "No": -8.083637, "Overview": -7.390490, "PUBLIC": -6.291878, "PackageAddedLink": -8.083637, "PackageChangedLink": -8.083637, "Page": -8.083637, "Pages": -7.390490, "Previous": -7.390490, "REC": -8.083637, "Related": -7.390490, "Report": -7.390490, "SDK": -8.083637, "STOP": -7.390490, "SimpleTableRow": -7.390490, "So": -8.083637, "Strict": -8.083637, "Supported": -8.083637, "System": -8.083637, "TR": -6.985025, "Table": -6.985025, "Targets": -8.083637, "The": -7.390490, "This": -7.390490, "Transitional": -8.083637, "W3C": -6.985025, "XHTML": -6.697343, "[": -4.649650, "]": -4.587130, "a": -5.685742, "aardvark": -7.390490, "about": -8.083637, "added_packages": -7.390490, "additions": -8.083637, "all": -8.083637, "alt": -7.390490, "alt=": -7.390490, "an": -6.985025, "and": -6.291878, "animals": -6.137727, "any": -8.083637, "are": -6.985025, "as": -8.083637, "available.": -8.083637, "b": -6.697343, "background": -7.390490, "based": -8.083637, "beetle": -7.390490, "between": -8.083637, "bindings": -6.291878, "brief": -8.083637, "button": -5.139198, "card": -6.137727, "cat": -7.390490, "cell": -6.697343, "change": -7.390490, "changed_packages": -7.390490, "changes": -7.390490, "charset": -7.390490, "charset=": -8.083637, "class": -3.940502, "class=": -5.039115, "classes": -8.083637, "click": -4.254996, "clientX": -8.083637, "clientY": -8.083637, "color": -7.390490, "compares": -8.083637, "comparison": -8.083637, "conj": -5.781052, "content": -4.948143, "content=": -8.083637, "corner": -8.083637, "count": -4.864761, "dec": -6.474199, "defc": -5.039115, "defn": -5.250424, "described": -8.083637, "description": -8.083637, "details": -8.083637, "detected": -8.083637, "differences": -7.390490, "disabled": -6.697343, "do": -5.193265, "document": -8.083637, "documentation": -8.083637, "dog": -7.390490, "dtd": -6.985025, "e": -5.781052, "elk": -7.390490, "endif": -6.697343, "equiv": -8.083637, "ex": -3.806971, "ex1": -7.390490, "ex10": -6.004196, "ex2": -7.390490, "ex3": -8.083637, "ex3a": -8.083637, "ex3b": -8.083637, "ex6": -6.697343, "ex7": -6.697343, "ex8": -7.390490, "ex9": -6.291878, "example": -7.390490, "explanation": -8.083637, "ferret": -7.390490, "fields.": -8.083637, "file": -8.083637, "for": -7.390490, "frameset": -8.083637, "framework": -7.390490, "goose": -7.390490, "h": -5.598731, "header": -8.083637, "headerLink": -6.697343, "height": -7.390490, "height=": -7.390490, "hippo": -7.390490, "href": -5.685742, "href=": -6.004196, "html": -6.985025, "html40": -8.083637, "http": -6.697343, "ibis": -7.390490, "id": -4.233490, "if": -5.781052, "in": -6.697343, "inc": -6.004196, "includes": -8.083637, "index": -5.311048, "indicated": -8.083637, "information": -8.083637, "is": -7.390490, "it.from": -8.083637, "it.to": -7.390490, "jellyfish": -7.390490, "k": -6.985025, "kangaroo": -7.390490, "keyCode": -7.390490, "keydown": -7.390490, "keys": -7.390490, "let": -6.697343, "list": -8.083637, "loc": -6.985025, "longer": -8.083637, "m": -7.390490, "max": -6.985025, "me": -6.985025, "methods": -8.083637, "middot": -6.985025, "mod": -8.083637, "modifications": -8.083637, "more": -8.083637, "mouse": -6.985025, "mousemove": -6.697343, "name": -4.716341, "nav": -6.474199, "new": -6.697343, "newer": -8.083637, "next": -6.137727, "no": -8.083637, "no_delta": -8.083637, "not": -7.390490, "noting": -8.083637, "nth": -7.390490, "of": -6.474199, "older": -7.390490, "on": -4.682440, "org": -6.985025, "packages": -8.083637, "page": -8.083637, "page.": -7.390490, "pages": -8.083637, "present": -8.083637, "prev": -6.137727, "product": -8.083637, "provided": -8.083637, "reference": -8.083637, "rel": -6.985025, "rel=": -8.083637, "related": -8.083637, "relative": -8.083637, "removals": -7.390490, "removed_packages": -7.390490, "report": -8.083637, "reset": -6.291878, "right": -8.083637, "rows": -6.985025, "sample": -8.083637, "see": -8.083637, "shows": -8.083637, "simple": -8.083637, "site": -8.083637, "specified": -8.083637, "src": -7.390490, "str": -6.985025, "strict": -8.083637, "suggested": -8.083637, "swap": -5.087905, "target": -6.985025, "target=": -6.985025, "test": -8.083637, "text": -5.781052, "the": -5.444580, "this": -7.390490, "to": -6.985025, "toggle": -6.697343, "transitional": -8.083637, "two": -8.083637, "type": -6.474199, "type=": -6.985025, "upper": -8.083637, "vec": -6.985025, "version": -8.083637, "versions": -8.083637, "w3": -6.985025, "were": -8.083637, "when": -5.087905, "where": -8.083637, "whose": -8.083637, "width": -7.390490, "width=": -7.390490, "with": -8.083637, "workaround": -8.083637, "www": -6.985025, "x": -5.518688, "xhtml1": -6.697343, "xmlns": -7.390490, "y": -7.390490, "yellow": -7.390490, "zero": -8.083637, "{": -5.781052, "}": -5.781052, "~": -6.291878, "М": -8.083637, "П": -8.083637, "Р": -8.083637, "а": -7.390490, "в": -8.083637, "г": -8.083637, "д": -7.390490, "е": -7.390490, "ж": -8.083637, "и": -8.083637, "к": -7.390490, "н": -8.083637, "о": -6.985025, "р": -8.083637, "с": -8.083637, "ы": -8.083637, }, "HTML+Django": map[string]float64{ "#": -4.369448, "/": -4.369448, "</body>": -4.369448, "</div>": -4.369448, "</head>": -4.369448, "</html>": -4.369448, "</li>": -3.676301, "</ul>": -4.369448, "<body>": -4.369448, "<div>": -4.369448, "<head>": -4.369448, "<html>": -4.369448, "<input>": -4.369448, "<li>": -3.676301, "<ul>": -4.369448, "=": -2.983153, ">": -3.676301, "Chuck": -3.676301, "Giraffes.": -4.369448, "Its": -4.369448, "Norris": -3.676301, "Username": -4.369448, "a": -3.676301, "are": -4.369448, "as": -4.369448, "chin.": -4.369448, "class": -4.369448, "descendants": -4.369448, "escape": -3.676301, "foo": -3.676301, "horse": -4.369448, "in": -3.676301, "item": -4.369448, "kicked": -4.369448, "known": -4.369448, "name": -3.676301, "name=": -4.369448, "once": -3.676301, "pass": -4.369448, "password": -4.369448, "safe": -4.369448, "semi": -4.369448, "t": -4.369448, "the": -4.369448, "today": -4.369448, "truck": -4.369448, "type": -3.676301, "urinated": -4.369448, "user": -4.369448, "value": -3.676301, "value=": -4.369448, "{": -2.290006, "|": -4.369448, "}": -3.270836, }, "HTML+ECR": map[string]float64{ "!": -2.525729, "%": -1.609438, ",": -3.218876, "<": -3.218876, "<%>": -2.120264, "=": -3.218876, ">": -1.832581, "@name": -2.525729, "Greeting": -2.525729, "else": -3.218876, "end": -3.218876, "if": -3.218876, "name": -3.218876, }, "HTML+EEX": map[string]float64{ "%": -2.251292, "(": -3.637586, ")": -3.637586, ",": -2.458931, "/": -5.023881, "/h": -5.023881, ":": -2.538974, "<": -2.826656, "<%#>": -5.023881, "<%>": -5.023881, "<->": -5.023881, "</table>": -5.023881, "</td>": -3.414443, "</th>": -3.414443, "</tr>": -4.330733, "<br>": -5.023881, "<table>": -5.023881, "<td>": -3.414443, "<th>": -3.414443, "<tr>": -4.330733, "=": -3.077970, ">": -2.538974, "@books": -5.023881, "@conn": -3.637586, "Books": -5.023881, "Listing": -5.023881, "Summary": -5.023881, "Title": -5.023881, "[": -5.023881, "]": -5.023881, "book": -3.637586, "book.content": -5.023881, "book.title": -5.023881, "book_path": -3.637586, "comment": -5.023881, "confirm": -5.023881, "data": -5.023881, "delete": -4.330733, "do": -4.330733, "edit": -5.023881, "end": -5.023881, "for": -5.023881, "h": -5.023881, "link": -3.637586, "method": -5.023881, "new": -5.023881, "show": -5.023881, "to": -3.637586, }, "HTML+ERB": map[string]float64{ "!": -6.129050, "$": -6.129050, "%": -2.545531, "(": -3.421000, ")": -3.421000, "+": -4.337291, ",": -3.421000, ".select": -6.129050, ".to_sym": -6.129050, "/h": -6.129050, ":": -3.038008, ";": -6.129050, "<": -3.489993, "<%>": -3.644144, "</div>": -2.993556, "</fieldset>": -6.129050, "</legend>": -6.129050, "</script>": -6.129050, "<div>": -2.993556, "<fieldset>": -6.129050, "<legend>": -6.129050, "<script>": -6.129050, "=": -2.322388, ">": -2.103699, "?": -5.030438, "@fishbowl_options.each": -6.129050, "@header": -5.435903, "@location_groups": -6.129050, "@location_groups.empty": -6.129050, "@users": -5.030438, "Chords": -6.129050, "Config": -4.519612, "Credits": -6.129050, "Email": -6.129050, "Keys": -6.129050, "Name": -6.129050, "No": -6.129050, "Prem": -6.129050, "Since": -6.129050, "Spree": -4.519612, "Tunings": -6.129050, "Users": -6.129050, "[": -4.337291, "]": -4.337291, "align": -6.129050, "always_fetch_current_inventory": -6.129050, "br": -5.435903, "centered": -6.129050, "check_box_tag": -6.129050, "class": -2.870954, "columns": -3.564101, "do": -4.742756, "else": -6.129050, "empty": -6.129050, "enable_fishbowl": -5.435903, "end": -4.519612, "fishbowl_always_fetch_current_inventory": -6.129050, "fishbowl_location_group": -5.435903, "fishbowl_settings": -6.129050, "h": -6.129050, "header": -5.435903, "hidden_field_tag": -6.129050, "id": -6.129050, "id=": -6.129050, "if": -5.030438, "key": -4.049609, "key.to_s": -6.129050, "key.to_s.gsub": -6.129050, "label_tag": -5.435903, "location_group": -6.129050, "location_groups": -6.129050, "present": -6.129050, "provide": -6.129050, "render": -6.129050, "row": -5.435903, "select": -6.129050, "selected": -6.129050, "size": -6.129050, "small": -6.129050, "t": -4.742756, "table": -5.030438, "tag": -5.435903, "text_field_tag": -6.129050, "title": -6.129050, "type": -6.129050, "user_presenter": -5.435903, "users": -5.435903, "will_paginate": -5.435903, "{": -5.030438, "|": -4.742756, "}": -5.030438, }, "Hack": map[string]float64{ "!": -6.258242, "$": -3.051439, "%": -8.560827, "&": -8.560827, "&&": -8.560827, "(": -2.926038, ")": -2.911853, ",": -3.916436, "-": -4.535476, ".": -5.159630, "/": -6.363603, "/h": -6.951389, "2014": -5.727614, ":": -3.655552, ";": -3.277623, "<": -5.382773, "<!DOCTYPE>": -8.560827, "<(string,>": -6.769068, "</a>": -5.852777, "</div>": -5.425333, "</form>": -7.867680, "</head>": -8.560827, "</li>": -6.363603, "</p>": -7.867680, "</title>": -8.560827, "</ul>": -7.174533, "</x:frag>": -6.769068, "<?hh>": -5.565095, "<DBResult>": -8.560827, "<NavItem>": -7.867680, "<NavSection>": -8.560827, "<T>": -8.560827, "<a>": -5.852777, "<br/>": -8.560827, "<div>": -5.516305, "<form>": -7.867680, "<hack:nav/>": -8.560827, "<head>": -8.560827, "<input>": -7.174533, "<li>": -6.363603, "<link>": -8.560827, "<meta>": -8.560827, "<mixed,>": -8.560827, "<p>": -7.867680, "<phpfile>": -7.867680, "<script>": -8.560827, "<string,>": -6.951389, "<string>": -6.363603, "<title>": -8.560827, "<ul>": -7.174533, "<x:frag>": -6.769068, "=": -3.425029, ">": -3.485653, "?": -5.516305, "All": -5.727614, "An": -5.727614, "Anyway": -8.560827, "Assert": -7.462215, "AssertException": -6.162932, "AssertRecipe": -7.867680, "BSD": -5.727614, "COW_ID": -7.462215, "Controller": -6.769068, "Cookbook": -7.174533, "Copyright": -5.727614, "DB": -8.560827, "DBResult": -8.560827, "DBResultExtra": -7.462215, "DBResultRecipe": -7.867680, "DOCUMENT_ROOT": -5.727614, "DROP": -8.560827, "Demo": -8.560827, "Docs": -8.560827, "Documentation": -8.560827, "E_ALL": -8.560827, "E_RECOVERABLE_ERROR": -8.560827, "Escaped": -8.560827, "Exception": -6.769068, "Expected": -7.174533, "Facebook": -5.727614, "FakeDB": -8.560827, "For": -8.560827, "GET": -7.174533, "GETParams": -7.462215, "GetAndPostRecipe": -7.867680, "GetController": -6.769068, "GitHub": -7.867680, "HHVM": -8.560827, "Hack": -6.614917, "Hello": -8.560827, "HomeController": -7.462215, "I": -7.462215, "ID": -6.481386, "If": -8.560827, "Inc": -5.727614, "Install": -8.560827, "InvariantViolationException": -7.174533, "It": -8.560827, "LICENSE": -5.727614, "Map": -5.921770, "MyGETRequest": -8.560827, "MyPOSTRequest": -8.560827, "MyRequest": -7.174533, "MySecureRequest": -7.867680, "NavItem": -7.867680, "NavSection": -7.867680, "Official": -8.560827, "Ok": -8.560827, "Output": -8.560827, "Outside": -8.560827, "Override": -6.951389, "PATENTS": -5.727614, "PHP": -8.560827, "Recipe": -6.075921, "RecipeWithDemo": -6.075921, "Relevant": -8.560827, "Request": -6.614917, "Result": -8.560827, "Set": -6.075921, "StandardPage": -6.769068, "T": -7.867680, "TABLE": -8.560827, "The": -7.867680, "This": -5.616388, "Try": -8.560827, "Tutorial": -8.560827, "TypehintViolationException": -7.462215, "UNESCAPED_STRING": -6.363603, "USER_ID": -7.462215, "Unescaped": -8.560827, "UnescapedStringRecipe": -7.867680, "User": -8.560827, "UserIDRecipe": -7.867680, "Vector": -5.095091, "XHP": -8.560827, "Your": -8.560827, "[": -5.228623, "]": -5.228623, "_GET": -7.462215, "_POST": -7.867680, "_SERVER": -4.977308, "__construct": -6.258242, "a": -7.174533, "abstract": -5.469785, "action": -7.867680, "add": -8.560827, "addAll": -7.867680, "additional": -5.727614, "admit": -8.560827, "age": -8.560827, "an": -7.462215, "and": -6.951389, "appendChild": -7.174533, "are": -8.560827, "around": -7.867680, "array": -6.363603, "array_map": -7.867680, "arrays": -8.560827, "as": -7.174533, "assert_cow_id": -8.560827, "assert_main": -8.560827, "assert_user_id": -8.560827, "attribute": -7.174533, "bad_extra": -8.560827, "be": -5.727614, "body": -7.867680, "bool": -7.867680, "boom": -8.560827, "built": -8.560827, "button": -8.560827, "button...": -8.560827, "by": -8.560827, "c": -5.727614, "can": -5.616388, "case": -8.560827, "catch": -8.560827, "category": -7.867680, "cause": -8.560827, "charset=": -8.560827, "check": -7.867680, "class": -4.326721, "class=": -6.769068, "class_meth": -7.867680, "code": -5.616388, "code.": -8.560827, "common": -8.560827, "contains": -7.462215, "content": -8.560827, "content=": -8.560827, "controller": -6.075921, "cookbook": -8.560827, "core": -5.995878, "css": -7.174533, "dangerous": -8.560827, "db_result_main": -8.560827, "decide": -8.560827, "demo": -6.481386, "description": -7.462215, "difficult": -8.560827, "directory": -5.034467, "div": -7.867680, "do": -8.560827, "doc": -7.867680, "docs": -8.560827, "documentation": -7.867680, "don": -8.560827, "e": -7.462215, "echo": -7.462215, "element": -7.174533, "else": -7.867680, "equiv": -8.560827, "errcontext": -8.560827, "errfile": -8.560827, "errline": -8.560827, "errno": -7.867680, "errstr": -6.769068, "errtrace": -8.560827, "escape": -8.560827, "escape_unescaped_string": -7.867680, "every": -8.560827, "examples": -7.867680, "explode": -7.462215, "extends": -5.159630, "false": -7.174533, "file": -4.949909, "filename": -6.614917, "final": -5.193531, "float": -7.174533, "flow": -7.867680, "fn": -7.867680, "foreach": -7.867680, "found": -5.034467, "fromArray": -7.462215, "function": -3.670478, "funs": -7.867680, "get": -7.867680, "getAttribute": -7.867680, "getCSS": -7.174533, "getDBResults": -8.560827, "getDemoFilename": -6.481386, "getDemoResult": -6.614917, "getDemoXHP": -6.614917, "getDescription": -6.614917, "getDocs": -6.481386, "getExtraCSS": -7.462215, "getExtraJS": -7.867680, "getFilenames": -6.481386, "getGETParams": -7.462215, "getHead": -7.867680, "getJS": -7.462215, "getMessage": -8.560827, "getName": -5.921770, "getNavSections": -7.867680, "getPOSTParams": -7.867680, "getParams": -6.769068, "getRawRows": -7.867680, "getRequest": -7.867680, "getTitle": -6.951389, "get_and_post_main": -8.560827, "get_class": -8.560827, "get_cow_string": -8.560827, "get_something_string": -7.462215, "get_user_string": -8.560827, "giving": -8.560827, "go": -7.867680, "good": -8.560827, "good_extra": -8.560827, "grant": -5.727614, "gross": -8.560827, "h": -6.951389, "hack": -8.560827, "handle_error": -8.560827, "head": -7.462215, "helps": -8.560827, "hh": -6.481386, "hhvm": -7.174533, "highlight_file": -8.560827, "highlighting": -8.560827, "how": -7.462215, "href": -5.670455, "href=": -7.462215, "html": -8.560827, "http": -8.560827, "id": -6.363603, "id=": -8.560827, "id_to_int": -7.867680, "if": -5.425333, "illustrate": -8.560827, "implement": -8.560827, "implements": -6.258242, "implode": -7.867680, "important_stuff": -8.560827, "in": -4.298147, "init": -5.727614, "initially": -8.560827, "innocent": -8.560827, "instanceof": -8.560827, "int": -5.921770, "intParam": -8.560827, "intParamX": -8.560827, "interesting": -8.560827, "interface": -8.560827, "invariant": -6.481386, "invariant_violation": -7.174533, "is": -5.341951, "isArrayOf": -7.867680, "isEmpty": -8.560827, "isFloat": -7.867680, "isGET": -8.560827, "isInt": -7.867680, "isNum": -7.867680, "isString": -7.867680, "is_array": -8.560827, "is_float": -7.174533, "is_int": -7.174533, "is_numeric": -7.867680, "is_string": -7.462215, "it": -7.462215, "item": -7.462215, "items": -7.867680, "js": -7.174533, "json_encode": -8.560827, "kind": -8.560827, "knows": -8.560827, "license": -5.727614, "licensed": -5.727614, "link": -7.462215, "list": -8.560827, "ll": -8.560827, "m": -8.560827, "main_column": -6.769068, "makes": -8.560827, "map": -6.951389, "message": -6.481386, "method": -6.769068, "method=": -7.867680, "mixed": -5.516305, "myIntParam": -7.867680, "myIntParam=": -7.867680, "myStrParam": -7.867680, "myxhp": -8.560827, "name": -5.516305, "name.": -8.560827, "name=": -7.867680, "nav": -8.560827, "need": -8.560827, "new": -5.852777, "newtype": -6.951389, "nice": -8.560827, "no": -8.560827, "null": -6.258242, "num": -7.867680, "of": -4.923241, "on": -8.560827, "one": -7.867680, "only": -8.560827, "open": -8.560827, "or": -8.560827, "other": -8.560827, "out": -8.560827, "over": -8.560827, "page": -7.867680, "param": -6.614917, "params": -6.614917, "parent": -7.867680, "pass": -8.560827, "patent": -5.727614, "php": -5.469785, "phpfile": -7.867680, "primitive": -7.867680, "private": -6.258242, "problems.": -8.560827, "processRow": -8.560827, "protected": -4.449953, "public": -4.799627, "rarr": -8.560827, "raw_row": -7.867680, "raw_string": -7.462215, "re": -8.560827, "read": -8.560827, "really": -8.560827, "recipe": -6.162932, "recipes": -8.560827, "rel": -8.560827, "relying": -8.560827, "render": -6.769068, "renderHeader": -7.867680, "renderMainColumn": -6.769068, "renderNavItems": -7.867680, "renderNavSection": -7.867680, "render_doc_link": -7.867680, "render_item": -7.867680, "repository": -8.560827, "request": -6.951389, "require": -7.867680, "require_once": -4.732186, "reserved": -5.727614, "result": -6.614917, "ret": -7.462215, "return": -3.965707, "rights": -5.034467, "root": -5.727614, "row": -7.462215, "run": -8.560827, "s": -6.614917, "same": -5.727614, "section": -6.614917, "section_item": -7.174533, "sections": -7.867680, "set_error_handler": -8.560827, "setting": -8.560827, "setup_errors": -7.867680, "shape": -5.921770, "small": -8.560827, "so": -8.560827, "solve": -8.560827, "something": -7.462215, "sort": -8.560827, "source": -5.034467, "source.": -8.560827, "sprintf": -6.769068, "src": -6.951389, "standard": -7.867680, "startup": -7.174533, "static": -6.162932, "strict": -5.616388, "string": -4.083490, "stringParam": -8.560827, "stringify": -7.867680, "strings": -7.867680, "strpos": -7.462215, "style": -5.727614, "support": -8.560827, "syntax": -8.560827, "t": -8.560827, "taint": -8.560827, "target": -8.560827, "target=": -8.560827, "test": -7.174533, "than": -8.560827, "that": -7.867680, "the": -4.061018, "they": -8.560827, "thing": -8.560827, "this": -4.648804, "throw": -5.995878, "to": -6.481386, "toArray": -6.951389, "toVector": -7.867680, "trait": -7.867680, "tree": -5.727614, "trim": -8.560827, "true": -8.560827, "try": -8.560827, "tuple": -6.481386, "type": -6.162932, "type=": -8.560827, "under": -5.727614, "unescaped_string": -7.462215, "unescaped_string_main": -8.560827, "url": -7.867680, "use": -6.614917, "user_id_main": -8.560827, "value": -6.951389, "value=": -7.174533, "vendor": -7.174533, "void": -6.614917, "want": -7.867680, "way": -8.560827, "we": -8.560827, "which": -8.560827, "will": -8.560827, "with": -7.867680, "world": -8.560827, "write": -8.560827, "written": -8.560827, "x": -4.776638, "xhp": -5.382773, "you": -6.614917, "your": -8.560827, "yourself.": -8.560827, "{": -3.303332, "}": -3.303332, }, "Haml": map[string]float64{ "!": -5.159055, "%": -3.213145, "(": -2.856470, ")": -2.856470, ",": -2.268684, "-": -2.386467, ".btn": -4.465908, ".pull": -5.159055, "/": -5.159055, ":": -2.163323, "=": -3.079614, ">": -3.772761, "?": -4.465908, "Hello": -5.159055, "World": -5.159055, "black": -5.159055, "blue": -5.159055, "button.btn.btn": -5.159055, "class": -3.772761, "confirm": -5.159055, "data": -5.159055, "default.disabled": -5.159055, "delete": -5.159055, "do": -3.772761, "edit.row": -5.159055, "else": -5.159055, "green": -5.159055, "group": -4.465908, "i.icon": -3.549617, "if": -5.159055, "link_to": -3.772761, "methode": -5.159055, "p": -5.159055, "page": -5.159055, "page.deletable": -5.159055, "page.id": -5.159055, "page.nested_url": -4.465908, "page.translated_to_default_locale": -5.159055, "page.translations.first.locale": -5.159055, "page.url": -5.159055, "page_title_with_translations": -5.159055, "parent_id": -5.159055, "picture.row": -5.159055, "plus.row": -5.159055, "red": -5.159055, "refinery.admin_page_path": -5.159055, "refinery.edit_admin_page_path": -5.159055, "refinery.new_admin_page_path": -5.159055, "replace": -5.159055, "right": -5.159055, "scope": -3.772761, "switch_locale": -5.159055, "t": -3.549617, "target": -5.159055, "title": -3.549617, "trash": -5.159055, "trash.row": -5.159055, "unless": -5.159055, "xs.btn": -5.159055, "{": -5.159055, "}": -5.159055, }, "Handlebars": map[string]float64{ "#each": -4.553877, "/each": -4.553877, "/h": -3.167583, "<": -2.474435, "</div>": -2.944439, "<div>": -2.944439, "=": -2.944439, ">": -1.988928, "By": -3.860730, "Comments": -4.553877, "author": -3.860730, "body": -3.455265, "class": -2.944439, "comments": -4.553877, "fullName": -3.860730, "h": -3.167583, "title": -4.553877, "{": -1.781288, "}": -1.781288, }, "Haskell": map[string]float64{ "!": -5.068904, "#": -7.014814, "$": -4.242226, "'": -7.014814, "(": -2.954371, ")": -2.920470, "+": -4.449865, ",": -2.287427, "-": -3.488454, ".": -5.405376, "..": -7.014814, "/": -5.628520, "/usr/bin/runhaskell": -7.014814, "0": -5.628520, "1": -6.321667, "27": -7.014814, "3": -5.628520, "9": -5.068904, ":": -3.164667, "<->": -7.014814, "=": -2.989463, ">": -3.682610, "ACSS": -7.014814, "Bool": -5.405376, "CSS": -7.014814, "Code": -5.916202, "ColourPrefs": -6.321667, "Data.Char": -7.014814, "Data.List": -6.321667, "Data.List.Split": -7.014814, "Data.Maybe": -5.628520, "Debug.Trace": -7.014814, "False": -5.405376, "HTML": -6.321667, "HTML.hscolour": -7.014814, "ICSS": -6.321667, "ICSS.hscolour": -7.014814, "IO": -6.321667, "Int": -3.836761, "Just": -6.321667, "LaTeX": -7.014814, "Language.Haskell.HsColour.ACSS": -7.014814, "Language.Haskell.HsColour.CSS": -7.014814, "Language.Haskell.HsColour.Colourise": -7.014814, "Language.Haskell.HsColour.HTML": -7.014814, "Language.Haskell.HsColour.InlineCSS": -7.014814, "Language.Haskell.HsColour.LaTeX": -7.014814, "Language.Haskell.HsColour.MIRC": -7.014814, "Language.Haskell.HsColour.Output": -7.014814, "Language.Haskell.HsColour.TTY": -7.014814, "Lit": -5.068904, "MIRC": -6.321667, "MIRC.hscolour": -7.014814, "Main": -7.014814, "Maybe": -5.916202, "Nothing": -7.014814, "Output": -7.014814, "SHEBANG#!runhaskell": -7.014814, "String": -4.616919, "Sudoku": -4.817590, "TTY": -6.321667, "TTY.hscolour": -7.014814, "True": -7.014814, "[": -3.795939, "\\": -7.014814, "]": -3.836761, "_": -5.405376, "`": -6.321667, "a": -5.916202, "acc": -5.068904, "after": -6.321667, "anchor": -5.223055, "any": -6.321667, "as": -5.068904, "average": -6.321667, "before": -6.321667, "c": -4.529908, "case": -7.014814, "checkBox": -6.321667, "checkColumn": -6.321667, "checkRow": -6.321667, "chunk": -7.014814, "chunksOf": -4.712229, "classify": -5.916202, "concat": -6.321667, "concatMap": -6.321667, "div": -7.014814, "do": -5.916202, "draw": -5.628520, "drop": -7.014814, "el": -6.321667, "elemIndex": -7.014814, "else": -7.014814, "filter": -5.916202, "foldl": -7.014814, "fromMaybe": -6.321667, "getBox": -5.916202, "getColumn": -5.916202, "getRow": -5.916202, "head": -7.014814, "hello": -6.321667, "hscolour": -4.817590, "i": -4.817590, "id": -6.321667, "if": -7.014814, "import": -4.070375, "in": -7.014814, "index": -3.682610, "interact": -7.014814, "intercalate": -6.321667, "isPrefixOf": -7.014814, "isSolved": -5.628520, "joinL": -4.935373, "length": -4.375757, "let": -5.405376, "lines": -5.068904, "listToMaybe": -7.014814, "main": -5.223055, "map": -4.449865, "mapAccumL": -7.014814, "mapMaybe": -7.014814, "maze": -4.616919, "mod": -6.321667, "module": -6.321667, "more": -7.014814, "n": -4.242226, "newPos": -7.014814, "newPositions": -5.916202, "nextTest": -5.223055, "notBlocked": -6.321667, "notPrev": -7.014814, "nub": -5.223055, "orig": -6.321667, "otherwise": -6.321667, "output": -5.916202, "pPrint": -5.405376, "partial": -6.321667, "pos": -5.916202, "pos@": -7.014814, "pref": -4.712229, "prevPos": -5.916202, "product": -7.014814, "putStrLn": -5.916202, "qualified": -5.068904, "quot": -5.916202, "row": -6.321667, "s": -5.405376, "show": -7.014814, "solve": -4.935373, "splitAt": -7.014814, "start": -5.916202, "startx": -6.321667, "starty": -6.321667, "substitute": -5.628520, "sudoku": -3.377228, "sudokuBoxes": -5.916202, "sudokuColumns": -5.916202, "sudokuRows": -5.628520, "sudokus": -5.916202, "tail": -6.321667, "take": -7.014814, "then": -7.014814, "title": -6.321667, "toUpper": -7.014814, "top": -7.014814, "transpose": -5.628520, "tryMoves": -5.916202, "type": -7.014814, "unlines": -7.014814, "wallPos": -7.014814, "where": -4.935373, "x": -4.124443, "xs": -4.817590, "y": -4.616919, "zip": -7.014814, "zipped": -7.014814, "|": -4.935373, }, "Hy": map[string]float64{ "(": -1.724041, ")": -1.724041, "+": -5.056246, "-": -2.753661, ".result": -5.056246, ".submit": -5.056246, ";": -3.669951, "<": -5.056246, "=": -4.363099, "Fibonacci": -5.056246, "Hy.": -4.363099, "The": -5.056246, "ThreadPoolExecutor": -4.363099, "[": -2.753661, "]": -2.753661, "__name__": -5.056246, "as": -3.957634, "comp": -5.056246, "completed": -4.363099, "concurrent.futures": -4.363099, "defn": -4.363099, "do": -4.363099, "example": -4.363099, "executor": -4.363099, "fib": -3.669951, "for": -4.363099, "future": -4.363099, "if": -4.363099, "import": -5.056246, "in": -4.363099, "jobs": -4.363099, "list": -5.056246, "n": -3.446808, "print": -5.056246, "randint": -4.363099, "random": -5.056246, "range": -5.056246, "setv": -5.056246, "sh": -5.056246, "sleep": -4.363099, "task": -4.363099, "to": -4.363099, "with": -5.056246, "x": -3.957634, }, "HyPhy": map[string]float64{ "!": -9.203484, "\"": -9.608949, "#include": -8.222654, "#profile": -9.203484, "$": -8.692658, "%": -9.608949, "&": -7.904201, "&&": -9.203484, "(": -2.355832, ")": -2.357249, "*": -5.998031, "***": -9.608949, "*Arctan": -8.915802, "*CGammaDist": -8.915802, "*Columns": -10.302096, "*Exp": -8.692658, "*GammaDist": -9.203484, "*IBeta": -9.203484, "*Log": -10.302096, "*P": -8.915802, "*P*Exp": -10.302096, "*P*sigma*": -10.302096, "*R": -8.510336, "*R_": -8.915802, "*W*": -10.302096, "*ZCDF": -9.608949, "*alpha/beta": -9.203484, "*alpha/beta*CGammaDist": -10.302096, "*betaP/": -9.608949, "*branchLengths": -8.915802, "*doREV": -10.302096, "*lnL": -9.203484, "*np": -9.203484, "*obsF": -8.915802, "*sigma": -7.357657, "*sigma*sigma": -8.104871, "*t": -8.915802, "+": -3.122788, ",": -2.440369, "-": -4.071614, ".": -6.969891, "/": -6.588524, "/Beta": -8.692658, "/PIStop": -10.302096, "/ZCDF": -7.594046, "/currentBL": -10.302096, "/filteredData_": -9.608949, "/k": -10.302096, "/reportMx": -10.302096, "/resp__": -10.302096, "/sigma": -7.166602, "/sqrt": -8.510336, "/v": -10.302096, "0": -5.098089, "010010": -9.608949, "05": -9.608949, "1": -5.325362, "10": -8.104871, "1024": -9.608949, "12": -10.302096, "128": -9.203484, "14": -9.203484, "15": -7.124042, "16": -7.211053, "1_": -8.915802, "1e100": -9.608949, "2": -6.638534, "256": -9.608949, "2RatesAnalyses": -10.302096, "2_": -8.915802, "3": -7.594046, "33": -9.608949, "4": -6.718577, "5": -6.934800, "6": -8.104871, "64": -7.904201, "7": -10.302096, "75": -10.302096, "8": -8.692658, "9": -10.302096, "95": -10.302096, ":": -5.450066, ";": -2.438445, "<": -4.764762, "<CC;>": -9.608949, "<D)>": -10.302096, "<Rows(cachedBranchLengths);>": -10.302096, "<modelCount;>": -10.302096, "<numberOfSubsets;>": -8.915802, "<parOff;>": -10.302096, "<rc;>": -10.302096, "<rejectAt)>": -9.608949, "<resp;>": -8.692658, "<respP;>": -10.302096, "=": -2.723439, ">": -5.958290, "A": -9.608949, "AC": -7.999511, "AC*nt": -9.608949, "ACCEPT_BRANCH_LENGTHS": -10.302096, "AC_": -7.999511, "AC_1": -9.203484, "AC_2": -9.203484, "AIC": -7.043999, "AICJ": -9.203484, "AICPSH": -9.203484, "AICPSP": -8.510336, "AICPSS": -8.510336, "AICc": -9.203484, "AICcJ": -9.203484, "AICcPSH": -9.203484, "AICcPSP": -8.510336, "AICcPSS": -8.510336, "AT": -7.999511, "AT*nt": -9.608949, "AT_": -7.999511, "AT_1": -9.203484, "AT_2": -9.203484, "Abs": -7.904201, "All": -9.608949, "B": -10.302096, "BASE_PATH": -7.904201, "Beta": -7.904201, "Branch": -10.302096, "BranchCount": -6.067989, "BranchLength": -9.203484, "BranchName": -6.067989, "BuildCodonFrequencies": -8.356186, "BuildCodonFrequencies12": -10.302096, "BuildCodonFrequencies4": -10.302096, "C": -9.203484, "CC": -8.915802, "CC/numberOfSubsets": -10.302096, "CChi": -7.737147, "CG": -7.999511, "CG*nt": -9.608949, "CG_": -7.999511, "CG_1": -9.203484, "CG_2": -9.203484, "CGammaDist": -8.692658, "CHARTWINDOW": -10.302096, "CLEAR_FILE": -7.999511, "COMPLETE": -10.302096, "CONSTANT_ON_PARTITION": -9.203484, "CT": -7.999511, "CT*nt": -9.608949, "CT_": -7.999511, "CT_1": -9.203484, "CT_2": -9.203484, "CheckCodonFilter": -6.067989, "ChoiceList": -8.510336, "Choose": -9.203484, "Codon": -10.302096, "Columns": -7.468883, "Constrain": -7.999511, "ConstrainString": -8.222654, "ConstructCategoryMatrix": -10.302096, "CreateFilter": -5.920069, "CreateGY": -10.302096, "Custom": -10.302096, "D": -7.904201, "DATA______________": -10.302096, "DataSet": -8.510336, "DataSetFilter": -5.920069, "Default": -10.302096, "DefineNucleotideBiases": -9.203484, "DeleteObject": -8.692658, "Desc": -10.302096, "Discrete": -8.915802, "Distributions": -9.608949, "Done": -9.608949, "E": -8.356186, "EFV": -10.302096, "EFV__": -6.430895, "END_OF_FILE": -10.302096, "EQUAL": -8.104871, "Effects": -9.203484, "Estimate": -10.302096, "ExecuteAFile": -8.510336, "ExecuteCommands": -4.346259, "Exp": -7.737147, "F": -10.302096, "FIT": -9.608949, "FOLLOWING": -10.302096, "Fitting": -10.302096, "Format": -4.796764, "FrameText": -10.302096, "Freqs": -9.608949, "G": -9.608949, "GT": -7.999511, "GT*nt": -9.608949, "GTRMatrix": -9.608949, "GTRModel": -10.302096, "GT_": -7.999511, "GT_1": -9.203484, "GT_2": -9.203484, "GY": -9.608949, "Gamma": -7.999511, "GammaDist": -9.608949, "Gaut": -9.608949, "GeneticCodeExclusions": -8.692658, "GetDistributionParameters": -10.302096, "GetInformation": -10.302096, "GetString": -7.737147, "Global": -9.203484, "Goldman": -9.608949, "HKY85": -9.608949, "HarvestFrequencies": -8.222654, "IBeta": -9.203484, "INDEPENDENT": -9.608949, "INTEGRATION_PRECISION_FACTOR": -10.302096, "Independent": -9.203484, "Inferred": -7.817189, "Initial": -10.302096, "Jointly": -10.302096, "KEEP_OPTIMAL_ORDER": -10.302096, "LAST_FILE_PATH": -7.594046, "LAST_MODEL_PARAMETER_LIST": -8.692658, "LFCompute": -8.356186, "LF_DONE_COMPUTE": -9.203484, "LF_START_COMPUTE": -9.203484, "LIKELIHOOD_FUNCTION_OUTPUT": -8.104871, "LRT": -7.211053, "Length": -10.302096, "Lengths": -10.302096, "Likelihood": -10.302096, "LikelihoodFunction": -5.971363, "Log": -8.222654, "LogL": -7.257573, "LogLJ": -8.104871, "LogLPSH": -8.104871, "LogLPSP": -7.663039, "LogLPSS": -7.663039, "MAXIMUM_ITERATIONS_PER_VARIABLE": -10.302096, "MEAN": -7.468883, "MESSAGE_LOGGING": -10.302096, "MFPSreader.def": -10.302096, "MG": -8.692658, "MG94model_": -10.302096, "MG94x": -9.608949, "MG94xREVxBivariate": -10.302096, "MODEL": -8.915802, "MPINodeState": -6.934800, "MPIReceive": -10.302096, "MPISend": -9.203484, "MPI_NODE_COUNT": -7.904201, "MULTIPLY_BY_FREQS": -8.915802, "Max": -8.356186, "Min": -7.663039, "Model": -7.904201, "ModelMatrixDimension": -7.663039, "ModelMatrixName": -6.313112, "ModelNames": -10.302096, "ModelTitle": -8.104871, "ModelTitle_1": -9.608949, "ModelTitle_2": -9.608949, "Muse": -9.608949, "NICETY_LEVEL": -10.302096, "NS_": -9.203484, "Neutral": -9.608949, "No": -10.302096, "Normal": -8.510336, "Nucleotide": -10.302096, "Number": -9.203484, "OPTIMIZATION_PRECISION": -8.915802, "OPTIMIZE_SUMMATION_ORDER": -9.608949, "Only": -10.302096, "OpenWindow": -10.302096, "Optimize": -5.847749, "Options": -10.302096, "P": -5.610748, "P*": -10.302096, "P*CGammaDist": -9.608949, "P*GammaDist": -10.302096, "P*IBeta": -8.692658, "P*_x_": -8.915802, "P*betaP/": -9.203484, "P/resp__": -10.302096, "PAUSE": -10.302096, "PIStop": -7.594046, "POSITIVE": -9.608949, "PRINT_DIGITS": -7.663039, "PROMPT_FOR_FILE": -8.356186, "PROPORTIONS": -10.302096, "P_": -7.124042, "P_1_": -8.510336, "P_2_": -8.915802, "ParameterCount": -10.302096, "Please": -8.915802, "PopulateModelMatrix": -8.692658, "Posterior": -9.608949, "R": -6.775735, "RATE": -10.302096, "RE": -9.203484, "REGIME": -10.302096, "RELOAD": -9.608949, "RESTORE_GLOBALS": -10.302096, "RUNNING": -9.608949, "R_": -7.411724, "R_1_": -8.510336, "R_2_": -8.915802, "Random": -8.104871, "Randomized": -10.302096, "Rate": -9.203484, "ReadDataFile": -8.510336, "ReceiveJobs": -8.692658, "RelRatio": -9.608949, "ReplicateConstraint": -9.203484, "ReportDistributionString": -7.306364, "RequireVersion": -10.302096, "RestoreGlobalValues": -10.302096, "Rows": -8.356186, "Run": -9.203484, "SAVE_GLOBALS": -8.510336, "SELECTION": -9.608949, "SHARED": -9.203484, "SINGLE": -10.302096, "SITE_LIKELIHOOD": -9.608949, "SKIP_CONJUGATE_GRADIENT": -9.608949, "SKIP_MODEL_PARAMETER_LIST": -9.608949, "SKIP_NONE": -8.510336, "START": -10.302096, "SUMMARY": -10.302096, "S_": -6.718577, "S_1_": -9.608949, "S_2_": -10.302096, "Save": -10.302096, "Score": -9.608949, "Select": -10.302096, "SelectTemplateModel": -10.302096, "Selection": -9.608949, "SetDialogPrompt": -8.356186, "SetParameter": -9.203484, "SetWDistribution": -10.302096, "Share": -9.608949, "SharedPositiveSelection": -10.302096, "SharedProportion": -10.302096, "SharedStrength": -10.302096, "Single": -9.203484, "Sites": -10.302096, "Sqrt": -8.915802, "String": -9.203484, "Subsets": -9.608949, "T": -8.510336, "TABLE": -10.302096, "THE": -10.302096, "TL": -8.692658, "TemplateModels": -8.510336, "TemplateModels/": -10.302096, "TemplateModels/chooseGeneticCode.def": -10.302096, "Time": -9.608949, "TipCount": -4.699977, "TipName": -6.097403, "Transversion/transition": -10.302096, "Tree": -7.904201, "TreeScaler": -10.302096, "USE_LAST_RESULTS": -8.356186, "USE_POSITION_SPECIFIC_FREQS": -10.302096, "Use": -10.302096, "UseModel": -6.067989, "Using": -8.915802, "VERBOSITY_LEVEL": -10.302096, "Value": -10.302096, "W": -7.468883, "Write": -10.302096, "Yang": -9.608949, "ZCDF": -7.529507, "[": -3.788866, "\\": -6.313112, "]": -3.788866, "^": -7.817189, "_": -5.971363, "_0": -10.302096, "_DO_TREE_REBALANCE_": -9.203484, "_Genetic_Code": -6.775735, "__": -7.817189, "____________________________________________________________________________________________________________________": -9.203484, "_hyphy_profile_dump": -8.915802, "_indices": -9.608949, "_instructions": -9.203484, "_iv": -7.529507, "_m": -7.999511, "_profile_summer": -8.692658, "_scale": -9.608949, "_x_": -5.895377, "_x_*_x_/": -10.302096, "_x_*sigma*sqrt": -10.302096, "_x_/sigma": -10.302096, "a": -8.104871, "aMatrix": -7.737147, "aaString": -8.915802, "acid": -10.302096, "addOn": -8.356186, "addition": -10.302096, "alignment": -9.203484, "all": -9.608949, "alpha": -6.613216, "alpha/beta*CGammaDist": -10.302096, "amino": -10.302096, "aminoacid": -10.302096, "an": -9.608949, "and": -7.999511, "applicable": -9.608949, "appropriate": -10.302096, "approximate": -10.302096, "are": -10.302096, "assert": -4.685325, "associativearray": -9.608949, "at": -10.302096, "available": -9.608949, "base": -9.608949, "baseLineLL": -8.915802, "be": -9.608949, "bestAIC": -8.915802, "bestAICidx": -9.203484, "bestAlpha": -7.737147, "bestBeta": -8.104871, "bestCAIC": -8.915802, "bestCAICidx": -8.915802, "bestDiff": -7.306364, "bestLL": -10.302096, "beta": -6.868109, "betaP": -6.540896, "betaQ": -6.540896, "bf": -8.915802, "bias": -10.302096, "bin": -10.302096, "bnames": -8.915802, "branch": -8.915802, "branchLengthStash": -8.915802, "branchLengths": -7.737147, "branchlength": -6.097403, "branchname": -4.998791, "break": -8.222654, "c": -5.824759, "c*kappa": -9.608949, "cAIC": -8.222654, "c_": -8.915802, "cachedBranchLengths": -10.302096, "capString": -7.999511, "categDef": -8.222654, "categDef1": -7.529507, "categDef_1": -9.608949, "categDef_2": -9.608949, "categFreqMatrix": -7.257573, "categRateMatrix": -7.999511, "categories": -10.302096, "categories.": -10.302096, "category": -7.468883, "cc": -9.203484, "character": -9.608949, "checkASample": -8.356186, "checkEmbedding": -9.608949, "chooseGeneticCode": -9.608949, "classes": -8.915802, "clockTree": -9.608949, "cmdstring": -9.203484, "codon": -8.356186, "codonFactor_": -7.999511, "codonFactor_1": -10.302096, "codonFactor_2": -10.302096, "codonfilter": -9.608949, "codonfilter.sites": -9.203484, "codonfilter.species": -9.608949, "comparisons": -10.302096, "considered": -10.302096, "continue": -8.222654, "currentBL": -10.302096, "currentBN": -9.203484, "custom": -9.608949, "customLoopCounter": -6.564426, "customModel": -10.302096, "cutoff": -8.915802, "d": -6.805588, "d1": -8.104871, "d2": -8.104871, "dN": -9.203484, "dN/dS": -8.222654, "dN/dS.": -10.302096, "dS": -8.915802, "data": -5.847749, "data.sites": -9.203484, "data.species": -9.608949, "dataType": -8.915802, "def": -9.608949, "default": -10.302096, "defineGamma": -10.302096, "defineHM": -10.302096, "defineRateDistribution": -9.203484, "defines": -9.608949, "degF": -7.211053, "degF*totalCodonCount/": -10.302096, "degFDiff": -9.203484, "degFJ": -7.999511, "degFJ*totalCodonCount/": -10.302096, "degFPSH": -7.737147, "degFPSP": -7.468883, "degFPSP*totalCodonCount/": -10.302096, "degFPSS": -7.594046, "degFPSS*totalCodonCount/": -10.302096, "designation": -9.608949, "detailed": -10.302096, "diff": -8.222654, "dirty": -10.302096, "discretized": -10.302096, "distrInfo": -7.817189, "distribution": -9.608949, "distributions": -9.608949, "distributions.": -10.302096, "distroString": -8.510336, "doREV": -9.203484, "done": -7.999511, "ds": -7.737147, "ds_1": -8.915802, "ds_2": -8.915802, "dummy": -8.915802, "e": -7.166602, "each": -10.302096, "else": -5.883255, "enter": -9.608949, "estimates": -10.302096, "evolving": -10.302096, "fC": -8.692658, "file": -8.510336, "fileCount": -8.510336, "fileID": -6.174961, "fileName": -10.302096, "filteredData": -7.904201, "filteredData.sites": -9.608949, "filteredData.sites/": -10.302096, "filteredData_": -8.915802, "filteredData_1": -8.510336, "filteredData_2": -8.692658, "first": -7.817189, "fit": -8.510336, "fits": -10.302096, "for": -4.703674, "fpath": -7.817189, "fprintf": -4.470213, "frameChar": -8.915802, "freqStrMx": -7.257573, "freqStrMx_": -7.737147, "freqStrMx_1": -8.692658, "freqStrMx_2": -8.692658, "frequencies": -9.608949, "frequency": -8.915802, "from": -10.302096, "fromNode": -7.211053, "fscanf": -8.915802, "fullModelLik": -9.608949, "fullVars": -9.608949, "fullnp": -8.510336, "function": -7.411724, "funnyString": -8.915802, "g": -9.608949, "get": -10.302096, "givenTree": -8.356186, "givenTreeString": -9.608949, "global": -6.011636, "globalSpoolMatrix": -8.915802, "globalindependentvariables": -9.203484, "h": -5.252240, "h=": -7.999511, "has": -10.302096, "have": -10.302096, "hshift": -5.984608, "i": -7.411724, "ibranch": -4.487965, "if": -5.125946, "in": -8.915802, "include": -7.999511, "including": -10.302096, "independent": -9.608949, "infix": -6.451948, "inital": -10.302096, "initial": -10.302096, "input": -9.608949, "intra": -8.915802, "is": -10.302096, "itip": -4.487965, "ivariable": -8.692658, "jobModelNum": -6.969891, "k": -5.252240, "k=": -7.904201, "kappa": -8.692658, "l": -7.468883, "l=": -9.203484, "labelMatrix": -9.608949, "lc": -8.915802, "lc=": -10.302096, "lengths": -9.203484, "lengths.": -10.302096, "lf": -6.313112, "lfConstrained": -8.915802, "lfDef": -7.817189, "lfDef1": -8.356186, "lfIndex": -9.203484, "lfParts": -8.356186, "lf_MLES": -7.817189, "lf_info": -9.608949, "lfn": -9.608949, "likelihood": -7.904201, "lnL": -7.904201, "lnLikDiff": -9.203484, "load": -10.302096, "localDiff": -9.203484, "locals": -8.692658, "lowerSeqBound": -9.608949, "m": -9.203484, "mSpecMatrix": -8.692658, "marginals": -7.529507, "maxModelWidth": -8.222654, "mdl": -8.692658, "mi": -5.481814, "mi=": -8.222654, "mid": -8.510336, "mid=": -10.302096, "midx": -8.222654, "mlestimates": -8.356186, "mode": -10.302096, "model": -5.791236, "modelConstraintString": -7.529507, "modelConstraintString_": -8.915802, "modelConstraintString_1": -10.302096, "modelConstraintString_2": -10.302096, "modelCount": -8.915802, "modelDesc": -7.211053, "modelID": -9.203484, "modelMatrix": -8.915802, "modelMatrixList": -7.904201, "modelNum": -7.904201, "modelParameters2": -10.302096, "modelParameters5": -10.302096, "modelString": -6.746748, "modelType": -8.222654, "mpiNode": -7.529507, "mstrConv": -7.083220, "mu": -7.006259, "mu*": -9.203484, "mu*mu/": -9.608949, "mu/sigma": -8.104871, "n": -5.457909, "n#################################": -10.302096, "n######################################": -10.302096, "n***": -9.608949, "nAIC": -8.510336, "nBest": -10.302096, "nChoose": -9.608949, "nData": -9.608949, "nDetailed": -10.302096, "nLog": -8.510336, "nParameters": -8.510336, "nPlease": -9.608949, "nR_": -8.222654, "nRate": -10.302096, "nReading": -9.608949, "nRunning": -8.915802, "nShared": -8.510336, "nThe": -10.302096, "nUsing": -10.302096, "n______________READ": -10.302096, "nc": -8.510336, "ndN": -10.302096, "ndN/dS": -10.302096, "negatively": -10.302096, "neutrally": -10.302096, "nglobal": -10.302096, "nlfDef": -8.692658, "nodeCounter": -8.510336, "non": -10.302096, "normal": -9.608949, "np": -7.999511, "npd": -9.608949, "nres": -9.203484, "nt": -9.203484, "nucFilter": -9.203484, "nucFilter_1": -9.608949, "nucFilter_2": -9.608949, "nucFreq": -9.608949, "nucModelMatrix_1": -9.608949, "nucModelMatrix_2": -9.608949, "nucModel_1": -10.302096, "nucModel_2": -10.302096, "nucPosInCodon": -8.510336, "nucPosInCodon__": -6.430895, "nucTree": -9.203484, "nucTree_": -9.203484, "nucTree_1": -9.608949, "nucTree_2": -9.608949, "nuc_lf": -9.608949, "nuc_res": -10.302096, "nucleotide": -8.356186, "nucleotides": -9.608949, "number": -9.608949, "numberOfSubsets": -10.302096, "obsF": -7.124042, "observedFreq": -8.104871, "observedFreqSingle_1": -9.608949, "observedFreqSingle_2": -9.608949, "observedFreq_": -10.302096, "observedFreq_1": -9.608949, "observedFreq_2": -9.608949, "of": -8.915802, "on": -9.203484, "once": -10.302096, "ones": -10.302096, "only": -10.302096, "optimize": -10.302096, "p": -10.302096, "pValue": -7.211053, "parOff": -9.203484, "paramCount": -10.302096, "paramList": -7.663039, "parameter": -7.357657, "parameters": -7.904201, "params": -8.510336, "params*": -10.302096, "part": -7.817189, "partitionLengths": -10.302096, "partitionTreeString": -9.608949, "persitelikelihoods": -6.053601, "pi": -8.915802, "pi__": -8.356186, "pi__*sigma": -8.692658, "position": -8.915802, "positive": -8.104871, "positiveProb": -7.594046, "positively": -10.302096, "posterior": -10.302096, "pressure": -10.302096, "printModelMatrix": -9.608949, "prms": -10.302096, "proportions": -9.203484, "queryTree": -8.915802, "quick": -10.302096, "r": -7.124042, "random": -10.302096, "randomizeInitValues": -8.692658, "rate": -8.915802, "rateBiasTerms": -7.594046, "rateMultipliers": -10.302096, "rateType": -6.969891, "rate_matrix_": -9.608949, "rates": -7.737147, "ratio": -9.608949, "rc": -9.608949, "regime": -8.692658, "rejectAt": -8.222654, "rejectCount": -7.904201, "relationString": -10.302096, "reportMx": -7.594046, "res": -7.043999, "resToPath": -7.663039, "res_J": -9.608949, "res_PSH": -9.608949, "res_PSP": -8.915802, "res_PSS": -8.915802, "res_n": -9.608949, "resp": -6.775735, "respM": -9.608949, "respN": -8.510336, "respP": -7.663039, "resp__": -10.302096, "result": -7.904201, "result*": -10.302096, "resultCache": -6.097403, "resultMatrix": -8.510336, "result_String": -9.608949, "resulting": -10.302096, "results": -9.608949, "return": -7.006259, "runAModel": -9.608949, "s": -8.510336, "sample": -10.302096, "sampleVar": -7.594046, "saveBD": -8.510336, "scale": -9.608949, "score": -10.302096, "second": -7.817189, "seconds": -9.608949, "selected": -9.608949, "selection": -8.356186, "selective": -10.302096, "sendOrNot": -9.608949, "sep": -8.356186, "sepString": -7.817189, "separate": -10.302096, "separator": -8.915802, "sequences": -9.203484, "set": -7.817189, "setElement": -8.510336, "shared": -9.203484, "sharing": -10.302096, "sigLevel": -8.510336, "sigma": -7.357657, "sigma*": -9.608949, "site": -10.302096, "sitecodonfilter": -5.396821, "sitecodonfilter.sites": -6.082588, "sitecodonfilter.species": -6.097403, "sitelikelihood": -5.404256, "sitemlestimates": -4.998791, "sites": -8.104871, "sites*": -8.915802, "sitetree": -4.993828, "skip": -9.608949, "skip0": -10.302096, "skipCodeSelectionStep": -9.203484, "slow": -10.302096, "sop": -9.608949, "species": -9.203484, "speciesIndex": -9.203484, "specific": -9.608949, "specify": -9.203484, "sqrt": -8.104871, "starting": -10.302096, "stats": -8.692658, "stdin": -9.203484, "stdl": -8.510336, "stdout": -4.913024, "step": -7.529507, "step/": -9.608949, "stratDNDS": -9.608949, "strengths": -9.203484, "subset.": -10.302096, "subsetFilter": -8.692658, "subsetMarginals": -8.692658, "subsetTree": -9.203484, "subsets.": -10.302096, "substitutions": -10.302096, "sumPath": -7.083220, "summary": -8.510336, "synRate": -6.331804, "synonumous": -10.302096, "synonymous": -10.302096, "t": -6.473454, "t=": -10.302096, "t__": -10.302096, "tableSeparator": -10.302096, "template": -8.692658, "the": -8.692658, "theModel": -10.302096, "theText": -9.203484, "third": -7.817189, "this1": -9.608949, "this2": -9.608949, "thorough": -10.302096, "timer": -9.608949, "tiplength": -6.097403, "tipname": -4.998791, "to": -8.356186, "totalCodonCount": -7.904201, "totalcodons": -8.692658, "tr": -8.915802, "transition": -8.222654, "transition2": -9.608949, "transition2=": -8.510336, "transition2__": -7.124042, "transition__": -7.124042, "transversion/transition": -10.302096, "tree": -4.470213, "treeBranchParameters": -8.222654, "treeID": -8.510336, "treeString": -8.692658, "treeString_": -10.302096, "treeString_1": -9.608949, "treeString_2": -9.608949, "tree_": -9.608949, "tree_1_0": -10.302096, "treestring": -10.302096, "ub": -7.737147, "under": -10.302096, "using": -10.302096, "v": -4.540044, "v2": -8.104871, "v=": -9.608949, "values": -9.608949, "variable": -9.203484, "variance": -10.302096, "vectorOfFrequencies": -8.692658, "vectorOfFrequencies_": -10.302096, "vectorOfFrequencies_1": -10.302096, "vectorOfFrequencies_2": -10.302096, "vertChar": -9.203484, "vshift": -6.241653, "vv": -6.775735, "w": -9.608949, "weight": -10.302096, "whichRate": -9.203484, "while": -8.692658, "will": -10.302096, "with": -7.999511, "written": -10.302096, "x": -8.915802, "xtraP": -9.608949, "{": -4.204022, "|": -7.529507, "||": -9.608949, "}": -4.213051, }, "IDL": map[string]float64{ "$": -4.879007, "(": -3.007205, ")": -3.007205, "*": -5.572154, "+": -4.185860, ",": -2.504101, "-": -3.626244, "..": -6.265301, "/": -6.265301, ":": -2.933097, ";": -2.187764, "<": -6.265301, "=": -3.374929, ">": -4.473542, "BUILD_DATE": -6.265301, "CEIL": -6.265301, "DESCRIPTION": -6.265301, "Examples": -5.572154, "FLOOR": -6.265301, "FUNCTION": -5.572154, "Find": -6.265301, "GCD": -6.265301, "IDL": -4.655863, "Inverse": -6.265301, "It": -6.265301, "January": -6.265301, "KEYWORDS": -6.265301, "MG_ARRAY_EQUAL": -6.265301, "MG_TOTAL": -6.265301, "MODULE": -6.265301, "Params": -5.166689, "Returns": -5.166689, "SOURCE": -6.265301, "The": -6.265301, "This": -6.265301, "Tools": -6.265301, "Truncate": -6.265301, "Try": -6.265301, "Uses": -6.265301, "VERSION": -6.265301, "[": -4.473542, "\\": -4.879007, "]": -4.473542, "_a": -5.166689, "_b": -5.166689, "`": -4.879007, "a": -4.879007, "abs": -5.572154, "acosh": -6.265301, "acosh.png": -6.265301, "alog": -6.265301, "analysis": -6.265301, "and": -6.265301, "arc": -6.265301, "argument": -5.572154, "array": -5.572154, "as": -6.265301, "at": -6.265301, "b": -4.879007, "begin": -5.572154, "ceil": -5.572154, "common": -6.265301, "compile_opt": -5.166689, "complex": -5.572154, "containing": -6.265301, "cosine.": -6.265301, "denominator": -6.265301, "depending": -6.265301, "docformat": -5.166689, "does": -6.265301, "double": -5.572154, "end": -4.655863, "endif": -5.572154, "eq": -5.572154, "example": -6.265301, "file.": -6.265301, "findgen": -6.265301, "first": -6.265301, "float": -6.265301, "float/double": -6.265301, "floor": -5.572154, "for": -5.572154, "formula": -6.265301, "function": -4.879007, "greatest": -6.265301, "gt": -5.572154, "hyperbolic": -5.572154, "i.e.": -6.265301, "if": -4.655863, "image": -6.265301, "in": -4.879007, "input": -5.572154, "integer": -4.655863, "integers.": -6.265301, "level": -5.572154, "like": -5.572154, "ln": -6.265301, "look": -6.265301, "looks": -6.265301, "main": -5.572154, "maxArg": -5.166689, "message": -5.572154, "mg_acosh": -5.572154, "mg_analysis": -6.265301, "mg_gcd": -5.572154, "mg_isinteger": -5.572154, "mg_trunc": -5.166689, "mgalloy": -6.265301, "minArg": -4.655863, "mod": -6.265301, "n_params": -6.265301, "ne": -6.265301, "negative": -6.265301, "nposInd": -5.572154, "numeric": -6.265301, "of": -4.879007, "on": -6.265301, "on_error": -6.265301, "or": -6.265301, "plot": -6.265301, "posInd": -5.166689, "positive": -5.572154, "print": -4.879007, "program": -5.572154, "remainder": -5.166689, "required": -4.879007, "result": -5.166689, "return": -4.655863, "same": -6.265301, "second": -6.265301, "should": -6.265301, "sine": -6.265301, "sqrt": -4.879007, "strictarr": -5.166689, "takes": -6.265301, "text": -6.265301, "the": -4.319391, "then": -4.655863, "this": -6.265301, "to": -6.265301, "towards": -6.265301, "truncate": -6.265301, "two": -6.265301, "type": -4.655863, "values": -5.572154, "values.": -6.265301, "where": -6.265301, "x": -4.185860, "xstyle": -6.265301, "z": -4.068077, "{": -5.166689, "||": -6.265301, "}": -5.166689, "~": -5.572154, }, "IGOR Pro": map[string]float64{ "#endif": -4.682131, "#ifdef": -4.682131, "#include": -4.682131, "#pragma": -3.988984, "(": -2.379546, ")": -2.379546, ",": -2.890372, "-": -3.583519, ":": -4.682131, "=": -2.736221, "ButtonControl": -4.682131, "CallOperationsAndBuiltInFuncs": -4.682131, "End": -2.736221, "EndStructure": -3.988984, "FooBar": -4.682131, "FooBarStatic": -4.682131, "FooBarStaticThreadsafe": -4.682131, "FooBarSubType": -4.682131, "FooBarThread": -4.682131, "FooBarVar": -4.682131, "Function": -2.890372, "Function/D": -4.682131, "Make/N": -4.682131, "NOT_DEFINED": -4.682131, "Redimension/N": -4.682131, "StrConstant": -4.682131, "Structure": -3.988984, "constant": -4.682131, "myConst": -4.682131, "myConstString": -4.682131, "myWave": -3.988984, "print": -4.682131, "return": -2.736221, "rtGlobals": -3.988984, "someDQString": -3.988984, "static": -3.583519, "str": -3.988984, "string": -3.295837, "strlen": -4.682131, "struct": -3.988984, "threadsafe": -3.988984, "var": -3.583519, "variable": -3.988984, }, "INI": map[string]float64{ "*": -5.451038, "-": -3.659279, "/home/hschmale/KiCad/LibMods": -5.451038, ":": -4.757891, ";": -5.451038, "=": -1.133550, "BoardOutlineThickness": -5.451038, "DrawSegmentWidth": -5.451038, "EST": -5.451038, "Feb": -5.451038, "Josh": -5.451038, "LabSize": -5.451038, "LastNetListRead": -5.451038, "LibDir": -4.757891, "LibName": -1.954531, "ModuleOutlineThickness": -5.451038, "ModuleTextSizeH": -5.451038, "ModuleTextSizeThickness": -5.451038, "ModuleTextSizeV": -5.451038, "NetFmtName": -5.451038, "PM": -5.451038, "PadDrill": -5.451038, "PadDrillOvalY": -5.451038, "PadSizeH": -5.451038, "PadSizeV": -5.451038, "PageLayoutDescrFile": -4.757891, "PcbTextSizeH": -5.451038, "PcbTextSizeV": -5.451038, "PcbTextThickness": -5.451038, "Peek": -5.451038, "RptD_X": -5.451038, "RptD_Y": -5.451038, "RptLab": -5.451038, "SolderMaskClearance": -5.451038, "SolderMaskMinWidth": -5.451038, "SubpartFirstId": -5.451038, "SubpartIdSeparator": -5.451038, "Sun": -5.451038, "UseCmpFile": -5.451038, "[": -3.505128, "]": -3.505128, "adc": -5.451038, "analog_switches": -5.451038, "arduino_shieldsNCL": -5.451038, "atmel": -5.451038, "audio": -4.757891, "axispotwselect": -5.451038, "charset": -5.451038, "cmos": -5.451038, "con": -5.451038, "conn": -5.451038, "contrib": -5.451038, "cypress": -5.451038, "dac": -5.451038, "device": -5.451038, "digital": -5.451038, "display": -5.451038, "dsp": -5.451038, "editorconfig.org": -5.451038, "eeschema": -4.757891, "eeschema/libraries": -5.451038, "email": -5.451038, "end_of_line": -5.451038, "general": -5.451038, "indent_size": -5.451038, "indent_style": -5.451038, "insert_final_newline": -5.451038, "intel": -5.451038, "interface": -5.451038, "josh@github.com": -5.451038, "last_client": -5.451038, "lf": -5.451038, "linear": -5.451038, "memory": -5.451038, "microchip": -5.451038, "microcontrollers": -5.451038, "motorola": -5.451038, "name": -5.451038, "opto": -5.451038, "pcbnew": -5.451038, "pcbnew/libraries": -5.451038, "philips": -5.451038, "power": -5.451038, "rdParty": -5.451038, "regul": -5.451038, "root": -5.451038, "siliconi": -5.451038, "space": -5.451038, "special": -5.451038, "texas": -5.451038, "transistors": -5.451038, "trim_trailing_whitespace": -5.451038, "true": -4.352426, "update": -5.451038, "usb": -5.451038, "user": -5.451038, "utf": -5.451038, "valves": -5.451038, "version": -4.352426, "xilinx": -5.451038, "xx": -5.451038, }, "Idris": map[string]float64{ "&&": -4.308559, "(": -3.327730, ")": -3.327730, "+": -5.407172, ",": -2.699122, "-": -3.009276, ":": -3.009276, "<": -4.308559, "=": -1.851824, ">": -2.842222, "Bool": -3.327730, "Builtins": -5.407172, "Char": -2.842222, "List": -5.407172, "Prelude.Char": -5.407172, "[": -5.407172, "]": -5.407172, "elem": -5.407172, "else": -4.714025, "hexChars": -4.308559, "if": -4.714025, "import": -5.407172, "isAlpha": -4.308559, "isAlphaNum": -4.714025, "isDigit": -4.308559, "isHexDigit": -4.714025, "isLower": -4.020877, "isNL": -4.714025, "isSpace": -4.714025, "isUpper": -4.020877, "module": -5.407172, "prim__charToInt": -4.714025, "prim__intToChar": -4.714025, "then": -4.714025, "toLower": -4.714025, "toUpper": -4.308559, "where": -5.407172, "x": -1.823653, "||": -3.209947, }, "Inform 7": map[string]float64{ "!": -4.762174, "(": -4.762174, ")": -4.762174, "*not*": -6.148468, "+": -5.455321, ",": -3.951244, "-": -3.204029, ".": -5.049856, "...": -6.148468, "...and": -6.148468, "...which": -6.148468, "/em": -6.148468, ":": -3.750573, ";": -3.663562, "A": -4.762174, "And": -6.148468, "Andrew": -5.049856, "Area": -6.148468, "Atom": -6.148468, "Book": -6.148468, "Chapter": -5.049856, "Check": -5.455321, "Comment": -6.148468, "Every": -5.455321, "Everything": -6.148468, "Extension": -5.049856, "Flavor": -6.148468, "Gelett": -4.069027, "Global": -6.148468, "Heading": -6.148468, "Here": -6.148468, "Horns": -6.148468, "However": -6.148468, "IV": -6.148468, "Include": -5.455321, "Inform": -4.762174, "Instead": -5.049856, "Kitchen": -6.148468, "Kitchen.": -5.455321, "Length": -6.148468, "Measure": -6.148468, "Name": -6.148468, "Note": -6.148468, "Object": -6.148468, "One": -6.148468, "Part": -6.148468, "Plotkin": -6.148468, "Plotkin.": -5.455321, "Sadly": -6.148468, "Section": -5.455321, "So": -5.455321, "Spices": -6.148468, "Table": -6.148468, "Text": -6.148468, "The": -5.049856, "This": -6.148468, "To": -5.455321, "Trivial": -5.049856, "Understand": -5.455321, "Version": -6.148468, "Volume": -4.762174, "Zork": -6.148468, "[": -3.845883, "]": -3.845883, "a": -3.375880, "above.": -6.148468, "action.": -6.148468, "address": -6.148468, "after": -4.762174, "all": -6.148468, "allow": -6.148468, "although": -6.148468, "always": -6.148468, "and": -5.455321, "animal.": -6.148468, "animate": -6.148468, "are": -4.762174, "arg": -6.148468, "as": -5.049856, "be": -5.455321, "because": -6.148468, "before": -6.148468, "beginning": -6.148468, "begins": -6.148468, "blank": -6.148468, "brackets": -6.148468, "by": -5.049856, "called": -5.455321, "can": -6.148468, "case": -6.148468, "catching": -6.148468, "character": -6.148468, "code": -6.148468, "colored": -6.148468, "comment": -5.455321, "comments": -6.148468, "container": -6.148468, "contains": -6.148468, "count": -6.148468, "cow": -4.202558, "cow.": -5.455321, "cowcount": -5.455321, "cycle": -6.148468, "description": -5.455321, "detail": -6.148468, "documentation": -5.455321, "does": -6.148468, "else": -6.148468, "em": -6.148468, "end": -6.148468, "ends": -6.148468, "establish": -6.148468, "examining": -5.455321, "following": -6.148468, "foobar": -6.148468, "foobar.": -6.148468, "for": -5.455321, "gets": -6.148468, "has": -5.049856, "have": -5.455321, "header": -5.455321, "heading": -6.148468, "headings": -6.148468, "here.": -5.455321, "horns.": -6.148468, "i": -6.148468, "if": -6.148468, "in": -4.539030, "inclusions.": -6.148468, "increment": -5.455321, "indented": -5.455321, "inform": -6.148468, "insensitive.": -6.148468, "instead": -6.148468, "is": -3.440418, "it": -5.049856, "kind": -5.049856, "kitchen": -5.455321, "labels": -6.148468, "lacks": -6.148468, "legal": -6.148468, "levels": -6.148468, "line": -4.539030, "line.": -5.455321, "lines": -5.049856, "lines..": -6.148468, "mark": -6.148468, "measure.": -5.049856, "modelled": -6.148468, "mooness": -5.455321, "mooness.": -6.148468, "multiple": -6.148468, "name": -6.148468, "need": -6.148468, "nested": -6.148468, "not": -5.455321, "now": -6.148468, "number": -6.148468, "of": -3.509411, "one": -5.455321, "overview": -6.148468, "part": -6.148468, "player.": -6.148468, "possible": -6.148468, "print": -6.148468, "purple": -5.455321, "purple.": -6.148468, "pushing": -6.148468, "quoted": -6.148468, "recognize": -6.148468, "release": -6.148468, "roman": -6.148468, "room.": -6.148468, "run": -6.148468, "sample": -6.148468, "say": -3.845883, "scene": -6.148468, "scenery": -6.148468, "section": -5.455321, "setting": -6.148468, "should": -5.455321, "smelling": -6.148468, "so": -6.148468, "some": -6.148468, "spans": -6.148468, "special": -6.148468, "spicerack": -5.455321, "square": -6.148468, "start": -6.148468, "still": -6.148468, "stop": -6.148468, "style": -5.455321, "style.": -6.148468, "t": -6.148468, "tab": -6.148468, "table": -6.148468, "taking": -6.148468, "that": -6.148468, "that.": -6.148468, "the": -3.012974, "thing.": -6.148468, "third": -6.148468, "this": -4.762174, "to": -4.762174, "turn": -5.455321, "two": -6.148468, "unc": -6.148468, "underline": -6.148468, "value.": -6.148468, "variable": -6.148468, "we": -6.148468, "with": -5.049856, "within": -6.148468, }, "Inno Setup": map[string]float64{ "%": -5.090678, "*.bat": -6.476972, "*.bp*": -6.476972, "*.c": -5.090678, "*.c*": -6.476972, "*.cpp": -6.476972, "*.css": -6.476972, "*.def": -5.783825, "*.dll": -6.476972, "*.ds*": -6.476972, "*.dsp": -5.378360, "*.h": -5.378360, "*.html": -6.476972, "*.lib": -6.476972, "*.mak": -6.476972, "*.png": -6.476972, "*.txt": -6.476972, ",": -5.090678, "-": -5.783825, "..": -6.476972, "//www.libexpat.org/": -5.378360, ":": -1.823012, ";": -2.172907, "=": -3.341478, "API": -5.783825, "AllowNoIcons": -6.476972, "AppCopyright": -6.476972, "AppId": -6.476972, "AppName": -6.476972, "AppPublisher": -6.476972, "AppPublisherURL": -6.476972, "AppSupportURL": -6.476972, "AppUpdatesURL": -6.476972, "AppVerName": -6.476972, "AppVersion": -6.476972, "Basic": -6.476972, "C": -6.476972, "COPYING": -6.476972, "COPYING.txt": -6.476972, "Center": -6.476972, "Changes": -6.476972, "Changes.txt": -6.476972, "Clark": -6.476972, "Compression": -6.476972, "Cooper": -6.476972, "Copyright": -6.476972, "DefaultDirName": -6.476972, "DestDir": -2.980465, "DestName": -5.378360, "Developers": -6.476972, "DisableProgramGroupPage": -6.476972, "DisableReadyPage": -6.476972, "DisableStartupPrompt": -6.476972, "Expat": -4.531062, "Files": -6.476972, "Flags": -2.980465, "For": -6.476972, "Inno": -5.783825, "It": -6.476972, "MANIFEST.txt": -6.476972, "Messages": -6.476972, "Open": -6.476972, "OutputDir": -6.476972, "Parser": -5.783825, "Peters.": -6.476972, "README": -6.476972, "README.txt": -5.090678, "Release": -5.378360, "Setup": -5.090678, "Software": -6.476972, "SolidCompression": -6.476972, "Source": -2.950612, "SourceDir": -6.476972, "Thai": -6.476972, "The": -6.476972, "This": -5.378360, "Tim": -6.476972, "Uninstall": -6.476972, "UninstallDisplayName": -6.476972, "UninstallFilesDir": -6.476972, "VersionInfoVersion": -6.476972, "Welcome": -6.476972, "WelcomeLabel": -5.783825, "Wizard": -6.476972, "XML": -5.090678, "[": -5.090678, "\\": -2.788093, "]": -5.090678, "a": -5.783825, "all": -6.476972, "allow": -6.476972, "an": -6.476972, "and": -5.378360, "any": -6.476972, "app": -6.476972, "applications": -5.783825, "as": -6.476972, "available": -6.476972, "bcb": -4.867534, "before": -6.476972, "benchmark": -5.378360, "bin": -5.378360, "build": -6.476972, "builder": -6.476972, "builder.": -6.476972, "but": -6.476972, "by": -6.476972, "close": -6.476972, "computer.": -6.476972, "conflicts": -6.476972, "continuing.": -6.476972, "contributed": -6.476972, "designed": -6.476972, "developers": -6.476972, "doc": -5.378360, "during": -6.476972, "examples": -5.783825, "expat": -6.476972, "expat.dsw": -6.476972, "fast": -6.476972, "for": -5.783825, "free": -6.476972, "have": -6.476972, "help": -6.476972, "http": -5.378360, "ignoreversion": -2.980465, "implementation.": -6.476972, "information": -6.476972, "install": -6.476972, "installation": -6.476972, "installer": -5.783825, "is": -5.378360, "language": -6.476972, "later": -6.476972, "lib": -5.090678, "lzma": -6.476972, "made": -6.476972, "maintainers": -6.476972, "more": -6.476972, "n": -5.783825, "nExpat": -6.476972, "nIt": -6.476972, "name/ver": -6.476972, "on": -5.783825, "other": -6.476972, "parser": -6.476972, "pf": -6.476972, "portable": -6.476972, "prevent": -6.476972, "primarily": -6.476972, "process.": -6.476972, "recommended": -6.476972, "running": -6.476972, "script": -5.783825, "see": -6.476972, "setup": -6.476972, "strongly": -6.476972, "tests": -4.531062, "that": -6.476972, "the": -4.867534, "to": -5.378360, "use": -6.476972, "using": -6.476972, "versions": -6.476972, "was": -5.783825, "well.": -6.476972, "which": -6.476972, "will": -5.783825, "win": -4.685213, "with": -5.783825, "works": -6.476972, "www.jrsoftware.org.": -6.476972, "xmlwf": -5.378360, "xmlwf.exe": -6.476972, "yes": -4.867534, "you": -5.783825, "your": -6.476972, "{": -5.783825, "}": -5.783825, }, "Ioke": map[string]float64{ "!": -1.791759, "#": -1.791759, "/usr/bin/env": -1.791759, "SHEBANG#!ioke": -1.791759, "ioke": -1.791759, "println": -1.791759, }, "Isabelle": map[string]float64{ "(": -3.387774, ")": -3.387774, "*": -3.610918, "*Playing": -4.997212, "*does": -4.997212, "*now": -4.997212, ":": -3.051302, "<dots>": -4.997212, "<equiv>": -4.997212, "<forall>": -4.997212, "?": -4.304065, "Cons": -4.997212, "HelloWorld": -3.898600, "HelloWorld_def": -4.997212, "IH": -4.304065, "Isabelle*": -4.997212, "List.rev_rev_ident": -3.610918, "Main": -4.997212, "Nil": -4.997212, "[": -4.997212, "]": -4.997212, "a": -4.304065, "add": -4.997212, "already": -4.997212, "also": -4.997212, "and": -4.997212, "apply": -4.997212, "around": -4.997212, "assume": -4.997212, "begin": -4.997212, "by": -2.799988, "case": -3.898600, "constant": -4.997212, "corollary": -4.304065, "creating": -4.997212, "declare": -4.997212, "defining": -4.997212, "definition": -4.997212, "del": -4.997212, "delete": -4.997212, "done": -4.997212, "end": -4.997212, "fact": -4.997212, "fastforce": -4.997212, "finally": -4.997212, "general": -4.997212, "hand*": -4.997212, "have": -4.304065, "hello_world": -4.304065, "hello_world*": -4.997212, "hence": -4.997212, "hide_fact": -4.997212, "hold": -4.997212, "imports": -4.997212, "in": -4.997212, "induction": -4.997212, "intro": -4.997212, "it": -4.304065, "l": -4.304065, "lema": -4.997212, "lemma": -4.304065, "ls": -4.997212, "name": -4.997212, "next": -4.997212, "proof": -4.997212, "proven": -4.997212, "qed": -4.997212, "rev_rev_ident": -4.304065, "section": -4.997212, "show": -4.304065, "simp": -2.917771, "string": -4.997212, "text": -3.610918, "the": -4.304065, "theorem": -4.304065, "theory": -4.997212, "thm": -4.997212, "thus": -4.997212, "using": -4.997212, "we": -4.997212, "where": -4.997212, "with": -4.304065, "{": -3.387774, "}": -3.387774, }, "Isabelle ROOT": map[string]float64{ "(": -5.430222, ")": -5.247901, "*": -3.904166, "+": -4.474711, ",": -3.743823, "-": -2.243870, ".": -7.039660, "../Number_Theory/Primes": -7.039660, "//ftp.informatik.tu": -7.039660, "//www.in.tum.de/": -7.039660, "/F": -7.039660, "/Hash": -7.039660, "/K_L": -7.039660, "/K_R": -7.039660, "/R_L": -7.039660, "/R_R": -7.039660, "/Round": -7.039660, "/S_L": -7.039660, "/S_R": -7.039660, "/rmd/f.fdl": -7.039660, "/rmd/f.rls": -7.039660, "/rmd/f.siv": -7.039660, "/rmd/hash.fdl": -7.039660, "/rmd/hash.rls": -7.039660, "/rmd/hash.siv": -7.039660, "/rmd/k_l.fdl": -7.039660, "/rmd/k_l.rls": -7.039660, "/rmd/k_l.siv": -7.039660, "/rmd/k_r.fdl": -7.039660, "/rmd/k_r.rls": -7.039660, "/rmd/k_r.siv": -7.039660, "/rmd/r_l.fdl": -7.039660, "/rmd/r_l.rls": -7.039660, "/rmd/r_l.siv": -7.039660, "/rmd/r_r.fdl": -7.039660, "/rmd/r_r.rls": -7.039660, "/rmd/r_r.siv": -7.039660, "/rmd/round.fdl": -7.039660, "/rmd/round.rls": -7.039660, "/rmd/round.siv": -7.039660, "/rmd/s_l.fdl": -7.039660, "/rmd/s_l.rls": -7.039660, "/rmd/s_l.siv": -7.039660, "/rmd/s_r.fdl": -7.039660, "/rmd/s_r.rls": -7.039660, "/rmd/s_r.siv": -7.039660, "/src/HOL/Library/Countable": -6.346513, "/src/HOL/Library/Diagonal_Subsequence": -7.039660, "/src/HOL/Library/FinFun_Syntax": -7.039660, "/src/HOL/Library/FuncSet": -7.039660, "/src/HOL/Library/Lattice_Syntax": -7.039660, "/src/HOL/Library/Nat_Bijection": -6.346513, "/src/HOL/Library/Old_Datatype": -7.039660, "/src/HOL/Library/Order_Continuity": -7.039660, "/src/HOL/Library/Permutation": -7.039660, "/src/HOL/Library/Refute": -7.039660, "/src/HOL/Library/State_Monad": -7.039660, "/src/HOL/Library/Transitive_Closure_Table": -7.039660, ":": -5.093750, "=": -3.638463, "@inproceedings": -6.346513, "A": -6.346513, "ABP": -7.039660, "AList_Mapping": -7.039660, "An": -7.039660, "Arithmetic": -7.039660, "Auth": -7.039660, "Auth_Public": -7.039660, "Auth_Shared": -7.039660, "Author": -5.653366, "Automata": -6.346513, "AxCompl": -7.039660, "AxExample": -7.039660, "AxSound": -7.039660, "Bali": -7.039660, "Banach": -5.941048, "Bauer": -7.039660, "Bij": -7.039660, "Boogie_Dijkstra.certs": -7.039660, "Boogie_Max.certs": -7.039660, "Bruijn": -7.039660, "Buffer": -6.346513, "C": -7.039660, "Cambridge": -6.346513, "Cardinals": -7.039660, "Chandy": -7.039660, "Chinese": -7.039660, "Classical": -6.346513, "Code_Binary_Nat": -7.039660, "Code_Char": -7.039660, "Code_Prolog": -7.039660, "Code_Real_Approx_By_Float": -7.039660, "Code_Target_Numeral": -7.039660, "Complex_Main": -7.039660, "Computer": -7.039660, "Copyright": -6.346513, "DAList": -7.039660, "DAList_Multiset": -7.039660, "Datatype_Examples": -7.039660, "David": -7.039660, "Derivation_Trees/Gram_Lang": -7.039660, "Derivation_Trees/Parallel": -7.039660, "Design": -7.039660, "Development": -7.039660, "Distributed": -7.039660, "Divisibility": -7.039660, "Eta": -7.039660, "Euclidean_Algorithm": -7.039660, "Example": -7.039660, "Examples": -5.653366, "FOCUS": -6.346513, "Fermat/Euler": -7.039660, "Finite_Lattice": -7.039660, "Focus": -7.039660, "Formalization": -7.039660, "Fundamental": -7.039660, "Funktionalanalysis": -7.039660, "Gauss": -7.039660, "Gcd.adb": -7.039660, "Gcd.ads": -7.039660, "Gcd/Greatest_Common_Divisor": -7.039660, "Gcd/greatest_common_divisor/g_c_d.fdl": -7.039660, "Gcd/greatest_common_divisor/g_c_d.rls": -7.039660, "Gcd/greatest_common_divisor/g_c_d.siv": -7.039660, "Gertrud": -7.039660, "H.": -7.039660, "HOL": -2.979217, "HOL.": -7.039660, "HOLCF": -5.430222, "HOLCF/FOCUS": -7.039660, "HOLCF/IMP": -7.039660, "HOLCF/IOA": -7.039660, "HOLCF/IOA.": -7.039660, "HOLCF/IOA/ABP": -7.039660, "HOLCF/IOA/NTP": -7.039660, "HOLCF/IOA/Storage": -7.039660, "HOLCF/IOA/ex": -7.039660, "HOLCF/Library": -7.039660, "HOLCF/Tutorial": -7.039660, "HOLCF/ex": -7.039660, "Hahn": -5.941048, "Hahn_Banach": -7.039660, "Heuser": -7.039660, "Higher": -6.346513, "Hoare": -7.039660, "I/O": -6.346513, "IMP": -7.039660, "IOA": -5.247901, "ISABELLE_FULL_TEST": -7.039660, "ISABELLE_SWIPL": -6.346513, "Inc": -7.039660, "IntRing": -7.039660, "Interactive": -7.039660, "Interfaces": -7.039660, "Introduction": -7.039660, "Isabelle/HOL": -7.039660, "Isar_Examples": -7.039660, "It": -7.039660, "Java": -7.039660, "Java.": -7.039660, "Konrad": -6.346513, "LNCS": -7.039660, "Laboratory": -7.039660, "Lambda": -5.941048, "Lattice": -7.039660, "Lawrence": -7.039660, "Length": -7.039660, "Library": -5.941048, "Liseq/Longest_Increasing_Subsequence": -7.039660, "Liseq/liseq/liseq_length.fdl": -7.039660, "Liseq/liseq/liseq_length.rls": -7.039660, "Liseq/liseq/liseq_length.siv": -7.039660, "List_lexord": -7.039660, "Logic": -6.346513, "Logic.": -7.039660, "M": -6.346513, "Main": -6.346513, "Manual": -7.039660, "Matrix_LP": -7.039660, "Memory": -7.039660, "MicroJava": -6.346513, "Mirabelle": -5.941048, "Mirabelle/ex": -7.039660, "Misra": -7.039660, "Mueller": -7.039660, "Muenchen": -7.039660, "Multivariate_Analysis": -6.346513, "Munich": -7.039660, "Mutabelle": -7.039660, "NSA": -5.941048, "NSA/Examples": -7.039660, "NTP": -7.039660, "Nadathur": -7.039660, "NanoJava": -7.039660, "Nipkow": -5.653366, "Nominal": -5.941048, "Nominal/Examples": -7.039660, "Notation.": -7.039660, "Number_Theory": -7.039660, "Oheimb": -7.039660, "Olaf": -6.346513, "Old_Datatype": -7.039660, "Old_Number_Theory": -7.039660, "Old_Recdef": -7.039660, "Old_SMT": -7.039660, "One": -7.039660, "Paulson": -7.039660, "Pocklington": -7.039660, "Predicate_Compile_Examples": -7.039660, "Probability": -6.346513, "Proc.": -7.039660, "Product_Lexorder": -7.039660, "Product_Order": -7.039660, "Prolog": -5.941048, "Prolog.": -7.039660, "Proofs": -7.039660, "Pure": -6.346513, "Quadratic": -7.039660, "Quickcheck_Benchmark": -7.039660, "Quickcheck_Examples": -7.039660, "Quotient_Examples": -7.039660, "RBT_Mapping": -7.039660, "RBT_Set": -7.039660, "RIPEMD": -3.456141, "Reciprocity.": -7.039660, "Record_Benchmark": -6.346513, "Refinement": -6.346513, "Refute": -7.039660, "Remainder": -7.039660, "SET_Protocol": -7.039660, "SMT_Examples": -7.039660, "SMT_Examples.certs": -7.039660, "SMT_Word_Examples.certs": -7.039660, "SPARK": -5.247901, "SPARK/Examples": -7.039660, "SPARK/Manual": -7.039660, "Simple_Gcd.adb": -7.039660, "Simple_Gcd.ads": -7.039660, "Slind": -5.941048, "Some": -7.039660, "Specification": -6.346513, "Springer": -7.039660, "Sqrt/Sqrt": -7.039660, "Standardization": -7.039660, "Statespace": -7.039660, "Storage": -7.039660, "Streams": -7.039660, "StrongNorm": -7.039660, "Sublist_Order": -7.039660, "Systems": -6.346513, "TLA": -5.093750, "TLA/Buffer": -7.039660, "TLA/Inc": -7.039660, "TLA/Memory": -7.039660, "TPTP": -7.039660, "TU": -6.346513, "TYPES": -7.039660, "Test": -7.039660, "Test.thy": -7.039660, "The": -5.430222, "Theorem": -5.653366, "There": -7.039660, "This": -5.653366, "To": -7.039660, "Tobias": -6.346513, "Trans": -7.039660, "Tutorial": -7.039660, "Type": -7.039660, "UNITY": -7.039660, "UnivPoly": -7.039660, "University": -6.346513, "VCC_Max.certs": -7.039660, "Verifying": -7.039660, "WeakNorm": -7.039660, "Wilson": -7.039660, "Word": -5.247901, "Word/Examples": -7.039660, "Workshop": -7.039660, "Zorn": -7.039660, "[": -4.400603, "\\": -6.346513, "]": -4.400603, "a": -4.641765, "also": -7.039660, "analysis.": -7.039660, "and": -4.331610, "appear": -7.039660, "approach": -7.039660, "are": -7.039660, "authentication": -7.039660, "author": -6.346513, "bare": -7.039660, "based": -7.039660, "been": -6.346513, "benchmark": -7.039660, "beta": -6.346513, "bones": -7.039660, "booktitle": -7.039660, "by": -7.039660, "bytecode": -6.346513, "calculus": -7.039660, "changed": -7.039660, "chapter": -7.039660, "communication": -7.039660, "complex_types.ads": -7.039660, "complex_types_app.adb": -7.039660, "complex_types_app.ads": -7.039660, "complex_types_app/initialize.fdl": -7.039660, "complex_types_app/initialize.rls": -7.039660, "complex_types_app/initialize.siv": -7.039660, "conclusion": -7.039660, "condition": -7.039660, "confluence": -7.039660, "corresponding": -7.039660, "de": -7.039660, "defines": -7.039660, "describes": -7.039660, "description": -4.554754, "dl": -6.346513, "document": -5.247901, "document_files": -4.842436, "document_graph": -5.093750, "eta": -7.039660, "eta.": -7.039660, "ex": -5.653366, "ex/Dining_Cryptographers": -7.039660, "ex/Koepf_Duermuth_Countermeasure": -7.039660, "example": -7.039660, "examples": -7.039660, "explicit": -7.039660, "exploratory": -7.039660, "extended": -7.039660, "false": -4.960219, "files": -6.346513, "following": -7.039660, "for": -5.653366, "formalization": -7.039660, "formerly": -7.039660, "fragment": -6.346513, "ftp": -7.039660, "functional": -6.346513, "fundamental": -7.039660, "global_theories": -7.039660, "has": -7.039660, "have": -7.039660, "here.": -7.039660, "html": -7.039660, "http": -7.039660, "implementation": -6.346513, "in": -4.400603, "including": -6.346513, "indixes": -7.039660, "intro.tex": -6.346513, "is": -5.653366, "its": -6.346513, "lambda": -7.039660, "language": -7.039660, "large": -7.039660, "lecture": -7.039660, "lemmas": -7.039660, "lightweight": -7.039660, "little": -7.039660, "ller": -7.039660, "loop_invariant.adb": -7.039660, "loop_invariant.ads": -7.039660, "loop_invariant/proc": -5.247901, "machine": -7.039660, "main": -6.346513, "meta": -7.039660, "meta_theory/Abstraction": -7.039660, "minimal": -7.039660, "more": -7.039660, "muenchen.de/local/lehrstuhl/nipkow/ioa.ps.gz": -7.039660, "new": -7.039660, "nipkow/pubs/jar": -7.039660, "note": -7.039660, "of": -3.995138, "on": -5.653366, "one": -7.039660, "options": -4.737075, "order": -6.346513, "p.": -7.039660, "paper": -7.039660, "parallel_proofs": -7.039660, "print_mode": -7.039660, "proof": -6.346513, "proofs": -6.346513, "protocols": -6.346513, "protocols.": -7.039660, "proves": -7.039660, "publisher": -7.039660, "quick_and_dirty": -6.346513, "real": -6.346513, "record.": -7.039660, "rls": -6.346513, "root.bib": -5.430222, "root.tex": -4.331610, "s": -5.941048, "safety.": -7.039660, "security": -7.039660, "see": -6.346513, "series": -7.039660, "session": -4.474711, "significantly": -7.039660, "simple": -7.039660, "simple_greatest_common_divisor/g_c_d.fdl": -7.039660, "simple_greatest_common_divisor/g_c_d.rls": -7.039660, "simple_greatest_common_divisor/g_c_d.siv": -7.039660, "siv": -6.346513, "some": -6.346513, "spaces.": -7.039660, "specification": -7.039660, "style.tex": -7.039660, "system.": -7.039660, "terms": -7.039660, "terms.": -7.039660, "the": -5.430222, "theorem": -5.653366, "theorems": -7.039660, "theories": -4.400603, "theory": -6.346513, "tiny": -7.039660, "title": -7.039660, "to": -6.346513, "together": -7.039660, "two": -7.039660, "type": -6.346513, "typical": -7.039660, "using": -7.039660, "vector": -7.039660, "vectorspaces": -7.039660, "verifier": -6.346513, "verifying": -7.039660, "virtual": -7.039660, "von": -7.039660, "which": -7.039660, "whole": -7.039660, "with": -5.941048, "{": -3.995138, "}": -4.206447, "~": -3.672365, "ü": -7.039660, }, "J": map[string]float64{ "!": -4.912655, "#": -4.912655, "$": -4.912655, "'": -4.912655, "(": -3.814043, ")": -3.303217, "*": -4.219508, "+": -4.912655, "-": -4.912655, ".": -4.912655, "/": -4.912655, "//www.jsoftware.com/help/jforc/continuing_to_write_in_j.htm": -4.912655, "/bin/jconsole": -4.912655, ":": -2.140066, "=": -2.610070, "Calculates": -4.912655, "Determines": -4.219508, "Finds": -4.219508, "From": -4.912655, "NB.": -2.966745, "Problem": -2.833213, "SHEBANG#!jconsole": -4.912655, "See": -4.912655, "billed": -4.912655, "billrate": -4.219508, "brought": -4.912655, "by": -4.219508, "clientlist": -4.912655, "dailydrudge": -4.912655, "day": -4.912655, "each": -3.303217, "earned": -4.912655, "echo": -4.912655, "emp_client": -4.219508, "empearnings": -4.912655, "emphours": -4.912655, "employee": -3.526361, "employee.": -4.912655, "empno": -4.912655, "empprofit": -4.219508, "exit": -4.912655, "for": -4.912655, "given": -4.219508, "hours": -4.912655, "hours.": -4.912655, "hoursworked": -4.219508, "http": -4.912655, "i.": -4.912655, "in": -3.814043, "mask": -4.912655, "month": -4.912655, "month.": -4.219508, "most": -4.912655, "number": -4.912655, "of": -4.219508, "on": -4.912655, "payrate": -4.219508, "profit": -4.912655, "tax": -4.912655, "the": -2.833213, "wages": -4.912655, "who": -4.912655, "withholding": -4.912655, "worked": -4.912655, "|": -4.912655, }, "JFlex": map[string]float64{ "!": -6.586172, "\"": -7.279319, "%": -3.878121, "&&": -7.279319, "(": -2.922610, ")": -2.897292, "*": -5.333409, "+": -4.021222, ",": -3.136184, "-": -4.506730, ".": -5.669881, ".substring": -6.586172, ":": -5.669881, ";": -2.560820, "<": -4.794412, "</code>": -6.586172, "<?>": -7.279319, "<Action>": -6.586172, "<CHARCLASS>": -6.586172, "<CHARCLASS_CODEPOINT>": -7.279319, "<CHARLITERAL>": -7.279319, "<COMMENT>": -7.279319, "<COPY>": -7.279319, "<CTOR_ARG>": -7.279319, "<EATWSPNL>": -7.279319, "<EOF>": -4.388947, "<File>": -6.586172, "<JAVA_CODE>": -7.279319, "<MACROS>": -5.893024, "<REGEXP,>": -7.279319, "<REGEXP>": -7.279319, "<REGEXPSTART>": -7.279319, "<REGEXP_CODEPOINT_SEQUENCE>": -7.279319, "<REPEATEXP>": -7.279319, "<STATELIST>": -7.279319, "<STATES>": -7.279319, "<STRING>": -7.279319, "<STRING_CODEPOINT_SEQUENCE>": -7.279319, "<STRING_CONTENT>": -7.279319, "<String>": -5.893024, "<YYINITIAL>": -6.586172, "<code>": -6.586172, "<lsf@jflex.de>": -6.586172, "=": -3.152184, ">": -5.199877, "?": -4.976734, "A": -7.279319, "ArrayList": -6.180707, "B": -7.279319, "C": -7.279319, "CHAR": -7.279319, "CHARACTER_LITERAL": -6.180707, "CHARCLASS": -6.586172, "CHARCLASS_CODEPOINT": -7.279319, "COMMENT": -7.279319, "COPY": -7.279319, "CTOR_ARG": -7.279319, "Character.digit": -7.279319, "Character.toChars": -6.586172, "Comment": -7.279319, "Compatible": -7.279319, "D": -7.279319, "DecIntegerLiteral": -6.586172, "DecLongLiteral": -7.279319, "DocumentationComment": -6.586172, "DoubleLiteral": -7.279319, "EATWSPNL": -7.279319, "EOF": -6.586172, "EndOfLineComment": -6.586172, "ErrorMessages.CODEPOINT_OUT_OF_RANGE": -6.180707, "ErrorMessages.EOF_IN_COMMENT": -7.279319, "ErrorMessages.EOF_IN_REGEXP": -6.586172, "ErrorMessages.EOF_IN_STRING": -7.279319, "ErrorMessages.UNEXPECTED_CHAR": -7.279319, "ErrorMessages.UNEXPECTED_NL": -7.279319, "ErrorMessages.UNTERMINATED_STR": -7.279319, "EscapeSequence": -7.279319, "Exponent": -6.180707, "F": -7.279319, "FLit": -5.082094, "File": -6.586172, "FloatLiteral": -7.279319, "HexDigit": -5.333409, "HexIntegerLiteral": -7.279319, "HexLongLiteral": -7.279319, "Identifier": -7.279319, "Illegal": -6.586172, "InputCharacter": -6.586172, "Integer.parseInt": -5.893024, "JAVA_CODE": -7.279319, "JavaSymbol": -6.586172, "LexScan": -7.279319, "LexicalStates": -6.586172, "LineTerminator": -5.893024, "List": -6.180707, "MACROS": -7.279319, "NL": -7.279319, "Object": -6.586172, "OctDigit": -5.487559, "OctIntegerLiteral": -7.279319, "OctLongLiteral": -7.279319, "Options.emitInputStreamCtor": -7.279319, "R": -7.279319, "REGEXP": -6.586172, "REGEXPSTART": -7.279319, "REGEXP_CODEPOINT_SEQUENCE": -7.279319, "REPEATEXP": -7.279319, "RuntimeException": -6.586172, "STATELIST": -7.279319, "STATES": -7.279319, "STRING": -7.279319, "STRING_CODEPOINT_SEQUENCE": -7.279319, "STRING_CONTENT": -6.586172, "Scanner": -7.279319, "ScannerException": -4.976734, "SingleCharacter": -7.279319, "Stack": -6.586172, "String": -4.571269, "StringBuilder": -5.199877, "StringCharacter": -7.279319, "StringLiteral": -7.279319, "Symbol": -6.180707, "Timer": -6.586172, "TraditionalComment": -6.586172, "UnicodeProperties": -7.279319, "Unterminated": -7.279319, "WSP": -7.279319, "WSPNL": -7.279319, "WhiteSpace": -7.279319, "YYINITIAL": -6.180707, "[": -3.912023, "\\": -3.290335, "]": -3.983482, "^": -5.669881, "a": -7.279319, "abstract": -7.279319, "actionText": -7.279319, "action_line": -7.279319, "actions": -7.279319, "at": -6.586172, "b": -7.279319, "balance": -7.279319, "bolUsed": -7.279319, "boolean": -4.143825, "break": -7.279319, "bufferSize": -7.279319, "byte": -7.279319, "case": -7.279319, "caseless": -7.279319, "catch": -7.279319, "char": -6.180707, "charCount": -7.279319, "character": -6.586172, "class": -6.180707, "classCode": -7.279319, "className": -7.279319, "codePoint": -5.082094, "column": -6.180707, "columnCount": -7.279319, "commentbalance": -7.279319, "const": -7.279319, "continue": -7.279319, "ctorArgs": -7.279319, "ctorTypes": -7.279319, "cup": -6.586172, "cupCompatible": -7.279319, "cupDebug": -7.279319, "cupSymbol": -7.279319, "cupdebug": -6.586172, "debugOption": -7.279319, "default": -7.279319, "digit": -6.180707, "do": -7.279319, "double": -7.279319, "eE": -7.279319, "else": -5.669881, "emitInputStreamCtor": -7.279319, "end": -6.180707, "eofCode": -7.279319, "eofThrow": -7.279319, "eofVal": -7.279319, "eofclose": -6.586172, "escape": -7.279319, "extends": -7.279319, "f": -6.180707, "fA": -7.279319, "fF": -7.279319, "false": -6.586172, "file": -4.794412, "files": -7.279319, "files.pop": -7.279319, "final": -6.586172, "finally": -7.279319, "float": -7.279319, "for": -6.586172, "function": -7.279319, "functionName": -7.279319, "goto": -7.279319, "i": -5.893024, "if": -5.669881, "implements": -6.180707, "import": -4.976734, "inclusive_states": -7.279319, "initCode": -7.279319, "initThrow": -7.279319, "inputstreamctor": -7.279319, "instanceof": -7.279319, "int": -4.571269, "interface": -7.279319, "isASCII": -7.279319, "isAbstract": -7.279319, "isExtending": -7.279319, "isFinal": -7.279319, "isImplementing": -7.279319, "isIntWrap": -7.279319, "isInteger": -7.279319, "isPublic": -7.279319, "isYYEOF": -7.279319, "java.io.*": -7.279319, "java.util.ArrayList": -7.279319, "java.util.HashMap": -7.279319, "java.util.List": -7.279319, "java.util.Map": -7.279319, "java.util.Stack": -7.279319, "java_cup.runtime.*": -7.279319, "java_cup.runtime.Scanner": -7.279319, "java_cup.runtime.Symbol": -7.279319, "jflex": -7.279319, "jflex.unicode.UnicodeProperties": -7.279319, "jletter": -7.279319, "jletterdigit": -7.279319, "lL": -6.180707, "lexThrow": -7.279319, "line": -5.893024, "lineCount": -7.279319, "literal": -7.279319, "long": -5.893024, "macroDefinition": -7.279319, "n": -5.669881, "native": -7.279319, "new": -4.060443, "nextState": -7.279319, "next_token": -7.279319, "notUnix": -7.279319, "null": -7.279319, "of": -7.279319, "package": -6.586172, "parseLong": -7.279319, "private": -5.487559, "protected": -7.279319, "public": -6.180707, "r": -5.669881, "radix": -6.180707, "result": -6.180707, "result*": -7.279319, "return": -4.881424, "scanErrorException": -7.279319, "sequence": -7.279319, "short": -7.279319, "standalone": -7.279319, "start": -6.586172, "state": -5.669881, "states": -7.279319, "static": -7.279319, "strictfp": -7.279319, "string": -6.586172, "string.append": -5.893024, "string.toString": -7.279319, "super": -7.279319, "switch": -7.279319, "sym": -6.586172, "symbol": -5.082094, "synchronized": -7.279319, "t": -5.893024, "this": -7.279319, "throw": -4.714369, "throws": -7.279319, "tokenType": -7.279319, "transient": -7.279319, "true": -7.279319, "try": -7.279319, "type": -5.669881, "u": -5.199877, "unicode": -6.586172, "unicodeProperties": -7.279319, "unicodeProperties.getMaximumCodePoint": -6.180707, "userCode": -7.279319, "val": -6.586172, "value": -6.586172, "visibility": -7.279319, "void": -7.279319, "volatile": -7.279319, "while": -7.279319, "xX": -6.586172, "yybegin": -5.487559, "yycharat": -7.279319, "yycolumn": -5.082094, "yylength": -7.279319, "yyline": -5.199877, "yymoreStreams": -7.279319, "yypopStream": -7.279319, "yytext": -5.487559, "{": -2.872600, "|": -4.714369, "||": -7.279319, "}": -2.836668, "~": -6.586172, }, "JSON": map[string]float64{ ",": -0.875850, "-": -1.867288, ":": -4.941627, "[": -1.569183, "]": -1.569406, "true": -9.976413, "{": -5.915970, "}": -5.921733, }, "JSON5": map[string]float64{ "+": -4.779123, ",": -1.252763, ".": -4.779123, ":": -1.411828, "<aseem.kishore@gmail.com>": -4.779123, "<max.nanasy@gmail.com>": -4.779123, "Infinity": -4.779123, "[": -3.392829, "]": -3.392829, "author": -4.779123, "bin": -4.779123, "build": -4.779123, "contributors": -4.779123, "delta": -4.779123, "dependencies": -4.779123, "description": -4.779123, "devDependencies": -4.779123, "finally": -4.779123, "foo": -4.779123, "half": -4.779123, "here": -4.779123, "hex": -4.779123, "homepage": -4.779123, "keywords": -4.779123, "main": -4.779123, "mocha": -4.779123, "name": -4.779123, "oh": -4.779123, "repository": -4.779123, "scripts": -4.779123, "test": -4.779123, "this": -4.779123, "to": -4.779123, "true": -4.779123, "type": -4.779123, "url": -4.779123, "version": -4.779123, "while": -4.779123, "{": -2.833213, "}": -2.833213, }, "JSONLD": map[string]float64{ ",": -1.347074, ":": -0.967584, "[": -3.912023, "]": -3.912023, "null": -3.218876, "{": -1.966113, "}": -1.966113, }, "JSONiq": map[string]float64{ "$": -2.530716, "(": -2.664248, ")": -2.664248, ",": -3.357395, "-": -2.905410, ":": -2.470092, ";": -3.106080, "=": -3.000720, "Query": -4.610158, "[": -3.693867, "]": -3.693867, "at": -5.303305, "by": -4.610158, "catalog": -3.917011, "data": -3.917011, "database": -4.610158, "entry": -5.303305, "for": -3.917011, "get": -4.610158, "id": -4.204693, "idx": -4.610158, "import": -3.693867, "in": -5.303305, "index": -4.204693, "integer": -5.303305, "key": -5.303305, "keywords": -5.303305, "le": -5.303305, "let": -5.303305, "limit": -4.610158, "module": -3.693867, "namespace": -3.693867, "one": -5.303305, "param": -3.917011, "part": -4.610158, "phrase": -4.610158, "req": -3.511545, "result": -5.303305, "result.p": -5.303305, "result.r": -5.303305, "result.s": -5.303305, "return": -5.303305, "returning": -5.303305, "score": -5.303305, "search": -5.303305, "searching": -5.303305, "the": -5.303305, "values": -3.917011, "variable": -3.917011, "where": -5.303305, "{": -4.610158, "|": -4.610158, "}": -4.610158, }, "JSX": map[string]float64{ "'": -4.219508, "(": -2.833213, ")": -2.610070, ",": -4.219508, ":": -4.219508, ";": -2.610070, "<": -4.219508, "</div>": -4.219508, "</li>": -4.219508, "</span>": -3.526361, "</ul>": -4.219508, "<div>": -4.219508, "<li>": -4.219508, "<span>": -3.526361, "<ul>": -4.219508, "=": -2.833213, ">": -3.526361, "Feed": -4.219508, "News": -4.219508, "React": -4.219508, "React.createClass": -4.219508, "className": -4.219508, "className=": -4.219508, "const": -4.219508, "feed.name": -4.219508, "feeds": -3.526361, "function": -4.219508, "h": -4.219508, "let": -4.219508, "light": -4.219508, "loaded": -3.526361, "loading": -3.526361, "log": -4.219508, "log.info": -4.219508, "module.exports": -4.219508, "render": -4.219508, "require": -4.219508, "return": -4.219508, "this.props": -4.219508, "{": -3.120895, "}": -2.427748, }, "Jasmin": map[string]float64{ "'": -5.026345, "(": -2.946903, ")": -2.946903, "-": -3.045343, ".class": -5.026345, ".end": -4.333197, ".limit": -4.333197, ".line": -2.931399, ".method": -4.333197, ".super": -5.026345, ":": -2.801721, ";": -2.946903, "<init>": -4.333197, "BeginGlobal": -5.026345, "Cmp": -3.773582, "CmpDone": -3.773582, "EndGlobal": -5.026345, "I": -4.014744, "If": -4.215414, "IfDone": -4.215414, "IfElse": -4.215414, "IfNot": -5.314027, "Ljava/io/PrintStream": -3.640050, "Ljava/lang/String": -5.026345, "V": -3.080434, "Z": -4.803201, "[": -5.026345, "aload_": -5.026345, "calls": -5.026345, "getstatic": -3.640050, "goto": -3.640050, "iadd": -7.105786, "iand": -7.105786, "idiv": -7.105786, "if": -5.719492, "if_icmpeq": -4.161347, "if_icmpne": -5.159876, "imul": -7.105786, "initializer": -4.333197, "invokenonvirtual": -5.026345, "invokevirtual": -3.640050, "ior": -7.105786, "irem": -7.105786, "isub": -7.105786, "java.lang.Object": -5.026345, "java/io/PrintStream/print": -4.272573, "java/io/PrintStream/println": -4.397736, "java/lang/Object": -5.026345, "java/lang/Object/": -5.026345, "java/lang/System/out": -3.640050, "ldc": -2.451826, "locals": -5.026345, "main": -5.026345, "method": -4.333197, "op": -5.719492, "public": -3.927732, "return": -4.333197, "s": -5.026345, "stack": -5.026345, "standard": -5.026345, "static": -5.026345, }, "Java": map[string]float64{ "!": -4.913180, "\"": -9.749462, "&": -7.552237, "&&": -5.899314, "(": -2.287821, ")": -2.287821, "*": -9.056315, "+": -4.507715, ",": -2.808272, "-": -6.348264, ".add": -9.749462, ".compareTo": -8.650850, ".computeBytesSize": -9.749462, ".ensureFieldAccessorsInitialized": -9.056315, ".equals": -9.749462, ".equalsIgnoreCase": -8.140024, ".equiv": -9.056315, ".generateResponse": -9.056315, ".getACL": -9.749462, ".getAllocator": -9.749462, ".getAttributes": -9.749462, ".getChildNodes": -9.056315, ".getClassName": -9.749462, ".getDescriptor": -9.749462, ".getName": -8.650850, ".getNodeName": -8.363168, ".getNodeValue": -9.749462, ".getScheme": -9.056315, ".getSerializedSize": -9.749462, ".hasPermission": -9.749462, ".hasheq": -9.749462, ".internalBuildGeneratedFileFrom": -9.749462, ".len": -9.749462, ".length": -9.749462, ".mergeFrom": -9.056315, ".read": -9.749462, ".replace": -9.056315, ".setUnfinishedMessage": -9.749462, ".toString": -9.749462, ".toStringUtf": -9.749462, ".write": -9.749462, ".writeTo": -9.749462, "//RubyModule": -9.749462, "//XMLDocumentFilter": -9.749462, "//a": -9.749462, "//cleanup": -9.749462, ":": -5.330621, ";": -2.421681, "<": -6.753730, "</a>": -9.749462, "</code>": -6.976873, "</i>": -9.056315, "</tt>": -6.530586, "<<": -9.056315, "<?>": -8.650850, "<Builder>": -9.749462, "<ComputerListener>": -9.056315, "<ItemListener>": -9.056315, "<K,>": -9.056315, "<K,V>": -9.749462, "<Object>": -9.056315, "<Person>": -8.650850, "<PullRequest,>": -9.749462, "<PullRequest>": -8.650850, "<RuntimeException>": -9.749462, "<Slave>": -9.056315, "<String,>": -8.363168, "<T>": -9.749462, "<V>": -9.749462, "<_Fields,>": -8.650850, "<a>": -9.749462, "<attr>": -9.056315, "<choice>": -9.749462, "<code>": -6.976873, "<expression>": -9.749462, "<i>": -9.056315, "<literal>": -9.056315, "<modifier>": -9.749462, "<p>": -8.363168, "<pat@polycrystal.org>": -9.749462, "<predicate>": -8.363168, "<quantified>": -9.749462, "<quantifier>": -9.749462, "<rule>": -9.749462, "<sequence>": -9.749462, "<tt>": -6.530586, "<yokolet@gmail.com>": -9.056315, "=": -2.996024, ">": -6.530586, "?": -7.803552, "@CLIResolver": -9.749462, "@Generated": -9.749462, "@Override": -7.184513, "@SuppressWarnings": -8.650850, "@java.lang.Override": -8.363168, "ADMINISTER": -9.749462, "ARRAY": -8.650850, "ASTNode": -9.749462, "ArrayIndexOutOfBoundsException": -9.749462, "ArrayList": -9.749462, "Augmentations": -9.056315, "BIG": -9.056315, "BNF_ATTR": -9.056315, "BNF_ATTRS": -9.056315, "BNF_ATTR_PATTERN": -9.056315, "BNF_ATTR_VALUE": -9.056315, "BNF_CHOICE": -8.650850, "BNF_EXPRESSION": -8.650850, "BNF_ID": -7.957702, "BNF_LEFT_BRACE": -8.363168, "BNF_LEFT_BRACKET": -9.749462, "BNF_LEFT_PAREN": -8.363168, "BNF_LITERAL_EXPRESSION": -8.363168, "BNF_MODIFIER": -9.056315, "BNF_NUMBER": -8.650850, "BNF_OP_AND": -8.650850, "BNF_OP_EQ": -9.056315, "BNF_OP_IS": -9.056315, "BNF_OP_NOT": -8.650850, "BNF_OP_ONEMORE": -9.749462, "BNF_OP_OPT": -9.749462, "BNF_OP_OR": -8.650850, "BNF_OP_ZEROMORE": -9.749462, "BNF_PAREN_EXPRESSION": -8.650850, "BNF_PREDICATE": -8.650850, "BNF_PREDICATE_SIGN": -9.056315, "BNF_QUANTIFIED": -8.650850, "BNF_QUANTIFIER": -9.056315, "BNF_REFERENCE_OR_TOKEN": -8.650850, "BNF_RIGHT_BRACE": -8.650850, "BNF_RIGHT_BRACKET": -9.749462, "BNF_RIGHT_PAREN": -9.056315, "BNF_RULE": -9.056315, "BNF_SEMICOLON": -9.056315, "BNF_SEQUENCE": -8.650850, "BNF_STRING": -8.140024, "BNF_STRING_LITERAL_EXPRESSION": -8.363168, "BOOLEAN": -7.957702, "BOOLEAN_TYPE": -8.650850, "BYTE": -7.957702, "BYTE_TYPE": -8.650850, "BasicLibraryService": -9.749462, "BigInt": -9.749462, "BigInteger": -9.749462, "BitSet": -8.650850, "Boolean.TYPE": -9.056315, "Boolean.valueOf": -9.749462, "Builder": -6.753730, "Builder.create": -9.749462, "Byte.TYPE": -9.056315, "CHAR": -7.957702, "CHAR_TYPE": -8.650850, "CharSequence": -8.363168, "Character.TYPE": -9.056315, "Class": -7.264555, "ClassNotFoundException": -9.749462, "CloneNotSupportedException": -6.613968, "Cloneable": -9.749462, "CloudList": -8.650850, "Collections.synchronizedMap": -9.749462, "Collections.unmodifiableMap": -9.749462, "Comparable": -9.056315, "ComputerListener.class": -9.749462, "ConcurrentHashMap": -9.749462, "Constructor": -9.749462, "CopyOnWriteList": -8.363168, "DOMParser": -9.749462, "DOUBLE": -7.803552, "DOUBLE_TYPE": -8.650850, "DefaultFilter": -9.056315, "Document": -9.056315, "Double.TYPE": -9.056315, "EMPTY_BUFFER": -9.749462, "ENCODING_HANDLER_ALLOCATOR": -9.056315, "EXTENDS_SETS_": -9.056315, "ElementValidityCheckFilter": -8.650850, "EncodingHandler": -9.749462, "EncodingHandler.class": -9.749462, "EnumMap": -9.749462, "EnumSet.allOf": -9.749462, "Error": -9.749462, "Exception": -9.749462, "ExtensionListView.createCopyOnWriteList": -9.056315, "FLOAT": -7.957702, "FLOAT_TYPE": -8.650850, "File": -9.056315, "FlexLexer": -9.749462, "Float.TYPE": -9.056315, "Functions.toEmailSafeString": -9.056315, "GrammarParser": -9.749462, "HTMLConfiguration": -9.749462, "HTML_DOCUMENT_ALLOCATOR": -9.056315, "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": -9.056315, "HTML_ENTITY_LOOKUP_ALLOCATOR": -9.056315, "HTML_SAXPARSER_CONTEXT_ALLOCATOR": -9.056315, "HashMap": -8.650850, "HtmlDocument": -7.803552, "HtmlDocument.class": -9.749462, "HtmlDomParserContext": -8.650850, "HtmlElementDescription": -9.749462, "HtmlElementDescription.class": -9.749462, "HtmlEntityLookup": -9.749462, "HtmlEntityLookup.class": -9.749462, "HtmlSaxParserContext": -8.140024, "HtmlSaxParserContext.class": -9.749462, "Hudson": -8.140024, "Hudson.class": -9.749462, "IElementType": -8.363168, "IHashEq": -9.056315, "INT": -7.957702, "INT_TYPE": -8.650850, "IOException": -7.957702, "IPersistentCollection": -8.140024, "IRubyObject": -6.194114, "IScheme": -8.363168, "ISeq": -9.056315, "IllegalArgumentException": -9.056315, "IllegalStateException": -9.056315, "Integer": -9.056315, "Integer.TYPE": -9.056315, "InterruptedException": -9.056315, "ItemListener.class": -9.749462, "Jenkins": -9.056315, "Jenkins.CloudList": -9.749462, "Jenkins.MasterComputer": -9.749462, "Jenkins.getInstance": -9.056315, "LONG": -7.803552, "LONG_TYPE": -8.650850, "LightPsiParser": -9.749462, "List": -8.363168, "Long": -9.749462, "Map": -8.140024, "Map.Entry": -9.749462, "Marker": -6.223101, "MasterComputer": -9.749462, "MetaTag": -9.056315, "Method": -8.650850, "NAME_FIELD_NUMBER": -9.749462, "Name": -9.749462, "NamedNodeMap": -9.749462, "NekoHtml": -9.749462, "Node": -9.749462, "NodeList": -9.056315, "NokogiriErrorHandler": -9.056315, "NokogiriNonStrictErrorHandler": -9.749462, "NokogiriService": -9.749462, "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": -9.749462, "NokogiriStrictErrorHandler": -9.749462, "NullPointerException": -8.650850, "Number": -7.552237, "Numbers.compare": -9.749462, "Numbers.equal": -9.749462, "Numbers.hasheq": -9.749462, "OBJECT": -8.650850, "Object": -6.223101, "ObjectAllocator": -5.655117, "Opcodes.IALOAD": -9.749462, "Opcodes.IASTORE": -9.749462, "PARSER": -9.056315, "PARSER.parseDelimitedFrom": -9.056315, "PARSER.parseFrom": -7.670020, "PARSER.parsePartialFrom": -9.749462, "Parser": -8.363168, "Pers": -9.749462, "Person": -7.446877, "PersonOrBuilder": -9.056315, "PluginManager": -9.749462, "ProtocolBuffer": -9.056315, "PsiBuilder": -5.857642, "PsiParser": -9.749462, "PullRequest": -6.976873, "PullRequest._Fields": -9.749462, "PullRequest.class": -9.749462, "PullRequestStandardScheme": -8.650850, "PullRequestStandardSchemeFactory": -9.056315, "PullRequestTupleScheme": -8.650850, "PullRequestTupleSchemeFactory": -9.056315, "QName": -9.056315, "ReactorException": -9.056315, "Reference": -8.650850, "ReferenceQueue": -9.749462, "RemoveNSAttrsFilter": -9.056315, "Ruby": -5.988262, "RubyArray.newEmptyArray": -9.749462, "RubyClass": -5.227673, "RubyFixnum.newFixnum": -7.957702, "RubyModule": -6.859090, "RuntimeException": -8.140024, "SHORT": -7.957702, "SHORT_TYPE": -8.650850, "STRUCT_DESC": -9.056315, "SchemeFactory": -8.363168, "ServletContext": -9.056315, "ServletException": -8.650850, "Short.TYPE": -9.056315, "Slave": -8.650850, "StandardScheme": -9.749462, "StandardScheme.class": -9.749462, "StaplerRequest": -8.650850, "StaplerResponse": -8.650850, "String": -5.817636, "StringBuffer": -7.110405, "StringBuilder": -9.056315, "T": -9.056315, "TITLE": -8.140024, "TITLE_FIELD_DESC": -9.056315, "TRUE_CONDITION": -9.749462, "TTupleProtocol": -8.363168, "ThreadContext": -9.056315, "Throwable": -8.140024, "TokenSet": -9.056315, "TopLevelItem": -8.650850, "TupleScheme": -9.749462, "TupleScheme.class": -9.749462, "Type": -6.011792, "Type.ARRAY": -9.056315, "Type.OBJECT": -9.056315, "Util": -9.749462, "Util.": -9.749462, "VOID": -8.140024, "VOID_TYPE": -8.650850, "Void.TYPE": -8.650850, "XMLAttributes": -9.056315, "XMLDocumentFilter": -8.650850, "XMLParserConfiguration": -9.749462, "XML_ATTRIBUTE_DECL_ALLOCATOR": -9.056315, "XML_ATTR_ALLOCATOR": -9.056315, "XML_CDATA_ALLOCATOR": -9.056315, "XML_COMMENT_ALLOCATOR": -9.056315, "XML_DOCUMENT_ALLOCATOR": -9.056315, "XML_DOCUMENT_FRAGMENT_ALLOCATOR": -9.056315, "XML_DTD_ALLOCATOR": -9.056315, "XML_ELEMENT_ALLOCATOR": -9.056315, "XML_ELEMENT_CONTENT_ALLOCATOR": -9.056315, "XML_ELEMENT_DECL_ALLOCATOR": -9.056315, "XML_ENTITY_DECL_ALLOCATOR": -9.056315, "XML_ENTITY_REFERENCE_ALLOCATOR": -9.056315, "XML_NAMESPACE_ALLOCATOR": -9.056315, "XML_NODESET_ALLOCATOR": -9.056315, "XML_NODE_ALLOCATOR": -9.056315, "XML_PROCESSING_INSTRUCTION_ALLOCATOR": -9.056315, "XML_READER_ALLOCATOR": -9.056315, "XML_RELAXNG_ALLOCATOR": -9.056315, "XML_SAXPARSER_CONTEXT_ALLOCATOR": -9.056315, "XML_SAXPUSHPARSER_ALLOCATOR": -9.056315, "XML_SCHEMA_ALLOCATOR": -9.056315, "XML_SYNTAXERROR_ALLOCATOR": -9.056315, "XML_TEXT_ALLOCATOR": -9.056315, "XML_XPATHCONTEXT_ALLOCATOR": -9.056315, "XNIException": -9.056315, "XSLT_STYLESHEET_ALLOCATOR": -9.056315, "XSTREAM.alias": -9.749462, "XmlAttr": -8.140024, "XmlAttr.class": -9.749462, "XmlAttributeDecl": -9.749462, "XmlAttributeDecl.class": -9.749462, "XmlCdata": -8.140024, "XmlCdata.class": -9.749462, "XmlComment": -8.140024, "XmlComment.class": -9.749462, "XmlDocument": -7.670020, "XmlDocument.class": -9.749462, "XmlDocument.rbNew": -9.749462, "XmlDocumentFragment": -8.140024, "XmlDocumentFragment.class": -9.749462, "XmlDomParserContext": -9.749462, "XmlDtd": -8.140024, "XmlDtd.class": -9.749462, "XmlElement": -8.140024, "XmlElement.class": -9.749462, "XmlElementContent.class": -9.749462, "XmlElementDecl": -8.140024, "XmlElementDecl.class": -9.749462, "XmlEntityDecl": -9.749462, "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": -9.749462, "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": -9.749462, "XmlEntityDecl.EXTERNAL_PARAMETER": -9.749462, "XmlEntityDecl.INTERNAL_GENERAL": -9.749462, "XmlEntityDecl.INTERNAL_PARAMETER": -9.749462, "XmlEntityDecl.INTERNAL_PREDEFINED": -9.749462, "XmlEntityDecl.class": -9.749462, "XmlEntityReference": -8.140024, "XmlEntityReference.class": -9.749462, "XmlNamespace": -8.140024, "XmlNamespace.class": -9.749462, "XmlNode": -8.140024, "XmlNode.class": -9.749462, "XmlNodeSet": -8.140024, "XmlNodeSet.class": -9.749462, "XmlProcessingInstruction": -8.140024, "XmlProcessingInstruction.class": -9.749462, "XmlReader": -8.140024, "XmlReader.class": -9.749462, "XmlRelaxng": -8.140024, "XmlRelaxng.class": -9.749462, "XmlSaxParserContext": -8.140024, "XmlSaxParserContext.class": -9.749462, "XmlSaxPushParser": -9.749462, "XmlSaxPushParser.class": -9.749462, "XmlSchema": -8.140024, "XmlSchema.class": -9.749462, "XmlSyntaxError": -8.140024, "XmlSyntaxError.class": -9.749462, "XmlText": -7.957702, "XmlText.class": -9.749462, "XmlXpathContext": -8.140024, "XmlXpathContext.class": -9.749462, "XsltStylesheet": -8.363168, "XsltStylesheet.class": -9.056315, "YYEOF": -8.363168, "YYINITIAL": -9.056315, "ZZ_ACTION": -9.056315, "ZZ_ACTION_PACKED_": -9.056315, "ZZ_ATTRIBUTE": -9.056315, "ZZ_ATTRIBUTE_PACKED_": -9.056315, "ZZ_BUFFERSIZE": -9.749462, "ZZ_CMAP": -9.056315, "ZZ_CMAP_PACKED": -9.056315, "ZZ_ERROR_MSG": -8.650850, "ZZ_LEXSTATE": -9.056315, "ZZ_NO_MATCH": -9.056315, "ZZ_PUSHBACK_": -9.056315, "ZZ_ROWMAP": -9.056315, "ZZ_ROWMAP_PACKED_": -9.056315, "ZZ_TRANS": -9.056315, "ZZ_TRANS_PACKED_": -9.056315, "ZZ_UNKNOWN_ERROR": -9.056315, "[": -5.095502, "\\": -7.351567, "]": -5.095502, "^": -9.749462, "_": -5.965272, "_COLLAPSE_": -7.957702, "_Fields": -7.184513, "_Fields.TITLE": -9.749462, "_Fields.class": -9.056315, "_Fields.findByThriftId": -9.749462, "_GrammarLexer": -8.650850, "_NONE_": -7.446877, "_NOT_": -8.363168, "_fieldName": -8.650850, "_thriftId": -8.650850, "adapt_builder_": -9.749462, "advance": -9.749462, "allocate": -6.348264, "any": -9.749462, "args": -7.957702, "argumentTypes": -9.056315, "argumentTypes.length": -9.749462, "assigner": -9.749462, "attr": -8.363168, "attr.defineAnnotatedMethods": -9.749462, "attrDecl": -9.749462, "attrDecl.defineAnnotatedMethods": -9.749462, "attr_": -8.363168, "attr_pattern": -8.650850, "attr_recover_until": -9.056315, "attr_recover_until_parser_": -9.056315, "attr_value": -8.650850, "attr_value_": -8.363168, "attrs": -7.670020, "attrs.getLength": -9.749462, "attrs.getQName": -9.749462, "attrs.removeAttributeAt": -9.749462, "attrs_": -9.056315, "augs": -8.363168, "b": -3.993720, "b.append": -9.749462, "b.getTreeBuilt": -9.749462, "b.toString": -9.749462, "basicLoad": -9.749462, "bitField": -7.041412, "boolean": -4.921148, "boost": -9.749462, "break": -6.348264, "bs": -9.749462, "bs.isValidUtf": -9.749462, "bs.toStringUtf": -9.749462, "buf": -5.988262, "buf.append": -6.704939, "buf.toString": -8.363168, "buffer": -8.650850, "build": -9.749462, "buildPartial": -8.650850, "builder": -8.363168, "builder.getUnknownFields": -9.749462, "byName": -9.749462, "byName.get": -9.749462, "byName.put": -9.749462, "byte": -8.363168, "c": -5.920820, "c.dom.Document": -9.749462, "c.dom.NamedNodeMap": -9.749462, "c.dom.NodeList": -9.749462, "c.getName": -9.749462, "c.getParameterTypes": -9.749462, "c.isPrimitive": -9.056315, "cache": -9.749462, "cache.entrySet": -9.749462, "cache.remove": -9.749462, "car": -6.859090, "case": -5.606327, "catch": -6.382166, "cdata": -9.749462, "cdata.defineAnnotatedMethods": -9.749462, "char": -6.571408, "characterData": -8.650850, "charset": -9.056315, "choice": -8.650850, "choice_": -7.446877, "choice_tail": -9.056315, "class": -6.805023, "classOf": -9.749462, "classes": -9.056315, "classes.length": -9.056315, "clear": -9.056315, "clearCache": -9.749462, "clearName": -9.749462, "clojure.asm": -9.749462, "clojure.lang": -9.749462, "clone": -5.899314, "clone.setMetaClass": -6.613968, "com.google.protobuf.AbstractParser": -9.749462, "com.google.protobuf.ByteString": -7.184513, "com.google.protobuf.ByteString.copyFromUtf": -9.056315, "com.google.protobuf.CodedInputStream": -8.140024, "com.google.protobuf.CodedOutputStream": -9.056315, "com.google.protobuf.Descriptors.Descriptor": -8.363168, "com.google.protobuf.Descriptors.FileDescriptor": -8.363168, "com.google.protobuf.ExtensionRegistry": -9.749462, "com.google.protobuf.ExtensionRegistryLite": -7.670020, "com.google.protobuf.GeneratedMessage": -9.749462, "com.google.protobuf.GeneratedMessage.Builder": -9.056315, "com.google.protobuf.GeneratedMessage.BuilderParent": -9.056315, "com.google.protobuf.GeneratedMessage.FieldAccessorTable": -8.650850, "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": -9.749462, "com.google.protobuf.InvalidProtocolBufferException": -7.552237, "com.google.protobuf.Message": -9.749462, "com.google.protobuf.MessageOrBuilder": -9.749462, "com.google.protobuf.Parser": -9.056315, "com.google.protobuf.UnknownFieldSet": -9.056315, "com.google.protobuf.UnknownFieldSet.Builder": -9.749462, "com.google.protobuf.UnknownFieldSet.getDefaultInstance": -9.749462, "com.google.protobuf.UnknownFieldSet.newBuilder": -9.749462, "com.intellij.lang.ASTNode": -9.749462, "com.intellij.lang.LightPsiParser": -9.749462, "com.intellij.lang.PsiBuilder": -9.749462, "com.intellij.lang.PsiBuilder.Marker": -9.749462, "com.intellij.lang.PsiParser": -9.749462, "com.intellij.lexer.*": -9.749462, "com.intellij.psi.TokenType.BAD_CHARACTER": -9.749462, "com.intellij.psi.TokenType.WHITE_SPACE": -9.749462, "com.intellij.psi.tree.IElementType": -9.056315, "com.intellij.psi.tree.TokenSet": -9.749462, "com.intellij.util.text.CharArrayUtil.fromSequenceWithoutCopying": -9.749462, "comment": -9.749462, "comment.defineAnnotatedMethods": -9.749462, "compare": -9.749462, "compareTo": -9.749462, "computerListeners": -9.056315, "config": -9.056315, "config.setErrorHandler": -9.749462, "consumeToken": -6.194114, "context": -7.670020, "context.getRuntime": -8.650850, "count": -7.670020, "create": -9.056315, "createDocuments": -9.056315, "createHtmlModule": -9.056315, "createNokogiriClassCahce": -9.056315, "createNokogiriModule": -9.056315, "createSaxModule": -9.056315, "createSyntaxErrors": -9.056315, "createXmlModule": -9.056315, "createXsltModule": -9.056315, "create_token_set_": -9.056315, "current_position_": -7.110405, "d": -7.446877, "d.getComponentType": -9.749462, "d.getName": -9.749462, "d.isArray": -9.749462, "d.isPrimitive": -9.749462, "data": -7.670020, "date": -9.749462, "dead": -9.749462, "deepCopy": -9.749462, "default": -7.552237, "defaultInstance": -8.363168, "defaultInstance.initFields": -9.749462, "descriptor": -9.056315, "descriptorData": -9.056315, "detected_encoding": -9.056315, "detected_encoding.isNil": -9.749462, "do": -8.363168, "doFieldCheck": -9.056315, "doLogRss": -9.749462, "doQuietDown": -9.056315, "document": -8.140024, "document.getDocumentElement": -9.056315, "documentFragment": -9.749462, "documentFragment.defineAnnotatedMethods": -9.749462, "done": -8.363168, "double": -8.363168, "dtd": -9.749462, "dtd.defineAnnotatedMethods": -9.749462, "e": -6.315475, "e.getKey": -9.749462, "e.getMessage": -9.749462, "e.getUnfinishedMessage": -9.749462, "e.getValue": -9.749462, "e.setUnfinishedMessage": -9.749462, "element": -8.650850, "element.defineAnnotatedMethods": -9.749462, "element.uri": -9.749462, "elementContent": -9.749462, "elementContent.defineAnnotatedMethods": -9.749462, "elementDecl": -9.749462, "elementDecl.defineAnnotatedMethods": -9.749462, "elementValidityCheckFilter": -8.650850, "element_names": -8.650850, "else": -5.742129, "empty_element_parsed_guard_": -7.803552, "enableDocumentFragment": -9.749462, "encHandler": -9.749462, "encHandler.defineAnnotatedMethods": -9.749462, "encoding": -9.056315, "end": -7.957702, "enter_section_": -6.223101, "entityDecl": -9.749462, "entityDecl.defineAnnotatedMethods": -9.749462, "entityDecl.defineConstant": -7.957702, "entref": -9.749462, "entref.defineAnnotatedMethods": -9.749462, "entries": -9.749462, "enum": -9.749462, "eof": -9.056315, "equals": -7.957702, "equiv": -6.916249, "errorCode": -9.056315, "errorHandler": -7.957702, "errorHandler.getErrors": -9.749462, "exit_section_": -6.223101, "expression": -8.140024, "extends": -7.110405, "extensionRegistry": -6.976873, "false": -5.306811, "field": -7.552237, "field.getFieldName": -9.749462, "fieldForId": -9.749462, "fieldId": -7.803552, "fieldName": -9.056315, "fields": -8.650850, "filters": -8.650850, "final": -5.013263, "finally": -9.056315, "findByName": -9.749462, "findByThriftId": -9.056315, "findByThriftIdOrThrow": -9.749462, "first": -9.056315, "fixEmpty": -8.363168, "for": -6.976873, "from_bitField": -9.056315, "getArgumentTypes": -9.056315, "getClass": -9.056315, "getClassName": -9.749462, "getComputerListeners": -9.749462, "getConstructorDescriptor": -9.749462, "getDefaultInstance": -9.056315, "getDefaultInstanceForType": -9.056315, "getDescriptor": -7.110405, "getDescriptorForType": -9.749462, "getDimensions": -8.650850, "getElementType": -9.056315, "getFieldName": -9.749462, "getFieldValue": -9.749462, "getInstance": -9.749462, "getInternalName": -9.056315, "getItem": -9.749462, "getItems": -9.749462, "getJob": -9.749462, "getJobCaseInsensitive": -9.749462, "getJobListeners": -9.749462, "getMethodDescriptor": -9.056315, "getName": -8.650850, "getNameBytes": -8.140024, "getNewEmptyDocument": -9.749462, "getNode": -9.749462, "getNokogiriClass": -9.749462, "getObjectType": -9.749462, "getOpcode": -9.749462, "getParserForType": -9.749462, "getReturnType": -9.056315, "getScheme": -9.056315, "getSerializedSize": -9.056315, "getSize": -9.749462, "getSlave": -9.749462, "getSlaves": -9.749462, "getSort": -9.749462, "getThriftFieldId": -9.749462, "getTitle": -9.056315, "getTokenEnd": -9.749462, "getTokenStart": -9.056315, "getType": -7.446877, "getUnknownFields": -8.650850, "grammar": -9.056315, "grammar_": -9.056315, "h": -9.056315, "hasName": -8.140024, "hash": -8.650850, "hashCode": -9.056315, "hashCombine": -9.749462, "hasheq": -9.749462, "hc": -8.363168, "headers": -9.749462, "headers.getLength": -9.749462, "headers.item": -9.056315, "high": -9.056315, "html.defineOrGetClassUnder": -9.749462, "htmlDoc": -9.749462, "htmlDocument": -7.957702, "htmlDocument.clone": -9.749462, "htmlDocument.defineAnnotatedMethods": -9.749462, "htmlDocument.setDocumentNode": -9.749462, "htmlDocument.setEncoding": -9.749462, "htmlDocument.setParsedEncoding": -9.749462, "htmlElemDesc": -9.749462, "htmlElemDesc.defineAnnotatedMethods": -9.749462, "htmlEntityLookup": -9.749462, "htmlEntityLookup.defineAnnotatedMethods": -9.749462, "htmlModule": -8.140024, "htmlModule.defineClassUnder": -8.650850, "htmlModule.defineModuleUnder": -9.749462, "htmlSaxModule": -8.650850, "htmlSaxModule.defineClassUnder": -9.749462, "htmlSaxParserContext": -8.363168, "htmlSaxParserContext.clone": -9.749462, "htmlSaxParserContext.defineAnnotatedMethods": -9.749462, "hudson.ExtensionListView": -9.749462, "hudson.Functions": -9.749462, "hudson.Platform": -9.749462, "hudson.PluginManager": -9.749462, "hudson.Util.fixEmpty": -9.749462, "hudson.cli.declarative.CLIResolver": -9.749462, "hudson.model": -9.749462, "hudson.model.listeners.ItemListener": -9.749462, "hudson.slaves.ComputerListener": -9.749462, "hudson.util.CopyOnWriteList": -9.749462, "hudson.util.FormValidation": -9.749462, "i": -5.445397, "identical": -9.749462, "if": -4.294141, "implements": -7.552237, "import": -5.114733, "in": -8.363168, "incoming": -9.749462, "incoming.get": -9.749462, "index": -8.363168, "init": -9.056315, "initErrorHandler": -9.749462, "initFields": -9.056315, "initParser": -9.749462, "initialState": -9.056315, "input": -6.859090, "input.readBytes": -9.749462, "input.readTag": -9.749462, "instanceof": -6.753730, "int": -4.397604, "interface": -9.749462, "internalGetFieldAccessorTable": -9.056315, "internal_static_persons_Person_descriptor": -9.749462, "internal_static_persons_Person_fieldAccessorTable": -9.749462, "iprot": -7.957702, "iprot.getScheme": -9.749462, "iprot.readBitSet": -9.749462, "iprot.readFieldBegin": -9.749462, "iprot.readFieldEnd": -9.749462, "iprot.readString": -9.056315, "iprot.readStructBegin": -9.749462, "iprot.readStructEnd": -9.749462, "isAdmin": -8.650850, "isInitialized": -8.140024, "isInteger": -9.749462, "isNamespace": -9.749462, "isPrimitive": -9.749462, "isSet": -9.749462, "isSetTitle": -8.140024, "isValid": -9.056315, "item": -9.056315, "item.getName": -9.749462, "itemListeners": -9.056315, "j": -6.658419, "j.Logger": -9.749462, "j.LoggerFactory": -9.749462, "java.io.File": -9.749462, "java.io.IOException": -6.976873, "java.io.InputStream": -8.363168, "java.io.ObjectInputStream": -9.749462, "java.io.ObjectOutputStream": -9.749462, "java.io.ObjectStreamException": -9.749462, "java.io.Reader": -8.650850, "java.io.Serializable": -9.749462, "java.lang.Object": -7.803552, "java.lang.String": -7.110405, "java.lang.ref.Reference": -9.749462, "java.lang.ref.ReferenceQueue": -9.749462, "java.lang.ref.SoftReference": -9.749462, "java.lang.reflect.Constructor": -9.749462, "java.lang.reflect.Method": -9.749462, "java.math.BigInteger": -9.749462, "java.nio.ByteBuffer": -9.749462, "java.text.NumberFormat": -9.749462, "java.text.ParseException": -9.749462, "java.util.ArrayList": -9.749462, "java.util.Arrays": -9.749462, "java.util.BitSet": -9.749462, "java.util.Collections": -8.650850, "java.util.EnumMap": -9.749462, "java.util.EnumSet": -9.749462, "java.util.HashMap": -9.056315, "java.util.HashSet": -9.749462, "java.util.List": -9.056315, "java.util.Map": -8.363168, "java.util.Set": -9.749462, "java.util.concurrent.ConcurrentHashMap": -9.749462, "java_encoding": -9.056315, "javax.annotation.Generated": -9.749462, "javax.servlet.ServletContext": -9.749462, "javax.servlet.ServletException": -9.749462, "jenkins.model.Jenkins": -9.749462, "k": -5.306811, "klazz": -5.076633, "l": -4.466258, "la": -9.749462, "lastComparison": -7.803552, "len": -6.571408, "list": -9.056315, "list.add": -9.056315, "list.getLength": -9.749462, "list.hashCode": -9.749462, "list.item": -9.056315, "literal_expression": -8.363168, "long": -8.140024, "m": -5.515355, "m.getParameterTypes": -9.749462, "m.getReturnType": -9.749462, "makeExtensionsImmutable": -9.749462, "map": -8.650850, "match": -9.056315, "maybeForceBuilderInitialization": -8.650850, "memoizedIsInitialized": -8.363168, "memoizedSerializedSize": -8.650850, "mergeFrom": -8.140024, "message": -8.363168, "metaDataMap": -8.650850, "method": -9.056315, "method.getParameterTypes": -9.749462, "method.getReturnType": -9.749462, "methodDescriptor": -9.056315, "methodDescriptor.indexOf": -9.749462, "methodDescriptor.toCharArray": -9.056315, "modifier": -8.363168, "mutable_bitField": -9.749462, "n": -8.140024, "name": -7.184513, "name.charAt": -9.749462, "name.getChars": -9.749462, "name.length": -9.056315, "name.rawname": -9.056315, "name_": -6.859090, "namespace": -9.749462, "namespace.defineAnnotatedMethods": -9.749462, "new": -4.655712, "newBuilder": -8.140024, "newBuilderForType": -9.056315, "newState": -9.056315, "newUninitializedMessageException": -9.749462, "nextTokenIs": -7.552237, "nil": -9.056315, "noInit": -9.749462, "node": -7.110405, "node.defineAnnotatedMethods": -9.749462, "nodeMap": -9.749462, "nodeMap.getLength": -9.749462, "nodeMap.item": -9.056315, "nodeSet": -9.749462, "nodeSet.defineAnnotatedMethods": -9.749462, "nokogiri": -7.957702, "nokogiri.HtmlDocument": -9.749462, "nokogiri.NokogiriService": -9.749462, "nokogiri.XmlDocument": -9.749462, "nokogiri.defineClassUnder": -9.056315, "nokogiri.defineModuleUnder": -8.650850, "nokogiri.internals": -9.749462, "nokogiri.internals.NokogiriHelpers.getNokogiriClass": -9.749462, "nokogiri.internals.NokogiriHelpers.isNamespace": -9.749462, "nokogiri.internals.NokogiriHelpers.stringOrNil": -9.749462, "nokogiriClassCache": -9.056315, "nokogiriClassCache.put": -6.491365, "nokogiriClassCacheGvarName": -9.749462, "null": -4.844187, "number": -8.650850, "o": -7.264555, "o.hashCode": -9.056315, "off": -6.530586, "offset": -6.753730, "on": -9.749462, "onBuilt": -9.749462, "onChanged": -8.363168, "opcode": -6.916249, "oprot": -8.363168, "oprot.getScheme": -9.749462, "oprot.writeBitSet": -9.749462, "oprot.writeFieldBegin": -9.749462, "oprot.writeFieldEnd": -9.749462, "oprot.writeFieldStop": -9.749462, "oprot.writeString": -9.056315, "oprot.writeStructBegin": -9.749462, "oprot.writeStructEnd": -9.749462, "option": -8.650850, "optionals": -9.056315, "optionals.set": -9.749462, "options": -8.363168, "options.noError": -9.056315, "options.noWarning": -9.056315, "options.strict": -9.749462, "org.apache.thrift.EncodingUtils": -9.749462, "org.apache.thrift.TBase": -9.749462, "org.apache.thrift.TBaseHelper.compareTo": -9.749462, "org.apache.thrift.TException": -7.446877, "org.apache.thrift.TFieldIdEnum": -9.749462, "org.apache.thrift.TFieldRequirementType.DEFAULT": -9.749462, "org.apache.thrift.async.AsyncMethodCallback": -9.749462, "org.apache.thrift.meta_data.FieldMetaData": -8.363168, "org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap": -9.749462, "org.apache.thrift.meta_data.FieldValueMetaData": -9.749462, "org.apache.thrift.protocol.TCompactProtocol": -9.056315, "org.apache.thrift.protocol.TField": -8.650850, "org.apache.thrift.protocol.TProtocol": -7.957702, "org.apache.thrift.protocol.TProtocolException": -9.749462, "org.apache.thrift.protocol.TProtocolUtil.skip": -9.056315, "org.apache.thrift.protocol.TStruct": -9.056315, "org.apache.thrift.protocol.TTupleProtocol": -9.749462, "org.apache.thrift.protocol.TType.STOP": -9.749462, "org.apache.thrift.protocol.TType.STRING": -8.650850, "org.apache.thrift.scheme.IScheme": -9.749462, "org.apache.thrift.scheme.SchemeFactory": -9.749462, "org.apache.thrift.scheme.StandardScheme": -9.749462, "org.apache.thrift.scheme.TupleScheme": -9.749462, "org.apache.thrift.server.AbstractNonblockingServer.*": -9.749462, "org.apache.thrift.transport.TIOStreamTransport": -9.056315, "org.apache.xerces.parsers.DOMParser": -9.749462, "org.apache.xerces.xni.Augmentations": -9.749462, "org.apache.xerces.xni.QName": -9.749462, "org.apache.xerces.xni.XMLAttributes": -9.749462, "org.apache.xerces.xni.XNIException": -9.749462, "org.apache.xerces.xni.parser.XMLDocumentFilter": -9.749462, "org.apache.xerces.xni.parser.XMLParserConfiguration": -9.749462, "org.cyberneko.html.HTMLConfiguration": -9.749462, "org.cyberneko.html.filters.DefaultFilter": -9.749462, "org.intellij.grammar.parser": -9.749462, "org.intellij.grammar.parser.GeneratedParserUtilBase.*": -9.749462, "org.intellij.grammar.psi.BnfTypes.*": -9.056315, "org.jruby.Ruby": -9.056315, "org.jruby.RubyArray": -9.749462, "org.jruby.RubyClass": -9.056315, "org.jruby.RubyFixnum": -9.749462, "org.jruby.RubyModule": -9.749462, "org.jruby.runtime.ObjectAllocator": -9.749462, "org.jruby.runtime.ThreadContext": -9.749462, "org.jruby.runtime.builtin.IRubyObject": -9.056315, "org.jruby.runtime.load.BasicLibraryService": -9.749462, "org.jvnet.hudson.reactor.ReactorException": -9.749462, "org.kohsuke.stapler.QueryParameter": -9.749462, "org.kohsuke.stapler.Stapler": -9.749462, "org.kohsuke.stapler.StaplerRequest": -9.749462, "org.kohsuke.stapler.StaplerResponse": -9.749462, "org.slf": -9.056315, "org.w": -8.650850, "other": -7.670020, "other.getClass": -9.056315, "other.getUnknownFields": -9.749462, "other.hasName": -9.749462, "other.isSetTitle": -9.056315, "other.name_": -9.749462, "other.title": -9.056315, "out": -9.056315, "output": -9.056315, "output.writeBytes": -9.749462, "p": -6.453625, "package": -7.670020, "packed": -8.140024, "packed.charAt": -7.446877, "packed.length": -8.363168, "parameters": -8.363168, "parameters.length": -9.056315, "paren_expression": -8.650850, "parent": -8.363168, "parse": -8.650850, "parseDelimitedFrom": -9.056315, "parseFrom": -7.670020, "parseLight": -9.056315, "parsePartialFrom": -9.749462, "parseUnknownField": -9.749462, "parse_root_": -9.056315, "parsedMessage": -8.140024, "parser": -9.749462, "pcequiv": -9.056315, "persons": -9.749462, "persons.ProtocolBuffer.Person": -6.658419, "persons.ProtocolBuffer.Person.Builder.class": -9.056315, "persons.ProtocolBuffer.Person.class": -9.056315, "persons.ProtocolBuffer.Person.getDefaultInstance": -9.056315, "persons.ProtocolBuffer.PersonOrBuilder": -9.749462, "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": -8.650850, "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": -9.056315, "pi": -9.749462, "pi.defineAnnotatedMethods": -9.749462, "pluginManager": -9.056315, "pos": -8.650850, "predicate": -8.650850, "predicate_sign": -8.650850, "present_title": -8.650850, "private": -4.732182, "prot": -8.363168, "protected": -7.552237, "prototype": -9.056315, "public": -4.107555, "qs": -8.650850, "quantified": -8.650850, "quantified_": -7.957702, "quantifier": -8.650850, "r": -4.277191, "read": -8.363168, "readObject": -9.749462, "reader": -9.749462, "reader.defineAnnotatedMethods": -9.749462, "recursion_guard_": -5.965272, "ref": -6.976873, "reference_or_token": -8.363168, "registerAllExtensions": -9.749462, "registry": -9.749462, "relaxng": -9.749462, "relaxng.defineAnnotatedMethods": -9.749462, "removeNSAttrsFilter": -9.056315, "report_error_": -7.803552, "req": -8.363168, "req.getParameter": -8.363168, "req.getQueryString": -9.749462, "reset": -9.749462, "result": -6.530586, "result.bitField": -9.749462, "result.isInitialized": -9.749462, "result.name_": -9.749462, "ret": -7.957702, "return": -3.743109, "returnType": -9.749462, "returnType.getDescriptor": -9.749462, "root": -8.363168, "rq": -9.749462, "rq.poll": -9.056315, "rsp": -8.140024, "rsp.sendRedirect": -9.749462, "ruby": -6.530586, "ruby.defineModule": -9.749462, "ruby.getClassFromPath": -6.491365, "ruby.getObject": -7.184513, "ruby.getStandardError": -9.056315, "ruby_encoding": -8.650850, "ruby_encoding.isNil": -9.749462, "rule": -8.650850, "rule_": -7.957702, "rule_recover_until": -9.056315, "rule_recover_until_parser_": -9.056315, "runtime": -5.272125, "runtime.newNotImplementedError": -9.749462, "runtimeException": -9.056315, "s": -7.446877, "sb": -9.749462, "sb.append": -8.363168, "sb.toString": -9.749462, "schema": -9.056315, "schema.defineAnnotatedMethods": -9.749462, "schemeField": -9.056315, "schemeField.id": -9.749462, "schemeField.type": -8.363168, "schemes": -9.749462, "schemes.get": -9.056315, "schemes.put": -9.056315, "seed": -8.140024, "sequence": -7.957702, "serialVersionUID": -9.749462, "setFeature": -8.363168, "setFieldValue": -9.749462, "setName": -9.749462, "setNameBytes": -9.749462, "setNodes": -9.749462, "setProperty": -8.363168, "setSlaves": -9.749462, "setTitle": -9.056315, "setTitleIsSet": -9.749462, "short": -8.140024, "simple": -8.650850, "simple_": -7.670020, "size": -6.976873, "slaves": -8.650850, "sneakyThrow": -8.650850, "sort": -6.859090, "start": -9.056315, "startElement": -9.056315, "static": -4.307044, "stringOrNil": -9.749462, "string_literal_expression": -8.650850, "struct": -8.363168, "struct.isSetTitle": -9.056315, "struct.setTitleIsSet": -9.056315, "struct.title": -8.140024, "struct.validate": -9.056315, "stylesheet": -9.749462, "stylesheet.defineAnnotatedMethods": -9.749462, "super": -7.803552, "super.clear": -9.749462, "super.mergeFrom": -9.749462, "super.startElement": -9.056315, "super.writeReplace": -9.749462, "switch": -7.264555, "synchronized": -9.749462, "syntaxError": -9.056315, "t": -6.315475, "t.buf": -9.749462, "t.len": -9.749462, "t.off": -9.749462, "t.sort": -9.749462, "tag": -8.650850, "te": -8.363168, "test": -9.749462, "testee": -9.749462, "testee.equals": -9.749462, "testee.toCharArray": -9.749462, "text": -9.056315, "text.defineAnnotatedMethods": -9.749462, "that": -7.957702, "that.isSetTitle": -9.749462, "that.title": -9.749462, "that_present_title": -8.650850, "this": -6.613968, "this.buf": -9.056315, "this.equals": -9.749462, "this.errorHandler": -9.056315, "this.isSetTitle": -9.749462, "this.len": -9.056315, "this.mergeUnknownFields": -9.749462, "this.off": -9.749462, "this.sort": -9.056315, "this.title": -7.351567, "this.title.equals": -9.749462, "this.unknownFields": -8.363168, "this.zzReader": -9.749462, "this_present_title": -8.650850, "thriftId": -9.056315, "throw": -6.976873, "throws": -6.194114, "title": -7.957702, "tmpMap": -9.056315, "tmpMap.put": -9.749462, "toBuilder": -9.749462, "toString": -9.056315, "to_bitField": -8.650850, "transient": -9.056315, "true": -5.837439, "try": -6.417257, "tryGetCharsetFromHtml": -9.056315, "typeDescriptor": -9.749462, "typeDescriptor.toCharArray": -9.749462, "types": -8.650850, "unknownFields": -8.650850, "unknownFields.build": -9.749462, "unsetTitle": -9.056315, "val": -8.650850, "val.get": -9.749462, "validate": -9.749462, "value": -6.704939, "void": -5.988262, "while": -6.382166, "wrapDocument": -9.749462, "write": -8.363168, "writeObject": -9.749462, "writeReplace": -9.749462, "writeTo": -9.749462, "x": -7.803552, "x.getClass": -9.749462, "xmlAttr": -8.650850, "xmlAttr.clone": -9.749462, "xmlCdata": -8.650850, "xmlCdata.clone": -9.749462, "xmlComment": -8.650850, "xmlComment.clone": -9.749462, "xmlDocument": -8.140024, "xmlDocument.clone": -9.749462, "xmlDocument.defineAnnotatedMethods": -9.749462, "xmlDocumentFragment": -8.650850, "xmlDocumentFragment.clone": -9.749462, "xmlDtd": -8.650850, "xmlDtd.clone": -9.749462, "xmlElement": -8.650850, "xmlElement.clone": -9.749462, "xmlElementDecl": -8.650850, "xmlElementDecl.clone": -9.749462, "xmlEntityRef": -8.650850, "xmlEntityRef.clone": -9.749462, "xmlModule": -7.803552, "xmlModule.defineClassUnder": -6.613968, "xmlModule.defineModuleUnder": -9.749462, "xmlNamespace": -8.650850, "xmlNamespace.clone": -9.749462, "xmlNode": -8.140024, "xmlNode.clone": -9.749462, "xmlNodeSet": -8.140024, "xmlNodeSet.clone": -9.749462, "xmlNodeSet.setNodes": -9.749462, "xmlProcessingInstruction": -8.650850, "xmlProcessingInstruction.clone": -9.749462, "xmlReader": -8.140024, "xmlReader.clone": -9.749462, "xmlRelaxng": -8.650850, "xmlRelaxng.clone": -9.749462, "xmlSaxModule": -8.650850, "xmlSaxModule.defineClassUnder": -9.056315, "xmlSaxParserContext": -8.140024, "xmlSaxParserContext.clone": -9.749462, "xmlSaxParserContext.defineAnnotatedMethods": -9.749462, "xmlSaxPushParser": -9.749462, "xmlSaxPushParser.defineAnnotatedMethods": -9.749462, "xmlSchema": -8.650850, "xmlSchema.clone": -9.749462, "xmlSyntaxError": -8.363168, "xmlSyntaxError.clone": -9.749462, "xmlSyntaxError.defineAnnotatedMethods": -9.749462, "xmlText": -8.650850, "xmlText.clone": -9.749462, "xmlXpathContext": -8.650850, "xmlXpathContext.clone": -9.749462, "xpathContext": -9.749462, "xpathContext.defineAnnotatedMethods": -9.749462, "xsltModule": -8.650850, "xsltModule.defineAnnotatedMethod": -9.749462, "xsltModule.defineClassUnder": -9.749462, "xsltStylesheet": -8.650850, "xsltStylesheet.clone": -9.749462, "yybegin": -9.056315, "yycharat": -9.749462, "yylength": -8.650850, "yypushback": -9.749462, "yystate": -9.749462, "yytext": -9.749462, "zzAction": -7.957702, "zzAtBOL": -9.056315, "zzAtEOF": -8.363168, "zzAttrL": -9.056315, "zzAttributes": -8.650850, "zzBuffer": -8.363168, "zzBuffer.charAt": -9.749462, "zzBuffer.subSequence": -9.749462, "zzBufferArray": -8.140024, "zzBufferArrayL": -8.140024, "zzBufferL": -9.056315, "zzBufferL.charAt": -9.056315, "zzCMapL": -9.056315, "zzCurrentPos": -7.957702, "zzCurrentPosL": -7.446877, "zzEndRead": -8.363168, "zzEndReadL": -8.650850, "zzForAction": -8.140024, "zzInput": -7.803552, "zzLexicalState": -8.363168, "zzMarkedPos": -7.552237, "zzMarkedPosL": -7.803552, "zzNext": -8.650850, "zzPushbackPos": -9.056315, "zzReader": -9.749462, "zzRefill": -9.056315, "zzRowMapL": -9.056315, "zzScanError": -8.650850, "zzStartRead": -7.552237, "zzState": -7.957702, "zzTransL": -9.056315, "zzUnpackAction": -8.363168, "zzUnpackAttribute": -8.363168, "zzUnpackCMap": -9.056315, "zzUnpackRowMap": -8.363168, "zzUnpackTrans": -8.363168, "{": -3.313311, "|": -7.957702, "||": -7.110405, "}": -3.310111, "~": -9.056315, }, "JavaScript": map[string]float64{ "!": -4.291382, "#": -9.134136, "#*": -11.532032, "$": -6.626757, "%": -8.164736, "&": -9.134136, "&&": -4.486255, "'": -11.532032, "(": -2.417982, ")": -2.422064, "*": -7.269352, "*.": -9.922594, "*/": -10.838885, "*Math.PI": -8.440989, "*at/": -11.532032, "*c": -10.838885, "*d": -11.532032, "*e": -9.452590, "*f": -7.894446, "*h": -10.838885, "*ht": -9.452590, "*k": -10.838885, "*kt": -9.922594, "*lt": -9.334807, "*lt/": -11.532032, "*m": -11.532032, "*n": -11.532032, "*o": -10.838885, "*ot": -10.838885, "*r": -10.145737, "*s": -11.532032, "*st": -11.532032, "*st/": -11.532032, "*t": -6.253917, "*this.pos": -11.532032, "*u": -9.586122, "*ue": -11.532032, "*ut": -9.740272, "*vt": -10.145737, "+": -4.527150, ",": -2.295049, "-": -4.871457, ".": -5.491777, ".*": -9.134136, ".*/g": -11.532032, ".*version": -10.145737, "./g": -10.433419, ".Event": -11.532032, ".EventEmitter": -11.532032, ".FreeList": -11.532032, ".HTTPParser": -11.532032, ".WebkitAppearance": -11.532032, ".addClass": -11.532032, ".addLabel": -11.532032, ".ajax": -11.532032, ".animate": -11.532032, ".append": -11.532032, ".appendChild": -11.532032, ".appendTo": -10.838885, ".apply": -9.740272, ".attributes": -10.838885, ".call": -9.334807, ".checked": -10.433419, ".childNodes": -10.838885, ".childNodes.length": -11.532032, ".cloneNode": -10.145737, ".closest": -9.452590, ".color": -8.967082, ".concat": -10.433419, ".contentWindow": -11.532032, ".css": -11.532032, ".cssText": -11.532032, ".data": -10.433419, ".delegate": -11.532032, ".document": -11.532032, ".each": -10.433419, ".elem": -10.838885, ".enctype": -11.532032, ".end": -11.532032, ".events": -11.532032, ".extend": -11.532032, ".fail": -9.740272, ".fail.apply": -10.433419, ".fillText": -11.532032, ".filter": -11.532032, ".find": -9.740272, ".fire": -11.532032, ".fireEvent": -10.838885, ".fireWith": -11.532032, ".get": -11.532032, ".getContext": -9.134136, ".getElementsByTagName": -11.532032, ".getImageData": -11.532032, ".getRgbaColor": -10.433419, ".getTime": -10.433419, ".handle": -11.532032, ".hasOwnProperty": -11.532032, ".hide": -10.838885, ".import": -11.532032, ".indexOf": -10.838885, ".innerHTML": -11.532032, ".is": -10.838885, ".join": -8.759443, ".lastChild.checked": -10.433419, ".length": -8.164736, ".listen": -11.532032, ".live": -11.532032, ".map": -11.532032, ".marginRight": -11.532032, ".match": -11.532032, ".name": -10.838885, ".namespace": -10.838885, ".net.http.OK": -11.532032, ".nodeName": -10.838885, ".nodeType": -10.433419, ".nodeValue": -11.532032, ".off": -11.532032, ".offsetHeight": -10.838885, ".ok": -11.532032, ".outerHTML": -11.532032, ".ownerDocument": -10.838885, ".parentNode": -10.838885, ".parentNode.removeChild": -10.838885, ".preventDefault": -11.532032, ".progress": -11.532032, ".promise": -9.452590, ".proxy": -11.532032, ".remove": -11.532032, ".replace": -8.396538, ".request.parameters.get": -10.838885, ".response.contentType": -11.532032, ".response.setBody": -11.532032, ".response.statusCode": -11.532032, ".scale": -11.532032, ".scrollLeft": -11.532032, ".scrollTop": -11.532032, ".selected": -11.532032, ".selector": -11.532032, ".show": -10.838885, ".slice": -9.586122, ".sort": -9.229447, ".specified": -11.532032, ".splice": -9.922594, ".split": -8.353978, ".stack": -11.532032, ".start": -9.047125, ".stop": -9.047125, ".style": -11.532032, ".style.display": -10.145737, ".style.textShadow": -11.532032, ".substr": -11.532032, ".substring": -10.838885, ".support.transition": -11.532032, ".test": -10.838885, ".then": -9.922594, ".toFixed": -10.433419, ".toJSON": -10.145737, ".toLowerCase": -9.586122, ".toString": -11.532032, ".toUpperCase": -10.838885, ".translate": -11.532032, ".trigger": -10.433419, ".triggerHandler": -11.532032, ".type": -10.838885, ".type.toLowerCase": -11.532032, ".unbind": -10.145737, ".unload": -11.532032, ".val": -9.334807, ".value": -10.145737, ".width": -9.740272, "/": -5.789029, "/#.*": -11.532032, "/*": -11.532032, "/.exec": -10.145737, "/.test": -9.134136, "//": -10.838885, "//XXX": -11.532032, "//avoid": -11.532032, "//don": -11.532032, "//this.yyleng": -11.532032, "//token": -11.532032, "/alpha": -11.532032, "/bfnrt": -11.532032, "/compatible/.test": -11.532032, "/f": -10.433419, "/g": -8.164736, "/gi": -11.532032, "/href": -11.532032, "/html/": -11.532032, "/http/.test": -11.532032, "/i": -8.587593, "/ig": -10.838885, "/index.html": -11.532032, "/javascript": -11.532032, "/json/": -11.532032, "/k.cur": -11.532032, "/loaded": -11.532032, "/mg": -11.532032, "/msie": -11.532032, "/opacity": -11.532032, "/r": -11.532032, "/radio": -11.532032, "/red/.test": -11.532032, "/src/i.test": -11.532032, "/textarea": -11.532032, "/top/.test": -10.433419, "/u": -10.433419, "/usr/bin/env": -10.838885, "/xml/": -11.532032, "0": -6.831551, "000": -10.145737, "0px": -11.532032, "1": -7.269352, "11": -11.532032, "1E8": -11.532032, "1e8": -11.532032, "1px": -9.452590, "2": -9.229447, "20": -10.838885, "3": -10.145737, "4": -10.433419, "5": -11.532032, "512": -11.532032, "8": -10.838885, "9": -11.532032, ":": -3.806260, ";": -3.259972, "<": -6.093952, "<!doctype>": -11.532032, "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": -11.532032, "<([\\w:]+)[^>": -11.532032, "<(\\w+)\\s*\\/?>": -10.145737, "<-->": -10.838885, "</:nav>": -11.532032, "</a>": -9.740272, "</body>": -11.532032, "</colgroup>": -10.838885, "</div>": -8.823982, "</fieldset>": -10.838885, "</g,>": -11.532032, "</html>": -11.532032, "</map>": -10.838885, "</p>": -10.838885, "</select>": -10.838885, "</style>": -10.838885, "</table>": -8.641660, "</tbody>": -9.740272, "</td>": -9.334807, "</tr>": -9.452590, "</xyz>": -11.532032, "<:nav>": -11.532032, "<<": -10.838885, "<ZWJ>": -11.532032, "<ZWNJ>": -11.532032, "<[\\w\\W]+>": -10.433419, "<\\/script>": -10.838885, "<a>": -9.740272, "<b.length;j++)for(var>": -11.532032, "<b;a++){var>": -10.838885, "<body>": -11.532032, "<colgroup>": -10.838885, "<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else>": -11.532032, "<d;c++){var>": -11.532032, "<d;j++){var>": -11.532032, "<div>": -8.641660, "<e;d++)if(this[d].style){var>": -11.532032, "<e?e:n>": -9.922594, "<endpoint>": -11.532032, "<f.length;n++)if(a>": -11.532032, "<f;c++)d.push(a[c]);else>": -11.532032, "<f;d++){var>": -11.532032, "<f;e++){var>": -11.532032, "<f?f:n>": -10.433419, "<fieldset>": -10.838885, "<ft.length;c++)if(e>": -11.532032, "<ft.length;c++)if(o>": -11.532032, "<h;g++)k(a,f[g],d);return>": -11.532032, "<h;g++){var>": -10.838885, "<h?h:n>": -9.922594, "<hanaserveradress>": -11.532032, "<html>": -10.145737, "<i;h++){var>": -10.433419, "<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return>": -11.532032, "<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return>": -11.532032, "<iframe>": -11.532032, "<ii.length;t++)if(n>": -11.532032, "<input>": -9.740272, "<j;e++){var>": -10.838885, "<j;i++)f.event.add(this[i],a,g,d);return>": -11.532032, "<l?l:n>": -10.838885, "<link/>": -10.433419, "<m;l++)d.call(c?bh(this[l],g):this[l],e.cacheable||m>": -11.532032, "<m;l++)h.push(g[l]);else>": -11.532032, "<map>": -10.838885, "<mihai.bazon@gmail.com>": -10.838885, "<o;j++)c.event.add(this[j],d,i,f)}return>": -11.532032, "<p;q++)k(g,h[q],l);return>": -11.532032, "<p>": -10.838885, "<path>": -11.532032, "<q;m++){var>": -11.532032, "<r;i++)bm(k[i]);else>": -11.532032, "<r;n++)d.call(b?f(this[n],j):this[n],n>": -11.532032, "<script(.|\\s)*?\\/script>": -11.532032, "<select>": -10.838885, "<startSymbol>": -10.838885, "<style>": -10.433419, "<svg/>": -11.532032, "<table>": -8.536299, "<tag>": -11.532032, "<tbody>": -9.740272, "<td>": -9.334807, "<to>": -11.532032, "<tr>": -9.452590, "<u?u:n>": -9.922594, "<v;p++){var>": -11.532032, "<xsengineport(usually>": -11.532032, "<|^(?:button|form|map|select|textarea|object|iframe|option|optgroup)$/i;>": -11.532032, "=": -2.398680, ">": -6.787100, "?": -4.628285, "@": -11.532032, "@cc_on/i.test": -11.532032, "@memberOf": -11.532032, "@type": -11.532032, "A": -8.487509, "A.": -10.838885, "A.JSON": -11.532032, "A.JSON.parse": -10.838885, "A.addEventListener": -11.532032, "A.attachEvent": -11.532032, "A.call": -11.532032, "A.document": -11.532032, "A.event": -11.532032, "A.frameElement": -11.532032, "A.jQuery": -10.838885, "ACCESS": -9.586122, "ADD": -11.532032, "ADVANCED": -9.452590, "API": -10.433419, "ASSIGN": -11.532032, "ASSIGNMENT": -10.433419, "ATOMIC_START_TOKEN": -10.433419, "ATTR": -10.433419, "Aa": -10.433419, "Ab": -11.532032, "ActiveXObject": -11.532032, "Agent": -10.433419, "Agent.defaultMaxSockets": -11.532032, "Agent.prototype.addRequest": -11.532032, "Agent.prototype.defaultPort": -11.532032, "Agent.prototype.removeSocket": -11.532032, "Also": -11.532032, "Animal": -9.047125, "Animal.name": -11.532032, "Animal.prototype.move": -10.838885, "Array": -9.740272, "Array.isArray": -10.433419, "Array.prototype.indexOf": -10.145737, "Array.prototype.last": -11.532032, "Array.prototype.push": -10.145737, "Array.prototype.slice": -9.922594, "Array.prototype.slice.call": -10.838885, "Authentication": -11.532032, "B": -8.536299, "B.call": -10.433419, "Ba": -10.838885, "Ba.test": -10.838885, "Backbone.Collection.prototype": -11.532032, "Backbone.Events": -10.838885, "Backbone.History": -10.838885, "Backbone.History.prototype": -11.532032, "Backbone.Router": -11.532032, "Backbone.Router.prototype": -11.532032, "Backbone.View.prototype": -11.532032, "Backbone.emulateHTTP": -11.532032, "Backbone.emulateJSON": -10.838885, "Backbone.history": -10.838885, "Backbone.history.navigate": -11.532032, "Backbone.history.route": -11.532032, "Backbone.sync": -11.532032, "Bad": -11.532032, "Bandwidth": -11.532032, "BeginToken": -8.823982, "Boolean": -10.838885, "Boolean.prototype.toJSON": -11.532032, "Buffer.byteLength": -11.532032, "Buffer.isBuffer": -11.532032, "C": -9.229447, "C.apply": -11.532032, "C.call": -11.532032, "C=": -11.532032, "CHILD": -11.532032, "CLASS": -10.838885, "COMPILED": -11.532032, "COPY": -11.532032, "CR": -10.838885, "CRLF": -9.047125, "Ca": -10.838885, "Ca=": -11.532032, "Can": -10.838885, "CategoryExpenseDataSource": -11.532032, "CategoryMonthlyAccumulated": -11.532032, "CategoryMonthlyExpenseBarChartDataSource": -11.532032, "CategoryMonthlyWithMeanExpenseDataSource": -11.532032, "Charts.ChartType.AREA": -11.532032, "Charts.ChartType.COLUMN": -10.838885, "Charts.ChartType.LINE": -11.532032, "Charts.ChartType.PIE": -11.532032, "Client": -10.145737, "Client.prototype.request": -11.532032, "ClientRequest": -10.838885, "ClientRequest.prototype._deferToConnect": -11.532032, "ClientRequest.prototype.onSocket": -11.532032, "Clone": -11.532032, "Collection": -11.532032, "Color": -10.433419, "Connection": -10.838885, "Count": -11.532032, "D": -10.145737, "D.apply": -11.532032, "D.call": -10.145737, "D/g": -11.532032, "DELETE": -11.532032, "DIV": -11.532032, "DOMContentLoaded": -9.134136, "DOMParser": -11.532032, "DTRACE_HTTP_CLIENT_REQUEST": -11.532032, "DTRACE_HTTP_CLIENT_RESPONSE": -11.532032, "DTRACE_HTTP_SERVER_RESPONSE": -11.532032, "Da": -10.433419, "Da=": -11.532032, "Date": -9.334807, "Date.prototype.toJSON": -10.838885, "Dean": -11.532032, "Deferred": -9.922594, "Dependency": -11.532032, "Detect": -10.838885, "DocumentTouch": -11.532032, "DriveApp.createFolder": -11.532032, "DriveApp.getFoldersByName": -11.532032, "E": -9.047125, "E.call": -11.532032, "E=": -11.532032, "END_OF_FILE": -10.838885, "EOF": -10.433419, "ERROR": -9.922594, "ERROR_RECOVERY_TOKEN_DISCARD_COUNT": -11.532032, "EXTERNAL": -9.586122, "EX_EOF": -10.145737, "Ea": -10.433419, "Edwards": -11.532032, "Ee": -11.532032, "Encoding": -11.532032, "Entity": -11.532032, "Error": -9.134136, "Error.captureStackTrace": -11.532032, "Error.hasOwnProperty": -11.532032, "Error.prototype": -10.433419, "Event": -9.740272, "EventEmitter": -10.433419, "Exceeded": -11.532032, "Extended": -11.532032, "F": -8.967082, "F.call": -11.532032, "F.prototype": -11.532032, "Fa": -10.433419, "Failed": -11.532032, "Fields": -11.532032, "FreeList": -10.838885, "Function": -10.145737, "Function.prototype.bind": -10.838885, "G": -8.641660, "G=": -11.532032, "GET": -10.838885, "Ga": -11.532032, "Ga=": -11.532032, "Gateway": -10.838885, "H": -9.134136, "HEAD": -11.532032, "HOP": -8.759443, "HTTP": -11.532032, "HTTP/": -10.838885, "HTTPParser": -10.838885, "HTTPParser.REQUEST": -11.532032, "HTTPParser.RESPONSE": -11.532032, "Ha": -11.532032, "Ha=": -11.532032, "Header": -11.532032, "Helper": -11.532032, "Horse": -9.047125, "Horse.__super__.constructor.apply": -10.838885, "Horse.__super__.move.call": -10.838885, "Horse.name": -11.532032, "Horse.prototype.move": -10.838885, "I": -9.740272, "I.beforeactivate": -11.532032, "I.focus": -11.532032, "IDENTIFIER": -11.532032, "IE": -10.838885, "INITIAL": -11.532032, "INTERNAL": -9.334807, "Ia": -10.838885, "Ia=": -11.532032, "Implemented": -11.532032, "Infinity": -11.532032, "Insufficient": -11.532032, "Internal": -11.532032, "Invalid": -10.838885, "J": -9.229447, "JSON": -10.433419, "JSON.parse": -11.532032, "JSON.stringify": -10.433419, "JS_Parse_Error": -10.838885, "JS_Parse_Error.prototype.toString": -11.532032, "JisonLexerError": -9.740272, "JisonLexerError.prototype": -10.838885, "JisonLexerError.prototype.constructor": -11.532032, "JisonLexerError.prototype.name": -11.532032, "K": -9.922594, "K.call": -10.838885, "KEYPATH_SPLITTER": -10.838885, "KEYWORDS": -10.433419, "KEYWORDS_ATOM": -10.433419, "KEYWORDS_BEFORE_EXPRESSION": -10.838885, "L": -9.229447, "LBRACE": -11.532032, "LF": -10.838885, "Large": -11.532032, "Lexical": -11.532032, "Limit": -10.433419, "Locked": -11.532032, "M": -10.433419, "M=": -10.838885, "MAY": -10.838885, "MULT": -11.532032, "MUST": -11.532032, "Many": -11.532032, "Math": -10.838885, "Math.PI": -8.759443, "Math.PI*": -11.532032, "Math.PI*.": -10.838885, "Math.PI/": -7.543048, "Math.abs": -8.536299, "Math.ceil": -7.388897, "Math.cos": -11.532032, "Math.floor": -7.868470, "Math.log": -11.532032, "Math.max": -9.334807, "Math.min": -9.586122, "Math.random": -11.532032, "Math.round": -9.452590, "Math.sqrt": -10.838885, "Modal": -10.838885, "Modal.prototype": -11.532032, "Modernizr": -10.145737, "Modernizr._cssomPrefixes": -11.532032, "Modernizr._domPrefixes": -11.532032, "Modernizr._prefixes": -11.532032, "Modernizr._version": -11.532032, "Modernizr.hasEvent": -11.532032, "Modernizr.mq": -11.532032, "Modernizr.testAllProps": -11.532032, "Modernizr.testProp": -11.532032, "Modernizr.testStyles": -11.532032, "MonthTotalsPerTags": -10.145737, "MonthTotalsPerTags.getDatasource": -11.532032, "MonthTotalsPerTags.getType": -11.532032, "N": -10.433419, "NAME": -10.838885, "NO_ACTION": -11.532032, "Namespace": -10.838885, "Namespace.prototype": -11.532032, "Negative": -11.532032, "Negotiates": -11.532032, "Network": -11.532032, "NodeWithToken": -10.433419, "NodeWithToken.prototype.toString": -11.532032, "Not": -10.433419, "Note": -11.532032, "Number": -11.532032, "Number.prototype.toJSON": -11.532032, "O": -8.967082, "OK": -11.532032, "ONLY": -8.396538, "OPERATORS": -10.145737, "OPERATOR_CHARS": -10.838885, "Object": -10.838885, "Object.create": -11.532032, "Object.defineProperty": -10.433419, "Object.keys": -10.433419, "Object.prototype.hasOwnProperty": -9.740272, "Object.prototype.hasOwnProperty.call": -11.532032, "Object.prototype.toString": -9.922594, "Object.setPrototypeOf": -10.838885, "On": -11.532032, "OutgoingMessage": -11.532032, "OutgoingMessage.call": -11.532032, "OutgoingMessage.prototype._finish": -11.532032, "OutgoingMessage.prototype._flush": -11.532032, "OutgoingMessage.prototype.addTrailers": -11.532032, "OutgoingMessage.prototype.end": -11.532032, "OutgoingMessage.prototype.getHeader": -11.532032, "OutgoingMessage.prototype.removeHeader": -11.532032, "OutgoingMessage.prototype.write": -11.532032, "P": -10.433419, "P.browser": -10.838885, "P.version": -11.532032, "P=": -11.532032, "PEG.parser": -11.532032, "PI": -11.532032, "POS": -11.532032, "PRECEDENCE": -10.433419, "PSEUDO": -11.532032, "PUNC_BEFORE_EXPRESSION": -10.838885, "PUNC_CHARS": -10.838885, "PUT": -11.532032, "Precondition": -11.532032, "Props": -11.532032, "PullRequest": -11.532032, "PullRequest.prototype": -11.532032, "PullRequest.prototype.read": -11.532032, "PullRequest.prototype.write": -11.532032, "Q": -9.922594, "Q.push": -11.532032, "Qa": -11.532032, "R": -11.532032, "R.apply": -11.532032, "R.call": -10.838885, "RBRACE": -11.532032, "RE": -11.532032, "READ": -9.586122, "REGEXP_MODIFIERS": -11.532032, "RESERVED_WORDS": -10.838885, "RE_DEC_NUMBER": -11.532032, "RE_DEC_NUMBER.test": -11.532032, "RE_HEX_NUMBER": -11.532032, "RE_HEX_NUMBER.test": -11.532032, "RE_OCT_NUMBER": -11.532032, "RE_OCT_NUMBER.test": -11.532032, "Ra": -10.433419, "Range": -11.532032, "RegExp": -9.047125, "RegExp.": -11.532032, "Request": -11.532032, "Requests": -11.532032, "Required": -10.433419, "S": -9.229447, "S.col": -10.433419, "S.comments_before": -10.838885, "S.comments_before.push": -10.838885, "S.in_function": -10.433419, "S.in_loop": -9.740272, "S.input": -10.433419, "S.input.context": -11.532032, "S.labels": -11.532032, "S.labels.pop": -11.532032, "S.labels.push": -11.532032, "S.line": -10.145737, "S.newline_before": -10.145737, "S.peek": -11.532032, "S.peeked": -9.740272, "S.pos": -9.229447, "S.prev": -10.838885, "S.regex_allowed": -9.922594, "S.test": -11.532032, "S.text.charAt": -10.838885, "S.text.indexOf": -11.532032, "S.text.length": -11.532032, "S.text.substr": -11.532032, "S.text.substring": -10.838885, "S.tokcol": -10.433419, "S.token": -9.134136, "S.token.nlb": -11.532032, "S.token.type": -9.452590, "S.token.value": -8.536299, "S.tokline": -10.433419, "S.tokpos": -10.433419, "S/": -10.145737, "SEMICOLON": -11.532032, "SHEBANG#!node": -10.838885, "START_TO_END": -11.532032, "STATEMENTS_WITH_LABELS": -10.838885, "STATUS_CODES": -10.838885, "SUB": -11.532032, "Sa": -10.433419, "SavingsFlowChartComposer": -10.433419, "SavingsFlowChartComposer.getDatasource": -11.532032, "SavingsFlowChartComposer.getType": -11.532032, "SavingsFlowDataSource": -11.532032, "Server": -11.532032, "ServerResponse": -10.145737, "ServerResponse.prototype._implicitHeader": -11.532032, "ServerResponse.prototype.assignSocket": -11.532032, "ServerResponse.prototype.detachSocket": -11.532032, "ServerResponse.prototype.statusCode": -11.532032, "ServerResponse.prototype.writeContinue": -11.532032, "ServerResponse.prototype.writeHead": -11.532032, "Service": -11.532032, "Sizzle": -11.532032, "Sizzle.isXML": -11.532032, "Snake": -9.047125, "Snake.__super__.constructor.apply": -10.838885, "Snake.__super__.move.call": -10.838885, "Snake.name": -11.532032, "Snake.prototype.move": -10.838885, "Storage": -11.532032, "String": -10.838885, "String.fromCharCode": -10.838885, "String.prototype.toJSON": -11.532032, "String.prototype.trim": -10.433419, "Syntax": -10.433419, "T": -10.145737, "T.find": -11.532032, "T.ready": -11.532032, "TAG": -10.838885, "TERROR": -10.838885, "TEXT": -9.922594, "TEXT.replace": -11.532032, "Ta": -10.838885, "Ta.exec": -11.532032, "TagsAccumulatedPerMonth": -10.145737, "TagsAccumulatedPerMonth.getDatasource": -11.532032, "TagsAccumulatedPerMonth.getType": -11.532032, "TagsTotalPerMonth": -10.145737, "TagsTotalPerMonth.getDatasource": -11.532032, "TagsTotalPerMonth.getType": -11.532032, "TagsTotalPerMonthWithMean": -10.145737, "TagsTotalPerMonthWithMean.getDatasource": -11.532032, "TagsTotalPerMonthWithMean.getType": -11.532032, "The": -11.532032, "These": -11.532032, "This": -11.532032, "Thrift.Type.STOP": -11.532032, "Thrift.Type.STRING": -10.838885, "Time": -11.532032, "Too": -10.838885, "Transfer": -11.532032, "Tween": -9.334807, "Tween.elasticEaseOut": -11.532032, "Tween.regularEaseInOut": -9.452590, "TypeError": -10.838885, "U": -11.532032, "U=": -11.532032, "UNARY_POSTFIX": -10.433419, "UNARY_PREFIX": -10.838885, "UNICODE": -11.532032, "UNICODE.connector_punctuation.test": -11.532032, "UNICODE.letter.test": -11.532032, "UNICODE.non_spacing_mark.test": -11.532032, "UNICODE.space_combining_mark.test": -11.532032, "USE": -8.698818, "Ua": -10.838885, "Unavailable": -11.532032, "Unordered": -11.532032, "Unprocessable": -11.532032, "Upgrade": -11.532032, "Userland": -11.532032, "VALUE": -10.145737, "Va": -11.532032, "Va.test": -11.532032, "Variant": -11.532032, "Version": -11.532032, "W": -10.433419, "W/": -11.532032, "WHITESPACE_CHARS": -10.838885, "Wa": -10.838885, "We": -11.532032, "WebSocketServer": -11.532032, "When": -10.433419, "X": -10.145737, "Xa": -11.532032, "Xa.exec": -11.532032, "Y": -9.740272, "YYSTATE": -11.532032, "YY_START": -10.838885, "Ya": -10.838885, "You": -11.532032, "Z": -9.334807, "Z.exec": -11.532032, "Z.test": -11.532032, "Za": -10.433419, "[": -4.208861, "\\": -5.381429, "]": -4.215484, "^": -6.728011, "_": -9.134136, "_.bind": -11.532032, "_.bindAll": -11.532032, "_.each": -11.532032, "_.exec": -11.532032, "_.extend": -9.452590, "_.isRegExp": -11.532032, "_.reduce": -11.532032, "_.toArray": -11.532032, "_Deferred": -10.433419, "__": -11.532032, "__className__": -10.145737, "__currentRuleSet__": -10.433419, "__decompressed": -11.532032, "__error_infos": -10.433419, "__extends": -9.740272, "__hasProp": -10.838885, "__hasProp.call": -10.838885, "__slice": -10.838885, "__slice.call": -10.838885, "_backtrack": -10.433419, "_bindRoutes": -11.532032, "_context": -11.532032, "_currentRules": -11.532032, "_data": -10.145737, "_default": -10.145737, "_extractParameters": -11.532032, "_fired": -9.922594, "_i": -9.229447, "_id": -11.532032, "_input": -9.229447, "_jQuery": -10.145737, "_keypaths": -10.433419, "_len": -9.740272, "_mark": -10.838885, "_more": -10.145737, "_onModelEvent": -11.532032, "_removeReference": -11.532032, "_results": -9.740272, "_results.push": -10.838885, "_routeToRegExp": -11.532032, "_signaled_error_token": -10.433419, "_super": -10.145737, "_toggle": -10.433419, "_unmark": -10.838885, "_walk": -11.532032, "`": -10.838885, "a": -4.135083, "a*Math.PI": -11.532032, "a.": -10.145737, "a.ActiveXObject": -10.433419, "a.DOMParser": -11.532032, "a.JSON": -11.532032, "a.JSON.parse": -10.838885, "a.String": -11.532032, "a.XMLHttpRequest": -11.532032, "a.addEventListener": -9.740272, "a.appendChild": -10.145737, "a.apply": -10.838885, "a.attachEvent": -9.452590, "a.attributes.value": -11.532032, "a.button": -9.229447, "a.cache": -10.838885, "a.cacheable": -11.532032, "a.call": -9.047125, "a.cancelBubble": -10.838885, "a.charAt": -10.838885, "a.charCode": -9.586122, "a.checked": -9.740272, "a.className": -11.532032, "a.clientX": -10.145737, "a.clientY": -10.838885, "a.cloneNode": -10.838885, "a.constructor": -10.838885, "a.constructor.prototype": -10.838885, "a.contents": -11.532032, "a.context": -10.838885, "a.converters": -10.433419, "a.crossDomain": -10.838885, "a.ctrlKey": -10.145737, "a.currentStyle": -10.145737, "a.currentStyle.filter": -11.532032, "a.currentStyle.left": -11.532032, "a.currentTarget": -9.740272, "a.data": -9.586122, "a.dataFilter": -10.838885, "a.dataType": -11.532032, "a.dataTypes": -10.838885, "a.defaultChecked": -11.532032, "a.defaultPrevented": -11.532032, "a.defaultSelected": -11.532032, "a.defaultValue": -11.532032, "a.defaultView": -10.838885, "a.detachEvent": -10.145737, "a.document": -10.838885, "a.done": -11.532032, "a.elem": -10.838885, "a.elem.style": -10.433419, "a.eval.call": -11.532032, "a.event": -11.532032, "a.exclusive": -10.838885, "a.execScript": -11.532032, "a.fireEvent": -11.532032, "a.firstChild": -10.433419, "a.firstChild.nodeType": -11.532032, "a.fn": -10.838885, "a.fn.constructor": -11.532032, "a.fn.init": -10.838885, "a.fn.init.prototype": -11.532032, "a.fragment": -11.532032, "a.fragment.cloneNode": -11.532032, "a.frameElement": -10.838885, "a.fromElement": -9.740272, "a.getAttribute": -9.334807, "a.getAttributeNode": -9.586122, "a.getElementsByTagName": -9.229447, "a.getPreventDefault": -10.838885, "a.global": -11.532032, "a.guid": -10.145737, "a.handleObj": -10.433419, "a.handler": -11.532032, "a.handler.guid": -11.532032, "a.href": -10.838885, "a.indexOf": -10.838885, "a.innerHTML": -9.922594, "a.insertBefore": -10.838885, "a.isDefaultPrevented": -11.532032, "a.isImmediatePropagationStopped": -10.838885, "a.isPropagationStopped": -10.838885, "a.isResolved": -11.532032, "a.jQuery": -10.145737, "a.join": -10.838885, "a.jquery": -11.532032, "a.keyCode": -9.229447, "a.length": -8.353978, "a.liveFired": -10.145737, "a.location": -11.532032, "a.medium.getHexColor": -10.838885, "a.metaKey": -10.145737, "a.mimeType": -11.532032, "a.mozRequestAnimationFrame": -11.532032, "a.namespace": -11.532032, "a.namespace.split": -11.532032, "a.navigator": -11.532032, "a.nodeName": -9.047125, "a.nodeName.toLowerCase": -10.145737, "a.nodeName.toUpperCase": -10.838885, "a.nodeType": -8.236195, "a.now": -10.145737, "a.oRequestAnimationFrame": -11.532032, "a.offsetHeight": -10.838885, "a.offsetLeft": -11.532032, "a.offsetParent": -11.532032, "a.offsetTop": -10.838885, "a.offsetWidth": -9.740272, "a.options": -10.433419, "a.origType": -10.145737, "a.origType.replace": -11.532032, "a.outerHTML": -11.532032, "a.ownerDocument.createElement": -11.532032, "a.ownerDocument.defaultView": -11.532032, "a.ownerDocument.documentElement": -11.532032, "a.pageX": -10.145737, "a.pageY": -10.838885, "a.parentNode": -9.922594, "a.parentNode.nodeType": -10.838885, "a.parentWindow": -10.838885, "a.preventDefault": -9.452590, "a.promise": -11.532032, "a.prop": -9.922594, "a.prototype": -11.532032, "a.push": -9.047125, "a.querySelectorAll": -11.532032, "a.relatedTarget": -9.452590, "a.removeAttribute": -10.433419, "a.removeAttributeNode": -11.532032, "a.removeChild": -10.838885, "a.removeEventListener": -10.433419, "a.replace": -9.922594, "a.responseFields": -11.532032, "a.responseText": -11.532032, "a.result": -10.145737, "a.returnValue": -10.433419, "a.runtimeStyle": -10.838885, "a.runtimeStyle.left": -10.838885, "a.scriptCharset": -10.838885, "a.selected": -11.532032, "a.selectedIndex": -9.740272, "a.selector": -9.586122, "a.setAttribute": -9.586122, "a.setInterval": -10.433419, "a.shift": -11.532032, "a.slice": -10.145737, "a.splice": -10.838885, "a.split": -10.838885, "a.srcElement": -10.838885, "a.stopPropagation": -9.740272, "a.style": -9.334807, "a.style.cssText": -10.433419, "a.style.cssText.toLowerCase": -11.532032, "a.style.display": -10.433419, "a.style.filter": -11.532032, "a.style.marginRight": -11.532032, "a.style.opacity": -11.532032, "a.style.paddingLeft": -11.532032, "a.style.position": -11.532032, "a.style.width": -11.532032, "a.style.zoom": -11.532032, "a.sub": -11.532032, "a.superclass": -11.532032, "a.target": -8.396538, "a.target.disabled": -11.532032, "a.target.nodeType": -10.838885, "a.target.ownerDocument": -11.532032, "a.target.parentNode": -10.838885, "a.test": -10.838885, "a.text": -11.532032, "a.toElement": -10.838885, "a.toLowerCase": -10.145737, "a.type": -8.130834, "a.type.indexOf": -11.532032, "a.type.split": -11.532032, "a.unit": -11.532032, "a.url": -11.532032, "a.value": -9.229447, "a.webkitRequestAnimationFrame": -11.532032, "a.which": -9.452590, "a=": -8.641660, "aa": -11.532032, "aa.call": -10.433419, "ab": -11.532032, "ab.test": -11.532032, "able": -11.532032, "abort": -10.433419, "about": -11.532032, "accept": -10.145737, "acceptData": -10.838885, "accepts": -10.838885, "access": -10.433419, "accomplish": -11.532032, "account": -10.838885, "action": -8.759443, "active": -11.532032, "ad": -11.532032, "add": -8.823982, "addClass": -10.145737, "addEventListener": -10.838885, "add_tokens": -10.838885, "added": -11.532032, "advance": -11.532032, "ae": -10.838885, "af": -9.922594, "after": -10.145737, "after_e": -9.922594, "against": -11.532032, "ai": -8.396538, "ai.getContext": -10.838885, "ai.height": -11.532032, "ai.width": -11.532032, "ai/": -10.838885, "ajax": -10.838885, "ajaxPrefilter": -11.532032, "ajaxSettings": -11.532032, "ajaxSetup": -11.532032, "ajaxTransport": -11.532032, "alert": -9.334807, "alive": -11.532032, "all": -9.134136, "allow": -11.532032, "allow_calls": -9.047125, "allow_empty": -10.838885, "allow_trailing_comma": -10.838885, "alone": -11.532032, "already": -11.532032, "altKey": -10.838885, "always": -9.922594, "an": -10.433419, "and": -8.892974, "angle": -11.532032, "angular": -11.532032, "angular.module": -11.532032, "animate": -9.586122, "animatedProperties": -10.838885, "anticipation": -11.532032, "any": -9.586122, "api": -11.532032, "app": -10.145737, "app.get": -11.532032, "app.use": -11.532032, "appends": -11.532032, "applet": -10.838885, "apply": -9.586122, "ar": -8.536299, "ar.drawImage": -11.532032, "archiveLabel": -10.838885, "are": -10.433419, "area": -11.532032, "argIndex": -10.145737, "argLength": -10.838885, "args": -7.794362, "args.concat": -10.433419, "args.length": -10.145737, "args.title": -10.838885, "arguments": -6.936912, "arguments.length": -8.641660, "arguments_": -11.532032, "array": -10.433419, "array.length": -11.532032, "array_": -10.838885, "array_to_hash": -8.759443, "as": -7.818460, "as_name": -10.145737, "as_property_name": -10.838885, "ascii": -11.532032, "assert": -9.586122, "ast": -10.145737, "async": -9.740272, "at": -7.580788, "at.drawImage": -11.532032, "at.getContext": -10.838885, "at.getImageData": -11.532032, "at.height": -11.532032, "at.width": -11.532032, "at/": -10.838885, "at/kt": -11.532032, "at/yt": -10.145737, "at/yt*h": -11.532032, "at/yt*t": -11.532032, "atof": -10.145737, "atom": -10.838885, "attach": -11.532032, "attachEvent": -10.433419, "attempt": -11.532032, "attr": -9.740272, "attr.length": -11.532032, "attrChange": -10.838885, "attrFix": -11.532032, "attrFn": -10.145737, "attrHandle": -11.532032, "attrHooks": -10.838885, "attrMap": -11.532032, "attrName": -10.838885, "attrs": -10.145737, "attrs.id": -11.532032, "attrs.list": -11.532032, "au": -9.229447, "authenticate": -11.532032, "auto": -11.532032, "autofocus": -11.532032, "autoplay": -11.532032, "avoiding_name_collisions": -10.433419, "await": -10.838885, "axios": -11.532032, "axios.get": -10.838885, "b": -4.513630, "b*": -11.532032, "b*.": -10.838885, "b.addColorStop": -10.145737, "b.animatedProperties": -10.433419, "b.appendChild": -11.532032, "b.apply": -10.838885, "b.attributes.value": -11.532032, "b.call": -10.145737, "b.cancel": -10.838885, "b.charAt": -11.532032, "b.checked": -11.532032, "b.clearAttributes": -10.838885, "b.clearRect": -11.532032, "b.clientLeft": -11.532032, "b.clientTop": -11.532032, "b.complete.call": -11.532032, "b.contentType": -11.532032, "b.converters": -11.532032, "b.createDocumentFragment": -11.532032, "b.createElement": -11.532032, "b.createTextNode": -10.838885, "b.css": -11.532032, "b.currentStyle": -10.838885, "b.dark": -10.838885, "b.data": -9.922594, "b.dataTypes": -10.838885, "b.defaultChecked": -11.532032, "b.defaultValue": -11.532032, "b.done": -10.838885, "b.done.apply": -11.532032, "b.drawImage": -11.532032, "b.each": -11.532032, "b.easing": -11.532032, "b.elem": -10.838885, "b.events": -10.145737, "b.firstChild": -10.433419, "b.getAttribute": -11.532032, "b.getBoundingClientRect": -11.532032, "b.guid": -10.838885, "b.handle": -10.838885, "b.handle.elem": -10.838885, "b.handler": -11.532032, "b.id": -11.532032, "b.indexOf": -10.838885, "b.innerHTML": -10.433419, "b.insertBefore": -10.838885, "b.jquery": -11.532032, "b.jsonp": -10.433419, "b.jsonpCallback": -10.145737, "b.left": -10.838885, "b.length": -9.452590, "b.light": -10.838885, "b.light.getRgbaColor": -10.433419, "b.mergeAttributes": -10.838885, "b.name": -10.838885, "b.nodeName": -11.532032, "b.nodeName.toLowerCase": -10.433419, "b.nodeType": -10.145737, "b.offset": -11.532032, "b.offsetLeft": -10.838885, "b.offsetParent": -10.838885, "b.offsetTop": -10.838885, "b.options": -11.532032, "b.orig": -10.838885, "b.outerHTML": -11.532032, "b.overflow": -10.838885, "b.ownerDocument": -9.922594, "b.ownerDocument.body": -10.838885, "b.parentNode": -9.586122, "b.parentNode.removeChild": -10.838885, "b.parentNode.selectedIndex": -11.532032, "b.remove": -11.532032, "b.removeAttribute": -10.433419, "b.removeChild": -10.838885, "b.replace": -10.433419, "b.restore": -11.532032, "b.rotate": -11.532032, "b.save": -11.532032, "b.scrollLeft": -10.838885, "b.scrollTop": -10.838885, "b.selected": -11.532032, "b.selectedIndex": -10.838885, "b.slice": -11.532032, "b.specialEasing": -10.838885, "b.specified": -10.838885, "b.split": -10.838885, "b.src": -10.145737, "b.style": -11.532032, "b.test": -11.532032, "b.text": -10.433419, "b.textContent": -10.838885, "b.toFixed": -11.532032, "b.toLowerCase": -10.838885, "b.toUpperCase": -10.433419, "b.top": -10.838885, "b.translate": -10.838885, "b.triggerHandler": -10.838885, "b.type": -8.967082, "b.unshift": -11.532032, "b.url": -10.145737, "b.using.call": -11.532032, "b.value": -9.740272, "b/": -10.433419, "b/vt": -11.532032, "b=": -8.130834, "bA": -10.433419, "bB": -9.586122, "bC": -10.433419, "bD": -9.922594, "bE": -10.838885, "bF": -11.532032, "bF.test": -11.532032, "bG": -10.433419, "bH": -10.838885, "bI": -11.532032, "bI.exec": -11.532032, "bJ": -11.532032, "bJ.test": -11.532032, "bK": -11.532032, "bK.test": -11.532032, "bL": -11.532032, "bL.test": -11.532032, "bM": -10.838885, "bN": -11.532032, "bN.test": -10.838885, "bO": -10.838885, "bP": -11.532032, "bP.test": -11.532032, "bQ": -10.433419, "bR": -10.838885, "bS": -11.532032, "bS.exec": -10.838885, "bT": -10.838885, "bT.apply": -11.532032, "bU": -10.145737, "bV": -10.433419, "bW": -9.922594, "bW.href": -10.838885, "bW.toLowerCase": -11.532032, "bX": -9.452590, "bY": -11.532032, "bZ": -10.433419, "b_": -10.145737, "ba": -10.838885, "ba.apply": -11.532032, "ba.call": -11.532032, "ba.test": -11.532032, "backdrop.call": -11.532032, "background": -7.580788, "backslash": -10.145737, "backtrack_lexer": -10.838885, "backtracking": -11.532032, "backup": -10.145737, "backup.yylloc.range": -11.532032, "bargraphled": -10.433419, "baseHasDuplicate": -10.838885, "bb": -11.532032, "bb.test": -10.838885, "bcatch": -10.145737, "be": -9.586122, "be.test": -11.532032, "been": -9.922594, "beforeactivate": -10.838885, "beforedeactivate": -11.532032, "beforeunload": -10.145737, "begin": -11.532032, "being": -11.532032, "belse": -10.433419, "bf": -9.922594, "bfinally": -10.145737, "bg": -11.532032, "bg._default": -11.532032, "bh": -11.532032, "bi": -8.353978, "bi*.": -10.838885, "bi/": -10.838885, "bi/ur*t": -11.532032, "bigger": -10.433419, "bind": -10.838885, "bindReady": -9.740272, "bindType": -11.532032, "bj": -11.532032, "bk": -11.532032, "bl": -10.433419, "block": -10.145737, "block_": -9.740272, "blur": -9.586122, "bm": -10.838885, "bn": -11.532032, "bo": -10.838885, "bo.test": -11.532032, "bo=": -11.532032, "body": -8.536299, "body.clientLeft": -11.532032, "body.clientTop": -11.532032, "body.scrollLeft": -11.532032, "body.scrollTop": -11.532032, "bodyHead": -10.838885, "bodyOffset": -11.532032, "bodyStyle": -11.532032, "bool": -8.823982, "boolHook": -11.532032, "boolean": -10.433419, "border": -10.838885, "both": -11.532032, "bound": -10.433419, "boxModel": -11.532032, "bp": -11.532032, "bp.test": -11.532032, "bq": -10.433419, "br": -8.487509, "braced": -11.532032, "bracketDelimitedCharacter": -11.532032, "break": -6.619377, "break_cont": -10.433419, "browser": -8.823982, "browserMatch": -10.433419, "browserMatch.browser": -10.838885, "browserMatch.version": -11.532032, "bs": -11.532032, "bs.test": -10.838885, "bt": -7.794362, "bt.getContext": -10.838885, "bt.height": -11.532032, "bt.labelColor": -10.838885, "bt.labelColor.getRgbaColor": -10.838885, "bt.labelColor.setAlpha": -11.532032, "bt.length": -10.145737, "bt.test": -11.532032, "bt.type": -11.532032, "bt.width": -11.532032, "bt/": -11.532032, "bu": -9.047125, "bu.test": -11.532032, "bubble": -11.532032, "bubbles": -10.838885, "buildMessage": -11.532032, "bulk": -10.433419, "button": -8.587593, "bv": -10.433419, "bw": -10.433419, "bx": -10.838885, "by": -9.334807, "bytesParsed": -10.838885, "bz": -9.229447, "c": -4.777428, "c*u": -11.532032, "c.Event": -9.922594, "c.Event.prototype": -11.532032, "c.addClass": -11.532032, "c.addEventListener": -10.145737, "c.ajax": -11.532032, "c.apply": -10.838885, "c.async": -10.145737, "c.attachEvent": -10.433419, "c.attr": -10.145737, "c.attrFn": -11.532032, "c.bindReady": -10.838885, "c.body": -9.922594, "c.body.appendChild": -11.532032, "c.body.removeChild": -11.532032, "c.borderLeftWidth": -10.838885, "c.borderTopWidth": -10.838885, "c.boxModel": -11.532032, "c.browser": -11.532032, "c.browser.safari": -11.532032, "c.browser.version": -11.532032, "c.browser.webkit": -11.532032, "c.cache": -10.433419, "c.call": -10.433419, "c.cancel": -11.532032, "c.charAt": -11.532032, "c.clean": -11.532032, "c.contentType": -11.532032, "c.createDocumentFragment": -11.532032, "c.createElement": -9.134136, "c.crossDomain": -10.433419, "c.currentTarget": -10.838885, "c.data": -8.587593, "c.dataTypes": -11.532032, "c.dataTypes.unshift": -11.532032, "c.defaultView": -10.838885, "c.defaultView.getComputedStyle": -10.433419, "c.dequeue": -10.145737, "c.detachEvent": -11.532032, "c.documentElement": -10.145737, "c.documentElement.currentStyle": -11.532032, "c.documentElement.doScroll": -10.838885, "c.done": -11.532032, "c.each": -9.586122, "c.error": -10.838885, "c.event": -11.532032, "c.event.add": -9.740272, "c.event.fix": -10.838885, "c.event.global": -10.838885, "c.event.handle.apply": -10.145737, "c.event.handle.call": -11.532032, "c.event.remove": -9.740272, "c.event.special": -9.922594, "c.event.special.change": -11.532032, "c.event.special.change.filters": -11.532032, "c.event.special.submit": -11.532032, "c.event.trigger": -10.433419, "c.event.triggered": -10.433419, "c.exclusive": -10.838885, "c.expando": -10.838885, "c.extend": -9.229447, "c.filter": -10.838885, "c.fn": -10.433419, "c.fn.attr.call": -11.532032, "c.fn.extend": -9.922594, "c.fn.init": -11.532032, "c.fn.init.prototype": -11.532032, "c.fn.triggerHandler": -11.532032, "c.fragments": -10.838885, "c.fx": -11.532032, "c.fx.speeds": -11.532032, "c.get": -11.532032, "c.getElementById": -11.532032, "c.getElementsByTagName": -11.532032, "c.getResponseHeader": -11.532032, "c.globalEval": -11.532032, "c.guid": -10.838885, "c.handleObj": -11.532032, "c.handler": -10.838885, "c.hasContent": -11.532032, "c.head": -11.532032, "c.inArray": -10.433419, "c.isArray": -9.740272, "c.isDefaultPrevented": -10.838885, "c.isEmptyObject": -10.433419, "c.isFunction": -9.229447, "c.isImmediatePropagationStopped": -11.532032, "c.isLocal": -11.532032, "c.isPlainObject": -10.433419, "c.isPropagationStopped": -11.532032, "c.isReady": -10.145737, "c.isResolved": -11.532032, "c.isXMLDoc": -11.532032, "c.left": -10.145737, "c.length": -9.922594, "c.liveFired": -11.532032, "c.loadXML": -11.532032, "c.makeArray": -10.145737, "c.map": -10.433419, "c.merge": -10.145737, "c.mimeType": -10.838885, "c.namespace": -10.838885, "c.namespace_re": -11.532032, "c.namespace_re.test": -11.532032, "c.noData": -10.145737, "c.nodeName": -9.922594, "c.noop": -11.532032, "c.on": -11.532032, "c.originalEvent": -11.532032, "c.overflow": -11.532032, "c.password": -11.532032, "c.preventDefault": -10.433419, "c.props": -10.838885, "c.prototype": -11.532032, "c.proxy": -10.838885, "c.queue": -10.433419, "c.ready": -9.586122, "c.readyState": -10.838885, "c.removeClass": -11.532032, "c.removeData": -10.433419, "c.removeEventListener": -10.433419, "c.replace": -10.145737, "c.resolve": -11.532032, "c.resolveWith": -11.532032, "c.result": -9.922594, "c.selector": -11.532032, "c.set": -11.532032, "c.shift": -10.838885, "c.specified": -11.532032, "c.split": -10.838885, "c.stopPropagation": -10.838885, "c.style": -11.532032, "c.support": -10.838885, "c.support.boxModel": -11.532032, "c.support.changeBubbles": -10.838885, "c.support.checkClone": -10.838885, "c.support.checkOn": -11.532032, "c.support.deleteExpando": -10.838885, "c.support.hrefNormalized": -11.532032, "c.support.noCloneEvent": -11.532032, "c.support.scriptEval": -10.838885, "c.support.style": -11.532032, "c.support.submitBubbles": -10.838885, "c.target": -10.433419, "c.target.ownerDocument": -11.532032, "c.toFixed": -10.838885, "c.toLowerCase": -10.145737, "c.top": -10.145737, "c.trim": -10.838885, "c.type": -9.229447, "c.uaMatch": -11.532032, "c.unshift": -11.532032, "c.url": -10.838885, "c.username": -10.838885, "c.value": -11.532032, "c.xhr": -11.532032, "c.xhrFields": -10.433419, "c.zoom": -11.532032, "c/": -10.838885, "c=": -9.134136, "ca": -9.740272, "cache": -8.396538, "cacheable": -10.838885, "caches": -11.532032, "call": -9.134136, "callback": -10.145737, "callback.apply": -11.532032, "callbacks": -10.433419, "callbacks.push": -11.532032, "callbacks.shift": -11.532032, "called": -10.838885, "camelCase": -9.922594, "can": -9.452590, "can_insert_semicolon": -10.145737, "cancel": -9.740272, "cancelable": -10.838885, "cancelled": -10.145737, "carry": -11.532032, "case": -6.384537, "catch": -7.976684, "category": -9.740272, "causing": -11.532032, "cb": -10.145737, "cb.test": -11.532032, "cc": -10.838885, "ccalcLex": -11.532032, "ccalcParse": -10.838885, "ccalcParse.Parser": -11.532032, "ccalcParse.parse.apply": -11.532032, "cd": -10.433419, "cd.test": -10.838885, "ce": -9.740272, "cellpadding": -10.838885, "cellpadding=": -10.433419, "cellspacing": -10.433419, "cellspacing=": -10.433419, "center": -10.145737, "cf": -9.586122, "cg": -9.586122, "ch": -6.822502, "ch.charCodeAt": -10.838885, "ch.length": -11.532032, "ch.split": -11.532032, "ch2": -9.740272, "chainable": -10.145737, "change": -8.892974, "changeBubbles": -9.922594, "changeData": -11.532032, "changed": -11.532032, "char": -10.838885, "charAt": -11.532032, "charCode": -9.740272, "character": -9.452590, "characters": -9.452590, "charset": -11.532032, "check": -11.532032, "checkClone": -10.838885, "checkOn": -10.433419, "checkSet": -11.532032, "checkbox": -10.838885, "checkbox/": -11.532032, "checked": -11.532032, "checked=": -11.532032, "child": -8.892974, "child.__super__": -10.838885, "child.prototype": -10.838885, "child.prototype.constructor": -11.532032, "childNodes": -11.532032, "choice": -10.838885, "chop": -11.532032, "chunk": -9.229447, "chunk.length": -10.838885, "chunked": -11.532032, "ci": -8.199827, "ci.getContext": -11.532032, "ci.height/": -10.838885, "ci.width": -11.532032, "ci/": -10.433419, "circular": -11.532032, "cj": -10.145737, "ck": -9.922594, "ck.contentDocument": -11.532032, "ck.contentWindow": -11.532032, "ck.createElement": -11.532032, "ck.frameBorder": -11.532032, "ck.height": -11.532032, "ck.width": -11.532032, "cl": -10.433419, "cl.body.appendChild": -11.532032, "cl.createElement": -11.532032, "cl.write": -11.532032, "class": -9.047125, "classCharacter": -11.532032, "classCharacterRange": -11.532032, "className": -8.236195, "classes": -11.532032, "classes.slice": -11.532032, "clean": -10.838885, "cleanData": -10.838885, "cleanup": -10.838885, "cleanupAfterLex": -11.532032, "clear": -10.145737, "clearInterval": -9.740272, "clearQueue": -10.838885, "clearTimeout": -10.838885, "click": -9.334807, "click.modal.data": -11.532032, "click/": -11.532032, "clientTop": -10.838885, "clientX": -10.838885, "clientY": -10.838885, "clone": -10.838885, "cloned": -11.532032, "close": -11.532032, "closest": -11.532032, "closing": -10.433419, "cm": -10.838885, "cm.test": -11.532032, "cn": -10.838885, "cn.exec": -11.532032, "co": -9.586122, "code": -9.134136, "col": -9.334807, "collected": -11.532032, "collection": -10.433419, "collection.": -11.532032, "colon": -11.532032, "color": -10.145737, "colspan": -10.433419, "column": -11.532032, "columns": -11.532032, "combo": -11.532032, "commas": -10.433419, "comment": -10.433419, "comments_before": -11.532032, "compareBoundaryPoints": -11.532032, "compareDocumentPosition": -9.229447, "compiler": -11.532032, "complete": -9.229447, "complete/.test": -11.532032, "completed": -11.532032, "completely": -11.532032, "conMarginTop": -11.532032, "cond": -10.838885, "condition": -10.145737, "conditionStack": -10.433419, "conditional": -11.532032, "conditions": -11.532032, "config": -11.532032, "config.output.publicPath": -11.532032, "connection": -11.532032, "connectionListener": -11.532032, "connector_punctuation": -11.532032, "console.error": -10.433419, "console.log": -10.145737, "const": -10.145737, "const_": -10.838885, "constitute": -11.532032, "construct": -11.532032, "constructLexErrorInfo": -11.532032, "construction": -9.922594, "constructor": -9.922594, "constructs": -11.532032, "consumes": -10.838885, "cont": -10.145737, "container": -11.532032, "contains": -9.334807, "content": -10.838885, "contentType": -11.532032, "contenteditable": -10.838885, "contents": -10.838885, "context": -7.725369, "context.nodeType": -10.838885, "context.ownerDocument": -10.838885, "contextXML": -11.532032, "contextmenu": -11.532032, "continue": -8.587593, "continueExpression.test": -11.532032, "controls": -11.532032, "converters": -10.838885, "cookie": -10.838885, "coords": -11.532032, "copy": -9.229447, "copyIsArray": -10.838885, "cors": -11.532032, "cos": -11.532032, "count": -9.452590, "cp": -11.532032, "cp.concat.apply": -11.532032, "cp.slice": -11.532032, "cq": -9.922594, "cr": -8.440989, "cr*.": -11.532032, "cr.drawImage": -10.433419, "crashing": -11.532032, "createDocumentFragment": -11.532032, "createElement": -11.532032, "createHangUpError": -10.433419, "createRange": -10.838885, "created": -10.838885, "croak": -9.334807, "cs": -10.433419, "css": -8.759443, "cssFloat": -9.922594, "cssHooks": -9.922594, "cssNumber": -10.145737, "cssProps": -10.145737, "cssText": -10.838885, "cssText.indexOf": -11.532032, "cssomPrefixes": -10.838885, "cssomPrefixes.join": -11.532032, "ct": -7.976684, "ct*": -10.433419, "ctor": -9.922594, "ctor.prototype": -10.838885, "ctrlKey": -10.145737, "ctx": -11.532032, "ctx.tokcol": -11.532032, "ctx.tokline": -11.532032, "ctx.tokpos": -11.532032, "cu": -8.487509, "cu.setValue": -11.532032, "cube": -10.145737, "cubes": -10.145737, "cur": -8.892974, "cur.disabled": -11.532032, "cur.push": -11.532032, "curAnim": -11.532032, "curCSS": -11.532032, "current": -10.433419, "currentPos": -8.536299, "currentTarget": -10.433419, "curry": -9.740272, "cursor": -10.838885, "custom": -9.922594, "customEvent": -10.838885, "cv": -10.145737, "cw": -11.532032, "cw.test": -11.532032, "cx": -10.838885, "cx.test": -10.838885, "cy": -10.145737, "cycle": -11.532032, "cyclic": -10.433419, "d": -4.802208, "d*": -9.452590, "d*.": -10.838885, "d*a": -11.532032, "d.accepts": -10.433419, "d.always": -11.532032, "d.appendChild": -10.433419, "d.async": -10.838885, "d.attachEvent": -10.838885, "d.beforeSend": -11.532032, "d.beforeSend.call": -11.532032, "d.cache": -11.532032, "d.call": -11.532032, "d.charset": -11.532032, "d.clientLeft": -11.532032, "d.clientTop": -11.532032, "d.cloneNode": -11.532032, "d.complete": -10.838885, "d.contentType": -10.838885, "d.context": -10.838885, "d.crossDomain": -10.838885, "d.data": -9.586122, "d.dataType": -11.532032, "d.dataTypes": -9.922594, "d.detachEvent": -11.532032, "d.drawImage": -10.838885, "d.duration": -9.922594, "d.events": -11.532032, "d.filter": -11.532032, "d.fireEvent": -11.532032, "d.firstChild": -10.838885, "d.firstChild.nodeType": -11.532032, "d.getContext": -10.838885, "d.getElementsByTagName": -9.922594, "d.global": -11.532032, "d.guid": -9.229447, "d.handler": -10.838885, "d.hasContent": -10.433419, "d.headers": -10.838885, "d.height": -10.145737, "d.ifModified": -10.838885, "d.innerHTML": -10.838885, "d.join": -11.532032, "d.jquery": -11.532032, "d.left": -10.838885, "d.length": -9.229447, "d.mimeType": -11.532032, "d.nextSibling.firstChild.firstChild": -11.532032, "d.nodeName": -9.740272, "d.nodeName.toLowerCase": -11.532032, "d.nodeType": -10.838885, "d.nodeValue": -10.433419, "d.old": -10.838885, "d.old.call": -11.532032, "d.onMotionChanged": -10.838885, "d.onload": -10.433419, "d.onreadystatechange": -10.838885, "d.ownerDocument": -10.838885, "d.parentNode": -10.838885, "d.parseFromString": -11.532032, "d.playing": -10.838885, "d.prevObject": -11.532032, "d.processData": -11.532032, "d.promise": -11.532032, "d.push": -10.433419, "d.queue": -11.532032, "d.readOnly": -10.838885, "d.readyState": -10.838885, "d.reject": -11.532032, "d.removeChild": -11.532032, "d.replace": -11.532032, "d.resolve": -11.532032, "d.resolveWith": -11.532032, "d.scrollLeft": -11.532032, "d.scrollTop": -11.532032, "d.selector": -10.145737, "d.shift": -10.433419, "d.slice": -10.433419, "d.src": -11.532032, "d.start": -10.838885, "d.statusCode": -11.532032, "d.step": -11.532032, "d.stop": -10.838885, "d.style": -10.433419, "d.style.display": -9.922594, "d.style.overflow": -11.532032, "d.style.position": -11.532032, "d.text": -11.532032, "d.timeout": -10.838885, "d.toFixed": -11.532032, "d.toLowerCase": -11.532032, "d.top": -10.838885, "d.traditional": -11.532032, "d.type": -9.922594, "d.type.toUpperCase": -11.532032, "d.unshift": -10.838885, "d.url": -9.334807, "d.url.replace": -11.532032, "d.url.toLowerCase": -11.532032, "d.userAgent": -11.532032, "d.width": -10.145737, "d/": -10.433419, "d/ot": -11.532032, "d=": -8.698818, "d_o": -10.838885, "da": -11.532032, "da.test": -10.433419, "da=": -11.532032, "data": -7.201298, "data.length": -11.532032, "dataAttr": -10.433419, "dataType": -9.922594, "date": -10.433419, "datetime": -11.532032, "db": -10.838885, "dblclick": -10.838885, "de": -11.532032, "debug": -9.134136, "decided": -11.532032, "decimalBackColor": -11.532032, "decimalForeColor": -11.532032, "decimals": -11.532032, "deem": -11.532032, "deep": -9.452590, "default": -8.236195, "defaultPrevented": -11.532032, "defaultView": -10.838885, "defaultView.getComputedStyle": -10.838885, "defer": -11.532032, "deferred": -8.035524, "deferred.cancel": -10.838885, "deferred.done": -10.145737, "deferred.done.apply": -10.433419, "deferred.notifyWith": -11.532032, "deferred.promise": -10.838885, "deferred.reject": -10.838885, "deferred.resolveWith": -9.452590, "define": -10.838885, "define.amd": -11.532032, "definition": -10.838885, "delay": -10.838885, "delegate": -10.838885, "delegateCount": -10.433419, "delegateType": -10.433419, "delete": -7.948513, "deleteExpando": -9.922594, "depth": -11.532032, "dequeue": -9.922594, "describeYYLLOC": -11.532032, "destroy": -10.433419, "destructLexErrorInfo": -11.532032, "detachEvent": -10.433419, "detail": -10.838885, "df": -10.433419, "df.type": -11.532032, "di": -8.487509, "di.getContext": -10.838885, "di.height": -11.532032, "di.width": -11.532032, "die": -10.433419, "difference": -11.532032, "digit": -10.145737, "digits": -11.532032, "disable": -11.532032, "disabled": -10.838885, "display": -8.823982, "display_range_too": -10.838885, "div": -8.759443, "div.addEventListener": -10.838885, "div.appendChild": -11.532032, "div.attachEvent": -9.922594, "div.className": -10.838885, "div.fireEvent": -10.838885, "div.firstChild": -11.532032, "div.getElementsByTagName": -9.452590, "div.id": -11.532032, "div.innerHTML": -10.838885, "div.setAttribute": -10.433419, "div.test": -10.838885, "dl": -10.433419, "dn": -11.532032, "do": -9.229447, "doScrollCheck": -10.145737, "do_not_nuke_errorinfos": -10.838885, "doc": -9.229447, "doc.clientLeft": -11.532032, "doc.clientTop": -11.532032, "doc.scrollLeft": -11.532032, "doc.scrollTop": -11.532032, "docElement": -11.532032, "docElement.appendChild": -10.838885, "docElement.removeChild": -11.532032, "docElement.style": -11.532032, "docMode": -10.433419, "document": -8.440989, "document.addEventListener": -9.922594, "document.attachEvent": -9.922594, "document.body": -9.586122, "document.compatMode": -11.532032, "document.createAttribute": -11.532032, "document.createDocumentFragment": -11.532032, "document.createElement": -9.047125, "document.defaultView": -11.532032, "document.detachEvent": -11.532032, "document.documentElement": -10.433419, "document.documentElement.doScroll": -10.433419, "document.documentMode": -11.532032, "document.getElementsByTagName": -11.532032, "document.readyState": -10.433419, "document.removeEventListener": -10.838885, "document.styleSheets": -11.532032, "document.styleSheets.length": -11.532032, "documentElement": -9.740272, "doesn": -11.532032, "domPrefixes": -10.433419, "done": -8.698818, "doneCallbacks": -10.145737, "doneList": -10.838885, "doneList.add": -11.532032, "doneList.disable": -11.532032, "doneList.fired": -11.532032, "dot": -11.532032, "doubleQuotedCharacter": -11.532032, "doubleQuotedString": -11.532032, "dr": -8.641660, "driveFolder": -10.433419, "dt": -7.976684, "dt.getContext": -11.532032, "dt.height/": -10.838885, "dt.onMotionChanged": -10.838885, "dt.playing": -10.838885, "dt.start": -10.838885, "dt.stop": -10.838885, "dt.type": -9.740272, "dt.width": -11.532032, "du": -9.229447, "due": -11.532032, "duration": -9.922594, "during": -11.532032, "e": -4.934886, "e*.": -6.840684, "e*kt": -11.532032, "e*u": -11.532032, "e._Deferred": -11.532032, "e.access": -11.532032, "e.animatedProperties": -9.922594, "e.apply": -10.433419, "e.bindReady": -11.532032, "e.body": -10.433419, "e.browser": -11.532032, "e.browser.safari": -11.532032, "e.browser.version": -11.532032, "e.browser.webkit": -11.532032, "e.buildFragment": -11.532032, "e.cancelBubble": -11.532032, "e.canvas.height": -10.838885, "e.canvas.width": -10.838885, "e.className": -9.229447, "e.clearRect": -11.532032, "e.clone": -11.532032, "e.complete": -11.532032, "e.complete.call": -11.532032, "e.css": -11.532032, "e.document.body": -11.532032, "e.document.compatMode": -11.532032, "e.document.documentElement": -11.532032, "e.documentElement": -10.145737, "e.done.apply": -11.532032, "e.duration": -10.433419, "e.each": -10.838885, "e.elem": -10.838885, "e.error": -10.838885, "e.events": -10.838885, "e.extend": -10.145737, "e.fillStyle": -11.532032, "e.fillText": -11.532032, "e.firstChild": -11.532032, "e.fn": -10.838885, "e.fn.attr.call": -11.532032, "e.fn.extend": -11.532032, "e.fn.init": -11.532032, "e.fn.init.call": -11.532032, "e.fn.init.prototype": -11.532032, "e.fn.trigger": -11.532032, "e.font": -11.532032, "e.getAttribute": -10.838885, "e.getComputedStyle": -11.532032, "e.guid": -10.838885, "e.handle": -10.838885, "e.handleObj": -11.532032, "e.handleObj.data": -11.532032, "e.handleObj.origHandler.apply": -11.532032, "e.handler": -11.532032, "e.hide": -10.838885, "e.href": -11.532032, "e.indexOf": -10.838885, "e.insertBefore": -11.532032, "e.interval": -11.532032, "e.isArray": -10.145737, "e.isDefaultPrevented": -10.838885, "e.isFunction": -9.922594, "e.isPlainObject": -10.433419, "e.isReady": -10.433419, "e.isWindow": -10.838885, "e.length": -9.586122, "e.level": -10.838885, "e.liveFired": -11.532032, "e.makeArray": -11.532032, "e.map": -11.532032, "e.medium.getHexColor": -11.532032, "e.merge": -10.433419, "e.nodeName.toLowerCase": -11.532032, "e.nodeType": -9.740272, "e.offset": -11.532032, "e.offsetTop": -10.145737, "e.orig": -11.532032, "e.originalEvent": -11.532032, "e.overflow": -10.838885, "e.ownerDocument": -11.532032, "e.position": -11.532032, "e.preventDefault": -10.433419, "e.prototype": -11.532032, "e.push": -10.838885, "e.queue": -10.838885, "e.ready": -9.452590, "e.readyWait": -10.433419, "e.removeChild": -11.532032, "e.resolveWith": -10.838885, "e.restore": -11.532032, "e.returnValue": -11.532032, "e.save": -10.838885, "e.shadowBlur": -11.532032, "e.shadowColor": -11.532032, "e.shadowOffsetX": -11.532032, "e.shadowOffsetY": -11.532032, "e.show": -11.532032, "e.slice": -11.532032, "e.split": -11.532032, "e.stopPropagation": -10.838885, "e.strokeStyle": -11.532032, "e.style.cssFloat": -11.532032, "e.style.opacity": -11.532032, "e.style.position": -10.838885, "e.style.top": -10.838885, "e.textAlign": -11.532032, "e.tick": -10.838885, "e.toFixed": -10.838885, "e.toPrecision": -11.532032, "e.trim": -11.532032, "e.type": -9.740272, "e.uaMatch": -11.532032, "e.val": -11.532032, "e.value": -11.532032, "e/": -9.229447, "e/r*": -11.532032, "e/ut": -11.532032, "e=": -8.967082, "eE": -10.145737, "ea": -10.145737, "each": -8.273935, "easing": -10.145737, "eb=": -11.532032, "ecmascript/": -11.532032, "ee": -10.838885, "ef": -9.922594, "ei": -8.353978, "ei.labelColor.getRgbaColor": -10.838885, "ei.labelColor.setAlpha": -11.532032, "ei.textColor": -10.838885, "ei/": -11.532032, "el": -10.838885, "el.destroy": -10.838885, "elem": -7.089381, "elem.addEventListener": -10.838885, "elem.attachEvent": -10.838885, "elem.attributes": -11.532032, "elem.checked": -11.532032, "elem.detachEvent": -10.838885, "elem.getAttribute": -9.922594, "elem.getAttributeNode": -10.433419, "elem.getContext": -10.838885, "elem.nodeName": -11.532032, "elem.nodeName.toLowerCase": -10.838885, "elem.nodeType": -9.740272, "elem.removeAttribute": -10.433419, "elem.removeAttributeNode": -11.532032, "elem.removeEventListener": -10.838885, "elem.setAttribute": -10.145737, "elem.setAttributeNode": -11.532032, "elem.style.cssText": -11.532032, "elem.style.cssText.toLowerCase": -11.532032, "elem.value": -9.922594, "elemData": -11.532032, "elemData.handle": -11.532032, "element": -9.740272, "element.appendTo": -11.532032, "element.hasClass": -11.532032, "element.parent": -11.532032, "element.removeAttribute": -10.838885, "element.setAttribute": -10.433419, "element.trigger": -11.532032, "elements": -10.433419, "elems": -9.334807, "elems.length": -11.532032, "ellipsis": -11.532032, "else": -6.051393, "elvis": -10.145737, "email": -10.838885, "emailID": -11.532032, "embed": -10.838885, "embed_tokens": -10.838885, "empty": -10.838885, "emptyGet": -10.433419, "enableClasses": -11.532032, "encodeURIComponent": -10.838885, "encoding": -9.452590, "enctype": -11.532032, "end": -8.892974, "ength": -11.532032, "ensure": -11.532032, "entire": -11.532032, "entirely": -11.532032, "enumerable": -10.433419, "eof": -11.532032, "eof_error": -10.838885, "eol": -11.532032, "eolChar": -11.532032, "eolEscapeSequence": -11.532032, "eq": -10.433419, "equal": -11.532032, "equals": -11.532032, "er": -8.536299, "er*.": -11.532032, "er.getContext": -11.532032, "err": -10.145737, "err.message": -11.532032, "err.stack": -11.532032, "errStr": -10.433419, "error": -8.273935, "error.code": -11.532032, "error_rule_depth": -10.838885, "escapable": -11.532032, "escape.call": -11.532032, "escapeRegExp": -10.838885, "et": -7.600206, "et.clearRect": -11.532032, "et.drawImage": -11.532032, "et.getContext": -10.838885, "et.height": -11.532032, "et.length": -10.838885, "et.restore": -11.532032, "et.rotate": -11.532032, "et.save": -11.532032, "et.translate": -10.838885, "et.width": -11.532032, "etag": -11.532032, "eu": -8.967082, "ev": -9.922594, "even": -10.145737, "event": -8.313156, "event.ctrlKey": -11.532032, "event.currentTarget": -11.532032, "event.data": -11.532032, "event.handleObj": -10.838885, "event.isImmediatePropagationStopped": -11.532032, "event.isPropagationStopped": -11.532032, "event.metaKey": -10.838885, "event.namespace": -11.532032, "event.namespace_re": -11.532032, "event.namespace_re.test": -11.532032, "event.pageX": -10.838885, "event.pageY": -11.532032, "event.preventDefault": -11.532032, "event.relatedTarget": -10.433419, "event.result": -10.838885, "event.stopPropagation": -11.532032, "event.target": -11.532032, "event.target.offsetWidth": -11.532032, "event.target.ownerDocument": -11.532032, "event.type": -10.838885, "event.which": -10.838885, "eventDoc": -10.838885, "eventDoc.body": -11.532032, "eventDoc.documentElement": -11.532032, "eventHandle": -9.586122, "eventName": -8.892974, "eventPhase": -10.838885, "eventSplitter": -11.532032, "events": -8.967082, "events.replace": -11.532032, "ever": -11.532032, "ex": -9.134136, "ex.name": -11.532032, "ex.stack": -11.532032, "except": -11.532032, "exclusive": -11.532032, "exec": -9.229447, "exec.call": -11.532032, "exigent_mode": -9.740272, "expando": -9.586122, "expect": -8.440989, "expect_token": -10.433419, "expected": -10.145737, "export": -10.838885, "exports": -11.532032, "exports.ATOMIC_START_TOKEN": -11.532032, "exports.Agent": -11.532032, "exports.KEYWORDS": -11.532032, "exports.KEYWORDS_ATOM": -11.532032, "exports.OPERATORS": -11.532032, "exports.PRECEDENCE": -11.532032, "exports.Parser": -11.532032, "exports.RESERVED_WORDS": -11.532032, "exports.STATUS_CODES": -11.532032, "exports.ServerResponse": -11.532032, "exports._connectionListener": -11.532032, "exports.array_to_hash": -11.532032, "exports.curry": -11.532032, "exports.is_alphanumeric_char": -11.532032, "exports.member": -11.532032, "exports.parse": -10.838885, "exports.parser": -11.532032, "exports.parsers": -11.532032, "exports.set_logger": -11.532032, "exports.slice": -11.532032, "exports.tokenizer": -11.532032, "expr": -8.587593, "expr_atom": -9.922594, "expr_list": -10.145737, "expr_op": -10.145737, "expr_ops": -10.838885, "express": -11.532032, "expression": -8.487509, "extend": -9.334807, "extension": -11.532032, "extensions": -11.532032, "external": -11.532032, "extra": -11.532032, "f": -5.070564, "f*": -9.740272, "f*.": -5.851859, "f*i*at/": -11.532032, "f*i*ft/": -11.532032, "f*r*bt/": -11.532032, "f.Deferred": -10.145737, "f.Event": -9.922594, "f.Event.prototype": -11.532032, "f._Deferred": -10.145737, "f._data": -8.967082, "f._mark": -11.532032, "f._unmark": -10.838885, "f.acceptData": -10.145737, "f.access": -10.433419, "f.active": -10.838885, "f.ajax": -10.433419, "f.ajaxPrefilter": -10.838885, "f.ajaxSettings": -10.145737, "f.ajaxSettings.traditional": -10.838885, "f.ajaxSettings.xhr": -10.838885, "f.ajaxSetup": -10.433419, "f.ajaxTransport": -10.838885, "f.appendChild": -11.532032, "f.apply": -10.838885, "f.attr": -10.838885, "f.attrFix": -10.433419, "f.attrFn": -10.433419, "f.attrHooks": -9.922594, "f.attrHooks.name": -11.532032, "f.attrHooks.style": -11.532032, "f.attrHooks.value": -11.532032, "f.bindReady": -11.532032, "f.boxModel": -11.532032, "f.cache": -9.922594, "f.call": -11.532032, "f.camelCase": -9.740272, "f.canvas.height": -10.433419, "f.canvas.height*.": -10.838885, "f.canvas.width": -10.433419, "f.canvas.width*.": -10.838885, "f.clearRect": -10.838885, "f.concat": -11.532032, "f.concat.apply": -11.532032, "f.contains": -10.433419, "f.context": -11.532032, "f.createElement": -11.532032, "f.createLinearGradient": -10.838885, "f.css": -8.236195, "f.cssHooks": -10.433419, "f.cssHooks.marginRight": -11.532032, "f.cssHooks.opacity": -11.532032, "f.cssNumber": -10.433419, "f.cssProps": -10.838885, "f.curCSS": -11.532032, "f.data": -8.396538, "f.dequeue": -9.922594, "f.disabled": -11.532032, "f.drawImage": -9.334807, "f.each": -8.536299, "f.easing": -11.532032, "f.error": -10.145737, "f.etag": -10.433419, "f.event": -10.838885, "f.event.add": -9.740272, "f.event.customEvent": -11.532032, "f.event.fix": -10.838885, "f.event.global": -10.838885, "f.event.handle.apply": -10.433419, "f.event.handle.call": -11.532032, "f.event.remove": -9.586122, "f.event.special": -9.740272, "f.event.special.change": -11.532032, "f.event.special.change.filters": -11.532032, "f.event.special.submit": -11.532032, "f.event.trigger": -9.922594, "f.event.triggered": -10.433419, "f.events": -11.532032, "f.expando": -8.313156, "f.expr": -10.838885, "f.expr.filters": -10.838885, "f.expr.filters.animated": -11.532032, "f.expr.filters.hidden": -10.838885, "f.expr.filters.visible": -11.532032, "f.extend": -8.199827, "f.fill": -10.838885, "f.fillStyle": -10.838885, "f.filter": -10.838885, "f.find": -11.532032, "f.fn": -9.586122, "f.fn.css": -11.532032, "f.fn.extend": -9.586122, "f.fn.jquery": -11.532032, "f.fn.load": -11.532032, "f.fn.offset": -10.838885, "f.fn.toggle": -11.532032, "f.fx": -10.145737, "f.fx.off": -11.532032, "f.fx.prototype": -11.532032, "f.fx.speeds": -10.433419, "f.fx.speeds._default": -11.532032, "f.fx.step": -11.532032, "f.fx.step._default": -11.532032, "f.fx.stop": -11.532032, "f.get": -10.838885, "f.getRgbaColor": -9.452590, "f.globalEval": -10.838885, "f.grep": -9.586122, "f.guid": -10.838885, "f.hasData": -10.838885, "f.inArray": -10.145737, "f.isArray": -9.452590, "f.isEmptyObject": -10.433419, "f.isFunction": -8.536299, "f.isNaN": -10.433419, "f.isPlainObject": -11.532032, "f.isWindow": -10.433419, "f.isXMLDoc": -10.838885, "f.lastModified": -10.433419, "f.left": -10.433419, "f.length": -10.145737, "f.makeArray": -10.145737, "f.map": -10.145737, "f.merge": -11.532032, "f.noData": -10.838885, "f.nodeName": -8.698818, "f.nodeName.toLowerCase": -11.532032, "f.noop": -9.922594, "f.now": -10.145737, "f.offset": -11.532032, "f.offset.bodyOffset": -10.838885, "f.offset.doesAddBorderForTableAndCells": -11.532032, "f.offset.doesNotAddBorder": -11.532032, "f.offset.doesNotIncludeMarginInBodyOffset": -11.532032, "f.offset.initialize": -10.433419, "f.offset.setOffset": -10.838885, "f.offset.subtractsBorderForOverflowNotVisible": -11.532032, "f.offset.supportsFixedPosition": -10.838885, "f.param": -10.433419, "f.parseJSON": -10.838885, "f.parseXML": -11.532032, "f.pixelLeft": -11.532032, "f.prevObject": -11.532032, "f.prop": -10.838885, "f.propFix": -9.740272, "f.propHooks": -11.532032, "f.propHooks.selected": -10.838885, "f.proxy": -11.532032, "f.push": -10.145737, "f.queue": -10.433419, "f.ready": -11.532032, "f.removeAttr": -10.433419, "f.removeData": -9.922594, "f.removeEvent": -10.433419, "f.restore": -9.586122, "f.rotate": -9.922594, "f.save": -9.586122, "f.selected": -11.532032, "f.selector": -10.838885, "f.setAlpha": -9.452590, "f.shift": -11.532032, "f.speed": -11.532032, "f.style": -9.452590, "f.support": -10.838885, "f.support.ajax": -11.532032, "f.support.appendChecked": -11.532032, "f.support.boxModel": -10.145737, "f.support.changeBubbles": -11.532032, "f.support.checkOn": -11.532032, "f.support.cors": -11.532032, "f.support.cssFloat": -11.532032, "f.support.deleteExpando": -10.433419, "f.support.focusinBubbles": -11.532032, "f.support.getSetAttribute": -10.838885, "f.support.hrefNormalized": -11.532032, "f.support.inlineBlockNeedsLayout": -11.532032, "f.support.leadingWhitespace": -11.532032, "f.support.opacity": -11.532032, "f.support.optDisabled": -11.532032, "f.support.optSelected": -11.532032, "f.support.radioValue": -11.532032, "f.support.reliableHiddenOffsets": -11.532032, "f.support.reliableMarginRight": -11.532032, "f.support.shrinkWrapBlocks": -11.532032, "f.support.style": -11.532032, "f.support.submitBubbles": -11.532032, "f.support.tbody": -11.532032, "f.swap": -10.838885, "f.test": -11.532032, "f.textColor": -10.838885, "f.timers": -10.433419, "f.timers.push": -11.532032, "f.toFixed": -11.532032, "f.translate": -9.229447, "f.trim": -10.838885, "f.type": -10.838885, "f.unshift": -10.838885, "f.uuid": -11.532032, "f.valHooks": -9.586122, "f.valHooks.button": -11.532032, "f/": -8.698818, "f/ht": -11.532032, "f/r": -11.532032, "f=": -9.740272, "fA": -10.838885, "fa": -10.838885, "fa.call": -10.838885, "factory": -10.145737, "fade": -10.145737, "fadeIn": -10.838885, "fadeOut": -10.838885, "fadeTo": -10.433419, "fadeToggle": -10.838885, "fail": -9.134136, "failCallbacks": -10.145737, "failDeferred": -11.532032, "failDeferred.cancel": -11.532032, "failDeferred.done": -11.532032, "failDeferred.isResolved": -11.532032, "failDeferred.resolve": -11.532032, "failDeferred.resolveWith": -11.532032, "failList": -10.838885, "failList.add": -11.532032, "failList.disable": -11.532032, "failList.fired": -11.532032, "fails": -11.532032, "fakeBody": -10.838885, "fakeBody.appendChild": -11.532032, "fakeBody.style.background": -11.532032, "false": -6.350248, "far": -10.145737, "fast": -11.532032, "fcamelCase": -11.532032, "fe": -10.838885, "feature": -10.838885, "featureName": -11.532032, "fetch": -11.532032, "ff": -9.922594, "fi": -8.353978, "fi.getContext": -10.145737, "fi.height": -10.838885, "fi.pause": -11.532032, "fi.play": -11.532032, "fi.setAttribute": -10.838885, "fi.width": -10.838885, "fid": -10.838885, "field": -9.334807, "fieldset": -11.532032, "file": -10.433419, "filter": -8.641660, "filters": -10.838885, "final": -11.532032, "finally": -10.145737, "find": -10.145737, "fire": -10.433419, "fireWith": -11.532032, "fired": -9.334807, "firing": -9.586122, "firingIndex": -10.838885, "firingLength": -10.838885, "firingStart": -11.532032, "first": -8.641660, "firstParam": -9.229447, "firstParam.promise": -10.838885, "first_catch_all_index": -10.433419, "first_column": -9.740272, "first_line": -10.145737, "fix": -9.452590, "fixHook.filter": -10.838885, "fixHooks": -11.532032, "fixSpecified": -10.838885, "flags.once": -10.838885, "flags.unique": -11.532032, "float": -10.433419, "fn": -8.164736, "fn.apply": -10.838885, "fn.call": -10.838885, "fnDone": -10.145737, "fnFail": -10.145737, "fnProgress": -10.838885, "fname": -11.532032, "focus": -9.740272, "focusin": -10.145737, "focusinBubbles": -10.433419, "focusinfocus": -11.532032, "focusout": -10.145737, "focusoutblur": -11.532032, "folder": -10.433419, "folders": -11.532032, "folders.hasNext": -11.532032, "folders.next": -11.532032, "follows": -11.532032, "font": -11.532032, "fontWeight": -10.838885, "for": -6.059761, "for_": -10.838885, "for_in": -10.838885, "forcePushState": -10.838885, "force_regexp": -10.838885, "foreground": -8.236195, "form": -10.838885, "formHook": -10.838885, "found": -10.838885, "fr": -8.487509, "fragment": -8.536299, "fragment.appendChild": -10.838885, "fragment.cloneNode": -11.532032, "fragment.indexOf": -11.532032, "fragment.removeChild": -10.838885, "fragment.replace": -11.532032, "fragment.substr": -11.532032, "fragments": -10.838885, "frame": -8.536299, "frameborder": -10.433419, "freeParser": -9.740272, "from": -9.134136, "fromElement": -9.740272, "ft": -7.150005, "ft.getContext": -10.838885, "ft.height": -11.532032, "ft.length": -10.838885, "ft.push": -11.532032, "ft.type": -11.532032, "ft.width": -11.532032, "ft/": -10.433419, "ftype": -9.740272, "fu": -8.967082, "func": -10.145737, "func.call": -10.838885, "function": -4.297133, "function_": -10.145737, "functions": -11.532032, "fx": -9.229447, "g": -5.400805, "g.body": -11.532032, "g.clientLeft": -11.532032, "g.clientTop": -11.532032, "g.defaultView": -11.532032, "g.disabled": -11.532032, "g.document.body": -11.532032, "g.document.documentElement": -11.532032, "g.documentElement": -11.532032, "g.get": -11.532032, "g.getContext": -10.145737, "g.getPropertyValue": -11.532032, "g.guid": -10.433419, "g.handler": -11.532032, "g.height": -9.922594, "g.indexOf": -10.838885, "g.left": -11.532032, "g.length": -11.532032, "g.namespace": -11.532032, "g.origType.replace": -11.532032, "g.preType": -10.433419, "g.promise": -11.532032, "g.replace": -11.532032, "g.resolveWith": -10.838885, "g.scrollLeft": -11.532032, "g.scrollTo": -11.532032, "g.scrollTop": -11.532032, "g.selected": -11.532032, "g.selector": -10.433419, "g.substring": -11.532032, "g.top": -11.532032, "g.trigger": -10.433419, "g.width": -9.922594, "g/": -11.532032, "g=": -10.433419, "garbage": -10.838885, "gb=": -11.532032, "generator": -10.145737, "get": -8.199827, "getAllResponseHeaders": -11.532032, "getAttribute": -10.145737, "getByName": -11.532032, "getContent": -11.532032, "getData": -11.532032, "getElementById": -10.838885, "getElementsByName": -11.532032, "getElementsByTagName": -10.433419, "getFragment": -11.532032, "getIndex": -11.532032, "getJSON": -11.532032, "getPreventDefault": -10.838885, "getResponseHeader": -11.532032, "getScript": -11.532032, "getSetAttribute": -10.145737, "getText": -11.532032, "getTime": -10.145737, "getUrl": -11.532032, "gf": -10.838885, "gi": -8.313156, "global": -10.433419, "globalEval": -10.838885, "gmailLabels": -10.838885, "goog.DEBUG": -11.532032, "goog.inherits": -11.532032, "goog.provide": -11.532032, "goog.require": -11.532032, "gr": -8.967082, "gr.drawImage": -10.433419, "gr.getContext": -11.532032, "grammar": -10.433419, "grep": -9.922594, "grow": -10.433419, "gt": -7.921114, "gt*.": -10.838885, "gt.getContext": -10.433419, "gt.height": -11.532032, "gt.height/": -10.838885, "gt.length": -10.838885, "gt.width": -10.838885, "gu": -9.334807, "guid": -9.134136, "h": -5.311442, "h*": -10.433419, "h*.": -8.487509, "h*t": -11.532032, "h*u": -11.532032, "h.abort": -11.532032, "h.addColorStop": -10.145737, "h.body": -11.532032, "h.call": -10.838885, "h.checked": -10.838885, "h.clientLeft": -11.532032, "h.clientTop": -11.532032, "h.cloneNode": -11.532032, "h.concat.apply": -11.532032, "h.dark.getRgbaColor": -10.433419, "h.documentElement": -11.532032, "h.elem": -11.532032, "h.get": -11.532032, "h.getAllResponseHeaders": -11.532032, "h.guid": -10.838885, "h.handler.guid": -10.838885, "h.id": -11.532032, "h.indexOf": -10.145737, "h.length": -10.433419, "h.light.getRgbaColor": -9.740272, "h.medium.getRgbaColor": -9.740272, "h.namespace": -10.838885, "h.offsetTop": -11.532032, "h.onreadystatechange": -10.838885, "h.open": -10.838885, "h.overrideMimeType": -10.838885, "h.parentNode": -11.532032, "h.promise": -10.433419, "h.push": -11.532032, "h.readyState": -10.433419, "h.rejectWith": -11.532032, "h.resolveWith": -11.532032, "h.responseText": -11.532032, "h.responseXML": -11.532032, "h.scrollLeft": -10.838885, "h.scrollTop": -10.838885, "h.send": -11.532032, "h.set": -11.532032, "h.setAttribute": -10.838885, "h.setRequestHeader": -11.532032, "h.slice": -11.532032, "h.splice.apply": -11.532032, "h.split": -10.838885, "h.status": -11.532032, "h.statusText": -11.532032, "h.substr": -11.532032, "h.toFixed": -10.433419, "h.toLowerCase": -11.532032, "h.type": -11.532032, "h.value": -10.433419, "h/": -10.145737, "h/e.duration": -11.532032, "h/ht": -11.532032, "h/vt": -11.532032, "h1": -11.532032, "h2": -11.532032, "h3": -11.532032, "h4": -11.532032, "h5": -11.532032, "h6": -11.532032, "h=": -9.586122, "hanaMath": -11.532032, "hanaMath.multiply": -11.532032, "handle": -8.759443, "handle.elem": -11.532032, "handleObj": -8.967082, "handleObj.data": -11.532032, "handleObj.handler": -11.532032, "handleObj.handler.apply": -11.532032, "handleObj.handler.guid": -10.838885, "handleObj.namespace": -10.838885, "handleObj.origType": -10.838885, "handleObj.quick": -10.838885, "handleObj.selector": -10.838885, "handleObjIn": -11.532032, "handleObjIn.handler": -11.532032, "handleObjIn.selector": -11.532032, "handle_dot": -10.838885, "handle_slash": -10.838885, "handler": -8.641660, "handler.guid": -10.433419, "handler.handler": -11.532032, "handlerQueue": -11.532032, "handlerQueue.length": -11.532032, "handlerQueue.push": -10.838885, "handlers": -10.145737, "handlers.delegateCount": -11.532032, "handlers.length": -11.532032, "handlers.slice": -11.532032, "harmless": -11.532032, "has": -9.452590, "hasClass": -10.145737, "hasData": -11.532032, "hasDuplicate": -11.532032, "hasOwn": -10.838885, "hasOwn.call": -9.740272, "hasOwnProperty": -10.838885, "has_dot": -10.433419, "has_e": -10.433419, "has_x": -9.922594, "hash": -9.047125, "hash.exception": -10.838885, "hashStrip": -10.838885, "have": -9.922594, "he": -11.532032, "he.drawImage": -11.532032, "headerIndex": -10.145737, "headers": -8.164736, "headers.length": -11.532032, "height": -9.047125, "helps": -10.838885, "here": -11.532032, "hexDigit": -11.532032, "hexEscapeSequence": -11.532032, "hex_bytes": -10.433419, "hf": -10.145737, "hf*.": -11.532032, "hi": -8.759443, "hi.getContext": -9.740272, "hi.height": -10.433419, "hi.pause": -11.532032, "hi.play": -11.532032, "hi.setAttribute": -10.838885, "hi.width": -10.433419, "hidden": -9.229447, "hide": -9.229447, "historyApiFallback": -11.532032, "historyStarted": -10.838885, "hit": -11.532032, "hold": -10.145737, "holdReady": -10.433419, "hooks": -9.229447, "hooks.get": -11.532032, "hooks.set": -11.532032, "host": -9.047125, "hot": -10.433419, "hour": -10.838885, "hover": -9.922594, "hoverHack": -11.532032, "hr": -8.587593, "hr.drawImage": -10.838885, "hr.getContext": -11.532032, "href": -9.229447, "hrefNormalized": -10.838885, "ht": -7.681884, "ht*yi": -11.532032, "ht.textColor": -10.838885, "ht/": -10.838885, "html": -9.334807, "html5": -11.532032, "htmlFor": -10.433419, "htmlSerialize": -10.145737, "http": -11.532032, "http.createServer": -10.838885, "httpSocketSetup": -11.532032, "hu": -9.134136, "hu.repaint": -11.532032, "i": -4.753247, "i*": -10.433419, "i*.": -8.164736, "i*Math.PI/": -8.353978, "i*Math.pow": -11.532032, "i*kt": -11.532032, "i.addColorStop": -8.236195, "i.alarmSound": -9.229447, "i.area": -10.145737, "i.autoScroll": -10.838885, "i.backgroundColor": -9.229447, "i.backgroundVisible": -9.229447, "i.canvas.height": -10.433419, "i.canvas.width": -10.433419, "i.clearRect": -10.838885, "i.clientLeft": -11.532032, "i.clientTop": -11.532032, "i.customLayer": -10.145737, "i.data": -11.532032, "i.digitalFont": -9.229447, "i.done": -11.532032, "i.drawImage": -11.532032, "i.each": -11.532032, "i.events": -10.838885, "i.exec": -11.532032, "i.fillStyle": -11.532032, "i.fillText": -9.922594, "i.font": -9.586122, "i.foregroundType": -9.740272, "i.foregroundVisible": -9.229447, "i.fractionalScaleDecimals": -10.145737, "i.frameDesign": -9.229447, "i.frameVisible": -9.229447, "i.gaugeType": -9.740272, "i.get": -11.532032, "i.getAlpha": -11.532032, "i.getBlue": -11.532032, "i.getContext": -10.433419, "i.getGreen": -11.532032, "i.getRed": -11.532032, "i.getRgbaColor": -9.740272, "i.handle": -10.838885, "i.handler": -11.532032, "i.handler.apply": -11.532032, "i.height": -9.334807, "i.height*.": -9.452590, "i.html": -11.532032, "i.join": -10.838885, "i.knobStyle": -10.145737, "i.knobType": -10.145737, "i.labelNumberFormat": -9.229447, "i.lcdColor": -9.229447, "i.lcdDecimals": -9.229447, "i.lcdVisible": -9.452590, "i.ledColor": -9.229447, "i.ledVisible": -9.229447, "i.live": -11.532032, "i.live.slice": -11.532032, "i.maxMeasuredValueVisible": -9.452590, "i.maxValue": -9.229447, "i.measureText": -11.532032, "i.medium.getHexColor": -11.532032, "i.minMeasuredValueVisible": -9.452590, "i.minValue": -9.229447, "i.namespace": -11.532032, "i.niceScale": -9.229447, "i.nodeName.toLowerCase": -11.532032, "i.nodeType": -10.838885, "i.odometerParams": -10.838885, "i.odometerUseValue": -10.838885, "i.offsetLeft": -11.532032, "i.offsetTop": -11.532032, "i.orientation": -10.838885, "i.origType.replace": -11.532032, "i.pageXOffset": -11.532032, "i.pageYOffset": -11.532032, "i.playAlarm": -9.229447, "i.pointerColor": -10.145737, "i.pointerType": -10.145737, "i.preType": -10.838885, "i.repaint": -10.433419, "i.resolve": -11.532032, "i.resolveWith": -11.532032, "i.restore": -11.532032, "i.save": -10.838885, "i.scrollLeft": -10.838885, "i.scrollTop": -10.838885, "i.section": -9.229447, "i.selected": -11.532032, "i.selector": -10.433419, "i.set": -11.532032, "i.setAlpha": -10.145737, "i.shadowBlur": -11.532032, "i.shadowColor": -11.532032, "i.shadowOffsetX": -11.532032, "i.shadowOffsetY": -11.532032, "i.shift": -11.532032, "i.sizcache": -10.145737, "i.size": -9.740272, "i.sizset": -10.145737, "i.sort": -11.532032, "i.strokeStyle": -11.532032, "i.style.marginRight": -11.532032, "i.style.width": -11.532032, "i.substring": -10.433419, "i.test": -11.532032, "i.textAlign": -10.433419, "i.textBaseline": -11.532032, "i.threshold": -9.229447, "i.thresholdVisible": -9.452590, "i.tickLabelOrientation": -10.145737, "i.titleString": -9.229447, "i.toFixed": -10.838885, "i.toPrecision": -11.532032, "i.trendColors": -10.145737, "i.trendVisible": -10.145737, "i.unitString": -9.047125, "i.unitStringVisible": -10.838885, "i.useOdometer": -10.838885, "i.useSectionColors": -10.145737, "i.useValueGradient": -10.145737, "i.value": -10.838885, "i.valueColor": -9.740272, "i.valueGradient": -10.145737, "i.valuesNumeric": -10.838885, "i.width": -9.334807, "i.width*.": -9.452590, "i/": -10.433419, "i=": -9.922594, "id": -8.130834, "identical": -11.532032, "identifier": -10.838885, "idx": -10.433419, "ie": -10.838885, "if": -4.463860, "if_": -10.838885, "iframe": -11.532032, "ii": -8.130834, "ii.getContext": -9.922594, "ii.height": -10.838885, "ii.height/": -10.838885, "ii.length": -10.838885, "ii.medium.getRgbaColor": -11.532032, "ii.push": -11.532032, "ii.width": -10.433419, "image": -10.433419, "img": -11.532032, "immediately": -11.532032, "import": -9.740272, "in": -6.569187, "inArray": -10.433419, "in_class": -9.922594, "in_function": -11.532032, "in_loop": -9.586122, "in_statement": -10.433419, "inclusive": -11.532032, "incoming": -11.532032, "incoming.length": -11.532032, "incoming.shift": -11.532032, "incremented": -11.532032, "index": -9.452590, "indexOf": -9.922594, "indexed_rule": -10.433419, "indexer.index": -11.532032, "info": -9.586122, "info.method": -10.838885, "info.shouldKeepAlive": -11.532032, "info.statusCode": -11.532032, "inherits": -11.532032, "init": -8.487509, "initialize": -10.838885, "initializer": -10.838885, "injectElementWithStyles": -9.740272, "injected": -10.145737, "inline": -9.922594, "inlineBlockNeedsLayout": -10.145737, "inner": -11.532032, "innerHTML": -10.433419, "input": -7.703390, "input.charCodeAt": -11.532032, "input.checked": -10.433419, "input.cloneNode": -10.838885, "input.readFieldBegin": -11.532032, "input.readFieldEnd": -11.532032, "input.readString": -11.532032, "input.readStructBegin": -11.532032, "input.readStructEnd": -11.532032, "input.setAttribute": -10.838885, "input.skip": -10.433419, "input.value": -10.838885, "inputElem": -9.922594, "inputElem.checkValidity": -10.838885, "inputElem.offsetHeight": -11.532032, "inputElem.style.WebkitAppearance": -11.532032, "inputElem.style.cssText": -11.532032, "inputElem.value": -10.838885, "inputElemType": -10.433419, "inputs": -10.433419, "instance": -10.145737, "instanceof": -8.487509, "instances": -10.433419, "instead": -11.532032, "intact": -11.532032, "intended": -11.532032, "interested": -11.532032, "internal": -10.433419, "internalCache": -10.433419, "internalKey": -9.922594, "intersection": -11.532032, "interval": -10.838885, "into": -11.532032, "invoke": -11.532032, "invoked": -11.532032, "ir": -8.396538, "is": -7.327339, "isArray": -9.740272, "isDefaultPrevented": -9.740272, "isEmptyDataObject": -11.532032, "isEmptyObject": -10.145737, "isEventSupported": -10.838885, "isExplorer": -11.532032, "isExplorer.exec": -11.532032, "isFinite": -11.532032, "isFunction": -9.740272, "isHeadResponse": -11.532032, "isImmediatePropagationStopped": -10.145737, "isLocal": -11.532032, "isNaN": -9.452590, "isNode": -9.586122, "isPlainObject": -10.838885, "isPropagationStopped": -10.433419, "isReady": -10.145737, "isRejected": -9.922594, "isResolved": -9.740272, "isSupported": -9.452590, "isWindow": -10.838885, "isXML": -11.532032, "is_alphanumeric_char": -10.433419, "is_assignable": -10.433419, "is_comment": -10.838885, "is_digit": -9.922594, "is_identifier_char": -10.433419, "is_identifier_start": -10.433419, "is_letter": -10.433419, "is_token": -10.433419, "is_unicode_combining_mark": -10.838885, "is_unicode_connector_punctuation": -10.838885, "it": -6.897303, "it.addColorStop": -10.145737, "it.getContext": -10.433419, "it.height": -11.532032, "it.labelColor": -10.838885, "it.labelColor.getRgbaColor": -10.145737, "it.labelColor.setAlpha": -11.532032, "it.width": -11.532032, "it/": -10.838885, "itauNotificationEmail": -10.838885, "iu": -8.892974, "iu.getContext": -11.532032, "j": -5.723889, "j.appendChecked": -11.532032, "j.boxModel": -11.532032, "j.cacheable": -11.532032, "j.checkClone": -11.532032, "j.clientLeft": -11.532032, "j.clientTop": -11.532032, "j.data": -11.532032, "j.deleteExpando": -11.532032, "j.disabled": -11.532032, "j.elem": -10.838885, "j.events": -10.838885, "j.fragment": -10.838885, "j.getAttribute": -10.433419, "j.getComputedStyle": -10.838885, "j.guid": -11.532032, "j.handle": -10.838885, "j.handleObj": -11.532032, "j.handleObj.data": -11.532032, "j.handleObj.origHandler.apply": -11.532032, "j.handler": -11.532032, "j.handler.apply": -11.532032, "j.handler.guid": -10.838885, "j.indexOf": -11.532032, "j.inlineBlockNeedsLayout": -11.532032, "j.length": -11.532032, "j.namespace": -10.433419, "j.noCloneChecked": -11.532032, "j.noCloneEvent": -11.532032, "j.nodeName": -11.532032, "j.nodeName.toLowerCase": -11.532032, "j.optDisabled": -11.532032, "j.parentNode": -11.532032, "j.parentNode.disabled": -11.532032, "j.radioValue": -11.532032, "j.reliableHiddenOffsets": -11.532032, "j.reliableMarginRight": -11.532032, "j.removeAttribute": -10.838885, "j.replace": -11.532032, "j.scrollLeft": -11.532032, "j.scrollTop": -11.532032, "j.selected": -11.532032, "j.shrinkWrapBlocks": -11.532032, "j.style.cssFloat": -11.532032, "j.style.opacity": -11.532032, "j.test": -10.838885, "j.type": -11.532032, "j=": -9.586122, "jQuery": -8.199827, "jQuery.Callbacks": -10.145737, "jQuery.Deferred": -10.145737, "jQuery.Event": -10.433419, "jQuery.Event.prototype": -11.532032, "jQuery._Deferred": -10.433419, "jQuery._data": -11.532032, "jQuery.access": -11.532032, "jQuery.attr": -11.532032, "jQuery.attrFix": -10.838885, "jQuery.attrFn": -11.532032, "jQuery.attrHooks": -9.922594, "jQuery.attrHooks.contenteditable": -11.532032, "jQuery.attrHooks.style": -11.532032, "jQuery.attrHooks.tabindex.set": -11.532032, "jQuery.bindReady": -11.532032, "jQuery.boxModel": -11.532032, "jQuery.browser": -11.532032, "jQuery.browser.safari": -11.532032, "jQuery.browser.version": -11.532032, "jQuery.browser.webkit": -11.532032, "jQuery.cache": -11.532032, "jQuery.camelCase": -11.532032, "jQuery.contains": -11.532032, "jQuery.data": -9.922594, "jQuery.each": -9.586122, "jQuery.event.customEvent": -11.532032, "jQuery.event.dispatch": -11.532032, "jQuery.event.global": -11.532032, "jQuery.event.handle": -11.532032, "jQuery.event.special": -10.838885, "jQuery.event.special.hover": -11.532032, "jQuery.event.special.submit": -11.532032, "jQuery.event.triggered": -11.532032, "jQuery.expando": -9.334807, "jQuery.extend": -8.892974, "jQuery.fn": -10.145737, "jQuery.fn.extend": -10.433419, "jQuery.fn.init": -10.838885, "jQuery.fn.init.call": -11.532032, "jQuery.fn.init.prototype": -10.838885, "jQuery.fn.trigger": -10.838885, "jQuery.guid": -11.532032, "jQuery.inArray": -11.532032, "jQuery.isArray": -11.532032, "jQuery.isEmptyObject": -11.532032, "jQuery.isFunction": -9.134136, "jQuery.isNaN": -11.532032, "jQuery.isReady": -9.922594, "jQuery.isWindow": -10.145737, "jQuery.isXMLDoc": -11.532032, "jQuery.noData": -11.532032, "jQuery.nodeName": -9.922594, "jQuery.noop": -10.838885, "jQuery.now": -11.532032, "jQuery.parseJSON": -11.532032, "jQuery.prop": -11.532032, "jQuery.propFix": -10.838885, "jQuery.prototype": -10.838885, "jQuery.ready": -8.967082, "jQuery.readyWait": -9.740272, "jQuery.removeAttr": -11.532032, "jQuery.removeData": -10.838885, "jQuery.removeEvent": -11.532032, "jQuery.support": -10.838885, "jQuery.support.deleteExpando": -11.532032, "jQuery.support.getSetAttribute": -11.532032, "jQuery.support.hrefNormalized": -11.532032, "jQuery.support.optDisabled": -11.532032, "jQuery.support.style": -11.532032, "jQuery.support.submitBubbles": -11.532032, "jQuery.type": -10.433419, "jQuery.uaMatch": -11.532032, "jQuery.uuid": -11.532032, "jQuery.valHooks": -10.838885, "jQuery.valHooks.button": -11.532032, "jQuerySub": -9.586122, "jQuerySub.fn": -10.838885, "jQuerySub.fn.constructor": -11.532032, "jQuerySub.fn.init": -10.838885, "jQuerySub.fn.init.prototype": -11.532032, "jQuerySub.prototype": -11.532032, "jQuerySub.sub": -11.532032, "jQuerySub.superclass": -11.532032, "join": -11.532032, "jqcur": -11.532032, "jqcur.is": -11.532032, "jquery": -10.838885, "js_error": -10.433419, "jsb.STATIC_LIBRARY": -11.532032, "jsb.build": -11.532032, "jsb.library": -11.532032, "json": -10.838885, "jsonp": -11.532032, "jsonpCallback": -11.532032, "jspb.Message": -11.532032, "jspb.Message.initialize": -11.532032, "k": -5.668401, "k*.": -8.164736, "k*Math.PI/": -11.532032, "k._default": -11.532032, "k._default.call": -11.532032, "k.appendChild": -11.532032, "k.cloneNode": -11.532032, "k.createElement": -11.532032, "k.cur": -11.532032, "k.custom": -10.838885, "k.drawImage": -10.433419, "k.elem": -10.838885, "k.filter": -11.532032, "k.get": -11.532032, "k.indexOf": -11.532032, "k.labelColor": -9.922594, "k.labelColor.getRgbaColor": -9.586122, "k.labelColor.setAlpha": -11.532032, "k.left": -11.532032, "k.length": -11.532032, "k.nodeType": -11.532032, "k.offsetWidth": -11.532032, "k.ownerDocument": -11.532032, "k.parentNode": -11.532032, "k.position": -10.145737, "k.replace": -10.838885, "k.restore": -11.532032, "k.save": -11.532032, "k.set": -11.532032, "k.split": -11.532032, "k.style.paddingLeft": -11.532032, "k.style.width": -11.532032, "k.symbolColor.getRgbaColor": -11.532032, "k.test": -10.838885, "k.top": -11.532032, "k.translate": -10.838885, "k/": -11.532032, "k=": -10.433419, "keep": -11.532032, "kept": -11.532032, "key": -7.373149, "key.replace": -11.532032, "key.split": -11.532032, "key/": -11.532032, "keyCode": -10.145737, "keyHooks": -11.532032, "keydown": -10.145737, "keypath": -9.452590, "keypath.length": -11.532032, "keypath.split": -11.532032, "keypress": -10.433419, "keys": -9.740272, "keys.length": -10.433419, "keyup": -10.838885, "keyup.dismiss.modal": -10.838885, "kf": -10.433419, "kf.repaint": -11.532032, "ki": -8.396538, "ki.pause": -11.532032, "ki.play": -11.532032, "ki.setAttribute": -10.838885, "kr": -8.641660, "kr.type": -11.532032, "kt": -8.066296, "kt.clearRect": -11.532032, "kt.drawImage": -11.532032, "kt.getContext": -10.838885, "kt.height": -11.532032, "kt.medium.getRgbaColor": -11.532032, "kt.restore": -11.532032, "kt.rotate": -11.532032, "kt.save": -11.532032, "kt.textColor": -10.838885, "kt.translate": -10.838885, "kt.width": -11.532032, "kt/at": -10.838885, "kt/at*l": -11.532032, "kt/at*t": -11.532032, "ku": -9.334807, "ku.repaint": -11.532032, "l": -5.782639, "l*u": -11.532032, "l.appendChild": -11.532032, "l.done": -11.532032, "l.indexOf": -11.532032, "l.innerHTML": -11.532032, "l.left": -11.532032, "l.split": -11.532032, "l.style": -11.532032, "l.top": -11.532032, "l.type": -8.273935, "l/Math.PI*": -10.145737, "l/et": -9.452590, "l/ot": -11.532032, "l=": -10.145737, "la": -10.838885, "label": -10.145737, "labeled": -10.838885, "labeled_statement": -10.838885, "labels": -11.532032, "language": -11.532032, "last": -9.452590, "lastModified": -11.532032, "last_column": -9.740272, "last_line": -9.740272, "layerX": -10.838885, "layerY": -10.838885, "le": -11.532032, "le.type": -11.532032, "leadingWhitespace": -10.838885, "leak": -11.532032, "leaks": -10.838885, "led": -8.698818, "left": -8.823982, "leftMatch": -10.433419, "len": -8.098045, "len.toString": -10.838885, "length": -7.201298, "less": -10.838885, "let": -10.838885, "letter": -10.145737, "level": -11.532032, "lex": -9.922594, "lexErrorInfo": -11.532032, "lexer": -8.587593, "lexer.yylloc": -11.532032, "lexer.yytext": -11.532032, "lexer__currentRules": -11.532032, "lexer__performAction": -11.532032, "lexer_begin": -11.532032, "lexer_cleanupAfterLex": -11.532032, "lexer_clear": -10.838885, "lexer_constructLexErrorInfo": -11.532032, "lexer_describe_yylloc": -11.532032, "lexer_input": -10.838885, "lexer_less": -10.838885, "lexer_lex": -11.532032, "lexer_more": -10.838885, "lexer_next": -11.532032, "lexer_parseError": -10.838885, "lexer_pastInput": -10.838885, "lexer_popState": -11.532032, "lexer_pushState": -11.532032, "lexer_reject": -10.838885, "lexer_setInput": -10.838885, "lexer_showPosition": -11.532032, "lexer_stateStackSize": -11.532032, "lexer_test_match": -11.532032, "lexer_topState": -11.532032, "lexer_unput": -10.838885, "lexer_upcomingInput": -11.532032, "lexing": -11.532032, "lf": -9.922594, "lhs": -10.838885, "li": -8.487509, "li.getContext": -9.740272, "li.height": -10.433419, "li.width": -10.433419, "libObject": -11.532032, "libObject.cflags": -11.532032, "libObject.includePaths": -11.532032, "libObject.ldflags": -11.532032, "libObject.outputName": -11.532032, "libObject.sources": -11.532032, "like": -11.532032, "limit": -10.838885, "limited": -11.532032, "limiting": -11.532032, "line": -8.892974, "lineHeight": -10.838885, "linear": -10.838885, "linenumber": -10.838885, "lines": -8.236195, "lines.length": -9.586122, "lingering": -10.838885, "link": -10.433419, "list": -8.892974, "list.length": -10.145737, "list.splice": -11.532032, "lists": -10.145737, "literal": -10.433419, "little": -11.532032, "live": -8.967082, "liveFired": -10.838885, "load": -10.145737, "loc": -10.838885, "localAddress": -9.740272, "located": -11.532032, "location": -10.433419, "lock": -11.532032, "locked": -11.532032, "logger": -10.838885, "loop": -10.433419, "lowerCaseLetter": -11.532032, "lparen": -11.532032, "lr": -8.487509, "lstack": -11.532032, "lt": -7.561740, "lt*fr": -11.532032, "lt.getContext": -10.838885, "lt.height": -11.532032, "lt.textColor": -10.838885, "lt.width": -11.532032, "lt/": -11.532032, "lt/ct": -10.838885, "lu": -9.229447, "m": -7.032222, "m.apply": -11.532032, "m.assignSocket": -11.532032, "m.elem": -11.532032, "m.elem.disabled": -11.532032, "m.level": -11.532032, "m.replace": -11.532032, "m.selector": -11.532032, "m.shift": -11.532032, "m.slice": -11.532032, "m.test": -11.532032, "m.text": -10.838885, "m.xml": -11.532032, "m=": -10.433419, "mStyle": -10.838885, "mStyle.background": -11.532032, "mStyle.backgroundColor": -10.433419, "mStyle.backgroundImage": -11.532032, "mStyle.cssText": -11.532032, "mStyle.opacity": -11.532032, "ma": -10.433419, "main": -11.532032, "make": -10.838885, "makeArray": -10.838885, "make_unary": -10.433419, "malloc": -11.532032, "managed": -11.532032, "managing": -11.532032, "manipulations": -11.532032, "map": -10.145737, "margin": -10.838885, "marginDiv": -10.838885, "marginRight": -11.532032, "mark": -11.532032, "match": -7.660831, "matchFailed": -10.145737, "match_str": -9.922594, "match_str.length": -10.433419, "match_str.match": -11.532032, "matched": -8.587593, "matched.elem": -10.838885, "matched.matches": -11.532032, "matched.matches.length": -11.532032, "matches": -9.586122, "matches.length": -11.532032, "matches.push": -11.532032, "matching": -11.532032, "math": -10.145737, "math.cube": -10.838885, "maxLines": -8.641660, "maxPostfix": -10.838885, "maxPrefix": -10.838885, "maxSize": -8.273935, "maxSockets": -11.532032, "maxlength": -10.433419, "may": -11.532032, "maybe_assign": -10.433419, "maybe_conditional": -10.838885, "maybe_embed_tokens": -9.922594, "means": -11.532032, "member": -10.433419, "members": -11.532032, "memo": -9.452590, "memory": -9.134136, "merge": -10.838885, "message": -9.740272, "message.": -11.532032, "messageHeader": -11.532032, "messages": -11.532032, "metaKey": -10.145737, "meters": -10.145737, "method": -8.967082, "methodMap": -11.532032, "methods": -10.433419, "min_prec": -10.433419, "mminMeasuredValue": -11.532032, "mod": -10.145737, "modElem": -11.532032, "modElem.style": -11.532032, "modal": -10.145737, "model": -9.334807, "model.collection": -10.838885, "model.id": -11.532032, "model.idAttribute": -10.838885, "model.previous": -11.532032, "model.toJSON": -11.532032, "model.unbind": -11.532032, "mods": -10.838885, "module.exports": -11.532032, "month": -10.433419, "months": -9.452590, "more": -9.740272, "mouse": -11.532032, "mouseHooks": -11.532032, "mousedown": -10.838885, "mouseenter": -9.229447, "mouseleave": -9.229447, "mousemove": -10.838885, "mouseout": -10.838885, "mouseover": -10.838885, "mouseup": -10.838885, "moveToLabel": -11.532032, "mozilla": -10.145737, "ms": -10.838885, "msg": -8.759443, "msie": -10.145737, "much": -11.532032, "multiLineComment": -11.532032, "multiple": -10.838885, "multiply": -11.532032, "must": -11.532032, "n": -4.928088, "n*": -10.838885, "n*kt": -11.532032, "n.arc": -9.452590, "n.attr": -11.532032, "n.background": -8.353978, "n.bargraphled": -10.145737, "n.beginPath": -7.660831, "n.bezierCurveTo": -7.660831, "n.canvas.height": -10.433419, "n.canvas.height/": -10.145737, "n.canvas.width": -10.433419, "n.canvas.width/": -9.740272, "n.charAt": -11.532032, "n.closePath": -7.843152, "n.createLinearGradient": -8.536299, "n.createRadialGradient": -10.145737, "n.documentElement": -11.532032, "n.drawImage": -8.892974, "n.exec": -11.532032, "n.fill": -8.396538, "n.fillRect": -8.759443, "n.fillStyle": -7.770832, "n.fillText": -7.283537, "n.font": -7.620009, "n.foreground": -8.353978, "n.frame": -8.440989, "n.led": -8.536299, "n.length": -10.838885, "n.lineCap": -9.229447, "n.lineJoin": -9.229447, "n.lineTo": -7.524699, "n.lineWidth": -7.948513, "n.lineWidth/": -10.433419, "n.measureText": -10.838885, "n.moveTo": -7.681884, "n.odo": -10.838885, "n.pointer": -9.047125, "n.quadraticCurveTo": -10.145737, "n.rect": -10.145737, "n.remove": -11.532032, "n.remove.call": -11.532032, "n.removeClass": -11.532032, "n.restore": -7.818460, "n.rotate": -7.150005, "n.save": -7.640211, "n.setAttribute": -11.532032, "n.shadowBlur": -10.145737, "n.shadowColor": -10.838885, "n.shadowOffsetX": -10.145737, "n.shadowOffsetY": -10.145737, "n.shift": -11.532032, "n.slice": -11.532032, "n.stroke": -7.894446, "n.strokeStyle": -8.005671, "n.substring": -10.838885, "n.target._pos": -9.334807, "n.teardown": -11.532032, "n.teardown.call": -11.532032, "n.test": -10.433419, "n.textAlign": -8.892974, "n.textBaseline": -9.047125, "n.toFixed": -10.145737, "n.translate": -6.719847, "n.trend": -10.145737, "n.val": -10.838885, "n.value": -10.145737, "n/": -10.838885, "n/Math.pow": -11.532032, "n/g": -11.532032, "n/lt*": -11.532032, "n=": -10.145737, "nType": -9.922594, "na": -9.740272, "name": -6.612051, "name.indexOf": -11.532032, "name.substring": -11.532032, "name.toLowerCase": -9.922594, "name=": -10.433419, "namedParam": -10.838885, "namespaces": -10.145737, "namespaces.shift": -11.532032, "namespaces.sort": -11.532032, "navigate": -11.532032, "navigator": -10.433419, "navigator.userAgent": -10.433419, "navigator.userAgent.toLowerCase": -11.532032, "nc": -10.433419, "ne": -10.838885, "necessary": -11.532032, "net": -11.532032, "net.createConnection": -11.532032, "new": -7.032222, "newDefer": -9.586122, "newDefer.notify": -11.532032, "newDefer.reject": -10.838885, "newDefer.resolve": -10.838885, "newLines": -11.532032, "newState": -9.586122, "newValue": -10.838885, "new_": -10.838885, "newexp": -10.838885, "newline_before": -11.532032, "newlines": -11.532032, "next": -7.269352, "next.length": -10.433419, "next.replace": -11.532032, "next.substring": -11.532032, "next_token": -10.145737, "next_token.context": -11.532032, "nf": -9.586122, "ni": -8.035524, "ni.getContext": -10.145737, "ni.height": -10.838885, "ni.length": -10.838885, "ni.textColor": -10.838885, "ni.width": -10.838885, "nlb": -11.532032, "noBubble": -11.532032, "noCloneEvent": -10.145737, "noConflict": -10.145737, "noData": -10.433419, "noInfo": -11.532032, "no_in": -8.587593, "node": -9.586122, "node.offsetHeight": -10.838885, "node.offsetLeft": -11.532032, "node.offsetTop": -11.532032, "nodeHook": -10.433419, "nodeHook.get": -10.838885, "nodeHook.set": -10.433419, "nodeName": -9.922594, "nodeType": -9.586122, "nodes": -10.838885, "nonBraceCharacter": -11.532032, "nonBraceCharacters": -11.532032, "non_spacing_mark": -11.532032, "none": -10.145737, "noop": -10.145737, "not": -9.452590, "notify": -11.532032, "notxml": -9.922594, "now": -9.586122, "nr": -8.396538, "nr.drawImage": -10.838885, "ns": -11.532032, "nt": -7.137583, "nt.drawImage": -10.433419, "nt.getContext": -10.838885, "nt.height": -11.532032, "nt.restore": -11.532032, "nt.save": -11.532032, "nt.translate": -10.838885, "nt.width": -11.532032, "nt/": -10.838885, "nth": -9.740272, "ntsymbol": -10.433419, "nu": -9.134136, "nu.drawImage": -10.433419, "nuke": -11.532032, "nuked": -11.532032, "null": -5.915261, "num": -8.536299, "num.substr": -10.838885, "number": -8.641660, "o": -5.757480, "o*.": -7.747842, "o._default": -11.532032, "o._default.call": -11.532032, "o.addColorStop": -9.334807, "o.childNodes": -10.838885, "o.elem": -10.838885, "o.firstChild": -10.838885, "o.firstChild.childNodes": -11.532032, "o.innerHTML": -11.532032, "o.insertBefore": -11.532032, "o.lastChild": -11.532032, "o.push": -11.532032, "o.remove": -11.532032, "o.remove.call": -11.532032, "o.shift": -11.532032, "o.slice": -11.532032, "o.split": -11.532032, "o.teardown": -11.532032, "o.teardown.call": -11.532032, "o.test": -11.532032, "o/": -11.532032, "o/r": -11.532032, "o/r*": -11.532032, "o=": -11.532032, "oa": -9.922594, "obj": -7.843152, "obj.constructor": -10.838885, "obj.constructor.prototype": -10.838885, "obj.length": -11.532032, "obj.nodeType": -10.838885, "obj.push": -11.532032, "object": -8.587593, "object.constructor.prototype": -11.532032, "object_": -10.838885, "objects": -10.838885, "obtain": -11.532032, "odd": -10.145737, "odo": -11.532032, "oe": -10.838885, "of": -8.823982, "of.state": -11.532032, "offset": -9.334807, "offsetParent": -11.532032, "offsetSupport": -11.532032, "offsetWidth": -11.532032, "offsetX": -10.838885, "offsetY": -10.838885, "oi": -8.273935, "oi*.": -10.838885, "oi.pause": -11.532032, "oi.play": -11.532032, "oi.setAttribute": -10.838885, "oi/": -10.838885, "ol": -11.532032, "old": -10.433419, "oldIE": -10.838885, "oldLines": -9.740272, "oldLines.length": -10.838885, "olddisplay": -11.532032, "omPrefixes": -11.532032, "omPrefixes.split": -11.532032, "omPrefixes.toLowerCase": -11.532032, "on": -10.145737, "onClose": -11.532032, "onFree": -11.532032, "onRemove": -10.838885, "onServerResponseClose": -10.433419, "onbeforeunload": -9.922594, "once": -10.838885, "one": -9.922594, "one_or_more": -11.532032, "only": -9.586122, "onlyHandlers": -11.532032, "onreadystatechange": -11.532032, "ontype": -11.532032, "onunload": -11.532032, "op": -8.759443, "opacity": -8.587593, "open": -10.838885, "opera": -10.145737, "operation": -10.838885, "opportunities": -11.532032, "opposite": -9.740272, "opt": -10.433419, "opt.selected": -10.838885, "optSelected": -10.145737, "opt_data": -10.838885, "option": -10.145737, "option.disabled": -11.532032, "option.getAttribute": -11.532032, "option.parentNode": -11.532032, "option.parentNode.disabled": -11.532032, "option.selected": -11.532032, "optional": -11.532032, "options": -8.035524, "options.agent": -11.532032, "options.headers": -11.532032, "options.host": -11.532032, "options.method": -11.532032, "options.path": -11.532032, "options.port": -11.532032, "options.routes": -10.838885, "options.shivMethods": -11.532032, "or": -8.353978, "or*.": -11.532032, "or.drawImage": -11.532032, "or.restore": -11.532032, "or/": -11.532032, "orig": -10.145737, "origContext": -11.532032, "origHandler": -11.532032, "origType": -10.145737, "original": -10.838885, "original.button": -11.532032, "original.charCode": -10.838885, "original.clientX": -10.838885, "original.clientY": -11.532032, "original.fromElement": -11.532032, "original.keyCode": -11.532032, "original.toElement": -11.532032, "originalEvent": -10.433419, "originalTarget": -11.532032, "orphans": -10.838885, "ot": -7.794362, "ot.addColorStop": -10.838885, "ot.getContext": -10.145737, "ot.height": -10.838885, "ot.type": -9.229447, "ot.width": -10.838885, "ot/": -11.532032, "otherwise": -10.838885, "ou": -8.967082, "out": -10.838885, "outer": -11.532032, "outgoing.shift": -11.532032, "output": -10.433419, "output.writeFieldBegin": -11.532032, "output.writeFieldEnd": -11.532032, "output.writeFieldStop": -11.532032, "output.writeString": -11.532032, "output.writeStructBegin": -11.532032, "output.writeStructEnd": -11.532032, "overflow": -9.334807, "overflowX": -11.532032, "overflowY": -11.532032, "overrideMimeType": -11.532032, "overwritten.": -11.532032, "ownerDocument": -9.922594, "p": -6.736241, "p*st": -11.532032, "p.abort": -11.532032, "p.add": -11.532032, "p.add.call": -11.532032, "p.addColorStop": -10.145737, "p.drawImage": -11.532032, "p.errStr": -10.145737, "p.labelColor.getRgbaColor": -9.452590, "p.length": -9.922594, "p.push": -11.532032, "p.restore": -10.433419, "p.rotate": -10.145737, "p.save": -10.838885, "p.send": -11.532032, "p.setup": -11.532032, "p.setup.call": -11.532032, "p.splice": -10.838885, "p.translate": -9.452590, "p/r": -11.532032, "p=": -10.433419, "pCount": -11.532032, "pValues": -10.433419, "pa": -10.838885, "padding": -10.145737, "paddingMarginBorder": -10.433419, "paddingMarginBorderVisibility": -11.532032, "pageX": -10.838885, "pageY": -10.838885, "param": -10.838885, "params": -10.838885, "params.beforeSend": -11.532032, "params.contentType": -10.838885, "params.data": -9.922594, "params.data._method": -11.532032, "params.processData": -11.532032, "params.type": -11.532032, "params.url": -10.838885, "parent": -9.229447, "parent.apply": -11.532032, "parent.prototype": -10.145737, "parentNode": -9.134136, "parentWindow": -11.532032, "parenthesised": -9.740272, "parse": -10.838885, "parseError": -9.134136, "parseFloat": -7.868470, "parseInt": -9.452590, "parseJSON": -10.145737, "parseXML": -11.532032, "parse_error": -9.586122, "parse_js_number": -10.838885, "parse_singleQuotedCharacter": -10.838885, "parser": -8.066296, "parser._headers": -10.145737, "parser._url": -10.838885, "parser.apply": -11.532032, "parser.execute": -11.532032, "parser.finish": -10.433419, "parser.incoming": -9.586122, "parser.incoming._addHeaderLine": -10.838885, "parser.incoming._emitData": -11.532032, "parser.incoming._emitEnd": -11.532032, "parser.incoming._paused": -10.838885, "parser.incoming._pendings.length": -10.838885, "parser.incoming._pendings.push": -10.838885, "parser.incoming.complete": -10.838885, "parser.incoming.method": -11.532032, "parser.incoming.readable": -11.532032, "parser.incoming.statusCode": -10.838885, "parser.incoming.upgrade": -10.838885, "parser.maxHeaderPairs": -10.145737, "parser.onBody": -11.532032, "parser.onHeaders": -11.532032, "parser.onHeadersComplete": -11.532032, "parser.onIncoming": -10.433419, "parser.onMessageComplete": -11.532032, "parser.reinitialize": -11.532032, "parser.socket": -10.145737, "parser.socket.ondata": -11.532032, "parser.socket.onend": -11.532032, "parser.socket.parser": -11.532032, "parser.socket.readable": -11.532032, "parser.socket.resume": -11.532032, "parserOnBody": -10.838885, "parserOnHeaders": -10.838885, "parserOnHeadersComplete": -11.532032, "parserOnIncomingClient": -10.838885, "parserOnMessageComplete": -10.838885, "parsers": -10.838885, "parsers.alloc": -11.532032, "parsers.free": -11.532032, "part": -11.532032, "parts": -9.047125, "pass": -10.145737, "password": -10.433419, "past": -8.892974, "past.length": -10.433419, "past.replace": -11.532032, "past.substr": -10.838885, "pastInput": -10.838885, "path": -9.740272, "pe": -10.838885, "peek": -9.047125, "peeked": -11.532032, "pei": -10.433419, "performAction": -10.838885, "permanently": -11.532032, "persuasion": -11.532032, "pf": -10.145737, "pi": -8.313156, "pi.getContext": -10.838885, "pi.height": -11.532032, "pi.width": -11.532032, "pipe": -9.922594, "pixelMargin": -11.532032, "plain": -11.532032, "plus": -11.532032, "pointer": -8.313156, "pop": -11.532032, "popState": -10.838885, "port": -9.047125, "pos": -8.698818, "position": -9.922594, "positionTopLeftWidthHeight": -11.532032, "potential": -11.532032, "pr": -8.698818, "pr*.": -11.532032, "pragma": -11.532032, "pre": -10.838885, "pre.length": -11.532032, "preErrorSymbol": -10.838885, "preFilter": -9.922594, "preType": -10.838885, "prec": -10.145737, "pred": -10.838885, "prefix": -9.047125, "prefixed": -9.452590, "prefixes": -10.838885, "prefixes.join": -10.433419, "prev": -10.433419, "prevValue": -10.838885, "prev_backslash": -10.145737, "prevent": -10.433419, "preventDefault": -9.452590, "previousSibling": -10.838885, "primary": -11.532032, "print": -10.838885, "process": -11.532032, "process.binding": -11.532032, "process.env.NODE_DEBUG": -10.838885, "process.nextTick": -11.532032, "processData": -10.838885, "produce": -11.532032, "produced": -10.838885, "prog": -8.698818, "progress": -10.838885, "progressCallbacks": -10.838885, "progressFunc": -10.838885, "progressList": -10.838885, "progressList.add": -11.532032, "progressList.lock": -10.838885, "promise": -8.698818, "promise.promise": -11.532032, "promiseMethods": -10.433419, "promiseMethods.length": -11.532032, "prop": -8.759443, "prop.charAt": -11.532032, "prop.substr": -11.532032, "propFix": -10.838885, "propHooks": -11.532032, "propName": -9.740272, "properly": -10.838885, "property": -10.838885, "props": -8.396538, "props.length": -11.532032, "proto.google.protobuf.Timestamp": -10.838885, "proto.google.protobuf.Timestamp.displayName": -11.532032, "protoProps": -10.838885, "protoProps.constructor": -11.532032, "protoProps.hasOwnProperty": -11.532032, "protocol": -11.532032, "prototype": -9.922594, "proxy": -9.334807, "prune": -11.532032, "pt": -7.524699, "pt.getContext": -10.838885, "pt.height": -11.532032, "pt.type": -9.740272, "pt.width": -11.532032, "pu": -9.334807, "pu.state": -11.532032, "publicPath": -11.532032, "punc": -10.838885, "push": -8.641660, "pushStack": -10.145737, "pushState": -10.838885, "pvt": -10.838885, "px": -10.145737, "q": -7.948513, "q.guid": -11.532032, "q.handler": -11.532032, "q.length": -11.532032, "q.namespace": -10.838885, "q.push": -11.532032, "q.test": -11.532032, "q=": -10.838885, "qa": -10.838885, "question": -11.532032, "queue": -9.134136, "quick": -9.452590, "quickExpr": -10.838885, "quickExpr.exec": -10.838885, "quickIs": -10.838885, "quickParse": -11.532032, "quiet": -11.532032, "quote": -10.433419, "r": -5.711949, "r*": -9.047125, "r.addClass": -11.532032, "r.addColorStop": -9.229447, "r.attr": -11.532032, "r.createElement": -8.967082, "r.getElementById": -9.229447, "r.getRgbaColor": -9.229447, "r.length": -10.145737, "r.live": -11.532032, "r.live.slice": -11.532032, "r.repaint": -11.532032, "r.setAlpha": -9.229447, "r.shift": -11.532032, "r.slice": -11.532032, "r.splice": -10.838885, "r.test": -11.532032, "r.toFixed": -9.452590, "r.toPrecision": -10.145737, "r/g": -10.145737, "r=": -11.532032, "rBackslash": -11.532032, "rNonWord": -11.532032, "ra": -10.838885, "race": -10.145737, "radio": -10.838885, "range": -9.452590, "ranges": -10.145737, "rboolean.test": -10.838885, "rbrace.test": -11.532032, "rdashAlpha": -11.532032, "rdigit": -11.532032, "re": -10.838885, "rea": -11.532032, "read_escaped_char": -10.433419, "read_line_comment": -10.838885, "read_multiline_comment": -10.838885, "read_name": -10.433419, "read_num": -10.433419, "read_operator": -10.433419, "read_regexp": -10.433419, "read_string": -10.838885, "read_while": -10.838885, "read_word": -10.838885, "readonly": -10.145737, "ready": -8.823982, "readyList": -9.740272, "readyList.fireWith": -11.532032, "readyList.resolveWith": -11.532032, "readyState": -10.838885, "readyWait": -10.433419, "reasonPhrase": -10.145737, "rec": -10.838885, "recoverable": -9.922594, "recovering": -11.532032, "reduced": -11.532032, "ref": -10.838885, "references": -9.922594, "regex": -11.532032, "regex_allowed": -10.145737, "regexes": -10.838885, "regexp": -9.740272, "registered": -11.532032, "regular_for": -10.838885, "reject": -9.452590, "rejectWith": -10.433419, "related": -10.145737, "relatedNode": -10.838885, "relatedTarget": -10.433419, "relative": -10.838885, "reliableMarginRight": -10.433419, "remove": -8.759443, "removeAttr": -10.145737, "removeAttribute": -10.838885, "removeClass": -9.740272, "removeData": -9.922594, "removeEvent": -10.838885, "removeEventListener": -10.145737, "removeProp": -11.532032, "replace": -8.698818, "replaced": -11.532032, "reportFailures": -10.145737, "req": -8.313156, "req._hadError": -10.838885, "req.connection": -11.532032, "req.emit": -9.334807, "req.headers": -10.838885, "req.httpVersionMajor": -10.838885, "req.httpVersionMinor": -10.838885, "req.listeners": -11.532032, "req.maxHeadersCount": -10.838885, "req.method": -10.433419, "req.onSocket": -11.532032, "req.params.root": -11.532032, "req.parser": -10.838885, "req.res": -9.586122, "req.res._emitPending": -11.532032, "req.res.emit": -11.532032, "req.res.readable": -11.532032, "req.shouldKeepAlive": -10.433419, "req.socket": -10.838885, "req.upgradeOrConnect": -10.838885, "require": -9.334807, "required": -11.532032, "res": -8.892974, "res._emitEnd": -11.532032, "res._expect_continue": -11.532032, "res._last": -11.532032, "res.detachSocket": -11.532032, "res.emit": -11.532032, "res.end": -11.532032, "res.on": -10.838885, "res.req": -10.838885, "res.upgrade": -11.532032, "res.writeContinue": -11.532032, "res.writeHead": -11.532032, "reset": -10.838885, "resetBuffers": -11.532032, "resets": -11.532032, "resize": -10.838885, "resolve": -9.740272, "resolveFunc": -10.145737, "resolveWith": -9.922594, "resp": -11.532032, "resp.send": -11.532032, "responseFields": -11.532032, "responseOnEnd": -10.838885, "rest": -11.532032, "result": -8.313156, "result.SyntaxError.prototype": -11.532032, "results": -10.145737, "ret": -7.214544, "ret.comments_before": -11.532032, "ret.fid": -11.532032, "ret.fname": -11.532032, "ret.ftype": -11.532032, "ret.nodeValue": -10.433419, "ret.specified": -11.532032, "retain": -11.532032, "return": -4.531697, "returnFalse": -9.922594, "returnTrue": -9.922594, "returnValue": -11.532032, "returned": -9.229447, "returned.promise": -10.145737, "returning": -11.532032, "returns": -10.838885, "retval": -10.433419, "rf": -9.922594, "rfocusMorph": -11.532032, "rfocusMorph.test": -11.532032, "rformElems": -11.532032, "rhoverHack": -10.838885, "ri": -8.236195, "ri.getContext": -9.740272, "ri.height": -10.433419, "ri.width": -10.433419, "right": -10.838885, "rinvalidChar.test": -11.532032, "rkeyEvent": -11.532032, "rmouseEvent": -11.532032, "rmozilla": -10.838885, "rmozilla.exec": -11.532032, "rmsPrefix": -11.532032, "rmsie": -10.838885, "rmsie.exec": -11.532032, "rmultiDash": -11.532032, "rnotwhite": -10.838885, "rnotwhite.test": -11.532032, "root": -10.145737, "root.Namespace": -11.532032, "root._": -11.532032, "rootjQuery": -9.586122, "rootjQuerySub": -10.838885, "ropera": -10.838885, "ropera.exec": -11.532032, "route": -9.047125, "route.exec": -11.532032, "route.replace": -11.532032, "routes": -10.145737, "routes.length": -11.532032, "routes.unshift": -11.532032, "rowspan": -10.433419, "rparen": -11.532032, "rquickIs": -11.532032, "rquickIs.exec": -11.532032, "rr": -8.487509, "rr.drawImage": -11.532032, "rr.length": -11.532032, "rr.restore": -11.532032, "rsingleTag": -10.838885, "rt": -7.681884, "rt.addColorStop": -10.145737, "rt.getContext": -10.145737, "rt.height": -10.838885, "rt.width": -10.838885, "rt/": -10.838885, "rtypenamespace": -11.532032, "ru": -8.892974, "rule": -9.047125, "rule.split": -11.532032, "rule_ids": -10.145737, "rule_new_ids": -10.838885, "rule_prefixes": -10.433419, "rule_re": -10.838885, "rule_ref": -11.532032, "rule_regexes": -10.838885, "rules": -10.433419, "run": -10.838885, "run_all": -11.532032, "runners": -9.740272, "rv": -8.967082, "rvalidbraces": -10.838885, "rvalidchars": -10.838885, "rvalidescape": -10.838885, "rwebkit": -10.838885, "rwebkit.exec": -11.532032, "s": -5.904411, "s*": -9.047125, "s*.": -7.770832, "s.": -11.532032, "s.addColorStop": -10.145737, "s.addEventListener": -10.145737, "s.attachEvent": -10.433419, "s.body": -10.433419, "s.body.appendChild": -11.532032, "s.body.removeChild": -11.532032, "s.canvas.height": -9.740272, "s.canvas.width": -9.740272, "s.clearRect": -10.145737, "s.createDocumentFragment": -11.532032, "s.createElement": -9.229447, "s.createTextNode": -10.838885, "s.detachEvent": -11.532032, "s.documentElement": -10.433419, "s.documentElement.doScroll": -10.838885, "s.drawImage": -9.452590, "s.events": -10.838885, "s.exec": -11.532032, "s.fillStyle": -11.532032, "s.fillText": -10.838885, "s.font": -10.838885, "s.getElementById": -11.532032, "s.getElementsByTagName": -10.838885, "s.handle": -10.433419, "s.length": -10.838885, "s.on": -11.532032, "s.readyState": -10.838885, "s.removeEventListener": -10.838885, "s.removeListener": -10.433419, "s.restore": -9.740272, "s.rotate": -10.433419, "s.save": -9.922594, "s.splice": -11.532032, "s.test": -11.532032, "s.textAlign": -11.532032, "s.textBaseline": -11.532032, "s.toFixed": -11.532032, "s.translate": -9.740272, "s/": -10.433419, "s/c": -11.532032, "s/g": -10.838885, "s/r": -11.532032, "s/ut": -11.532032, "s/vt": -11.532032, "s=": -10.838885, "sa": -10.433419, "safari": -11.532032, "sam": -10.145737, "sam.move": -10.838885, "saveClones": -11.532032, "scoped": -11.532032, "screenX": -10.838885, "screenY": -10.838885, "script": -9.740272, "scriptEval": -11.532032, "scroll": -10.838885, "scrollTo": -11.532032, "scrollTop": -11.532032, "se": -11.532032, "se.drawImage": -11.532032, "search": -9.922594, "sec": -10.838885, "seed": -11.532032, "sel": -9.922594, "selMatch": -10.145737, "select": -8.967082, "select/i": -11.532032, "selected": -10.838885, "selectedIndex": -11.532032, "selector": -7.770832, "selector.charAt": -10.145737, "selector.length": -10.145737, "selector.nodeType": -10.838885, "selectorDelegate": -11.532032, "self": -9.922594, "self.agent": -11.532032, "self.createConnection": -11.532032, "self.disable": -11.532032, "self.emit": -10.145737, "self.fireWith": -11.532032, "self.host": -11.532032, "self.listeners": -11.532032, "self.port": -11.532032, "self.removeSocket": -11.532032, "self.requests": -11.532032, "semantic_and": -11.532032, "semantic_not": -11.532032, "semicolon": -9.229447, "send": -10.838885, "sendToGoogleDrive": -11.532032, "sent.": -11.532032, "sequence": -10.433419, "serialize": -11.532032, "serializeArray": -11.532032, "server": -10.838885, "server.listen": -11.532032, "sessions": -10.838885, "set": -8.236195, "setCss": -9.740272, "setCssAll": -10.838885, "setData": -11.532032, "setEnd": -10.838885, "setInput": -9.922594, "setInterval": -9.740272, "setOffset": -11.532032, "setRequestHeader": -11.532032, "setStart": -10.838885, "setTimeout": -8.698818, "sets": -11.532032, "setup": -8.587593, "sf": -9.922594, "sharedState.yy": -10.838885, "sharedState.yy.pre_parse": -11.532032, "sharedState.yy.pre_parse.call": -11.532032, "sheet.appendRow": -11.532032, "shift": -11.532032, "shiftKey": -10.838885, "shivDocument": -10.838885, "shortend": -11.532032, "should": -10.433419, "shouldKeepAlive": -10.838885, "show": -9.047125, "showPosition": -10.838885, "shown": -10.838885, "shrinkWrapBlocks": -10.433419, "si": -8.236195, "si.getContext": -10.145737, "si.height": -10.838885, "si.width": -10.838885, "signal_eof": -10.145737, "signaling": -11.532032, "signals": -11.532032, "significantly": -11.532032, "simpleBracketDelimitedCharacter": -11.532032, "simpleCaseActionClusters": -11.532032, "simpleDoubleQuotedCharacter": -11.532032, "simpleEscapeSequence": -11.532032, "simpleSingleQuotedCharacter": -11.532032, "simple_and": -11.532032, "simple_not": -11.532032, "simple_statement": -10.145737, "simulate": -11.532032, "since": -11.532032, "single": -10.838885, "singleLineComment": -11.532032, "singleQuotedCharacter": -11.532032, "singleQuotedString": -11.532032, "size": -10.145737, "skipBody": -10.838885, "skip_whitespace": -10.838885, "slash": -11.532032, "slice": -8.698818, "slice.call": -10.433419, "sliceDeferred": -10.838885, "sliceDeferred.call": -9.922594, "slice_len": -9.740272, "slideDown": -10.838885, "slideToggle": -10.838885, "slideUp": -10.838885, "slow": -11.532032, "smile": -10.145737, "so": -9.452590, "soFar": -11.532032, "socket": -8.536299, "socket._httpMessage": -9.452590, "socket.destroy": -9.922594, "socket.destroySoon": -10.838885, "socket.emit": -10.838885, "socket.on": -10.433419, "socket.ondata": -10.838885, "socket.onend": -10.838885, "socket.parser": -10.433419, "socket.removeListener": -9.922594, "socket.writable": -10.838885, "socketCloseListener": -10.145737, "socketErrorListener": -10.145737, "socketOnData": -10.838885, "socketOnEnd": -11.532032, "solid": -10.145737, "something": -11.532032, "sort": -10.145737, "sourceIndex": -9.134136, "sp": -9.134136, "space_combining_mark": -11.532032, "span": -11.532032, "spec": -10.433419, "spec.__dispatch_lut": -11.532032, "spec.__rule_count": -10.838885, "spec.__rule_regexes": -10.838885, "spec.rules": -10.838885, "special": -9.740272, "special.add": -11.532032, "special.add.call": -11.532032, "special.postDispatch": -11.532032, "special.postDispatch.call": -11.532032, "special.setup": -11.532032, "special.setup.call": -11.532032, "specialEasing": -10.145737, "specialSubmit": -10.145737, "speed": -10.838885, "speeds": -10.145737, "sphere": -10.838885, "splatParam": -10.838885, "splice": -9.922594, "split": -9.047125, "spreadsheetName": -11.532032, "square": -9.229447, "sr": -8.487509, "src": -9.134136, "src.defaultPrevented": -11.532032, "src.getPreventDefault": -10.838885, "src.returnValue": -11.532032, "src.timeStamp": -11.532032, "src.type": -10.838885, "srcElement": -10.838885, "sstack": -9.922594, "st": -7.327339, "st*": -10.433419, "st*di": -11.532032, "st.getContext": -10.838885, "st.height": -11.532032, "st.medium.getHexColor": -10.838885, "st.onMotionChanged": -11.532032, "st.playing": -11.532032, "st.start": -11.532032, "st.stop": -11.532032, "st.width": -11.532032, "st/": -11.532032, "stack": -9.740272, "stack.push": -11.532032, "stack_probe": -10.433419, "stacktrace": -9.740272, "stand": -11.532032, "star": -11.532032, "start": -8.440989, "start_token": -10.838885, "stat": -10.433419, "state": -8.967082, "stateStackSize": -10.838885, "statement": -9.047125, "static": -11.532032, "staticProps": -11.532032, "status": -11.532032, "statusCode": -9.586122, "statusCode.toString": -11.532032, "statusLine": -11.532032, "stay": -11.532032, "steelseries": -11.532032, "steelseries.BackgroundColor.BRUSHED_STAINLESS": -10.838885, "steelseries.BackgroundColor.CARBON": -10.838885, "steelseries.BackgroundColor.DARK_GRAY": -9.452590, "steelseries.BackgroundColor.PUNCHED_SHEET": -10.838885, "steelseries.BackgroundColor.STAINLESS": -10.838885, "steelseries.BackgroundColor.TURNED": -10.838885, "steelseries.ColorDef.BLUE": -11.532032, "steelseries.ColorDef.BLUE.dark.getRgbaColor": -9.740272, "steelseries.ColorDef.RED": -9.452590, "steelseries.ColorDef.RED.medium.getRgbaColor": -9.740272, "steelseries.ForegroundType.TYPE": -9.740272, "steelseries.FrameDesign.METAL": -9.452590, "steelseries.GaugeType.TYPE": -9.586122, "steelseries.KnobStyle.SILVER": -10.145737, "steelseries.KnobType.STANDARD_KNOB": -8.892974, "steelseries.LabelNumberFormat.STANDARD": -9.922594, "steelseries.LcdColor.STANDARD": -8.967082, "steelseries.LcdColor.STANDARD_GREEN": -9.740272, "steelseries.LedColor.CYAN_LED": -10.838885, "steelseries.LedColor.GREEN_LED": -10.838885, "steelseries.LedColor.RED_LED": -9.586122, "steelseries.Odometer": -11.532032, "steelseries.Orientation.NORTH": -10.838885, "steelseries.Orientation.WEST": -9.740272, "steelseries.PointerType.TYPE": -9.922594, "steelseries.TickLabelOrientation.NORMAL": -10.838885, "steelseries.TickLabelOrientation.TANGENT": -10.838885, "steelseries.TrendState.DOWN": -10.838885, "steelseries.TrendState.OFF": -10.145737, "steelseries.TrendState.STEADY": -10.838885, "steelseries.TrendState.UP": -10.838885, "step": -9.334807, "still": -10.433419, "stop": -9.586122, "stopImmediatePropagation": -10.433419, "stopPropagation": -10.145737, "storage": -11.532032, "str": -8.098045, "str.split": -11.532032, "strcpy": -11.532032, "stream": -11.532032, "string": -8.164736, "string_decoder": -11.532032, "strlen": -11.532032, "strong": -11.532032, "style": -7.868470, "style.cssRules": -10.433419, "style.cssText": -11.532032, "style/": -11.532032, "style=": -10.145737, "styleFloat": -11.532032, "styles": -11.532032, "su": -9.047125, "sub": -10.145737, "submit": -9.452590, "submitBubbles": -10.433419, "subscripts": -9.229447, "substr": -9.452590, "substring": -11.532032, "success": -10.838885, "successful": -11.532032, "suffixed": -11.532032, "suitable": -11.532032, "superclass": -11.532032, "superfluous": -11.532032, "support": -9.134136, "support.appendChecked": -11.532032, "support.boxModel": -11.532032, "support.checkClone": -11.532032, "support.deleteExpando": -10.838885, "support.noCloneChecked": -10.838885, "support.radioValue": -11.532032, "supported": -11.532032, "supports": -10.838885, "supportsHtml5Styles": -11.532032, "supportsUnknownElements": -11.532032, "sure": -11.532032, "swap": -10.433419, "swing": -10.433419, "switch": -7.976684, "switch_block_": -10.838885, "symbol": -9.452590, "t": -5.484660, "t*.": -7.894446, "t.addColorStop": -9.229447, "t.beginPath": -9.922594, "t.closePath": -10.145737, "t.createLinearGradient": -10.838885, "t.dark.getRgbaColor": -10.838885, "t.digitalFont": -10.838885, "t.exec": -11.532032, "t.fill": -10.433419, "t.fillStyle": -10.433419, "t.format": -9.586122, "t.getAlpha": -10.145737, "t.getBlue": -10.145737, "t.getContext": -10.838885, "t.getGreen": -10.145737, "t.getRed": -10.145737, "t.getRgbaColor": -10.145737, "t.height": -10.145737, "t.height*.": -9.740272, "t.lcdColor": -10.838885, "t.lcdDecimals": -10.838885, "t.light.getRgbaColor": -10.838885, "t.lineTo": -9.452590, "t.moveTo": -10.145737, "t.onMotionChanged": -11.532032, "t.playing": -11.532032, "t.rect": -11.532032, "t.repaint": -9.740272, "t.restore": -10.838885, "t.save": -10.838885, "t.setAlpha": -10.838885, "t.setValue": -11.532032, "t.start": -11.532032, "t.stop": -11.532032, "t.stroke": -10.838885, "t.strokeStyle": -10.838885, "t.test": -10.838885, "t.toFixed": -10.838885, "t.unitString": -10.838885, "t.unitStringVisible": -10.838885, "t.value": -10.838885, "t.valuesNumeric": -10.838885, "t.width": -10.145737, "t.width*.": -9.229447, "t/": -10.433419, "t=": -10.433419, "ta": -11.532032, "ta.test": -11.532032, "tabIndex": -11.532032, "tabindex": -10.145737, "tabindex=": -11.532032, "table": -9.922594, "tag": -10.838885, "tags": -10.838885, "take": -11.532032, "target": -8.066296, "target.apply": -10.838885, "target.data": -11.532032, "target.modal": -11.532032, "target.prototype": -11.532032, "tbody": -9.922594, "td": -10.838885, "tds": -10.838885, "te": -10.838885, "teapot": -11.532032, "teardown": -8.587593, "tel": -10.838885, "tempMatch": -9.740272, "test": -9.229447, "testDOMProps": -11.532032, "testMediaQuery": -11.532032, "testProps": -10.433419, "testPropsAll": -8.892974, "test_match": -11.532032, "tested": -11.532032, "testnames": -11.532032, "tests": -8.130834, "text": -8.759443, "text.indexOf": -11.532032, "text.split": -11.532032, "text/comment": -11.532032, "textarea": -9.740272, "tf": -9.922594, "tfoot": -11.532032, "th": -11.532032, "than": -10.433419, "that": -9.229447, "that.": -10.433419, "the": -7.357645, "thead": -11.532032, "them": -10.838885, "then": -9.922594, "these": -11.532032, "they": -10.838885, "this": -4.968176, "this.": -10.838885, "this.EOF": -10.838885, "this.ERROR": -10.433419, "this.__currentRuleSet__": -9.740272, "this.__decompressed": -11.532032, "this.__error_infos": -11.532032, "this.__error_infos.length": -11.532032, "this.__reentrant_call_depth": -11.532032, "this._backtrack": -9.922594, "this._bindRoutes": -11.532032, "this._byId": -10.838885, "this._currentRules": -11.532032, "this._deferToConnect": -11.532032, "this._extractParameters": -11.532032, "this._finish": -10.838885, "this._flush": -11.532032, "this._hasBody": -10.145737, "this._hasPushState": -10.838885, "this._header": -10.145737, "this._headerNames": -10.145737, "this._headerSent": -10.838885, "this._headers": -9.134136, "this._headers.concat": -11.532032, "this._headers.length": -11.532032, "this._httpMessage": -11.532032, "this._httpMessage.emit": -11.532032, "this._implicitHeader": -10.838885, "this._input": -9.047125, "this._input.length": -11.532032, "this._input.match": -11.532032, "this._input.slice": -10.838885, "this._input.substring": -11.532032, "this._more": -9.922594, "this._onModelEvent": -11.532032, "this._remove": -11.532032, "this._renderHeaders": -10.838885, "this._routeToRegExp": -11.532032, "this._send": -9.922594, "this._sent": -11.532032, "this._signaled_error_token": -9.922594, "this._toggle.apply": -11.532032, "this._trailer": -10.838885, "this._url": -11.532032, "this._walk": -10.838885, "this._wantsPushState": -11.532032, "this._writeRaw": -11.532032, "this.addEventListener": -11.532032, "this.agent": -11.532032, "this.animate": -10.145737, "this.bind": -10.838885, "this.checked": -10.838885, "this.chunkedEncoding": -10.838885, "this.clear": -10.433419, "this.col": -10.838885, "this.color": -11.532032, "this.column": -11.532032, "this.conditionStack": -9.740272, "this.conditionStack.length": -9.586122, "this.conditionStack.pop": -11.532032, "this.conditionStack.push": -11.532032, "this.conditionStack.slice": -11.532032, "this.conditions": -10.838885, "this.connection": -9.740272, "this.connection._httpMessage": -10.838885, "this.connection.writable": -11.532032, "this.constructLexErrorInfo": -10.838885, "this.constructParseErrorInfo": -10.838885, "this.constructor": -9.740272, "this.context": -8.823982, "this.createSocket": -11.532032, "this.css": -11.532032, "this.cur": -10.838885, "this.custom": -10.838885, "this.data": -10.145737, "this.defaultActions": -10.838885, "this.dequeue": -11.532032, "this.disabled": -11.532032, "this.document": -11.532032, "this.doesAddBorderForTableAndCells": -11.532032, "this.doesNotAddBorder": -11.532032, "this.doesNotIncludeMarginInBodyOffset": -11.532032, "this.done": -9.334807, "this.each": -8.199827, "this.el": -10.838885, "this.elem": -9.229447, "this.elem.style": -10.838885, "this.elements": -10.838885, "this.emit": -10.838885, "this.end": -10.145737, "this.eq": -10.145737, "this.events": -10.838885, "this.expected": -11.532032, "this.filter": -11.532032, "this.finished": -10.838885, "this.found": -11.532032, "this.getFragment": -11.532032, "this.getMaxValue": -10.145737, "this.getMinValue": -10.145737, "this.getOdoValue": -11.532032, "this.getUTCDate": -11.532032, "this.getUTCFullYear": -11.532032, "this.getUTCHours": -11.532032, "this.getUTCMinutes": -11.532032, "this.getUTCMonth": -11.532032, "this.getUTCSeconds": -11.532032, "this.getValue": -9.586122, "this.getValueAverage": -11.532032, "this.getValueLatest": -11.532032, "this.handle.elem": -11.532032, "this.handlers": -11.532032, "this.hash": -11.532032, "this.hide": -11.532032, "this.host": -11.532032, "this.iframe": -11.532032, "this.initialize.apply": -11.532032, "this.input": -11.532032, "this.isDefaultPrevented": -9.922594, "this.isImmediatePropagationStopped": -10.433419, "this.isLocal": -11.532032, "this.isPropagationStopped": -10.433419, "this.isShown": -10.433419, "this.last_line": -11.532032, "this.length": -8.098045, "this.line": -10.433419, "this.map": -10.838885, "this.match": -9.586122, "this.match.length": -10.433419, "this.match.slice": -11.532032, "this.match.split": -11.532032, "this.match.substr": -11.532032, "this.matched": -9.740272, "this.matched.length": -10.838885, "this.matched.substr": -11.532032, "this.matched.substring": -11.532032, "this.matches": -10.433419, "this.maxHeaderPairs": -10.838885, "this.maxSockets": -11.532032, "this.message": -10.145737, "this.models": -11.532032, "this.name": -9.452590, "this.navigate": -11.532032, "this.next": -11.532032, "this.nodeName": -9.586122, "this.nodeName.toLowerCase": -10.838885, "this.nodeType": -10.145737, "this.now": -9.922594, "this.offset": -9.229447, "this.offsetParent": -10.838885, "this.onbeforeunload": -9.334807, "this.one": -10.838885, "this.options": -9.922594, "this.options.backtrack_lexer": -10.433419, "this.options.flex": -11.532032, "this.options.hide": -11.532032, "this.options.lexer_errors_are_recoverable": -11.532032, "this.options.orig": -10.838885, "this.options.post_lex": -11.532032, "this.options.post_lex.call": -11.532032, "this.options.pre_lex": -11.532032, "this.options.pre_lex.call": -11.532032, "this.options.pushState": -10.838885, "this.options.ranges": -9.740272, "this.options.root": -11.532032, "this.options.root.length": -11.532032, "this.options.show": -11.532032, "this.options.step": -11.532032, "this.options.step.call": -11.532032, "this.origType.replace": -11.532032, "this.originalEvent": -9.334807, "this.output.length": -10.433419, "this.output.shift": -11.532032, "this.outputEncodings.shift": -11.532032, "this.parseError": -10.145737, "this.parser": -11.532032, "this.pastInput": -11.532032, "this.performAction.call": -11.532032, "this.port": -11.532032, "this.pos": -9.922594, "this.pre_parse": -11.532032, "this.pre_parse.call": -11.532032, "this.prevObject": -10.838885, "this.preventDefault": -10.838885, "this.prop": -8.823982, "this.props": -10.838885, "this.props.length": -10.838885, "this.pushStack": -10.145737, "this.pushState": -11.532032, "this.queue": -9.922594, "this.removeAttribute": -11.532032, "this.removeEventListener": -11.532032, "this.repaint": -6.555298, "this.resetMaxMeasuredValue": -10.145737, "this.resetMinMeasuredValue": -10.145737, "this.route": -11.532032, "this.routes": -10.145737, "this.selected": -10.838885, "this.selectedIndex": -11.532032, "this.selector": -8.823982, "this.sendDate": -11.532032, "this.serializeArray": -11.532032, "this.setArea": -10.838885, "this.setBackgroundColor": -9.452590, "this.setForegroundType": -9.740272, "this.setFrameDesign": -9.452590, "this.setGradient": -10.838885, "this.setGradientActive": -10.838885, "this.setInterval": -11.532032, "this.setLcdColor": -9.740272, "this.setLcdDecimals": -10.433419, "this.setLedColor": -9.922594, "this.setMaxMeasuredValue": -10.433419, "this.setMaxMeasuredValueVisible": -10.145737, "this.setMaxValue": -10.145737, "this.setMinMeasuredValue": -10.433419, "this.setMinMeasuredValueVisible": -10.145737, "this.setMinValue": -10.145737, "this.setOdoValue": -11.532032, "this.setPointSymbols": -10.838885, "this.setPointerColor": -9.922594, "this.setPointerColorAverage": -11.532032, "this.setPointerType": -10.145737, "this.setPointerTypeAverage": -11.532032, "this.setScrolling": -11.532032, "this.setSection": -9.922594, "this.setSectionActive": -10.838885, "this.setThreshold": -10.145737, "this.setThresholdVisible": -10.145737, "this.setTitleString": -10.145737, "this.setTrend": -10.838885, "this.setTrendVisible": -10.838885, "this.setUnitString": -10.145737, "this.setValue": -9.334807, "this.setValueAnimated": -9.586122, "this.setValueAnimatedAverage": -11.532032, "this.setValueAnimatedLatest": -11.532032, "this.setValueAverage": -11.532032, "this.setValueColor": -10.433419, "this.setValueLatest": -11.532032, "this.shouldKeepAlive": -11.532032, "this.showPosition": -10.838885, "this.simpleCaseActionClusters": -10.838885, "this.slice": -9.922594, "this.socket": -10.145737, "this.socket.writable": -11.532032, "this.socket.write": -11.532032, "this.sockets": -9.586122, "this.stack": -10.838885, "this.start": -9.922594, "this.startTime": -10.433419, "this.state": -10.145737, "this.statusCode": -10.838885, "this.stopPropagation": -10.433419, "this.style.display": -10.433419, "this.style.overflow": -10.838885, "this.style.overflowX": -11.532032, "this.style.overflowY": -11.532032, "this.style.zoom": -11.532032, "this.sub": -10.838885, "this.subtractsBorderForOverflowNotVisible": -11.532032, "this.supportsFixedPosition": -11.532032, "this.test_match": -10.838885, "this.timeStamp": -10.433419, "this.title": -9.740272, "this.toArray": -10.838885, "this.trigger": -10.838885, "this.trigger.apply": -10.838885, "this.triggerHandler": -9.922594, "this.type": -9.134136, "this.unbind": -10.838885, "this.unit": -10.838885, "this.unput": -11.532032, "this.upcomingInput": -11.532032, "this.update": -10.838885, "this.useChunkedEncodingByDefault": -11.532032, "this.value": -9.922594, "this.valueAverage": -11.532032, "this.valueLatest": -11.532032, "this.valueOf": -10.838885, "this.writeHead": -11.532032, "this.yy": -10.145737, "this.yyleng": -9.452590, "this.yylineno": -9.334807, "this.yylloc": -10.838885, "this.yylloc.first_column": -10.433419, "this.yylloc.first_line": -11.532032, "this.yylloc.last_column": -9.922594, "this.yylloc.last_line": -10.433419, "this.yylloc.range": -9.740272, "this.yylloc.range.slice": -11.532032, "this.yytext": -9.740272, "this.yytext.length": -10.433419, "this.yytext.substr": -11.532032, "thisCache": -11.532032, "this_production": -11.532032, "tho": -11.532032, "those": -11.532032, "threads": -11.532032, "through": -11.532032, "throw": -8.536299, "ti": -7.747842, "ti.length": -11.532032, "ti.onMotionChanged": -11.532032, "ti.playing": -11.532032, "ti.start": -11.532032, "ti.stop": -11.532032, "ti/": -11.532032, "tick": -11.532032, "tickCounter": -10.145737, "tickCounter*a": -10.838885, "tickCounter*h": -10.838885, "ties": -11.532032, "time": -10.838885, "timeStamp": -10.838885, "timely": -11.532032, "timers": -10.838885, "title": -11.532032, "to": -8.587593, "toArray": -10.838885, "toElement": -10.838885, "toLowerCase": -10.433419, "toString": -10.145737, "toUpperCase": -11.532032, "together": -11.532032, "toggle": -8.823982, "toggleClass": -10.838885, "tok": -10.838885, "tokcol": -11.532032, "token": -7.660831, "token.col": -11.532032, "token.line": -11.532032, "token.type": -10.838885, "token.value": -10.838885, "token_error": -10.433419, "tokenizer": -10.433419, "tokline": -11.532032, "tokpos": -11.532032, "tom": -10.145737, "tom.move": -10.838885, "top": -9.452590, "topState": -10.838885, "toplevel": -9.740272, "tr": -8.440989, "tr.drawImage": -10.838885, "tr.getContext": -11.532032, "tr.width": -11.532032, "track": -11.532032, "tracks": -9.740272, "transferred": -11.532032, "transform": -11.532032, "transformed": -11.532032, "transition": -11.532032, "treat": -11.532032, "trend": -10.838885, "trigger": -9.229447, "triggerHandler": -10.838885, "triggerRoute": -10.838885, "trim": -9.452590, "trimLeft": -10.433419, "trimRight": -10.433419, "true": -6.274536, "try": -7.843152, "try_": -10.838885, "tt": -7.488981, "tt.getContext": -10.838885, "tt.height": -11.532032, "tt.labelColor.getRgbaColor": -10.838885, "tt.symbolColor.getRgbaColor": -11.532032, "tt.width": -11.532032, "tu": -8.967082, "tu.drawImage": -11.532032, "type": -7.255366, "type.indexOf": -10.838885, "type.slice": -11.532032, "type.split": -11.532032, "typeof": -6.752908, "types": -11.532032, "u": -5.883058, "u*": -11.532032, "u*.": -7.600206, "u*i": -11.532032, "u*i*": -10.838885, "u*n": -10.838885, "u*r": -11.532032, "u*r*": -11.532032, "u.addColorStop": -8.641660, "u.area": -10.838885, "u.backgroundColor": -9.740272, "u.backgroundVisible": -9.740272, "u.beginPath": -11.532032, "u.canvas.height": -9.334807, "u.canvas.height*.": -10.838885, "u.canvas.width": -9.334807, "u.canvas.width*.": -10.838885, "u.clearRect": -9.740272, "u.clip": -11.532032, "u.closePath": -11.532032, "u.createRadialGradient": -11.532032, "u.customLayer": -10.145737, "u.decimalsVisible": -10.838885, "u.degreeScale": -10.145737, "u.digitalFont": -10.838885, "u.drawImage": -8.396538, "u.elem": -11.532032, "u.exec": -11.532032, "u.fillStyle": -10.433419, "u.fillText": -9.922594, "u.font": -9.740272, "u.foregroundType": -9.740272, "u.foregroundVisible": -9.740272, "u.frameDesign": -9.740272, "u.frameVisible": -9.740272, "u.getContext": -11.532032, "u.gradientFraction": -10.433419, "u.gradientStartColor": -11.532032, "u.gradientStopColor": -11.532032, "u.guid": -11.532032, "u.handler": -11.532032, "u.height": -11.532032, "u.knobStyle": -10.145737, "u.knobType": -10.145737, "u.lcdColor": -10.838885, "u.lcdTitleStrings": -10.838885, "u.lcdVisible": -10.838885, "u.length": -10.433419, "u.measureText": -10.433419, "u.namespace": -10.838885, "u.pointSymbols": -10.145737, "u.pointerColor": -9.740272, "u.pointerColorAverage": -10.838885, "u.pointerType": -10.838885, "u.pointerTypeAverage": -10.838885, "u.pointerTypeLatest": -10.838885, "u.push": -11.532032, "u.rect": -11.532032, "u.restore": -9.586122, "u.roseVisible": -10.145737, "u.rotate": -10.145737, "u.save": -9.334807, "u.section": -10.838885, "u.shadowBlur": -10.838885, "u.shadowColor": -10.838885, "u.shadowOffsetX": -10.838885, "u.shadowOffsetY": -10.838885, "u.size": -9.740272, "u.splice": -11.532032, "u.strokeStyle": -10.433419, "u.test": -11.532032, "u.textAlign": -10.433419, "u.textOrientationFixed": -10.838885, "u.titleString": -10.838885, "u.toFixed": -10.838885, "u.toPrecision": -11.532032, "u.translate": -9.452590, "u.useColorLabels": -10.838885, "u.width": -11.532032, "u/": -8.536299, "u/vt": -11.532032, "u00c0": -9.922594, "u=": -10.838885, "uFEFF/": -11.532032, "uFFFF": -9.586122, "ua": -9.586122, "ua.indexOf": -11.532032, "ua.test": -11.532032, "ua.toLowerCase": -11.532032, "uaMatch": -9.922594, "ucProp": -9.922594, "ue": -11.532032, "uf": -9.922594, "ufeff": -11.532032, "ufff": -11.532032, "uffff": -11.532032, "ui": -8.098045, "ui*.": -11.532032, "ui.getContext": -10.145737, "ui.height": -10.838885, "ui.length": -10.838885, "ui.width": -10.838885, "ui/": -11.532032, "ul": -11.532032, "unbind": -9.452590, "undefined": -5.674099, "undelegate": -10.838885, "under": -9.922594, "unexpected": -8.892974, "unfolded": -11.532032, "unicodeEscapeSequence": -11.532032, "union": -11.532032, "unknown": -11.532032, "unlimited": -11.532032, "unload": -10.838885, "unput": -10.433419, "unrecognized": -10.433419, "unshift": -10.838885, "unshifts": -11.532032, "up": -10.838885, "upcomingInput": -10.838885, "update": -10.838885, "upperCaseLetter": -11.532032, "ur": -8.487509, "ur/bi": -11.532032, "url": -9.047125, "urlError": -11.532032, "use": -10.145737, "useGradient": -10.838885, "used": -11.532032, "usemap": -10.433419, "userAgent": -10.433419, "userland": -10.145737, "ut": -7.437687, "ut*.": -10.838885, "ut.addColorStop": -10.838885, "ut.drawImage": -10.838885, "ut.getContext": -10.838885, "ut.height": -11.532032, "ut.onMotionChanged": -11.532032, "ut.onMotionFinished": -10.838885, "ut.playing": -11.532032, "ut.restore": -11.532032, "ut.rotate": -11.532032, "ut.save": -11.532032, "ut.start": -11.532032, "ut.stop": -11.532032, "ut.translate": -10.433419, "ut.type": -9.740272, "ut.width": -11.532032, "ut/": -9.922594, "util": -11.532032, "util.inherits": -10.433419, "uu": -8.967082, "uu.drawImage": -11.532032, "uuid": -11.532032, "v": -6.736241, "v*.": -10.433419, "v.abort": -10.838885, "v.canvas.height": -10.145737, "v.canvas.width": -10.145737, "v.clearRect": -10.838885, "v.complete": -11.532032, "v.createRadialGradient": -10.838885, "v.done": -11.532032, "v.drawImage": -9.740272, "v.error": -11.532032, "v.exec": -11.532032, "v.fail": -11.532032, "v.get": -11.532032, "v.getResponseHeader": -10.838885, "v.readyState": -10.838885, "v.restore": -11.532032, "v.save": -11.532032, "v.set": -11.532032, "v.setRequestHeader": -9.922594, "v.status": -10.838885, "v.statusCode": -10.838885, "v.statusText": -11.532032, "v.success": -11.532032, "v.then": -11.532032, "v/": -11.532032, "v=": -10.838885, "va.concat.apply": -11.532032, "va.slice": -11.532032, "val": -8.698818, "valHooks": -11.532032, "valid": -10.433419, "value": -7.150005, "value.call": -11.532032, "value.toLowerCase": -11.532032, "valueBackColor": -11.532032, "valueForeColor": -11.532032, "values": -9.134136, "var": -4.685089, "var_": -10.433419, "vardefs": -10.433419, "ve": -10.433419, "version": -9.586122, "vertical": -11.532032, "vf": -9.922594, "vi": -8.641660, "vi.drawImage": -10.838885, "vi.getColorAt": -11.532032, "vi.getContext": -10.838885, "vi.getEnd": -11.532032, "vi.getStart": -11.532032, "vi.height": -11.532032, "vi.width": -11.532032, "via": -10.838885, "view": -10.838885, "viewOptions": -11.532032, "visibility": -10.433419, "vr": -8.536299, "vstack": -10.433419, "vt": -7.543048, "vt.getContext": -10.838885, "vt.height": -11.532032, "vt.width": -11.532032, "vt/": -10.433419, "vu": -9.229447, "w": -6.695750, "w*": -10.838885, "w*.": -9.740272, "w.": -8.698818, "w.labelColor": -11.532032, "w.labelColor.getRgbaColor": -10.838885, "w.labelColor.setAlpha": -11.532032, "w.textColor": -11.532032, "w/r": -11.532032, "wa": -10.838885, "wait": -9.452590, "warn": -9.922594, "was": -11.532032, "we": -9.134136, "webkit": -9.922594, "webpack": -11.532032, "webpackDevMiddleware": -10.838885, "webpackHot": -11.532032, "websocket": -10.838885, "week": -11.532032, "well": -11.532032, "wf": -10.145737, "what": -10.838885, "wheelDelta": -10.838885, "when": -9.229447, "where": -11.532032, "whether": -10.433419, "which": -8.892974, "while": -7.660831, "whitespace": -11.532032, "wi": -8.313156, "wi.getContext": -10.838885, "wi.height": -11.532032, "wi.width": -11.532032, "widget": -11.532032, "widows": -10.838885, "width": -9.134136, "window": -9.334807, "window.": -9.740272, "window.DocumentTouch": -11.532032, "window.Modernizr": -11.532032, "window.WebGLRenderingContext": -11.532032, "window.addEventListener": -10.838885, "window.angular": -11.532032, "window.attachEvent": -10.838885, "window.document": -10.838885, "window.frameElement": -10.838885, "window.history": -11.532032, "window.history.pushState": -11.532032, "window.html": -11.532032, "window.jQuery": -9.586122, "window.location": -10.838885, "window.location.hash": -11.532032, "window.location.pathname": -11.532032, "window.location.search": -11.532032, "window.navigator": -10.838885, "window.postMessage": -11.532032, "winner": -9.740272, "with_eof_error": -10.145737, "word": -9.452590, "would": -10.838885, "wr": -8.587593, "writable": -10.433419, "ws": -10.838885, "ws.on": -11.532032, "wsId": -10.433419, "wss": -11.532032, "wss.on": -11.532032, "wt": -8.273935, "wt.decimalBackColor": -11.532032, "wt.decimalForeColor": -11.532032, "wt.decimals": -11.532032, "wt.digits": -10.838885, "wt.font": -11.532032, "wt.getContext": -10.838885, "wt.height": -11.532032, "wt.light.getRgbaColor": -10.838885, "wt.medium.getRgbaColor": -10.433419, "wt.repaint": -11.532032, "wt.valueBackColor": -11.532032, "wt.valueForeColor": -11.532032, "wt.width": -11.532032, "wu": -9.334807, "wu.repaint": -11.532032, "www": -11.532032, "x": -7.747842, "x.browser": -10.838885, "x.version": -11.532032, "xA": -10.145737, "xA0": -10.838885, "xa": -10.433419, "xhr": -11.532032, "xhr.setRequestHeader": -11.532032, "xml": -10.433419, "xyz": -11.532032, "y": -6.878071, "y*.": -9.740272, "y.canvas.height": -10.433419, "y.canvas.width": -10.433419, "y.clearRect": -10.838885, "y.done": -11.532032, "y.drawImage": -9.740272, "y.resolveWith": -11.532032, "y.restore": -11.532032, "y.save": -11.532032, "y=": -10.145737, "ya": -10.838885, "ya.call": -11.532032, "ye": -10.838885, "yes": -10.838885, "yf": -10.433419, "yf.repaint": -11.532032, "yi": -8.587593, "yi.drawImage": -10.838885, "yi.getContext": -10.838885, "yi.height": -11.532032, "yi.pause": -11.532032, "yi.play": -11.532032, "yi.setAttribute": -10.838885, "yi.width": -11.532032, "you": -11.532032, "yr": -8.641660, "yt": -8.066296, "yt.getColorAt": -10.838885, "yt.getContext": -9.740272, "yt.getEnd": -10.838885, "yt.getStart": -10.838885, "yt.height": -10.433419, "yt.onMotionChanged": -11.532032, "yt.playing": -11.532032, "yt.start": -11.532032, "yt.stop": -11.532032, "yt.width": -10.433419, "yt/at": -11.532032, "yu": -9.229447, "yy": -8.487509, "yy_": -11.532032, "yy_.yytext": -8.440989, "yyleng": -9.452590, "yylineno": -9.334807, "yylloc": -8.698818, "yylloc.first_column": -11.532032, "yylloc.first_line": -11.532032, "yylloc.last_column": -11.532032, "yylloc.last_line": -11.532032, "yylloc.range": -10.433419, "yyloc": -11.532032, "yylval.string": -10.838885, "yylval.value": -10.145737, "yytext": -8.967082, "yyval.": -10.838885, "yyval._": -11.532032, "z": -8.164736, "z.add": -11.532032, "z.add.call": -11.532032, "z.events": -10.838885, "z.handle": -10.433419, "z.setup": -11.532032, "z.setup.call": -11.532032, "z.test": -10.433419, "z=": -11.532032, "zIndex": -10.838885, "za": -10.433419, "zeroEscapeSequence": -11.532032, "zero_or_more": -11.532032, "zoom": -10.433419, "{": -3.635851, "|": -6.680002, "||": -4.965359, "}": -3.632136, "~": -9.586122, }, "Jison": map[string]float64{ "$": -5.102911, "%": -3.759176, "(": -6.201523, ")": -6.201523, ",": -6.894670, "-": -6.894670, ":": -2.577182, ";": -2.525222, "=": -5.796058, "ADD_ASSIGN": -6.201523, "AND_ASSIGN": -6.201523, "AND_OP": -6.201523, "ANY_GROUP_REGEX": -6.894670, "ASSIGN": -5.796058, "AUTO": -6.201523, "BREAK": -6.201523, "CASE": -6.201523, "CHAR": -6.201523, "CLASS": -6.894670, "CONST": -6.201523, "CONSTANT": -6.201523, "CONTINUE": -6.201523, "DEC_OP": -5.796058, "DEFAULT": -6.201523, "DIV_ASSIGN": -6.201523, "DO": -6.201523, "DOT": -5.508376, "DOUBLE": -6.201523, "ELLIPSIS": -6.201523, "ELSE": -5.508376, "ENDOFFILE": -6.894670, "ENUM": -5.508376, "EQUALITY": -6.201523, "EQ_OP": -6.201523, "EXTENDS": -6.894670, "EXTERN": -6.201523, "FLOAT": -6.201523, "FOR": -5.508376, "GE_OP": -6.201523, "GOTO": -6.201523, "GREATER": -6.201523, "ID": -6.894670, "IDENTIFIER": -4.186620, "IF": -5.508376, "IF_WITHOUT_ELSE": -6.201523, "INC_OP": -5.796058, "INT": -6.201523, "LBRACE": -5.102911, "LEFT_ASSIGN": -6.201523, "LEFT_OP": -6.201523, "LE_OP": -6.201523, "LONG": -6.201523, "LPAREN": -4.815228, "MAIN": -6.894670, "MINUS": -6.201523, "MOD_ASSIGN": -6.201523, "MUL_ASSIGN": -6.201523, "NATLITERAL": -6.894670, "NATTYPE": -6.894670, "NEW": -6.894670, "NE_OP": -6.201523, "NOT": -6.201523, "NUL": -6.894670, "OR": -6.201523, "OR_ASSIGN": -6.201523, "OR_OP": -6.201523, "PLUS": -6.201523, "PRINTNAT": -6.894670, "PTR_OP": -6.201523, "RANGE_REGEX": -6.894670, "RBRACE": -5.102911, "READNAT": -6.894670, "REGISTER": -6.201523, "RETURN": -5.796058, "RIGHT_ASSIGN": -6.201523, "RIGHT_OP": -6.201523, "RPAREN": -4.815228, "SEMICOLON": -5.285232, "SHORT": -6.201523, "SIGNED": -6.201523, "SIZEOF": -5.796058, "STATIC": -6.201523, "STRING_LIT": -6.894670, "STRING_LITERAL": -6.201523, "STRUCT": -6.201523, "SUB_ASSIGN": -6.201523, "SWITCH": -6.201523, "THIS": -6.894670, "TIMES": -6.201523, "TYPEDEF": -6.201523, "TYPE_NAME": -6.201523, "UNION": -6.201523, "UNSIGNED": -6.201523, "VAR": -6.894670, "VOID": -6.201523, "VOLATILE": -6.201523, "WHILE": -5.796058, "XOR_ASSIGN": -6.201523, "abstract_declarator": -5.508376, "additive_expression": -5.102911, "and_expression": -5.508376, "any_group_regex": -6.894670, "argument_expression_list": -5.796058, "assignment_expression": -4.948760, "assignment_operator": -6.201523, "c": -6.201523, "cast_expression": -4.948760, "cdl": -5.796058, "compound_statement": -5.102911, "conditional_expression": -5.508376, "constant_expression": -4.815228, "declaration": -5.508376, "declaration_list": -5.102911, "declaration_specifiers": -4.496775, "declarator": -4.496775, "direct_abstract_declarator": -4.948760, "direct_declarator": -4.815228, "e": -3.527374, "el": -4.948760, "enum_specifier": -6.201523, "enumerator": -5.796058, "enumerator_list": -5.508376, "equality_expression": -5.285232, "exclusive_or_expression": -5.508376, "expression": -4.329721, "expression_statement": -5.102911, "external_declaration": -5.796058, "function_definition": -6.201523, "id": -4.255613, "identifier_list": -5.796058, "inclusive_or_expression": -5.508376, "init_declarator": -5.796058, "init_declarator_list": -5.796058, "initializer": -5.508376, "initializer_list": -5.508376, "iteration_statement": -6.201523, "jump_statement": -6.201523, "labeled_statement": -6.201523, "left": -5.508376, "logical_and_expression": -5.508376, "logical_or_expression": -5.508376, "mdl": -5.796058, "multiplicative_expression": -4.948760, "nonassoc": -5.508376, "parameter_declaration": -5.796058, "parameter_list": -5.508376, "parameter_type_list": -5.508376, "pgm": -6.894670, "pointer": -5.102911, "postfix_expression": -4.697445, "prec": -6.894670, "primary_expression": -6.201523, "range_regex": -6.894670, "relational_expression": -4.815228, "right": -6.201523, "selection_statement": -6.201523, "shift_expression": -4.815228, "specifier_qualifier_list": -5.102911, "start": -6.894670, "statement": -4.255613, "statement_list": -5.508376, "storage_class_specifier": -5.796058, "string": -6.894670, "struct_declaration": -5.796058, "struct_declaration_list": -5.508376, "struct_declarator": -5.796058, "struct_declarator_list": -5.796058, "struct_or_union": -5.508376, "struct_or_union_specifier": -6.201523, "t": -5.508376, "token": -4.697445, "translation_unit": -5.796058, "type_name": -5.796058, "type_qualifier": -4.948760, "type_qualifier_list": -5.508376, "type_specifier": -5.285232, "unary_expression": -5.102911, "unary_operator": -6.201523, "vdl": -5.285232, "yy.prepareString": -6.894670, "yyleng": -6.894670, "yytext": -6.201523, "yytext.substr": -6.894670, "{": -5.796058, "|": -1.735615, "}": -5.796058, }, "Jison Lex": map[string]float64{ "%": -3.941582, "(": -3.536117, ")": -3.536117, "*": -3.941582, "+": -4.123903, ",": -5.040194, "-": -2.960753, ".": -5.040194, "/": -5.733341, ";": -1.672898, "<": -5.040194, "<EOF>": -4.634729, "=": -4.634729, ">": -5.040194, "?": -4.634729, "Z": -4.347047, "Z_": -5.733341, "[": -3.536117, "\\": -3.787431, "]": -3.430756, "^": -4.634729, "_": -5.733341, "a": -4.123903, "d": -5.040194, "digit": -5.040194, "else": -5.733341, "false": -5.733341, "id": -5.040194, "if": -5.733341, "n": -5.733341, "return": -1.782098, "s": -4.634729, "this.input": -5.733341, "this.unput": -5.733341, "throw": -5.733341, "yy.freshLine": -5.040194, "yyleng": -5.040194, "yytext": -5.040194, "yytext.substr": -5.040194, "zA": -4.123903, "{": -2.401137, "|": -4.347047, "}": -2.366045, }, "Jolie": map[string]float64{ "(": -2.375767, ")": -2.375767, "+": -3.879844, ",": -5.266138, "-": -5.671604, ".aux": -5.266138, ".dst": -5.266138, ".examName": -5.266138, ".format": -6.364751, ".move": -6.364751, ".n": -6.364751, ".question": -6.364751, ".sid": -5.671604, ".src": -5.266138, ".student": -6.364751, ".studentName": -5.266138, ":": -2.536109, ";": -2.930764, "<<": -6.364751, "<br>": -6.364751, "=": -3.186697, ">": -6.364751, "?": -5.671604, "Binding": -6.364751, "DecisionMessage": -5.266138, "DecisionMessage.examName": -6.364751, "DecisionMessage.studentName": -6.364751, "Exam": -5.671604, "ExamInput": -6.364751, "ExamInterface": -4.978456, "ExternalOperations": -5.671604, "HanoiReponse": -5.671604, "HanoiRequest": -5.266138, "Interfaces": -4.285309, "LocalOperations": -5.266138, "Location": -4.572991, "Location_Exam": -4.978456, "MakeQuestionRequest": -5.266138, "MakeQuestionRequest.examName": -6.364751, "MakeQuestionRequest.studentName": -6.364751, "OneWay": -5.671604, "PowerService": -6.364751, "Protocol": -4.755313, "RequestResponse": -4.978456, "Self": -5.671604, "Self.location": -6.364751, "StartExamRequest": -5.671604, "StartExamRequest.examName": -6.364751, "StartExamRequest.studentName": -6.364751, "Student": -5.671604, "StudentInput": -6.364751, "StudentInterface": -5.266138, "[": -4.978456, "]": -4.978456, "answer": -4.572991, "concurrent": -5.671604, "constants": -6.364751, "cset": -6.364751, "decision": -5.671604, "else": -6.364751, "examName": -6.364751, "examRequest": -6.364751, "examRequest.student": -6.364751, "execution": -5.671604, "fail": -5.671604, "fail@Exam": -6.364751, "getLocalLocation@Runtime": -6.364751, "getRandomUUID@StringUtils": -6.364751, "global.counters.": -6.364751, "hanoi": -5.671604, "hanoiSolver": -5.671604, "hanoiSolver@Self": -5.266138, "http": -6.364751, "if": -5.671604, "include": -4.062166, "init": -6.364751, "inputPort": -4.978456, "int": -5.266138, "interface": -4.978456, "main": -4.978456, "makeQuestion": -4.978456, "makeQuestion@Exam": -6.364751, "makeQuestion@Student": -6.364751, "message": -4.572991, "message.examName": -6.364751, "message.studentName": -6.364751, "nullProcess": -5.671604, "outputPort": -4.978456, "pass": -5.671604, "pass@Exam": -6.364751, "println@Console": -6.364751, "question": -4.978456, "question.examName": -6.364751, "question.question": -5.671604, "question.studentName": -6.364751, "request": -4.572991, "request.dst": -6.364751, "request.examName": -6.364751, "request.n": -5.671604, "request.sid": -5.671604, "request.src": -6.364751, "request.student.location": -6.364751, "request.student.protocol": -6.364751, "request.studentName": -6.364751, "response": -4.978456, "response.move": -5.671604, "sendMessage": -5.671604, "sendMessage@Student": -5.671604, "showYesNoQuestionDialog@SwingUI": -5.671604, "sodep": -4.978456, "startExam": -5.671604, "startExam@Exam": -6.364751, "string": -3.725693, "studentName": -6.364751, "subReq": -5.671604, "subReq.aux": -5.671604, "subReq.dst": -5.671604, "subReq.n": -5.671604, "subReq.sid": -6.364751, "subReq.src": -5.671604, "subRes": -5.671604, "subRes.move": -5.671604, "type": -4.755313, "void": -4.755313, "with": -5.671604, "{": -2.675871, "}": -2.675871, }, "Julia": map[string]float64{ "!": -4.556505, "#": -4.151040, "#STOCKCORR": -5.942799, "(": -2.541602, ")": -2.541602, "*CorrWiener": -5.249652, "*dt": -5.249652, "*exp": -5.249652, "*sqrt": -5.249652, "+": -5.249652, ",": -2.807305, "-": -3.640214, "/": -4.844187, "/usr/bin/env": -5.942799, ":": -4.556505, ";": -5.942799, "=": -2.158610, "ARGS": -5.942799, "Corr": -5.249652, "CorrWiener": -5.942799, "CurrentPrice": -4.844187, "Div": -4.844187, "SHEBANG#!julia": -5.942799, "STDOUT": -5.942799, "SimulPriceA": -4.333361, "SimulPriceB": -4.333361, "T": -4.333361, "The": -5.942799, "UpperTriangle": -5.942799, "Vol": -4.333361, "Wiener": -5.942799, "Wiener*UpperTriangle": -5.942799, "[": -2.851757, "]": -2.851757, "^": -5.249652, "`": -5.249652, "arg": -3.996889, "assets": -5.942799, "chol": -5.942799, "chomp": -5.942799, "close": -5.942799, "code": -5.942799, "copy": -4.844187, "correlated": -5.942799, "dir": -5.942799, "dt": -4.844187, "else": -5.942799, "elseif": -5.249652, "end": -3.457893, "exit": -5.942799, "false": -5.249652, "filter": -5.942799, "for": -4.556505, "function": -4.844187, "help": -4.844187, "help_screen": -5.249652, "i": -4.333361, "if": -4.333361, "isempty": -5.942799, "j": -3.996889, "julia": -5.942799, "length": -5.249652, "map": -5.942799, "n": -4.556505, "notempty": -5.249652, "original": -5.942799, "path": -5.249652, "paths": -3.640214, "pbcopy": -5.942799, "print": -5.249652, "print_paths": -4.844187, "println": -5.942799, "process": -5.942799, "push": -5.942799, "pwd": -5.942799, "r": -4.844187, "randn": -5.942799, "read": -5.942799, "readandwrite": -5.942799, "readlines": -5.942799, "return": -5.249652, "simulates": -5.942799, "stockcorr": -5.942799, "stream": -4.844187, "string": -5.249652, "that": -5.942799, "true": -5.249652, "two": -5.942799, "unoptimised": -5.942799, "write": -4.844187, "zeros": -5.249652, "||": -5.249652, }, "Jupyter Notebook": map[string]float64{ "\"": -9.737374, "+": -2.475447, ",": -6.559320, "/": -5.194079, "//": -9.044227, "//F": -9.737374, "//GT": -9.737374, "//MrfbyTvvvOLttz/Gy": -9.737374, "//OQzFEnkU": -9.737374, "//U": -9.737374, "//Vt/Kf/Qf/": -9.737374, "//av": -9.737374, "//droVjiqZIunUvhGroAy": -9.737374, "//f": -9.737374, "//fnqjLTQ": -9.737374, "//ih": -9.737374, "//jvfRfPveddNGBz": -9.737374, "//lv": -9.737374, "//t": -9.737374, "//x/": -9.737374, "//yNA": -9.737374, "/AAAIABJREFUeJzsvVusrVl": -9.737374, "/AcwTJSpTR/L": -9.737374, "/AfyY": -9.737374, "/AhE": -9.737374, "/ArD": -9.737374, "/B": -9.737374, "/BYgk": -9.737374, "/Bj/vX": -9.737374, "/C": -9.737374, "/CeaIlzmt": -9.737374, "/Cn/t": -9.737374, "/D": -9.737374, "/DL/y": -9.737374, "/DOv": -9.737374, "/Dc": -9.737374, "/DnPPNa/oYz": -9.737374, "/Du": -9.737374, "/E": -9.044227, "/EeYwYcPH": -9.737374, "/F": -9.737374, "/FIMM": -9.737374, "/FJEoTKTC": -9.737374, "/FVZVo": -9.737374, "/FY": -9.737374, "/FZu": -9.737374, "/Fh": -9.737374, "/Fm": -9.737374, "/FqNO": -9.737374, "/Fz//pP": -9.737374, "/G": -9.737374, "/GUWYAkfaDoJGLuuqXIRCWBEgYHruu": -9.737374, "/GYr": -9.737374, "/H/sh": -9.737374, "/I/": -9.737374, "/IP/qJH": -9.737374, "/J": -9.044227, "/JXMVdCC/N": -9.737374, "/Jx": -9.737374, "/KDzhbcXv": -9.737374, "/KQfNGRmJrqwlW": -9.737374, "/KmtQzJIxcFYnUYycNRbz": -9.737374, "/LHl": -9.737374, "/LO/": -9.737374, "/Lz": -9.737374, "/M": -8.638762, "/M//wkdhMScqKOB//Fu/rHbNNvCuYVEt": -9.737374, "/Mc": -9.737374, "/Mn": -9.737374, "/Mu": -9.737374, "/MuTVpX/Q": -9.737374, "/N": -8.638762, "/NfAxOJ": -9.737374, "/NipDiqa": -9.737374, "/NmXs": -9.737374, "/Nn/": -9.737374, "/Ntp": -9.737374, "/O": -9.737374, "/OT": -9.737374, "/OTFTGquS": -9.737374, "/OiisRTtkj/dXnAXA": -9.737374, "/Orcv/CR": -9.737374, "/OxOO": -9.737374, "/P": -9.044227, "/PGLln": -9.737374, "/PKZ": -9.737374, "/Pc": -9.737374, "/QJWBpvLpRY": -9.737374, "/QTRsmiM": -9.737374, "/QZ": -9.737374, "/QoWgbXKCy": -9.737374, "/QwzqNxtQQ": -9.737374, "/RN": -9.737374, "/RRPPHnNf/tVX": -9.737374, "/RgKUuxjSCeNk": -9.737374, "/S": -9.737374, "/T": -9.737374, "/TNObqk": -9.737374, "/TSeahnOxzIWjSwTCrKw": -9.737374, "/TZk": -9.737374, "/TijfkIXPhSdtdakk": -9.737374, "/TjNZMGVaH": -9.737374, "/U": -9.044227, "/Ubl/mttfc": -9.737374, "/UlfM": -9.737374, "/Ur/xNn/SVLPEiVt": -9.737374, "/V": -9.737374, "/VAl": -9.737374, "/VJPv": -9.737374, "/VixL": -9.737374, "/VoXMwpb": -9.737374, "/VrE": -9.737374, "/VrWFUlv": -9.737374, "/W": -9.737374, "/Ws": -9.737374, "/Wzd": -9.737374, "/X/": -9.044227, "/XRWETWYsVknrir": -9.737374, "/XZIkmMbAhClxHKEf/jDb": -9.737374, "/XjsJycVhuY": -9.737374, "/Xs": -9.737374, "/YK": -9.737374, "/YSJGueHEcPtJos": -9.737374, "/Z": -9.737374, "/ZF": -9.737374, "/ZhAGrWqS": -9.737374, "/ZpN": -9.737374, "/a": -9.737374, "/aEaD": -9.737374, "/aJv": -9.737374, "/aLwYc": -9.737374, "/ae": -9.737374, "/ax": -9.737374, "/b": -9.737374, "/bBeRR": -9.737374, "/bP": -9.737374, "/bWRST": -9.737374, "/bWaaMx": -9.737374, "/bnK": -9.737374, "/cD": -9.737374, "/cHv": -9.737374, "/cKnvzpvzwksnXnhpozfdKm/": -9.737374, "/cO": -9.737374, "/ctv": -9.737374, "/d": -8.638762, "/dnO": -9.737374, "/doVjAk": -9.737374, "/dpyR": -9.737374, "/e": -9.737374, "/eHv": -9.737374, "/eNZ": -9.737374, "/eOThvZ": -9.737374, "/eUFZi": -9.737374, "/eXyxR": -9.737374, "/exsH": -9.737374, "/f": -9.044227, "/fSTgpQ/": -9.737374, "/flakmuZXJ": -9.737374, "/g": -8.638762, "/gw": -9.737374, "/h": -9.044227, "/heQajDWVjoUyvWg": -9.737374, "/hn": -9.737374, "/iJ": -9.737374, "/iJOm": -9.737374, "/iMv": -9.737374, "/iSr/g": -9.737374, "/iU": -9.737374, "/ibf": -9.737374, "/in": -9.737374, "/ir": -9.737374, "/izLjSvTNlbS": -9.737374, "/j": -9.044227, "/jDrStKfvN": -9.737374, "/jLp": -9.737374, "/jbu": -9.737374, "/jp": -9.737374, "/jrbeu/I": -9.737374, "/k": -9.044227, "/kO/": -9.737374, "/kOvJda": -9.737374, "/ka/": -9.737374, "/kidh": -9.737374, "/kj/": -9.737374, "/krXM": -9.737374, "/l": -8.638762, "/lWkxCD": -9.737374, "/lcx": -9.737374, "/leQu": -9.737374, "/lnmmu": -9.737374, "/m": -9.044227, "/mZ": -9.737374, "/nvJyR": -9.737374, "/o": -9.737374, "/ob": -9.737374, "/omEj": -9.737374, "/p": -9.737374, "/pE/StRwYaTee": -9.737374, "/pIOoop": -9.737374, "/pOetCdk": -9.737374, "/pz/z": -9.737374, "/pzY": -9.737374, "/q": -9.737374, "/r/sYXa": -9.737374, "/s/": -9.737374, "/sRqkEpMd": -9.737374, "/sYqeKV": -9.737374, "/scYfjPNVg": -9.737374, "/sk": -9.737374, "/svUHVgkqy": -9.737374, "/t": -8.351080, "/tF": -9.737374, "/ujVyTRxbzAqtBZMCQxdeXscak": -9.737374, "/utO": -9.737374, "/uv/": -9.737374, "/v": -8.351080, "/v/tu": -9.737374, "/vGGO/bP": -9.737374, "/vL": -9.737374, "/vLPL": -9.737374, "/vM/": -9.737374, "/vThc": -9.737374, "/vXP": -9.737374, "/va": -9.737374, "/vtvPrbvpIH": -9.737374, "/vvBXrjMcwNQRnyu": -9.737374, "/vvjTeW": -9.737374, "/w": -9.044227, "/wL": -9.737374, "/wX": -9.737374, "/wb/PE/": -9.737374, "/wc": -9.737374, "/wn": -9.737374, "/x": -9.044227, "/xMOOnRq": -9.737374, "/xWIi/UsnN": -9.737374, "/y": -9.044227, "/yBZ": -9.737374, "/yL": -9.044227, "/yeJTR": -9.737374, "/z": -9.044227, "/zGNhvWhhF": -9.737374, "/zb": -9.737374, "/ze": -9.737374, "/zsvhiLW": -9.737374, ":": -7.029324, "A": -6.023802, "A/": -9.737374, "A//s/": -9.737374, "A/ONbnGeJ": -9.737374, "AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz": -9.737374, "AAADtCAYAAAAcNaZ": -9.737374, "AACAASURBVKN": -9.737374, "AAhkCtEEzSplJShQINVUSCEhWRIhSRNg": -9.737374, "AAlQ": -9.737374, "AC": -9.044227, "ACM": -9.737374, "ACQ": -9.737374, "ACsyHBa": -9.737374, "ADw": -9.737374, "AE": -9.737374, "AEHThuacfXWFPliBk": -9.737374, "AEYLKVEvu": -9.737374, "AFVTorShPHO": -9.737374, "AFkUa": -9.737374, "AFphavYmLBT": -9.737374, "AGf": -9.737374, "AGjqzszZytApg": -9.737374, "AGldrZzoXCoIKPQUiA": -9.737374, "AHB": -9.737374, "AHFPaaCpG": -9.737374, "AHfb": -9.737374, "AI": -9.737374, "AIL": -9.737374, "AIf": -9.737374, "AIgF": -9.737374, "AIpYR": -9.737374, "AJPFQ": -9.737374, "AJWYHfScmmxdjtF": -9.737374, "AK": -9.044227, "AKDVAsWwb": -9.737374, "AKuRbj": -9.737374, "ALdd": -9.737374, "ALp": -9.737374, "AMKhJUkSxCAFNGCTOMNMGz": -9.737374, "AMrG": -9.737374, "AMyoe": -9.737374, "ANPlV": -9.737374, "ANuPVBbBoItCa": -9.737374, "AOS": -9.737374, "AOShrLGRw": -9.737374, "AOayQwxPMgi": -9.737374, "AP": -9.737374, "APFHTIBepV": -9.737374, "APRQJHuHAVM": -9.737374, "APiSr/j": -9.737374, "APwYfPwT": -9.737374, "AQWtKJjbruyvU": -9.737374, "AQkBVXicPJDLhs": -9.737374, "AR": -9.737374, "ARAypiuZ": -9.737374, "AROW": -9.737374, "ASFmA": -9.737374, "ASNH": -9.737374, "AT": -9.737374, "ATRDIUhJJ": -9.737374, "ATgRa": -9.737374, "AV": -9.737374, "AVYBM": -9.737374, "AVhnPBaM": -9.737374, "AVk/fWpXtFc": -9.737374, "AW": -9.737374, "AXvJ": -9.737374, "AYashy": -9.737374, "AYckVcFFO": -9.737374, "AYpFq": -9.737374, "AYpXFsjK": -9.737374, "AZ": -9.737374, "AZBclpQsW": -9.737374, "AZd": -9.737374, "AZlkEwUz": -9.737374, "Aa": -8.638762, "AaTPySQbYjFDRFhzJyRT": -9.737374, "AakQjHjdKJJAzyO": -9.737374, "Ab": -8.638762, "AbahBZaQAwzKMkoru": -9.737374, "AbbhQlvZpcZ": -9.737374, "Abbl": -9.737374, "AbeejKH": -9.737374, "AcLAAXsY": -9.737374, "AcOhtz": -9.737374, "Acg/PIPHDn": -9.737374, "Ad": -9.737374, "AdCSpHoZVG": -9.737374, "AdNFdb": -9.737374, "AdXRyF": -9.737374, "Ae": -9.737374, "AetLFOGDspkqyey": -9.737374, "Af": -9.737374, "AfYpbSwS": -9.737374, "AgK": -9.737374, "AgpIg": -9.737374, "Ah": -9.737374, "AhS": -9.737374, "Ai": -9.737374, "AiOI": -9.737374, "Aiwbf/vq/nB/": -9.737374, "Aj": -9.737374, "AjB": -9.737374, "AjLsbs": -9.737374, "AjOZIYPSb": -9.737374, "AjP": -9.737374, "AjakgmhN": -9.737374, "Ajft": -9.737374, "Ak": -9.737374, "AkOZna": -9.737374, "AkXU": -9.737374, "AkfnG": -9.737374, "AkhEXkypo": -9.737374, "AklVDR": -9.737374, "Akrq": -9.737374, "AkyMDsy": -9.737374, "AliwL": -9.737374, "AlzyWYMAUgm": -9.737374, "AmNIEamENfadAqlJnUKWdFW": -9.737374, "AnjWuK": -9.737374, "Aofj": -9.737374, "ApNZv": -9.737374, "ApqzctJLAHtluMFCzNo": -9.737374, "Apx": -9.737374, "Aq/CXDFKXuo": -9.737374, "AqCIumi": -9.737374, "AqO": -9.737374, "AqSy": -9.737374, "AqiTtrhizdTNwHzyTQGRZk": -9.737374, "AqrWAZF": -9.737374, "ArmrtufBBGp": -9.737374, "AsWkEK": -9.737374, "AsaR": -9.737374, "AsayGZeK": -9.737374, "At": -8.638762, "AttxJxGCvSSK": -9.737374, "AuORSSM": -9.737374, "AuTGmg": -9.737374, "AuUWfik": -9.737374, "Aun": -9.737374, "AvJoq": -9.737374, "AwNVehVYNHofZE": -9.737374, "Awl": -9.737374, "AwrDG": -9.737374, "Axae": -9.737374, "Ay": -9.737374, "AyHruQGr": -9.737374, "Aykj": -9.737374, "AyydHb": -9.737374, "Azv": -9.737374, "B": -6.126456, "B/": -8.351080, "BAE": -9.737374, "BAqBsgy": -9.737374, "BBG": -9.737374, "BBVRsoAWX": -9.737374, "BBeWw": -9.737374, "BC": -9.737374, "BC/X": -9.737374, "BCZ": -9.737374, "BCnNPktv": -9.737374, "BCpaiaFBiEHjCclU": -9.737374, "BD": -9.737374, "BDrvOxF": -9.737374, "BE": -9.737374, "BEymoBDNPsvE": -9.737374, "BF": -9.044227, "BFY": -9.737374, "BFlB": -9.737374, "BGFL": -9.737374, "BHEumop": -9.737374, "BHN": -9.737374, "BHYvYKTz": -9.737374, "BHgR": -9.737374, "BHv": -9.737374, "BJ": -9.737374, "BJN": -9.737374, "BJPgVam": -9.737374, "BJgNGLq": -9.737374, "BK": -9.737374, "BKV": -9.737374, "BKdf": -9.737374, "BKo": -9.737374, "BLRYpBEwqEDyrhoMaU": -9.737374, "BLb/VYFFhxsVhlpb": -9.737374, "BLj": -9.737374, "BMI": -9.737374, "BMetO": -9.737374, "BN/": -9.737374, "BNCg": -9.737374, "BNHuRR": -9.737374, "BNcrvrIRBQpm": -9.737374, "BNd": -9.737374, "BNxGOfeMeyd": -9.737374, "BO": -8.638762, "BOQ": -9.737374, "BOkTieaPZFe": -9.737374, "BP": -9.737374, "BPEvC": -9.737374, "BPe": -9.737374, "BPk": -9.737374, "BQBdW": -9.737374, "BR": -9.737374, "BRAxhJiYM": -9.737374, "BRLJO": -9.737374, "BRel": -9.737374, "BSbQhrHqy": -9.737374, "BSc": -9.737374, "BSkBoJTJljBrO": -9.737374, "BSrQOiiNre": -9.737374, "BTSTIBzcwIIrSpjO": -9.737374, "BTm": -9.737374, "BTuozBKU": -9.737374, "BU": -9.737374, "BUQfG": -9.737374, "BUzgn": -9.737374, "BV": -9.737374, "BVP": -9.737374, "BVcBlpbrnQVEMM": -9.737374, "BVguu": -9.737374, "BVmUvRGTctS": -9.737374, "BWT": -9.737374, "BWUrSn": -9.737374, "BWXw": -9.737374, "BWrLNaslC": -9.737374, "BXU": -9.737374, "BXawC": -9.737374, "BXhl": -9.737374, "BYF": -9.737374, "BYqjtYXRkMLrSG": -9.737374, "BYuWDg": -9.737374, "BYwymHt": -9.737374, "BZbfpUc": -9.737374, "BZggyI": -9.737374, "BaQ": -9.737374, "Bahdlg": -9.737374, "BanC": -9.737374, "Bb": -9.737374, "BbEopYqVQNOKzgYdxIT": -9.737374, "BbEvANDZIohwcwpxCeWUVTkzNgK": -9.737374, "BbWIpVCXDpIiLekRAW": -9.737374, "BbY": -9.737374, "BbYBUGWlOxGS": -9.737374, "BbpB": -9.737374, "Bc": -9.737374, "Bcjx": -9.737374, "BcuP": -9.737374, "Bcwobik": -9.737374, "Bcx": -9.737374, "BdG": -9.737374, "BdhUpq/gOGVW": -9.737374, "BdqO": -9.737374, "BeMxhNLleWqs": -9.737374, "BeXQTzQs": -9.737374, "Bf": -9.737374, "Bfbx": -9.737374, "BgLs": -9.737374, "BglGNtRMOopJOx": -9.737374, "Bguzb": -9.737374, "BhxSMyaqJ": -9.737374, "BiUpugqgor": -9.737374, "BivNR": -9.737374, "Bj": -9.737374, "Bj/v": -9.737374, "BjN": -9.737374, "BkWJarvs": -9.737374, "BkYc": -9.737374, "Bkby": -9.737374, "BkxUqqMua": -9.737374, "BlIzJl": -9.737374, "BlLXUOwx": -9.737374, "BlXHeOj/": -9.737374, "BlYbnYixem": -9.737374, "BlvmIeiTpz": -9.737374, "Bm": -9.737374, "BmK": -9.737374, "BmPEhaBFml": -9.737374, "BmVaxrJpJrPUNoFXclaGi": -9.737374, "BmXlO": -9.737374, "Bnaa": -9.737374, "BntZM": -9.737374, "BnwX": -9.737374, "BoVnhlz": -9.737374, "BoWxe": -9.737374, "BocMF": -9.737374, "Boja": -9.737374, "Bp": -9.737374, "BpBXEEDogwkiR": -9.737374, "BpJ": -9.737374, "BpKMz": -9.737374, "BpWd": -9.737374, "BpqJ": -9.737374, "BqFCiKVbJZpus": -9.737374, "BqP": -9.737374, "Bqbe": -9.737374, "BqjAPa": -9.737374, "Br/hNf": -9.737374, "BrAJNECYMmSRiEFb": -9.737374, "BrMusS": -9.737374, "BrRtnN": -9.737374, "BrU": -9.737374, "BrnZz/K/L": -9.737374, "Bt": -9.737374, "Bum": -9.737374, "Bur": -9.737374, "Buw": -9.737374, "Bv": -9.737374, "BvWryKWFWssJ": -9.737374, "BvefhEDfNxEOgoocGt": -9.737374, "BviOSXlKjyrVhqki": -9.737374, "Bvt": -9.737374, "BvxYPIYTafE": -9.737374, "Bw": -9.044227, "BwLJG": -9.737374, "BwPSMTeP": -9.737374, "BwPmTt": -9.737374, "Bx": -9.737374, "Bx/l": -9.737374, "BxDVYsz": -9.737374, "By": -9.044227, "ByYXVrUuV": -9.737374, "ByyTtKlSnZM": -9.737374, "Bz": -9.044227, "BzIVX": -9.737374, "C": -6.048494, "C/": -9.044227, "C/eBJuUwx": -9.737374, "C/jMYYKhpG": -9.737374, "C/qrDznhXmnbhay": -9.737374, "C/tI": -9.737374, "C/zWH/utOmxTM": -9.737374, "CAscQzOE/neYgGda": -9.737374, "CBU": -9.737374, "CByI/eEZQFtJDUtShrP": -9.737374, "CC": -9.737374, "CC/": -9.737374, "CCys": -9.737374, "CDASMVgjlcHvfsuNaQBqyHD/": -9.737374, "CDK": -9.737374, "CDaQknDnTkomtKd": -9.737374, "CDhPXFC/trZU": -9.737374, "CEDSrGFBzoWIjrka": -9.737374, "CEkj": -9.737374, "CEmlYINr": -9.737374, "CFN": -9.737374, "CG": -9.737374, "CGFwjefN": -9.737374, "CGHrJfRtPKvY": -9.737374, "CGMppUzUvhmwPfV/M": -9.737374, "CGqtp": -9.737374, "CHV": -9.737374, "CHWxEpOHUk": -9.737374, "CI": -9.737374, "CIN": -9.737374, "CIS": -9.737374, "CITHMnNhQIUxLUkfKh": -9.737374, "CIsFr/pd": -9.737374, "CJUbiiJ": -9.737374, "CJZU": -9.737374, "CJl/y": -9.737374, "CK": -9.737374, "CKsKJSNk": -9.737374, "CKsYeMamns": -9.737374, "CKuqGrSR/EkTnIMFIVxFD": -9.737374, "CL": -8.638762, "CL/pSFmm": -9.737374, "CLO": -9.737374, "CLR": -9.737374, "CLdQ": -9.737374, "CLk": -9.737374, "CMOV": -9.737374, "CMP": -9.737374, "CMgjHo": -9.737374, "CMsLX": -9.737374, "CNEvm": -9.737374, "CNRlpmwvKUtGRbJEnB": -9.737374, "CNrr": -9.737374, "COCe": -9.737374, "CODd": -9.737374, "CP": -9.737374, "CP//f/rGGFGKhu": -9.737374, "CPgvPG": -9.737374, "CQRgunW": -9.737374, "CR": -9.737374, "CRKLqkR": -9.737374, "CRY": -9.737374, "CRtOH": -9.737374, "CSckKi": -9.737374, "CSiiCwqizRlaMOOWcHBwf": -9.737374, "CStopASFWmlRWTtZwbcKKFeq": -9.737374, "CSuok/PHX": -9.737374, "CTQtS": -9.737374, "CTlPpgpQw": -9.737374, "CU": -9.737374, "CUKw": -9.737374, "CVLc": -9.737374, "CVuKz": -9.737374, "CW": -8.638762, "CWBrXIZxjVuNP/bE/yB/": -9.737374, "CWHOIxhf": -9.737374, "CWWUFKUG": -9.737374, "CWmv": -9.737374, "CWpNuuAROJ": -9.737374, "CX": -9.044227, "CXAS": -9.737374, "CXSHVJB": -9.737374, "CY": -9.737374, "CYfusdgH": -9.737374, "CYslo": -9.737374, "CYvgMhg": -9.737374, "CZ": -9.737374, "CZMjhKqKiDjuegN": -9.737374, "CZRg": -9.737374, "CZgTjUnmLgJPp": -9.737374, "CZt": -9.737374, "CZyaJJqmO": -9.737374, "Ca": -9.737374, "CaMV": -9.737374, "CaNt/MiSNa": -9.737374, "CaOPLnB": -9.737374, "CacVSqfV": -9.737374, "Cb": -9.737374, "CbK": -9.737374, "CbfjX/qu/mKfXr": -9.737374, "Cbws": -9.737374, "Cc": -9.737374, "CcNFkPJYmThKt": -9.737374, "Ccqcgn": -9.737374, "Cd": -9.737374, "Cd/Xd": -9.737374, "CdC": -9.737374, "CdimwZLHzDvzdOMETHsygsjGu": -9.737374, "CeERjtFn": -9.737374, "CeSK": -9.737374, "CeUYn": -9.737374, "CebRRwhog": -9.737374, "CelhL": -9.737374, "Cey/jb/yD/": -9.737374, "Cf": -9.044227, "CfIu": -9.737374, "CfUwGC": -9.737374, "Cfk": -9.737374, "Cg": -9.044227, "Cg/Jna": -9.737374, "CgC/DDP/llqopMY": -9.737374, "CgOQWs": -9.737374, "CgvMyCFQ": -9.737374, "ChJzVwgUsJYSZCtCTNVS": -9.737374, "ChPDRYi": -9.737374, "ChyULknWRTCSYU": -9.737374, "Ci": -9.044227, "CiHZMlez": -9.737374, "CiT": -9.737374, "CjIGObs": -9.737374, "CjPoh": -9.737374, "CkE": -9.737374, "CkVIKUqJYN": -9.737374, "CkY": -9.737374, "CkpFLHdaamkzKygb": -9.737374, "CkreqaDzcbO": -9.737374, "Ckw": -9.737374, "Cl": -9.737374, "ClQWHQ": -9.737374, "ClhAyqUJDJPbhyoTISBlOCWJBNJI": -9.737374, "CllrE": -9.737374, "ClpSVbDhNxA": -9.737374, "Cm/N//": -9.737374, "CmQ/Non": -9.737374, "Cmq": -9.737374, "Cn": -9.737374, "CnOIXTTxEYiJ": -9.737374, "CnYysfvW": -9.737374, "Co": -9.737374, "CoKwNp": -9.737374, "CoMXPlhKlmYzB": -9.737374, "CoWBz": -9.737374, "CovTRKmF": -9.737374, "Cp": -9.737374, "CpK": -9.737374, "CpUcpZuMqUUsWMjEktTe": -9.737374, "Cq": -9.737374, "CqGTtCAyYJst": -9.737374, "Cqg": -9.737374, "CqnEKCiUDluSNznuQ": -9.737374, "CqnOP": -9.737374, "Cqo": -9.737374, "CqohYxGysk": -9.737374, "Cr": -8.638762, "CrUhDGKF": -9.737374, "CrUx": -9.737374, "CraZm": -9.737374, "Crs": -9.737374, "CsUjidXuRINLa": -9.737374, "CspKZFyo": -9.737374, "Ct": -9.737374, "CtV": -9.737374, "CuuNTG": -9.737374, "CvCNO": -9.737374, "CvVDvvXdrZhngtjYelkWU": -9.737374, "CvnSgSxljFFZuq": -9.737374, "Cw": -9.044227, "CwLuSezU": -9.737374, "CwnoFQgOr": -9.737374, "Cx": -9.737374, "CxUFKLUEHEyRCyqp": -9.737374, "CxlGjQBMGECEHFREw": -9.737374, "Cxuccda": -9.737374, "CxzsmXKMtg": -9.737374, "Cy": -9.737374, "CyZLrILokSypXTKmmbWEKIzpKaT": -9.737374, "CyiRSIKHRGq": -9.737374, "Cyo": -9.737374, "Cz/": -9.737374, "Cz/wgsT": -9.737374, "CzMxBmA": -9.737374, "CzO": -9.737374, "CzpcX": -9.737374, "D": -5.825351, "D/": -9.737374, "D/CPffu/": -9.737374, "D/PkNRLPEEN": -9.737374, "D/kD//L": -9.737374, "DA": -9.044227, "DA/KOjlNHGer/UwYT": -9.737374, "DB": -9.737374, "DBN": -9.737374, "DBaoml": -9.737374, "DBirqOuWeY": -9.737374, "DBlV": -9.737374, "DC": -8.638762, "DCEQ": -9.737374, "DCIVsi": -9.737374, "DCjXd": -9.737374, "DD": -9.737374, "DDb": -9.737374, "DDccJYtijVJowQhVwaXpfWhVm/L": -9.737374, "DDmPg": -9.737374, "DESIYbOXy": -9.737374, "DF": -8.638762, "DFcMrZ": -9.737374, "DFisaZh": -9.737374, "DFn": -9.737374, "DFs": -9.737374, "DFyU": -9.737374, "DG": -9.044227, "DGmsntpBNWFmTiNUmAdFySGcpR": -9.737374, "DGvgEb": -9.737374, "DH": -9.737374, "DHX": -9.737374, "DHdm": -9.737374, "DI": -9.044227, "DID": -9.737374, "DIGrsF": -9.737374, "DIH": -9.737374, "DITFsfHLJJcSUdxW": -9.737374, "DIXawm": -9.737374, "DIbU": -9.737374, "DIc": -9.737374, "DIgyS": -9.737374, "DJMAq": -9.737374, "DJcaFIRPuNFdOsmd": -9.737374, "DJlqm": -9.737374, "DKC": -9.737374, "DKM": -9.737374, "DKWLKw": -9.737374, "DKZHhZqHWRIRRre": -9.737374, "DKbQTABasWmMpZW": -9.737374, "DKllo": -9.737374, "DLCDJGBSxLlSNGX": -9.737374, "DLS": -9.737374, "DLx": -9.737374, "DM": -9.044227, "DMJKJ": -9.737374, "DMfP": -9.737374, "DMl": -9.737374, "DMxb/ihiTTjqh": -9.737374, "DMyozqjmXpgTEoq": -9.737374, "DNOjmc": -9.737374, "DNSmyJ": -9.737374, "DNvAd": -9.737374, "DO": -9.737374, "DOBdIYZJuSORMqMkZmVLubwsueuVM": -9.737374, "DOH": -9.737374, "DOUHWXk": -9.737374, "DOW": -9.737374, "DOc/BywHE": -9.737374, "DOfYKmF": -9.737374, "DPHXUUDZ/": -9.737374, "DPdD": -9.737374, "DRFeExM/mI": -9.737374, "DRwPb": -9.737374, "DS": -9.044227, "DSDLZZo": -9.737374, "DSMhCYOUuo": -9.737374, "DSOiKQEhXMg": -9.737374, "DSYTfZZKunAOtF": -9.737374, "DSabeqBqypsJh": -9.737374, "DSfSTh": -9.737374, "DSgabtOx": -9.737374, "DSpRFV": -9.737374, "DSqTA": -9.737374, "DT": -9.737374, "DTZb/": -9.737374, "DTjcdDFUjb": -9.737374, "DTp": -9.737374, "DU": -9.044227, "DUAyWrvL": -9.737374, "DUKOm": -9.737374, "DUeWvBw": -9.737374, "DUh": -9.737374, "DUsrKYdO": -9.737374, "DUtXXRznAosTgiyaPyyZuWtplKtOg": -9.737374, "DVYJ": -9.737374, "DVYlQ": -9.737374, "DVb": -9.737374, "DVcmBLkKGwhXod": -9.737374, "DVwzG": -9.737374, "DVxWebs": -9.737374, "DW": -9.737374, "DWBB": -9.737374, "DWCSsQicXUP": -9.737374, "DWcmeCxu": -9.737374, "DWopu": -9.737374, "DWy": -9.737374, "DX": -9.737374, "DX/j": -9.737374, "DXH/": -9.737374, "DXNCXNyfsjprpnpgfOjiozeUUdq": -9.737374, "DXlXcIimFCue": -9.737374, "DXvvJbUe": -9.737374, "DY": -9.044227, "DYLVnYU": -9.737374, "DYNjsaHPnClm": -9.737374, "DZBWXpX": -9.737374, "DZnP": -9.737374, "DaB": -9.737374, "DaCTkvgLS": -9.737374, "DavGO": -9.737374, "DbBYetmfRpoPE": -9.737374, "DbXGGoVJIgeqBVexEVKxxspaQogztrgMtdHTF/FjGUYbbZIrgocQoqD": -9.737374, "DbkwiWaI": -9.737374, "DcKk": -9.737374, "DceXpTRdJbgmVF": -9.737374, "Dcf": -9.737374, "Dd": -9.737374, "DdOCVPWBb": -9.737374, "Ddg": -9.737374, "DeNBuU": -9.737374, "DePl": -9.737374, "DeSt": -9.737374, "DenNyitnp": -9.737374, "Df/tP/J": -9.737374, "DfO": -9.737374, "Dfm": -9.737374, "DgzcQhaF": -9.737374, "Dh": -9.737374, "DhHpu": -9.737374, "Di": -8.638762, "DijXALbCn": -9.737374, "Diz": -9.737374, "Dj": -9.737374, "DjZW": -9.737374, "DjkYUxBhkNSxkxVmheHTOwwhakq": -9.737374, "Dk": -9.737374, "Dl": -9.737374, "DlEbMKYu": -9.737374, "DlRFyUHx": -9.737374, "DlVBYfl": -9.737374, "DldYA": -9.737374, "DmEInkZNeAEEt": -9.737374, "DmQS": -9.737374, "DmvhcF": -9.737374, "DmzZw": -9.737374, "DnDyqNNI": -9.737374, "DnGQnc": -9.737374, "DnQXSDo": -9.737374, "Dnp/dG": -9.737374, "Do": -9.044227, "DoAVuwe": -9.737374, "DoLJd": -9.737374, "DoeK": -9.737374, "DoliLpQrtjm": -9.737374, "Dp": -9.044227, "DpDzsV": -9.737374, "DpPfs/v/lZoh": -9.737374, "DpVyUzUznpBm": -9.737374, "DpatLXtMjjFkVwc": -9.737374, "Dq": -9.044227, "DqciIVJ": -9.737374, "Dr": -9.737374, "DrByvn": -9.737374, "Ds": -9.044227, "DsdMsdGDfF": -9.737374, "DshypVREwy": -9.737374, "DssEh": -9.737374, "DstPcOGPJXLQXykVX": -9.737374, "DsxNDatZLHbQJE": -9.737374, "DsyRElulF": -9.737374, "Dszg": -9.737374, "Dt": -9.737374, "DtaDWqvmQN": -9.737374, "DtsLZiXyzhm": -9.737374, "DtwvPNjighPziT/xO/": -9.737374, "Dtx": -9.737374, "DuHr": -9.737374, "DuTIpa": -9.737374, "Duhksgjtkq": -9.737374, "DvSwiaeWf": -9.737374, "DvkJrlmL": -9.737374, "DwIrNKNNqxXYC": -9.737374, "DwgeqgCIbQriBR/qHf": -9.737374, "Dx": -9.737374, "DxP": -9.737374, "Dxli/tKbNbKoHdTxI": -9.737374, "DxnBTw": -9.737374, "Dxq": -9.737374, "DyBqsN": -9.737374, "DyD": -9.737374, "DyMT": -9.737374, "DyT": -9.737374, "DybWQ": -9.737374, "Dz": -9.737374, "DztTtfXAmx": -9.737374, "E": -6.023802, "E/": -9.737374, "E/N": -9.737374, "E/oxRT": -9.737374, "EAqyTXwGl": -9.737374, "EAu": -9.737374, "EBG": -9.737374, "EBfjnsHSNTR": -9.737374, "EBzd": -9.737374, "ECitFTJkSu": -9.737374, "ECogFknZmBujCG": -9.737374, "ECxgBObDstKZFYPNO": -9.737374, "ED": -9.737374, "EDKbXU": -9.737374, "EDVuSCITGrI/t": -9.737374, "EF": -9.737374, "EFJNGpd": -9.737374, "EFNKhUM": -9.737374, "EFkN": -9.737374, "EFl": -9.737374, "EFlL": -9.737374, "EH": -9.737374, "EHTgztL": -9.737374, "EHlQ": -9.737374, "EIRaJObSFI": -9.737374, "EIslcaCXC": -9.737374, "EIzDujC": -9.737374, "EJ/ZZzMobB": -9.737374, "EJKM": -9.737374, "EJLwpYwXQd": -9.737374, "EJSuNtmOnLnxDawr": -9.737374, "EJZHKWc": -9.737374, "EJjxGsmZX": -9.737374, "EJyUPm": -9.737374, "EK": -9.737374, "EKs": -9.737374, "ELHclUA": -9.737374, "ELNTqqA": -9.737374, "ELZZOBl": -9.737374, "ELvQmUNLxjOThOx": -9.737374, "EMvn": -9.737374, "ENED": -9.737374, "ENXi": -9.737374, "ENe": -9.737374, "ENl": -9.737374, "ENu": -9.737374, "EOWqW": -9.737374, "EOt": -9.737374, "EP": -9.044227, "EP/Ecfo": -9.737374, "EPZbZcOp": -9.737374, "EPuEWOGA": -9.737374, "EQ": -9.044227, "EQDpFxl": -9.737374, "EQnoAgZSFqWBolwZGtaLDcFuiRuwhs": -9.737374, "ERVlXtyuCsyp": -9.737374, "ERnCj": -9.737374, "ES": -9.737374, "ES/cuR": -9.737374, "ESDUnvFlQZLF": -9.737374, "ESYK": -9.737374, "ESaXhDQ": -9.737374, "ETKmWNNLDWxlAtWlTtEQJqOM": -9.737374, "ETaPtw": -9.737374, "ETtGif": -9.737374, "ETxrBuvBrZKrD": -9.737374, "EUL": -9.737374, "EUvVMm": -9.737374, "EVO": -9.737374, "EVk": -9.737374, "EVmk": -9.737374, "EW": -9.044227, "EWJMFQ": -9.737374, "EWNT": -9.737374, "EWdJSWOrouoXPInjhuxnUP": -9.737374, "EWlqjXT": -9.737374, "EX": -9.044227, "EX/": -9.737374, "EXdBdGZocj": -9.737374, "EXeZIPUnJKrbz": -9.737374, "EXj": -9.737374, "EXxjPFgKuaaHbJ": -9.737374, "EY": -8.638762, "EYB": -9.737374, "EYG": -9.737374, "EYRAwyFRHuvetl": -9.737374, "EYhkik": -9.737374, "EYwImhtE": -9.737374, "EYzeUMao": -9.737374, "EZ": -9.737374, "Ea": -9.737374, "Ea/QM": -9.737374, "EaSYyFaDXGMiJ": -9.737374, "EakaP": -9.737374, "EavgeBXar": -9.737374, "Eb": -9.737374, "EbXYfMptwKojGw": -9.737374, "EbgmUKyM": -9.737374, "EbjJGcrUmpcDba": -9.737374, "Ec": -9.737374, "EcQ": -9.737374, "EcSp": -9.737374, "EcbHKfmZAdbvzmEJTyHximxD/NmaoHCU": -9.737374, "EckK": -9.737374, "EcrRMZSgLebXsGWJ": -9.737374, "Ed": -9.044227, "EdWWNbAcuz": -9.737374, "EeY/SgIaAsOC": -9.737374, "EeyBDQmu": -9.737374, "Ef/Hf": -9.737374, "Ef/zPcTdeEeK": -9.737374, "EfA": -9.737374, "EfX": -9.737374, "EfccLZC": -9.737374, "EfvTv": -9.737374, "Eg": -9.737374, "EgUdhPTlMDrRgQlN": -9.737374, "EgwMrg": -9.737374, "Eh": -9.737374, "EhKRdwWCPLaEOi/bGNCo": -9.737374, "EhgfeZJzLXKlxwIoZCA": -9.737374, "EhqaJhPycHqY": -9.737374, "Ei": -9.737374, "EiEKKlRvvEJmeZ": -9.737374, "EiG": -9.737374, "EiJV": -9.737374, "EjkV": -9.737374, "EjqVDvyjYcEifupDtm": -9.737374, "EjrKb": -9.737374, "EkD/b": -9.737374, "EkZ": -9.737374, "EkzQmlNtUEvZmnVpoNOXXIah": -9.737374, "El": -9.044227, "ElH": -9.737374, "ElHJjGgnUY": -9.737374, "ElV": -9.737374, "ElwDcpAwp": -9.737374, "Em": -9.737374, "EmduzK": -9.737374, "Emw": -9.737374, "EndZcc": -9.737374, "EojVpiz": -9.737374, "Eorc": -9.737374, "EosewJh": -9.737374, "Eotc": -9.737374, "Ep": -9.737374, "EpS": -9.737374, "Epe": -9.737374, "EphE": -9.737374, "Epj": -9.737374, "EqE": -9.737374, "EqFWCokvDFHwctFrc": -9.737374, "ErOLMxOpzWeb": -9.737374, "ErSy": -9.737374, "ErjwZPPvkktzePKZb": -9.737374, "ErpS": -9.737374, "Ers": -9.737374, "Es": -9.737374, "EsQU": -9.737374, "Et": -9.737374, "EtL": -9.737374, "EtQuDKr": -9.737374, "Eu": -9.737374, "EuWnvdV": -9.737374, "EvZMdnb": -9.737374, "EvuqFHU": -9.737374, "EvvcLj": -9.737374, "EvzURfmoQYL": -9.737374, "EwJI": -9.737374, "EwbHXi": -9.737374, "Ewg": -9.737374, "ExA": -9.737374, "ExkMsx": -9.737374, "EyD": -9.737374, "EyJCxFKOMTF": -9.737374, "EzHY": -9.737374, "EzJ": -9.737374, "EzP": -9.737374, "EzUwtIb": -9.737374, "EzdlrXNXHFBT": -9.737374, "Ezfvf": -9.737374, "EzrRu": -9.737374, "F": -7.945614, "F//O": -9.737374, "F/gOAYvX": -9.737374, "FD": -9.737374, "FDVG/": -9.737374, "FDXNvnKttRc": -9.737374, "FIKJ": -9.737374, "FJeViZ": -9.737374, "FR": -9.044227, "FSl": -9.737374, "FTOZF": -9.737374, "FUMicE": -9.737374, "Fi": -9.737374, "FivLhe": -9.737374, "FsOCZnLIeCn": -9.737374, "FtVSVQblo": -9.737374, "Fu": -9.737374, "Fw": -9.737374, "FwErh": -9.737374, "FyDFprAtC": -9.737374, "G": -5.845554, "G/": -8.638762, "G/Tcz": -9.737374, "G/lFv/I": -9.737374, "GA": -9.044227, "GAAa": -9.737374, "GAlB": -9.737374, "GAzUr": -9.737374, "GBAV": -9.737374, "GByWwlILuVaKGTUHSxVM": -9.737374, "GC": -9.737374, "GCXD": -9.737374, "GCdmVN": -9.737374, "GCkTtmg": -9.737374, "GCopyp": -9.737374, "GDB": -9.737374, "GDenxnkfnPfG": -9.737374, "GDvmmE": -9.737374, "GE": -9.737374, "GEBgXeiWnQ": -9.737374, "GEjxGQB": -9.737374, "GEucui/v": -9.737374, "GF": -9.044227, "GFEyAuuAf": -9.737374, "GFGDOWV": -9.737374, "GFVdKCkrmLhE": -9.737374, "GFbEXDx": -9.737374, "GFcE": -9.737374, "GFfvAaub": -9.737374, "GFqxm": -9.737374, "GFylr": -9.737374, "GFz/is": -9.737374, "GG": -9.737374, "GGTmZp": -9.737374, "GGhmJepC": -9.737374, "GGiGXNvjyVHyXO": -9.737374, "GGxbidvvXXlk": -9.737374, "GHrEDAMYel": -9.737374, "GIIfVbLh": -9.737374, "GIRBbcTnm": -9.737374, "GIcj": -9.737374, "GJ": -9.044227, "GJWF": -9.737374, "GJwlYyZ": -9.737374, "GJwvU": -9.737374, "GKI": -9.737374, "GKJ": -9.737374, "GKVSl": -9.737374, "GKiL": -9.737374, "GKwZnBbyTur": -9.737374, "GKyYpAlnAIa": -9.737374, "GL": -8.638762, "GLPP": -9.737374, "GLlVO": -9.737374, "GM": -9.044227, "GMK": -9.737374, "GMMmgmyc": -9.737374, "GMTcGYpoyt": -9.737374, "GMUYrMoqKC": -9.737374, "GNMdzhTl": -9.737374, "GNuNrfnD": -9.737374, "GNzKvlMfONkzKdxrK/eIrGYOIRXO": -9.737374, "GORKnc": -9.737374, "GOan": -9.737374, "GP": -8.638762, "GPOziVzXzYS/nd": -9.737374, "GPbCxy": -9.737374, "GPoBum": -9.737374, "GPwz/": -9.737374, "GPxOclAbaDid/Rj": -9.737374, "GPxurXlrX": -9.737374, "GQM": -9.737374, "GQdckGRRutDgZZbWrNi": -9.737374, "GQsVfNXBN": -9.737374, "GQxNbIgpedI": -9.737374, "GQxvMO": -9.737374, "GR": -9.737374, "GRGLqzregkhnFzlYU": -9.737374, "GRcdT": -9.737374, "GRcxBs": -9.737374, "GRkjCJ": -9.737374, "GRoCCK": -9.737374, "GSZJTGuUMYxEAJaWLv": -9.737374, "GSdT": -9.737374, "GSi": -9.737374, "GStxn": -9.737374, "GTDI": -9.737374, "GTfn": -9.737374, "GU": -9.737374, "GUv": -9.737374, "GVDlufRZTUmBJwZDqcR": -9.737374, "GVKsGVt": -9.737374, "GW": -9.737374, "GWCsmTDeV": -9.737374, "GWgYzd": -9.737374, "GX": -9.044227, "GXUp": -9.737374, "GXYaoa": -9.737374, "GXZJqiiCJ": -9.737374, "GXtdKWhb": -9.737374, "GXxEZtucX": -9.737374, "GYn/": -9.737374, "GYxjy": -9.737374, "GZBfKwmzeKJvlJCaozPGUOTelfzyVDxS": -9.737374, "GZEkL": -9.737374, "GZYFtI": -9.737374, "GZvKPfNPXkuPTfOJDwaQ/": -9.737374, "GZx": -9.737374, "Ga": -9.737374, "GaO": -9.737374, "GaaGwyYD": -9.737374, "GaeZYOJsQL": -9.737374, "Gaw": -9.737374, "Gb": -9.737374, "GbC": -9.737374, "GbMfPAz": -9.737374, "GbcRyFDz": -9.737374, "GblvFD": -9.737374, "Gc": -9.737374, "GcLudxBl": -9.737374, "GcV": -9.737374, "GcYjUt": -9.737374, "Gcai": -9.737374, "GcryFvyI": -9.737374, "Gd": -9.737374, "GdOEuwyDeAEoEANfUtcBcS": -9.737374, "GdptT": -9.737374, "Gf": -9.044227, "Gf/GgBjXHztT/hKftbP/": -9.737374, "GfosF": -9.737374, "Ggj": -9.737374, "Ggn": -9.737374, "Ggv": -9.737374, "GhIqdFRDmBC": -9.737374, "GhrKGuvCXjHMVXkUVC": -9.737374, "GhxcZjnzBravG": -9.737374, "Gii": -9.737374, "GjIX": -9.737374, "Gjg": -9.737374, "GjiWc": -9.737374, "GjvpocK": -9.737374, "Gkfy/JsFTJubKU": -9.737374, "GlBRjWcEuO": -9.737374, "GlJNYfThXKhGDh": -9.737374, "GlrUNjrPx": -9.737374, "Gm": -9.044227, "GnZTJQOErBbtxx": -9.737374, "Gnac": -9.737374, "GnonuU": -9.737374, "GoBBAyE": -9.737374, "GoMQOBpXSpFM": -9.737374, "GoOB": -9.737374, "Gok": -9.737374, "GoxLjYRSuYIus": -9.737374, "GpGLGYGIgxizZJMmu": -9.737374, "GpqDYKaxZquCLuYcJLYTY": -9.737374, "Gq": -9.044227, "GqB/qFhMDAkBAsGPEvmQBBEaaWIRsNhCASmhFKIzoZWW": -9.737374, "GqPbSRMBdym/fLiEXlbAR": -9.737374, "GqTRuTFxPFo": -9.737374, "GqUbeKPYCjVxqpqR": -9.737374, "GqhdI": -9.737374, "GqjZFI": -9.737374, "Gr": -9.737374, "GrCzL": -9.737374, "GrZm": -9.737374, "GrcFBb": -9.737374, "Gred": -9.737374, "GsFLz": -9.737374, "GsJpvHy": -9.737374, "GsJtGGdvJ": -9.737374, "GsVsKSZiuoqCrsQ": -9.737374, "GsieuOFDz/HS": -9.737374, "Gsiy": -9.737374, "GsrHiphzcSbNr": -9.737374, "GtbXqOcswrX": -9.737374, "GtchCcSQcRMXdHoGdnhm/trP": -9.737374, "Gu": -9.737374, "Gu/XRaGlRIm": -9.737374, "GuAv": -9.737374, "GuD": -9.737374, "GuJD": -9.737374, "GuYSMm": -9.737374, "GudpV": -9.737374, "GupcQRM": -9.737374, "Gvbe": -9.737374, "Gw": -9.737374, "GwChZYcZbNyiu": -9.737374, "GwcW": -9.737374, "Gws": -9.737374, "Gx": -9.044227, "GxUUV": -9.737374, "GxcGRzesyNMO": -9.737374, "GxqhRZoMhgMfFdhIPXC": -9.737374, "Gy": -9.044227, "GydugIyprIreMjs": -9.737374, "GygrNvkH": -9.737374, "GynmgDCNTubCq": -9.737374, "Gywnm": -9.737374, "Gz": -9.044227, "GzER": -9.737374, "GzExli": -9.737374, "H": -6.126456, "H//": -9.737374, "H/YKiPN": -9.737374, "H/alwuOtIKaHYw": -9.737374, "H/rkpWuM": -9.737374, "HA": -9.737374, "HALDdm": -9.737374, "HAW": -9.737374, "HAezmKeULmIzIZrFFiB": -9.737374, "HAqH": -9.737374, "HAr": -9.737374, "HAtOK": -9.737374, "HBFd": -9.737374, "HBM": -9.737374, "HBNaF": -9.737374, "HBiLFmkZmMlmoJCLCnRl": -9.737374, "HDCnvv": -9.737374, "HDWz": -9.737374, "HDo": -9.737374, "HE": -9.737374, "HEhTZIxpTPNu": -9.737374, "HFI": -9.737374, "HFpJiaodwm": -9.737374, "HFxXVJmJ": -9.737374, "HGerGy": -9.737374, "HGpo": -9.737374, "HH": -9.737374, "HHC": -9.737374, "HHD": -9.737374, "HHK": -9.737374, "HHSf": -9.737374, "HHUFPJyLTlmbY": -9.737374, "HI": -9.044227, "HIIvWkstrOrIWPo": -9.737374, "HIY": -9.737374, "HIaYR": -9.737374, "HJKcBUM": -9.737374, "HJMPM": -9.737374, "HJQFrWQnvXrx": -9.737374, "HJR": -9.737374, "HJWDVpyXZq": -9.737374, "HJYJBb": -9.737374, "HJcCsgw": -9.737374, "HJgc": -9.737374, "HJhuoTyJIspgZTcO": -9.737374, "HJvVWEbjE": -9.737374, "HK": -9.044227, "HKFwhOTFrZIwxKJqInFk": -9.737374, "HKX/Lh": -9.737374, "HKaYt": -9.737374, "HKaq": -9.737374, "HKeS": -9.737374, "HKhiB": -9.737374, "HKiSU": -9.737374, "HKxZjq/WqL": -9.737374, "HL": -9.737374, "HLTqmPX": -9.737374, "HLUp": -9.737374, "HLbUO": -9.737374, "HLur": -9.737374, "HLy": -9.737374, "HLy/G": -9.737374, "HLz": -9.737374, "HM": -9.044227, "HMjGQtY": -9.737374, "HN": -9.737374, "HNJ": -9.737374, "HNJnlZ": -9.737374, "HNOVNLi": -9.737374, "HNaV": -9.737374, "HNplDeaHKivb/BwFP": -9.737374, "HNsNcgu": -9.737374, "HO": -9.737374, "HORVjsaI": -9.737374, "HOgjv": -9.737374, "HOllRhmuQX": -9.737374, "HPgWOkBj": -9.737374, "HPhbVPSgHEUw": -9.737374, "HPoN": -9.737374, "HPu": -9.737374, "HQCMBacpbTywWkd": -9.737374, "HQLxPRCPJlMpn": -9.737374, "HQkfNB": -9.737374, "HQxvvxSSRg": -9.737374, "HR": -9.044227, "HRjcSohxsKvfyouRSJLNtsdaYlc": -9.737374, "HT": -9.737374, "HTINIpi/y": -9.737374, "HTO": -9.737374, "HTPFI": -9.737374, "HTR": -9.737374, "HTsDmC": -9.737374, "HU": -9.737374, "HULDUS": -9.737374, "HUSXGl": -9.737374, "HUVL": -9.737374, "HUWqNs": -9.737374, "HUhy": -9.737374, "HUmiajRadrnHUumgoCo": -9.737374, "HVY": -9.737374, "HViWXDcYbthAkW": -9.737374, "HVpj": -9.737374, "HVuKs": -9.737374, "HWVl": -9.737374, "HX": -9.737374, "HX/Yv/": -9.737374, "HXWrm": -9.737374, "HY/TBy": -9.737374, "HYB/zIyU/": -9.737374, "HYabOed": -9.737374, "HYmn/ie": -9.737374, "HZ": -9.044227, "HZUEU": -9.737374, "HZzs": -9.737374, "Ha": -9.737374, "HaN": -9.737374, "HayY": -9.737374, "Hb": -9.044227, "HbBUH": -9.737374, "HbCs": -9.737374, "HbJXBKzvIsvjAjVqMp": -9.737374, "HbYffSb/hoM": -9.737374, "HbjhYyGZVWvs": -9.737374, "HbqhFwpVtFiiSZmWNVmd": -9.737374, "Hc": -9.737374, "HcBI": -9.737374, "HdMiNo": -9.737374, "HdibldW": -9.737374, "HdpFlkJ": -9.737374, "Hdx": -9.737374, "He": -9.044227, "HeFfF/p": -9.737374, "HesXJVy": -9.737374, "HfqlcM": -9.737374, "HfrGmGA": -9.737374, "HgE": -9.737374, "HgW": -9.737374, "Hh": -9.737374, "HhAi": -9.737374, "HhMS": -9.737374, "HhlC": -9.737374, "HhsrFMlz": -9.737374, "HiPOZY": -9.737374, "Hif": -9.737374, "HikZYwZX": -9.737374, "HiuQ": -9.737374, "HjAAAg": -9.737374, "Hk": -9.737374, "HkGKy": -9.737374, "HkQmb": -9.737374, "HkSTskRXd": -9.737374, "HksLsmmsKlLXoLK": -9.737374, "HkvPkW": -9.737374, "Hl": -9.044227, "HlR": -9.737374, "HmAty": -9.737374, "HmKOSDsr": -9.737374, "HmPvdQlgPK": -9.737374, "HmWjwvyUPHEhx/": -9.737374, "Hms": -9.737374, "HmuRUzKlt": -9.737374, "Hn": -9.737374, "HnFiclJmpNwoeeiLIMIsQ": -9.737374, "Hnvvh": -9.737374, "HobZtATnp/wEPLKT": -9.737374, "Hop": -9.737374, "Hoztkqn": -9.737374, "HpDJI": -9.737374, "HpxtEbYfq": -9.737374, "HqIeuUlOZdUG": -9.737374, "Hqp": -9.737374, "Hqz": -9.737374, "Hr": -9.737374, "HrIRKEvLthQvberh": -9.737374, "Hrdd": -9.737374, "Hrn": -9.737374, "HrncxJJ": -9.737374, "HruGkc": -9.737374, "HsBNhS": -9.737374, "Hsxsv": -9.737374, "Ht": -9.737374, "Htbe": -9.737374, "HtgPHiQVWWxhSNDMn": -9.737374, "HtyMxfEgumYySFA": -9.737374, "Hu": -9.737374, "HuZSL": -9.737374, "Hv": -9.044227, "Hv/FN/": -9.737374, "HvHrDC": -9.737374, "HvHyJdm": -9.737374, "HvJgClsFfw": -9.737374, "HvOOPg": -9.737374, "Hvk": -9.737374, "HvmijnJ": -9.737374, "Hvs": -9.737374, "HvtIRNlbVaVBh": -9.737374, "Hvu": -9.737374, "HvxbSLgyiTldE": -9.737374, "HwGTaQcOvrcJYVZFy": -9.737374, "HwK": -9.737374, "HwkPw": -9.737374, "Hww/GGNwGUdjlPPGfEhmJLdYPE": -9.737374, "Hx": -9.737374, "HxOysDXePU": -9.737374, "HyLU": -9.737374, "Hyllp": -9.737374, "Hz": -9.737374, "HzlqHFfLgT": -9.737374, "I": -6.023802, "I/": -9.737374, "I/gy": -9.737374, "IALu": -9.737374, "IAU": -9.737374, "IBkzhXqXzG": -9.737374, "IBvRuZnT": -9.737374, "IC": -9.737374, "ICsQkpgJHkTTAbI": -9.737374, "ICvCf": -9.737374, "ICw": -9.737374, "IEXCy": -9.737374, "IEepPoMVCYTQ": -9.737374, "IF": -9.737374, "IFcqMFi": -9.737374, "IGPXQZP": -9.737374, "IGrB": -9.737374, "II": -8.638762, "IIR": -9.737374, "IIalRLUJLHQRsC": -9.737374, "IJJC": -9.737374, "IJKNy": -9.737374, "IJbV": -9.737374, "IJkMKvXG": -9.737374, "IJlBTeozNlX": -9.737374, "IK": -8.638762, "IKTUViWTdulWdGaxq": -9.737374, "IKb": -9.737374, "IKcNawvpRRNqvwpEm": -9.737374, "IKnYYXAuGrjw": -9.737374, "IKsZG": -9.737374, "IKuVDH": -9.737374, "IL//CP": -9.737374, "ILEdRN": -9.737374, "ILS": -9.737374, "ILbyai": -9.737374, "ILoka": -9.737374, "ILvzagbl": -9.737374, "IMBWJ": -9.737374, "IMrT": -9.737374, "IMxm": -9.737374, "INlFWebLYRBYbVrAOGDRc": -9.737374, "INmGJkFgdK": -9.737374, "INnjwrmdufy": -9.737374, "INrGoHIQxlJzGBFY": -9.737374, "INuNrWrWy": -9.737374, "IO": -9.737374, "IO/xP": -9.737374, "IOG": -9.737374, "IOLOpEt": -9.737374, "IOVmyoA": -9.737374, "IPFkWZCh": -9.737374, "IPH": -9.737374, "IPPDUuDIW": -9.737374, "IPdJRsbTfbyMQZbG": -9.737374, "IPemnpvTXpTPLNfCESoDM": -9.737374, "IPzmVBftSti": -9.737374, "IQ": -9.737374, "IQNAeTrTsV": -9.737374, "IQU": -9.737374, "IRYLJz": -9.737374, "IRaSw": -9.737374, "IS": -9.044227, "ISURjxSTjTcujaTy": -9.737374, "ISbYpJIrJjYoejLJWNUkl": -9.737374, "ISy/lzdSmOMnr": -9.737374, "ITI": -9.737374, "ITRXgkMe": -9.737374, "ITWSeY": -9.737374, "ITjGOgY/BR": -9.737374, "ITocFQ": -9.737374, "IUMwqPGXjSz": -9.737374, "IUVOVu": -9.737374, "IUdrz": -9.737374, "IUv/Mbv": -9.737374, "IV": -9.737374, "IVKrGuo": -9.737374, "IVcUvUIBvQjdWGuV": -9.737374, "IW": -9.044227, "IWIad": -9.737374, "IWPvDghy": -9.737374, "IWVJRs": -9.737374, "IWgRXfrsYlI": -9.737374, "IWpgRvlhjIaq": -9.737374, "IWxuANI": -9.737374, "IXaymTCTFSnmCWLMdSllGjJVjRSSrsMrSMi": -9.737374, "IXq/iXMU": -9.737374, "IY": -9.737374, "IYWS/Asdko": -9.737374, "IYyPXA": -9.737374, "IZ": -9.737374, "Ia": -9.737374, "IaR": -9.737374, "IalZLaF/T": -9.737374, "IbBVsHp": -9.737374, "IbvfDeXKO": -9.737374, "Ic": -9.737374, "IcJIAACAASURBVPd": -9.737374, "IcJghhEW": -9.737374, "IccKsfTzTNDqocsXoZT": -9.737374, "IcmrJ": -9.737374, "Icv/iJe": -9.737374, "Id": -9.737374, "IdEA": -9.737374, "IdU": -9.737374, "Ie/uYe": -9.737374, "If": -8.638762, "IfQgwnC": -9.737374, "IfU": -9.737374, "IgBDMKoK": -9.737374, "IgRkLObe": -9.737374, "IgfNZapLcmK": -9.737374, "IgnM": -9.737374, "IhTmKt": -9.737374, "IhVtOycvW/jmkXAgJyzNwhKtzl/kDoJUl": -9.737374, "IhXQmNNZLTj": -9.737374, "IiU": -9.737374, "IintwqJkUUMqgEZQ": -9.737374, "Iip": -9.044227, "Ij": -9.737374, "IjJrzGh": -9.737374, "IjpbBu": -9.737374, "IjrYpIQ": -9.737374, "Ik": -9.737374, "IkCloyaUIccetXo": -9.737374, "IkTSHJmXqpekshfpTo": -9.737374, "Ikj": -9.737374, "IkryiJH": -9.737374, "IlAuGsClK": -9.737374, "IlgskaloU": -9.737374, "IlrSW": -9.737374, "Im": -9.737374, "Im/": -9.737374, "ImM": -9.737374, "ImNxKzZWmNQsrAUksayrBrMT": -9.737374, "InM": -9.737374, "InSpf": -9.737374, "InnLRjRaNM": -9.737374, "Io": -9.044227, "IoLRZBYlyPhmUe": -9.737374, "IocO": -9.737374, "IomCk/": -9.737374, "IomsGdgpeCdAIy": -9.737374, "Ip": -9.737374, "IpCzsHY": -9.737374, "IpFN": -9.737374, "Iq": -9.737374, "Ir": -9.737374, "IrnzEqRzRFdZBhHQ": -9.737374, "It": -9.737374, "It/": -9.737374, "ItEi": -9.737374, "ItQHerXZIplCAT": -9.737374, "ItROfZB": -9.737374, "Itv": -9.737374, "Iu/": -9.737374, "IuIhtZ": -9.737374, "Iut": -9.737374, "Iv": -9.044227, "IvAsU": -9.737374, "IvCZq": -9.737374, "IvQ": -9.737374, "IvRLPrSs": -9.737374, "IveF": -9.737374, "Ivg": -9.737374, "IvpZl": -9.737374, "Iw": -9.737374, "IwG": -9.737374, "IwLHhMsNgcTNGJrA": -9.737374, "IwTkNb": -9.737374, "Iwb": -9.737374, "Ix": -8.351080, "IxA": -9.737374, "IxNEIPJaB": -9.737374, "IxbU": -9.737374, "IxgnRGMeGLrXk": -9.737374, "IxrjxIk": -9.737374, "Ixt": -9.737374, "IxtkpNz": -9.737374, "IyPht": -9.737374, "Iybrav": -9.737374, "IzJN": -9.737374, "IzKQboSFVKlD": -9.737374, "IzWb/qAj": -9.737374, "IzjHY": -9.737374, "IzpmLEs": -9.737374, "J": -5.767082, "J/": -9.044227, "J/Zrv": -9.737374, "J/mB": -9.737374, "J/ziMzXFBmmwkCNVf": -9.737374, "JA": -9.044227, "JAOs": -9.737374, "JBAv/cuPfWcb": -9.737374, "JBXOj": -9.737374, "JBqoaWqr": -9.737374, "JC": -9.737374, "JCBhWyhnfj": -9.737374, "JCMgsvuJB": -9.737374, "JCTpDOA": -9.737374, "JCUrSuWJ/mTkOKBXNVusA": -9.737374, "JCaJ": -9.737374, "JCm": -9.737374, "JCntTsSm": -9.737374, "JCuNv": -9.737374, "JD": -9.737374, "JDWdV": -9.737374, "JDeap": -9.737374, "JDo": -9.737374, "JDpHZFvUgI": -9.737374, "JDymKslMOFeymvEy": -9.737374, "JE": -9.044227, "JEMKNrlBTSW": -9.737374, "JEv": -9.737374, "JFiWypKcQ": -9.737374, "JFkuRM": -9.737374, "JFu": -9.737374, "JG": -8.638762, "JGLWELO": -9.737374, "JGS": -9.737374, "JGbBoOuGtisG": -9.737374, "JGna": -9.737374, "JGntImq": -9.737374, "JGokqld": -9.737374, "JH": -9.044227, "JHQuPJcS": -9.737374, "JHwNou": -9.737374, "JI": -9.737374, "JIRcZKxX": -9.737374, "JIVSwMrSBSujgQw": -9.737374, "JJCfATWhba/lBzzi": -9.737374, "JJIHsf": -9.737374, "JJIYQA": -9.737374, "JJJ": -9.737374, "JJYV": -9.737374, "JJe": -9.737374, "JJicDxmY": -9.737374, "JJivox": -9.737374, "JK": -9.044227, "JKINbacPa": -9.737374, "JKfU": -9.737374, "JKnhL": -9.737374, "JKydc": -9.737374, "JLGrFUBnWVxrkvmak": -9.737374, "JLIZ": -9.737374, "JLUCFZ": -9.737374, "JLUpXlhVbbleINfhlwirI": -9.737374, "JLZCaejuFMHwOdpy": -9.737374, "JLeIrIY": -9.737374, "JLfXG": -9.737374, "JLvxuifv": -9.737374, "JLyhIt": -9.737374, "JMRdOcU": -9.737374, "JMkI": -9.737374, "JNFWUJGD/FJFiVzA": -9.737374, "JNVfvNyOGNN": -9.737374, "JNYE": -9.737374, "JNxw": -9.737374, "JO": -9.737374, "JOMouYDgPMrIOgTEoSRVg": -9.737374, "JOjxQy": -9.737374, "JOtAQMGzNpWRVJHk": -9.737374, "JOzqsrat": -9.737374, "JP": -9.737374, "JPXgojBCygjvM": -9.737374, "JPcgNy": -9.737374, "JQ/": -9.737374, "JQVtEvPGjMVok": -9.737374, "JQzak": -9.737374, "JR": -9.737374, "JRXFfk": -9.737374, "JRfvqFZUxtwnIPb": -9.737374, "JRpNGW": -9.737374, "JSN": -9.737374, "JSPF": -9.737374, "JSZqoItqYIBqDrYliZ": -9.737374, "JSieJ": -9.737374, "JT": -9.737374, "JTEs/nBYNI": -9.737374, "JTOok": -9.737374, "JUasx": -9.737374, "JVMi": -9.737374, "JVy": -9.737374, "JW": -9.737374, "JWTELVUW": -9.737374, "JWVBvjRbB": -9.737374, "JX/oO": -9.737374, "JXMQCzrmQexDs": -9.737374, "JXOEyrU/": -9.737374, "JXhQE": -9.737374, "JXii": -9.737374, "JXmeVclI": -9.737374, "JY": -9.044227, "JYEeBf": -9.737374, "JYendiDMwUFJBzFr": -9.737374, "JYpWJzij": -9.737374, "JZ": -9.737374, "JZLBtjMmk": -9.737374, "JZLxdEl": -9.737374, "JZPCN": -9.737374, "JZXaMBTyqDNraVt": -9.737374, "JZt": -9.737374, "JZzkYzFwUtdPuSpJQoxSjmtzHT": -9.737374, "JZztK": -9.737374, "JaIW": -9.737374, "JafnLH": -9.737374, "JasvjkzcGqCF": -9.737374, "Jb": -9.737374, "JbGyFhHVqp": -9.737374, "JbVrGTJ": -9.737374, "Jc": -9.737374, "JcHWnJaCoxdyKiyLTB": -9.737374, "JceIkLd": -9.737374, "Jcg": -9.737374, "Jd/": -9.737374, "JdJUXZlo": -9.737374, "JdL/uOzPOrXnSTUcPxWeLKKaO": -9.737374, "JdaxbyKt": -9.737374, "Jdd": -9.737374, "JdeLDA": -9.737374, "Jdga": -9.737374, "JdollSJ": -9.737374, "JeE": -9.737374, "JeRjy": -9.737374, "JebFVXJBNu/kESL": -9.737374, "Jef": -9.737374, "JfYmF": -9.737374, "Jg": -8.638762, "Jgnwuw": -9.737374, "Jgtbu/L": -9.737374, "JgwT": -9.737374, "JhH": -9.737374, "JhcjSnN": -9.737374, "JhwVdUI": -9.737374, "JiVIhp": -9.737374, "JibbGHjaBVAanX": -9.737374, "JiuD": -9.737374, "Jj": -9.737374, "JjPFqBgW": -9.737374, "Jja": -9.737374, "JjgIZpojUGEDwRMJUpSowFiQAIE": -9.737374, "JjhMyrI": -9.737374, "Jjoyv": -9.737374, "JjsTsALXklOWpVrEgx": -9.737374, "JjzmVDbiXNzfgk/zwVqDR": -9.737374, "JkIjqtrY": -9.737374, "JkYE": -9.737374, "JkbDrZBTpY": -9.737374, "JkjceS": -9.737374, "JkworevyolS": -9.737374, "JlBqm": -9.737374, "JlZ": -9.737374, "JlZdwjIqlTvLB": -9.737374, "JlhzcZ": -9.737374, "JlpXn": -9.737374, "Jlta": -9.737374, "Jm": -9.044227, "JmCzmlCLJUkPPLeQlatWOqhh": -9.737374, "Jmarb": -9.737374, "JnCEX": -9.737374, "JnRrh": -9.737374, "JnTtrqwtbm": -9.737374, "JnWUR": -9.737374, "Jncp/": -9.737374, "JnkTp": -9.737374, "Jntma": -9.737374, "Jo": -9.737374, "JoBm": -9.737374, "JoQbgiRCpw": -9.737374, "JodnC": -9.737374, "Jp": -9.044227, "JpTWGXxW/Uyfdi": -9.737374, "JpjlMVvz": -9.737374, "Jpk/it": -9.737374, "Jq": -9.737374, "JqzDX": -9.737374, "JrAorp": -9.737374, "JrLHeqyoOwOU": -9.737374, "JrOK": -9.737374, "JrRd": -9.737374, "Js": -9.737374, "JslIUGzbXdB": -9.737374, "Jt/Bp/": -9.737374, "Ju": -9.737374, "JuCE": -9.737374, "JuRGdJcuscanBd": -9.737374, "JuSvOwFEpquLdqw": -9.737374, "Jue": -9.737374, "Juj": -9.737374, "Jv": -8.638762, "Jv/tWtExKE": -9.737374, "JvGS": -9.737374, "JvORX/OJLcoZRBvff": -9.737374, "JvUUsxNTDmqFvtAdA": -9.737374, "JvtEJpdIcSy": -9.737374, "Jw": -9.737374, "JwGo": -9.737374, "JwKb": -9.737374, "JwRNJcOsAogLiiol": -9.737374, "Jwsx": -9.737374, "JxZrjkTSmF": -9.737374, "JxqOgDaatgZ": -9.737374, "Jy": -9.737374, "JyajyV": -9.737374, "JyecCjh": -9.737374, "JygKsms": -9.737374, "Jz": -9.737374, "JzAVgUOy/vc": -9.737374, "JzB": -9.737374, "JzbiQHKQ": -9.737374, "JzuLq": -9.737374, "K": -5.562987, "K/": -9.737374, "K//U": -9.737374, "K/kuoLvLLA": -9.737374, "K/mUz/": -9.737374, "K/rwHzRXh": -9.737374, "KAMtEJHqHUqpcdpamrVWbUIMZEe": -9.737374, "KAZ": -9.737374, "KAkliLRmqsAtOcsYSJzvbYvbt/TQ": -9.737374, "KAnx": -9.737374, "KArmWzq": -9.737374, "KB": -9.737374, "KBDxOg": -9.737374, "KBKCmOhirL": -9.737374, "KBKRyiqAlaxQ": -9.737374, "KBV": -9.737374, "KBVi": -9.737374, "KBjag": -9.737374, "KBuv": -9.737374, "KC": -9.044227, "KCj": -9.737374, "KCmQ": -9.737374, "KCth": -9.737374, "KCwXZoOHFX": -9.737374, "KDIdUYgmPlZwz": -9.737374, "KDceI": -9.737374, "KDsbYDZwyxgB": -9.737374, "KDv": -9.737374, "KEJtK": -9.737374, "KEjKQEtsj": -9.737374, "KEuqkk": -9.737374, "KF": -9.737374, "KFUgHfPk": -9.737374, "KFnM": -9.737374, "KG": -9.737374, "KGBb": -9.737374, "KGgoAAAANSUhEUgAAAV": -9.737374, "KGqLlbB": -9.737374, "KGzu": -9.737374, "KH/vg/zv/y": -9.737374, "KHKIubCm": -9.737374, "KHN": -9.737374, "KHo": -9.737374, "KI": -9.737374, "KICghBdKC": -9.737374, "KJ": -9.737374, "KJEDdYHqPTNzpglM": -9.737374, "KJP": -9.737374, "KJUPDp": -9.737374, "KJVzEzFFK": -9.737374, "KJWFXJBpqfyAJUzErmKsHVz": -9.737374, "KJag": -9.737374, "KJldBDyQv": -9.737374, "KJqdk": -9.737374, "KJr": -9.737374, "KJsirtoo": -9.737374, "KK": -9.737374, "KKYa": -9.737374, "KKiboglpi": -9.737374, "KKoaSs": -9.737374, "KLRYqYNWmLddoAltYhcxBNfFesxpmU": -9.737374, "KM/": -9.737374, "KMI": -9.737374, "KMxVzKLvuI": -9.737374, "KN": -9.737374, "KNCXj": -9.737374, "KNZmKCW": -9.737374, "KNjd": -9.737374, "KNmip": -9.737374, "KNuGFWQM": -9.737374, "KORp": -9.737374, "KOta": -9.737374, "KP/Un/k": -9.737374, "KPNuRZWsL": -9.737374, "KPZdGN": -9.737374, "KPnpviJp": -9.737374, "KPveAMdFHVNrl": -9.737374, "KQ": -9.737374, "KQUYuGxRy": -9.737374, "KQZ": -9.737374, "KQZsyQR": -9.737374, "KQhgpVBYlwqKQ": -9.737374, "KQo": -9.737374, "KQrWY": -9.737374, "KQuo": -9.737374, "KQvHpYXBYqt": -9.737374, "KQwZyNd": -9.737374, "KR": -9.044227, "KRRuI": -9.737374, "KRUiiuaLQ/QsN": -9.737374, "KRb": -9.737374, "KRclit": -9.737374, "KRkoxF": -9.737374, "KS": -9.044227, "KS/gjdadx": -9.737374, "KSdLioHy": -9.737374, "KSnFIqS": -9.737374, "KSysWTbQJfJYGUT": -9.737374, "KT": -9.737374, "KTREs": -9.737374, "KTbGoS": -9.737374, "KTouDLPBGloauXW": -9.737374, "KTuM": -9.737374, "KUclrkE": -9.737374, "KUj": -9.737374, "KUvJyyAjhjAMZSC/drYS": -9.737374, "KVP": -9.737374, "KVS": -9.737374, "KVhw": -9.737374, "KVpQO": -9.737374, "KW": -9.044227, "KWDGTdqmvgbV": -9.737374, "KWYBldKSHD": -9.737374, "KWlJQ": -9.737374, "KWqtPusp": -9.737374, "KX": -8.638762, "KYTOr": -9.737374, "KZ": -9.737374, "KZBLZ": -9.737374, "KZTnG/QVkqvQ": -9.737374, "KZdqO": -9.737374, "KZxxBriTpvNqCZnwKzYutIRdg": -9.737374, "Ka": -9.737374, "KaGC": -9.737374, "KaLj": -9.737374, "KaSpGIMxZ": -9.737374, "Kahx": -9.737374, "Kb": -9.737374, "KbW": -9.737374, "KbchTt": -9.737374, "KbgifXtkZpq": -9.737374, "Kbxnmf": -9.737374, "Kc": -9.737374, "KcZrzI": -9.737374, "KceSIoJ": -9.737374, "Kcgxtb": -9.737374, "KcpxSvHMOYzMzQh": -9.737374, "Kcte": -9.737374, "Kd": -8.638762, "KdEkWd": -9.737374, "KdHKEtKNWMHaVuiY": -9.737374, "KdI": -9.737374, "KdMUjG": -9.737374, "KdSpd": -9.737374, "KeEfuv": -9.737374, "KeOEQ": -9.737374, "KesAzemtGZrEvRZSMso": -9.737374, "KfCLdXSJ": -9.737374, "KffKMKxk": -9.737374, "Kg": -9.737374, "KgAZrqN": -9.737374, "KgNY": -9.737374, "KgckjOq": -9.737374, "Kh": -9.044227, "Kh/Q": -9.737374, "KhEimwYxPfJECBbW": -9.737374, "KhWexLa": -9.737374, "KhhDP": -9.737374, "KhhJBhi/tyqqub": -9.737374, "KhsdYzFHMhb": -9.737374, "KifX": -9.737374, "Kj": -9.737374, "KjD": -9.737374, "KjEHM": -9.737374, "KjWFFK": -9.737374, "KjoSCrQjUIq": -9.737374, "Kk": -9.737374, "KkENFU": -9.737374, "KkFT": -9.737374, "KkSxnkUpWSoW": -9.737374, "KlCSZBDecNASZ": -9.737374, "KlGXJcxEze": -9.737374, "KlNIejGsfNadXwbko": -9.737374, "KlVirA": -9.737374, "KlmJZJnGrdZi": -9.737374, "Kn": -9.737374, "KnZt": -9.737374, "KoGdC": -9.737374, "KoL": -9.737374, "KoSBCVTFUmNnfL": -9.737374, "Kokg": -9.737374, "Kopy": -9.737374, "KotyCsVJ": -9.737374, "Kp": -9.737374, "KpBa": -9.737374, "KpTckndsJ": -9.737374, "KpUBVYWfrjSOVdxR": -9.737374, "KpW": -9.737374, "KpcRcFXY/E": -9.737374, "KpjfGVlHROnHuuLBqWrKbxrF/": -9.737374, "KpxtznnAUroFcWjGl": -9.737374, "Kq": -9.737374, "KqRThR": -9.737374, "KqnWOKG": -9.737374, "KqsC": -9.737374, "Kr": -9.737374, "Kr/": -9.737374, "Krh": -9.737374, "KrvDiMLbdekmHgO": -9.737374, "Kry": -9.737374, "Ks": -9.737374, "KsSB": -9.737374, "KsjEW": -9.737374, "KsjMElvAjRY": -9.737374, "KspUsA": -9.737374, "KtDaYFINVQqz": -9.737374, "KtG": -9.737374, "KtmYDN": -9.737374, "Ktu": -9.737374, "Kv": -9.737374, "KvBXexVgwdxkP": -9.737374, "KvGXnFz": -9.737374, "Kvn": -9.737374, "Kw": -9.044227, "KwJ": -9.737374, "Kwv/QoAzttgXVZuHj": -9.737374, "Kx": -9.044227, "KxGFfVubc": -9.737374, "KxST": -9.737374, "KxZ": -9.737374, "KxcH": -9.737374, "KxfE": -9.737374, "Kxk": -9.737374, "KyB": -9.737374, "KyRwxw": -9.737374, "KyWVJbbBO": -9.737374, "KzAdeDWMrlHglw": -9.737374, "KzZwpDGQu": -9.737374, "KzbM": -9.737374, "KzxJKd": -9.737374, "L": -8.351080, "L/hmwxid/": -9.737374, "LCOMx": -9.737374, "LGNJAx": -9.737374, "LQteZEdVqmkJfhnE": -9.737374, "LTgQ": -9.737374, "LZ/": -9.737374, "Lb": -9.737374, "LjVgL": -9.737374, "LlY": -9.737374, "LoPsiVQmlHbAylcyOQkGwKoDE": -9.737374, "Lrc": -9.737374, "Ls": -9.737374, "Ltmtg": -9.737374, "Lyy": -9.737374, "LzOrbFvg": -9.737374, "M": -5.712022, "M/": -9.044227, "M//ifEwlffHFnrc": -9.737374, "M/RvCCKjvYF": -9.737374, "M/ibOXQfD": -9.737374, "M/rvSXNO/cuyeo": -9.737374, "MA": -8.638762, "MASK": -9.737374, "MAT": -9.737374, "MAU": -9.737374, "MAtSekkzWirlxy": -9.737374, "MBO": -9.737374, "MBpzDIObNcKc": -9.737374, "MByCA": -9.737374, "MC": -9.737374, "MCM": -9.737374, "MCwU": -9.737374, "MD": -9.737374, "MDRdmV": -9.737374, "ME": -9.044227, "MEpBOSSW": -9.737374, "MEuThnGjsLylpLwIhOC": -9.737374, "MFaB": -9.737374, "MFh": -9.737374, "MFwwdrFy": -9.737374, "MG": -9.737374, "MGJSQs": -9.737374, "MGMuWlliQ": -9.737374, "MGae": -9.737374, "MGuyIP": -9.737374, "MH": -9.737374, "MH/jxD": -9.737374, "MHW": -9.737374, "MHnKDXx": -9.737374, "MHpA": -9.737374, "MHr/JSrd": -9.737374, "MI": -9.044227, "MIJdsWXqQVv": -9.737374, "MIoSaSEytbkqm": -9.737374, "MJ": -9.737374, "MJSCtNcq": -9.737374, "MJbAMF": -9.737374, "MJmEZwBR": -9.737374, "MJs": -9.737374, "MJzWBGE/dhCut/aGL": -9.737374, "MK": -9.737374, "MKW//": -9.737374, "MKzp": -9.737374, "MLQNLvnczkVR/": -9.737374, "MLZQ": -9.737374, "MLugINGihxEO": -9.737374, "MM": -9.737374, "MMuHgs": -9.737374, "MMz": -9.737374, "MNTlnknOR": -9.737374, "MOfaMVB": -9.737374, "MOfohk": -9.737374, "MPn": -9.737374, "MPvnA": -9.737374, "MQQhKRpItN": -9.737374, "MQW/ZlJqtwkOJgpCKgPFydEBr": -9.737374, "MQjjJMGXoF": -9.737374, "MQlYe": -9.737374, "MRBQo": -9.737374, "MRjiKgKEY": -9.737374, "MRl": -9.737374, "MS": -8.351080, "MSTLCNoTybA": -9.737374, "MSkxQQ": -9.737374, "MSy": -9.737374, "MTRngaztORaG": -9.737374, "MTaUYT": -9.737374, "MTamN": -9.737374, "MTbcJRmVBI": -9.737374, "MUk": -9.737374, "MVGApFdQnowY": -9.737374, "MVNG": -9.737374, "MVbEBNIvGVbS": -9.737374, "MVkmx": -9.737374, "MVpU": -9.737374, "MVwV": -9.737374, "MVza": -9.737374, "MW": -9.737374, "MW/": -9.737374, "MWfOmfPy": -9.737374, "MWwqRjEW": -9.737374, "MX": -9.737374, "MXFuF": -9.737374, "MXWMF": -9.737374, "MY": -9.737374, "MYP": -9.737374, "MYRo": -9.737374, "MYaY": -9.737374, "MYw": -9.737374, "MYyr": -9.737374, "MZ": -9.044227, "MZG": -9.737374, "MZLYwxndDQHLb": -9.737374, "MZOry": -9.737374, "MZRbOuctSV": -9.737374, "MZuI": -9.737374, "MZx": -9.737374, "Ma": -9.737374, "MaKybEBSNaMw": -9.737374, "MaXdIO": -9.737374, "MaeV": -9.737374, "Mb": -9.737374, "MbM": -9.737374, "MbMkwA": -9.737374, "MbOADVYUxlYdqLgT": -9.737374, "MbOxWgjP": -9.737374, "Mbe": -9.737374, "MbkD": -9.737374, "Mbo": -9.737374, "MboE": -9.737374, "Mc": -9.737374, "McWGmPsOjBPbgJKMLFvD": -9.737374, "Md": -9.737374, "MdHbJsg": -9.737374, "MdNgsBGyKqcq": -9.737374, "MddynmRRtTDtrNM": -9.737374, "MdmLqwnAWqzbpcqDEqjlms": -9.737374, "Me": -9.044227, "MeWGFaWBzXVtY": -9.737374, "Mefc": -9.737374, "MenVdH": -9.737374, "Mf": -9.044227, "MfCouRN": -9.737374, "MfTAElM": -9.737374, "MfcD": -9.737374, "Mg": -9.044227, "MgWNW": -9.737374, "Mgi": -9.737374, "Mh": -9.044227, "MhCDC": -9.737374, "MhPUm": -9.737374, "MhUapCo": -9.737374, "MhsmiTCqka": -9.737374, "MiGniIF": -9.737374, "Mj": -9.044227, "MjrKt": -9.737374, "MjrZNebCpMdtPsk": -9.737374, "MjveRJ": -9.737374, "Mk": -9.737374, "MkONJ/ISpQm": -9.737374, "MkSsIuWEOdZ": -9.737374, "MkWoBDVhpaBuzBkMvVJPypNYSA": -9.737374, "Mkf/gn": -9.737374, "MkiQFKQGk": -9.737374, "Mklxt": -9.737374, "Mkz": -9.737374, "MlJzuT": -9.737374, "MlLi": -9.737374, "MlZS": -9.737374, "MlawliJNhiXvKJQKZTWuodSJ": -9.737374, "MluRD": -9.737374, "Mm": -9.737374, "MmTZsgDbP": -9.737374, "MmcHt": -9.737374, "Mmk": -9.737374, "Mmn": -9.737374, "MmrTnnSim": -9.737374, "Mn": -8.638762, "MnH": -9.737374, "MnMHhQpwT": -9.737374, "MnW": -9.737374, "Mo": -9.737374, "MoBV": -9.737374, "MoTrDzpZzAjeOYn": -9.737374, "Mof": -9.737374, "Mov": -9.737374, "MozI": -9.737374, "Mp": -9.737374, "MpCk": -9.737374, "MpYc": -9.737374, "MpYq": -9.737374, "MpcNLX/SfM": -9.737374, "Mpd": -9.737374, "MpfkadXAL": -9.737374, "Mpo": -9.737374, "Mps": -9.737374, "Mpva": -9.737374, "MqHo/JeUtsAdumnN": -9.737374, "Mqon": -9.737374, "MqtZsdRa": -9.737374, "Mr": -9.737374, "Ms": -9.044227, "Ms/MdnRqYGrbwNGqirmUQlBraaeVEGJkJVmdsOppXzByt": -9.737374, "MsC": -9.737374, "MszE": -9.737374, "Mt": -9.737374, "MtYO": -9.737374, "Mtwpy": -9.737374, "MtzbZUYnU": -9.737374, "Mu": -9.044227, "MuKlx": -9.737374, "MudRyW": -9.737374, "Muo": -9.737374, "MupU": -9.737374, "Mv": -9.737374, "Mvo": -9.737374, "Mvw": -9.737374, "MwC": -9.737374, "MwFq": -9.737374, "MwLqtt": -9.737374, "MwPfT/f": -9.737374, "Mwa": -9.737374, "MwnoqUILXA": -9.737374, "MwoVUjKsULT": -9.737374, "MxQaQrq": -9.737374, "MyIzI": -9.737374, "MySDpDPYjdkLVYI": -9.737374, "MzEsX": -9.737374, "MzJ": -9.737374, "MzS": -9.737374, "Mzd": -9.044227, "MzlbkWGcXKaE": -9.737374, "Mzmdf/U": -9.737374, "Mzz": -9.737374, "N": -6.048494, "N/KFQ": -9.737374, "N/blgTxxTI": -9.737374, "N/iz": -9.737374, "N/k": -9.737374, "N/qkczBzYtl": -9.737374, "NA": -9.737374, "NAkrKdp": -9.737374, "NAokY": -9.737374, "NBabVtK": -9.737374, "NBca": -9.737374, "NBftVlVvs": -9.737374, "NByJpLKpzySAByXCad": -9.737374, "NCN": -9.737374, "NDCt": -9.737374, "NDIvAfIGlOBGb": -9.737374, "NDd": -9.737374, "NDgI": -9.737374, "NDuwNmRzzXxjA//SX/gf": -9.737374, "NE": -9.044227, "NETGGLAU": -9.737374, "NEphcehAqO": -9.737374, "NEvweLABsZI": -9.737374, "NF": -9.044227, "NFKyl": -9.737374, "NFZGdj": -9.737374, "NFr": -9.737374, "NG": -9.044227, "NGdWVVM": -9.737374, "NGmZAh": -9.737374, "NGmms": -9.737374, "NH": -9.737374, "NHe": -9.737374, "NHsui/NpF": -9.737374, "NIPwoLbCh": -9.737374, "NIxMQ": -9.737374, "NJ": -9.044227, "NJs": -9.737374, "NK": -9.044227, "NKAUSVBWDwGzowkP/XlZn": -9.737374, "NKwVK": -9.737374, "NKyNSsklZKGY": -9.737374, "NL": -9.737374, "NL/": -9.737374, "NLAjnYxlkaDa": -9.737374, "NLBYwOGtmsq": -9.737374, "NLEbbCm": -9.737374, "NLh": -9.737374, "NMO": -9.737374, "NMU": -9.737374, "NNDkOfaeiylTTKuC": -9.737374, "NNKsdvg": -9.737374, "NNYZ": -9.737374, "NNbD": -9.737374, "NNcOeiTItIhDc": -9.737374, "NNiLUrWjKyRhCzSqKfV": -9.737374, "NOJa": -9.737374, "NOMuOrOCikmUbNy": -9.737374, "NOQrObGuldUmXCWUltDOwe": -9.737374, "NPcAuFShJi": -9.737374, "NPrOSUZIRj": -9.737374, "NPse": -9.737374, "NQ": -9.737374, "NQ/vc": -9.737374, "NQVF": -9.737374, "NQVSNC": -9.737374, "NQYwmkYp": -9.737374, "NQeHGjSbRHdxVAkypg": -9.737374, "NQuVYEhQYVQOHgMuNvqOhrNWE": -9.737374, "NRLrgFtmfUozaqEc": -9.737374, "NRNyylebZaNxpu": -9.737374, "NRfDg": -9.737374, "NRmQQEazQ": -9.737374, "NS": -9.737374, "NS/ZMRc": -9.737374, "NSATg": -9.737374, "NSX": -9.737374, "NSmkVBN": -9.737374, "NTJLQ": -9.737374, "NTo": -9.737374, "NTxtB": -9.737374, "NUEf": -9.737374, "NUF": -9.737374, "NUVy": -9.737374, "NVHeLf": -9.737374, "NVUza": -9.737374, "NW": -9.737374, "NWCDONBgmu": -9.737374, "NWGvxeiZM": -9.737374, "NXI": -9.737374, "NXPtNkSWksirUUBhz": -9.737374, "NXSjkibfFyqbv": -9.737374, "NXYwKTidd": -9.737374, "NXnjpxH/": -9.737374, "NY": -9.737374, "NYd": -9.737374, "NYtqq": -9.737374, "NYwzurwfH": -9.737374, "NZ": -8.638762, "NZCY": -9.737374, "NZUMuxcRj": -9.737374, "NZnvvQ": -9.737374, "NZrbbp": -9.737374, "NZv": -9.737374, "Na": -9.737374, "NaJMTTr": -9.737374, "NaNRSQ": -9.737374, "NaSRGUmn": -9.737374, "Naa": -9.737374, "Nabp": -9.737374, "NaipPaQAH": -9.737374, "NasYdLjzwVDFhQFmNJeuAv": -9.737374, "Nb/Nw": -9.737374, "NbHtBnPescl": -9.737374, "NbJRx": -9.737374, "NbO": -9.737374, "Nbc/DrkrlRPss": -9.737374, "NcjlFJI": -9.737374, "NdivWoN/": -9.737374, "NdlnCGZ": -9.737374, "NduBrEa": -9.737374, "Ne": -9.737374, "Newy": -9.737374, "Nf": -9.044227, "NfaYYHffm": -9.737374, "NfpoNBswFnwoUidN": -9.737374, "Ng": -9.737374, "Ng/SKZwq": -9.737374, "NgajQciFQIp": -9.737374, "NgeWFR": -9.737374, "Ngm": -9.737374, "Nh": -9.737374, "NhHLlSV": -9.737374, "NhMLA": -9.737374, "NhqNbgnMHEuBoc": -9.737374, "NhuROZo": -9.737374, "NhuqMfo": -9.737374, "Ni": -9.044227, "NiaVZ": -9.737374, "NiabjPpqq": -9.737374, "NidHE": -9.737374, "NiieoRyipiNcQM": -9.737374, "NiohNucAW": -9.737374, "NjRuA": -9.737374, "NjnuEmw": -9.737374, "Nk": -9.044227, "NkcXSkjozkrYs": -9.737374, "Nl": -9.737374, "NlHZqKlsMDjk": -9.737374, "NlYGz": -9.737374, "Nluy": -9.737374, "Nm": -9.737374, "NmdMFgSaydDmUx": -9.737374, "NmmV": -9.737374, "Nmo": -9.737374, "Nmwl": -9.737374, "Nn": -9.737374, "Nn/r": -9.737374, "NnQIQy": -9.737374, "NnRD": -9.737374, "Nna": -9.737374, "Nnu": -9.737374, "No": -9.737374, "NoWmTTPK": -9.737374, "NopfDIK": -9.737374, "NowoKQWWCDBIhmSgHqxKXhUD/": -9.737374, "Np": -9.044227, "NpAPvA/qetdi": -9.737374, "Npa": -9.737374, "NphjVwxf": -9.737374, "Nppz/": -9.737374, "Npwn": -9.737374, "NqlZ": -9.737374, "Nqv": -9.737374, "NrAXY": -9.737374, "NrGrg": -9.737374, "NreyFMU": -9.737374, "Nrged": -9.737374, "NrufXvYY": -9.737374, "Nrz": -9.737374, "Ns": -9.737374, "NsCb": -9.737374, "NsLSVOXgnrQ": -9.737374, "NsWZn": -9.737374, "NswXtVaOajuyI": -9.737374, "NtMIa": -9.737374, "NtrdTKrgINjjDhSjFaVRTUjKWSmlxdGMXHq": -9.737374, "NuAw": -9.737374, "NuBA": -9.737374, "NuNCqCI": -9.737374, "NuSpm": -9.737374, "NujCDwTJ": -9.737374, "Nuoc": -9.737374, "Nv": -9.737374, "NvP": -9.737374, "NvYHIQyJRW": -9.737374, "Nvex": -9.737374, "NvjZn/nrfD": -9.737374, "NvyX": -9.737374, "Nw": -9.737374, "NwI": -9.737374, "NwIjgwxf": -9.737374, "NwJJ": -9.737374, "NwL": -9.737374, "NwcubFSEBpDQHLFBuz": -9.737374, "Nwv/NL": -9.737374, "NxLuGWybmKM": -9.737374, "NxZTDEsAM": -9.737374, "Ny": -8.351080, "NyAQVaVCYFqCpQVDhoYCogQAkuQokSLCAZGKsUUbAMAkHNWRlYQRagRVKIGGQiqhBKyeJJe": -9.737374, "NyBHc": -9.737374, "NyO": -9.737374, "NykPc": -9.737374, "NylVrwE": -9.737374, "NyvhvSFqt": -9.737374, "Nz": -8.351080, "NzAqYpGnVjE": -9.737374, "Nzdt": -9.737374, "Nzjg": -9.737374, "NzkcU": -9.737374, "O": -5.748390, "O/": -9.737374, "O//jx/RCKo": -9.737374, "O/Ouz": -9.737374, "OB": -9.044227, "OBMTRdD": -9.737374, "OBS": -9.737374, "OCF": -9.737374, "OD": -9.737374, "ODGFNxardMikVzqEvcgUie": -9.737374, "ODmvCvVEPcleZKcUhF": -9.737374, "OEXmMOCcG": -9.737374, "OFP": -9.737374, "OFSRp": -9.737374, "OFbiSUpXjHEd": -9.737374, "OFx": -9.737374, "OG": -9.737374, "OGBOTqFZS": -9.737374, "OGSEvJrDk": -9.737374, "OGznFYKa": -9.737374, "OH": -9.044227, "OHcLLmOfI/": -9.737374, "OHnfprs": -9.737374, "OIMo/nQUplGH": -9.737374, "OIoSSagWoV": -9.737374, "OIyVndbeiZuDQ": -9.737374, "OJSlZQNAe": -9.737374, "OJhYqDEXF": -9.737374, "OJzpdK": -9.737374, "OK": -9.737374, "OKWUuzefBWdIjdsRZ": -9.737374, "OKaNvVmc": -9.737374, "OLcMidFRzJF": -9.737374, "OLhnvicRv": -9.737374, "OLm": -9.737374, "OLpm": -9.737374, "OLrHbwkltQxS": -9.737374, "OLsVgil": -9.737374, "OM": -9.044227, "OMQ": -9.737374, "OMrNAogpaUQjX": -9.737374, "ON/EJabtf": -9.737374, "ONbR": -9.737374, "ONduyx": -9.737374, "ONhg": -9.737374, "ONukTP": -9.737374, "OO": -9.044227, "OOLcG": -9.737374, "OOeo": -9.737374, "OPHb": -9.737374, "OPnenWi": -9.737374, "OPqiQL": -9.737374, "OQ": -9.737374, "OQW": -9.737374, "OQwMWrnZWTR": -9.737374, "ORGTXakXookMbUmhdRHS": -9.737374, "ORHASQ": -9.737374, "ORJvZMzgwLfzUQkZ": -9.737374, "ORf": -9.737374, "ORoeZpdorN": -9.737374, "OS": -9.044227, "OSBGxlAkt": -9.737374, "OSJyLi": -9.737374, "OSLf": -9.737374, "OSOK": -9.737374, "OSU": -9.737374, "OSWHBqKjPdIvimt": -9.737374, "OSnvv": -9.737374, "OSqtNx": -9.737374, "OSsWSnLIqcTkBZC": -9.737374, "OT/": -9.737374, "OTDAx": -9.737374, "OTVnvOXXGl": -9.737374, "OTi/": -9.737374, "OTpKFd": -9.737374, "OUkJ": -9.737374, "OV": -9.737374, "OVBLQTNwKwikS": -9.737374, "OVM": -9.737374, "OVQWK": -9.737374, "OVZIc": -9.737374, "OVjtlCMP": -9.737374, "OWUUGUF": -9.737374, "OWUhhUSD": -9.737374, "OWpvkKeGyAQ": -9.737374, "OWrCWxokr": -9.737374, "OWvB": -9.737374, "OXGA": -9.737374, "OXYzDNoJKBgy": -9.737374, "OXZTe": -9.737374, "OYEWQ": -9.737374, "OYOpRmLknZlPQK": -9.737374, "OYjOPU": -9.737374, "OYtlVHKWZx": -9.737374, "OZAI": -9.737374, "OZQW": -9.737374, "OZcS": -9.737374, "OZp": -9.737374, "Oa": -9.044227, "OaeXee": -9.737374, "OasvQx": -9.737374, "Ob": -9.737374, "ObQNFXjzlMwwPoRhfIuQ": -9.737374, "ObWiR": -9.737374, "Obctfo": -9.737374, "ObkwE": -9.737374, "Obv/AmWWlQdTZOL": -9.737374, "Oc": -9.044227, "OcJsWmXAZxDs": -9.737374, "OcfIxOJjzMGLMxTvGTb": -9.737374, "OcjPOg": -9.737374, "OcqwZ": -9.737374, "Od": -9.737374, "OdSwQ/jOf/": -9.737374, "Ode": -9.737374, "Oe": -9.737374, "Oefal": -9.737374, "OetSjDq": -9.737374, "Of": -9.737374, "OfZrrBnVIgzc": -9.737374, "OfmbDHGHMmV": -9.737374, "OfnO": -9.737374, "OfvR": -9.737374, "OfwlR": -9.737374, "OgeA": -9.737374, "OghRO": -9.737374, "OhD": -9.737374, "OhDMOGPdC": -9.737374, "OhIaXwi": -9.737374, "OhkXxx": -9.737374, "OhnDk": -9.737374, "OiNUndUCiXNdgZm": -9.737374, "OiXw": -9.737374, "OihRLhTOaTA": -9.737374, "Oj": -9.737374, "OjBmcs": -9.737374, "OjDW": -9.737374, "OjYrXSgoHkgWvg": -9.737374, "Ojbv": -9.737374, "OjhnZpNTKFm": -9.737374, "Ojl/cy": -9.737374, "Ok": -9.737374, "OkJaF": -9.737374, "Okh": -9.737374, "Okiz": -9.737374, "OksGi": -9.737374, "OlHFfGyo": -9.737374, "OlQLF": -9.737374, "OmT": -9.737374, "Ombj": -9.737374, "Ombvl": -9.737374, "OmgmGli": -9.737374, "Omh": -9.737374, "OmmFbxytdp": -9.737374, "OmutJ": -9.737374, "On": -9.737374, "OnSCaqtU": -9.737374, "OohLE": -9.737374, "OolaMY": -9.737374, "Ooo": -9.737374, "OooukgPMSM": -9.737374, "OpBkyiWu": -9.737374, "OpCc": -9.737374, "OpK": -9.044227, "OpL": -9.737374, "OqNF": -9.737374, "OqRH": -9.737374, "OqTla": -9.737374, "OqaBXmyTw": -9.737374, "Or": -9.737374, "OrCWpQiIJJm": -9.737374, "OrQjptKYG": -9.737374, "OrcaeZfBOjOfVdtS/jXLlbNMEI": -9.737374, "OreM": -9.737374, "Os": -9.737374, "OshSDys": -9.737374, "Osk": -9.737374, "OslSdIqw": -9.737374, "Ot/": -9.737374, "OtCiLmEUVqy": -9.737374, "OtSXHaDy": -9.737374, "Otu": -9.737374, "OumtnpKB": -9.737374, "OuuGzSaYrgKltqtUKQeF": -9.737374, "Ouxdiy": -9.737374, "OvF": -9.737374, "OvfyFU": -9.737374, "OvnDRtJBo": -9.737374, "OvqMMxrEhJKIf": -9.737374, "OwNd": -9.737374, "OxEwLhGsbWBXdoNWiVUoGVjdB": -9.737374, "OxUYr": -9.737374, "OxWVw": -9.737374, "OxqqRB": -9.737374, "Oy": -9.737374, "OySZGYVHUgz": -9.737374, "OyseS": -9.737374, "Oz": -9.044227, "OzM": -9.737374, "OzYOIPfcLIEk/WHGnaFokVcktlc": -9.737374, "Ozf": -9.737374, "P": -5.976174, "P/": -8.351080, "P/C": -9.737374, "P/NDP/CD/OQ/": -9.737374, "P/OY": -9.737374, "P/PLn": -9.737374, "P/jggw": -9.737374, "P/wg/": -9.737374, "PAFBORR": -9.737374, "PAaXMTjcqXriOOCtB": -9.737374, "PAcO": -9.737374, "PAyvlRXFF": -9.737374, "PBSUczPrXFs": -9.737374, "PByI": -9.737374, "PCZTQs": -9.737374, "PCfS": -9.737374, "PCu": -9.737374, "PD/DG": -9.737374, "PDDrk": -9.737374, "PDLVzxuNsW": -9.737374, "PDUobpHlLd": -9.737374, "PDjH": -9.737374, "PE": -9.737374, "PE/uKzZzn": -9.737374, "PF": -9.737374, "PGIlIRRNpD": -9.737374, "PGKzHvS": -9.737374, "PGbOFbA": -9.737374, "PGbva": -9.737374, "PGggKstIiqXXE": -9.737374, "PGocwyHfxydMWcwl": -9.737374, "PH//a": -9.737374, "PHYm": -9.737374, "PHfj": -9.737374, "PHh": -9.737374, "PHi": -9.737374, "PHmNxprJzK": -9.737374, "PHvv": -9.737374, "PI": -8.127936, "PIKbHaVIj": -9.737374, "PIVSvuSkNbitoDURER/KuQ": -9.737374, "PIrlONb": -9.737374, "PIv": -9.044227, "PIzrOVcvLbKiBpXGYLHMeHnp": -9.737374, "PJ": -9.737374, "PJIzBVzLZXroK": -9.737374, "PJoMPJ": -9.737374, "PJy": -9.737374, "PKKYE": -9.737374, "PKNsZkuqK": -9.737374, "PKSXOlKczNkIXEFvL": -9.737374, "PKXPugz": -9.737374, "PKkbPT": -9.737374, "PLeWoycKqDfY": -9.737374, "PMbCaeCJFxHBZqjq": -9.737374, "PN": -9.737374, "PNEX": -9.737374, "PNWWIq": -9.737374, "PP": -9.737374, "PP/XHvpQ/": -9.737374, "PPCURKXX": -9.737374, "PPXQLLiNAwmkOHnsLr": -9.737374, "PPXloiFDujM": -9.737374, "PPuTFVqlWWcASoC": -9.737374, "PQ": -9.044227, "PQAAIABJREFUPgxG": -9.737374, "PQJXMsw": -9.737374, "PQoT": -9.737374, "PR": -9.737374, "PRSa": -9.737374, "PRSiFcmENbtt": -9.737374, "PRlRC/yIe": -9.737374, "PSHSul": -9.737374, "PSWeCxkx": -9.737374, "PSgxLBWx": -9.737374, "PSr": -9.737374, "PTJFgKWJlZKxMHHQ": -9.737374, "PTTymPG": -9.737374, "PTYSDnLX": -9.737374, "PTbXMcYEyhHbrQ": -9.737374, "PTsNpW": -9.737374, "PUOGtiebB": -9.737374, "PUSVqELcQ/jL": -9.737374, "PUt": -9.737374, "PUtUQVHmTR": -9.737374, "PV": -9.737374, "PVIkx": -9.737374, "PVfwZ/": -9.737374, "PVk": -9.737374, "PW": -8.638762, "PWB": -9.737374, "PXMBhePhkMOJWMyydX": -9.737374, "PXlxnEcfOtXvuAf": -9.737374, "PXrQsqu": -9.737374, "PXss/da": -9.737374, "PY": -9.737374, "PYPbqdFFhPGUWsDdXJXvCphnEihRo": -9.737374, "PYkYztUwgCQSOorAjnGaO": -9.737374, "PYsnKsvmpvmbJFeVQh": -9.737374, "PZD": -9.737374, "PZzsHrSrO": -9.737374, "Pa": -9.737374, "PaIrgSRYFD": -9.737374, "PaLpwoatnBRQNoB": -9.737374, "PaNho": -9.737374, "PaSJPP/ME": -9.737374, "PaUOrFXI": -9.737374, "PaYvzoiglafY": -9.737374, "Pao": -9.737374, "PatEm": -9.737374, "Pb": -9.737374, "PbGNpKqjSGx/": -9.737374, "PbPzED": -9.737374, "PbdkyxM": -9.737374, "PbeTh": -9.737374, "PbgEcmnTOoyHvnl": -9.737374, "PbgfOvcDGN": -9.737374, "Pbvc/": -9.737374, "Pc": -8.351080, "Pcz": -9.737374, "Pd/Hpv/": -9.737374, "Pd/P": -9.737374, "PdqmoSaIua": -9.737374, "Pe": -9.737374, "PeZm": -9.737374, "Pej": -9.737374, "PetdgzSX": -9.737374, "Pf": -9.044227, "Pf/kWOxx/": -9.737374, "PfMXXfQenEixJD/r": -9.737374, "PfP": -9.737374, "PfUNtLGUste": -9.737374, "PfbCqyosJKmchLZdVsqhDcWpK": -9.737374, "Pfzhf": -9.737374, "Pg": -9.044227, "PgZVk": -9.737374, "Ph": -9.044227, "PhPC": -9.737374, "PhTklhss/Sryfoim": -9.737374, "Pi": -9.737374, "PitVjng/v": -9.737374, "Pj": -9.737374, "PjGAdf": -9.737374, "PjZlxGcW": -9.737374, "Pjh": -9.737374, "PjjXY/BiGL": -9.737374, "Pjn": -9.737374, "Pk": -9.737374, "PkwiXKOl": -9.737374, "PlAzy": -9.737374, "PlXBdKyi": -9.737374, "PlyVmNj/": -9.737374, "Pm": -9.737374, "Pm/teVdjwuPZ": -9.737374, "Pn": -9.044227, "PnH": -9.737374, "Po": -9.737374, "PoCH": -9.737374, "PoPGac": -9.737374, "Poh": -9.737374, "Posk": -9.737374, "PozCD/ydn": -9.737374, "Pp": -9.737374, "PpUJjbdADwias": -9.737374, "PpuLmxDThFZxvBHnIA": -9.737374, "PqaE": -9.737374, "Pr": -9.737374, "PrBs": -9.737374, "Prim": -9.737374, "Prinvde": -9.737374, "Ps": -9.737374, "PsIlkWTHWTilwLWquha": -9.737374, "Pt": -9.737374, "PthH": -9.737374, "PtnXqrXhpN": -9.737374, "PtpppimXPvyR": -9.737374, "Pu": -9.737374, "PuL": -9.737374, "Puil": -9.737374, "Pv": -9.044227, "PvFF": -9.737374, "Pvp": -9.737374, "Pvrgd": -9.737374, "Pvzu": -9.737374, "Pw": -9.737374, "PwVcixOm": -9.737374, "PwbmzhjCaY": -9.737374, "PwdiTnOaFXasB": -9.737374, "PwnJOospr": -9.737374, "PwnuNE": -9.737374, "PxluvnI": -9.737374, "Py": -9.044227, "PyF": -9.737374, "PyFv": -9.737374, "PyGD": -9.737374, "PyisjYn": -9.737374, "Pyzy": -9.737374, "PziPYcNyaXG": -9.737374, "Q": -6.023802, "Q/BItPO": -9.737374, "QA": -9.737374, "QAtxjD": -9.737374, "QAu": -9.737374, "QBi": -9.737374, "QBo": -9.737374, "QC": -9.737374, "QC/iPPuPlfOdr": -9.737374, "QCNRrHE": -9.737374, "QCw": -9.737374, "QE": -9.737374, "QEHwlWC": -9.737374, "QEYyNam": -9.737374, "QEawruHTLXh": -9.737374, "QEdtOOnBWN": -9.737374, "QF": -9.737374, "QFc": -9.737374, "QFmM": -9.737374, "QG": -8.351080, "QG/g": -9.737374, "QGjtdS": -9.737374, "QHRsbiotTDms": -9.737374, "QHa": -9.737374, "QIKtprFZG": -9.737374, "QIQw": -9.737374, "QIew": -9.737374, "QInK": -9.737374, "QIoaUcFuNjRePHTQfC": -9.737374, "QIwQZUiRoihJpiIoYfW": -9.737374, "QJ": -9.737374, "QJkb": -9.737374, "QJoqlpIP": -9.737374, "QKAdjKgrUY": -9.737374, "QKi": -9.737374, "QKk": -9.737374, "QN/": -9.737374, "QNOGz/ngwfNz": -9.737374, "QNtqhAdnahewKjWL": -9.737374, "QOvPB": -9.737374, "QP": -9.737374, "QQIjRPTBw/jM/mIl": -9.737374, "QQQ": -9.737374, "QQqT": -9.737374, "QQvIQZB": -9.737374, "QQyg": -9.737374, "QR": -9.044227, "QReF": -9.737374, "QRm": -9.737374, "QST": -9.737374, "QSY": -9.737374, "QSmMwmatToxo": -9.737374, "QSqFNStxdiyFz/": -9.737374, "QSy": -9.737374, "QT": -9.044227, "QTVFaPIiVBUBaI": -9.737374, "QTaFsaCFOF": -9.737374, "QURYcKh": -9.737374, "QUa": -9.737374, "QVUkxJlOMuq": -9.737374, "QVV": -9.737374, "QVb": -9.737374, "QVwDdNj": -9.737374, "QWwqpCCANsRWqZRjoI": -9.737374, "QX": -9.737374, "QXjRmzNX": -9.737374, "QXvabJIaX/Q": -9.737374, "QY": -9.737374, "QYdDfWajQ": -9.737374, "QYelDI": -9.737374, "QZ": -9.737374, "QZFcmlgjr": -9.737374, "QZYedmnuQlz": -9.737374, "Qa": -9.737374, "QaNL": -9.737374, "Qb": -9.737374, "QbH": -9.737374, "QbLsnLG": -9.737374, "QbMq": -9.737374, "QbMuBJ": -9.737374, "Qcbs": -9.737374, "QcjNqeVmVME": -9.737374, "Qd": -9.737374, "QdErefQfKXfx": -9.737374, "Qdme": -9.737374, "QdsyYvE": -9.737374, "QdtzIqjM": -9.737374, "Qe": -9.737374, "Qekpax": -9.737374, "QflrU": -9.737374, "Qg": -9.044227, "QghXagU": -9.737374, "QhCBv": -9.737374, "QhEkJOoZs": -9.737374, "QhsuuVxfDb": -9.737374, "Qi": -9.044227, "QiZA": -9.737374, "QitQe": -9.737374, "QiyDKpJt": -9.737374, "QizSm": -9.737374, "QjFupHLKN": -9.737374, "QjNddi": -9.737374, "Qjc/G": -9.737374, "QjharstFyBHU": -9.737374, "Qk": -9.737374, "QkSYL": -9.737374, "QkdkDGNfjg": -9.737374, "QkgKVX": -9.737374, "QkjtfXWF": -9.737374, "QktRFyQs": -9.737374, "Ql/GG": -9.737374, "QlVB": -9.737374, "Qls": -9.737374, "Qm": -9.737374, "QmgeLg": -9.737374, "QmnC": -9.737374, "Qn": -9.737374, "QnCxppptV": -9.737374, "QnFJ": -9.737374, "QnPzqcu": -9.737374, "QoM/AlAE": -9.737374, "QpAvqP": -9.737374, "QpJ": -9.737374, "QpRtc": -9.737374, "QpXEi": -9.737374, "Qpm": -9.737374, "QpnJmUNMgsxBfkpDc": -9.737374, "QqCltnrAAAgAElEQVTyfT": -9.737374, "QqLaEk": -9.737374, "QqRfpVllkk": -9.737374, "QqbfcuHzgdc": -9.737374, "QqgYVe": -9.737374, "QqhBm": -9.737374, "Qqnb": -9.737374, "QqniyiML": -9.737374, "QrBK": -9.737374, "QrDoy": -9.737374, "QrEPiXIe": -9.737374, "Qs": -9.044227, "QsLQazSmkWpgVzhAwv": -9.737374, "QsTgZ": -9.737374, "QsWsAsw": -9.737374, "QstUJ": -9.737374, "Qta": -9.737374, "QuO": -9.737374, "Quac": -9.737374, "Qucf": -9.737374, "QufeGp": -9.737374, "QvNdgtZ": -9.737374, "QvW/SmWQhGUGyhJCj": -9.737374, "Qvf": -9.737374, "Qvhp": -9.737374, "QvqnAtU": -9.737374, "QwJkQIjxmIhkUwsUgMrDDGNpwSOUjq": -9.737374, "QwYyWookUvg": -9.737374, "QwkYl": -9.737374, "Qwlno": -9.737374, "QwpK": -9.737374, "QwumqdEtJKu/": -9.737374, "Qx": -9.737374, "Qx/k": -9.737374, "QxDQpFBEoMLyVlIVUdqMxQhSgjTEk": -9.737374, "QxOo": -9.737374, "QxVPcpvabuxbir": -9.737374, "QxelRGRmb": -9.737374, "Qxfdevp": -9.737374, "QxqXe/fsi": -9.737374, "Qxrqmzoic": -9.737374, "QxvNTtpFhzG": -9.737374, "Qy": -9.737374, "QyJ": -9.737374, "QypR": -9.737374, "QyqVG": -9.737374, "QzJnaVmIXHnCp": -9.737374, "QzNNuJFyv": -9.737374, "QzXis": -9.737374, "QzYydRofO": -9.737374, "Qzf": -9.737374, "QzztvA": -9.737374, "R": -6.073812, "R/": -8.638762, "R/ic": -9.737374, "R/nG": -9.737374, "RABj": -9.737374, "RAeqcPV": -9.737374, "RAjocIWLYmR": -9.737374, "RAqA": -9.737374, "RAqkgVQIglqAXzhMykqpgpIMLKoKawFIhiVvSPI": -9.737374, "RAznot": -9.737374, "RB": -9.737374, "RBjaESRwfdQGGB": -9.737374, "RCI": -9.737374, "RCzGdN": -9.737374, "RDTb": -9.737374, "RDWdO": -9.737374, "REBMi": -9.737374, "REOlrSlC": -9.737374, "RET": -9.737374, "REZbpEsOlEUKWSexEyYybRU/tilTrZ": -9.737374, "RF": -9.044227, "RFJ": -9.737374, "RG": -9.044227, "RGdtKQGmlPgzqUGVZTYU": -9.737374, "RIftiW": -9.737374, "RJC": -9.737374, "RJLFRJUBri": -9.737374, "RJqREZlrSyLEEpykSDhCTesySvUIoG": -9.737374, "RK": -9.737374, "RKi": -9.737374, "RKnfl": -9.737374, "RKoNfQybnNpyZJaPNhynuMk": -9.737374, "RLBFbYeOsDVYJk": -9.737374, "RLVx": -9.737374, "RLZeP": -9.737374, "RMOrMrTqUg": -9.737374, "RMPi": -9.737374, "RMpEjkkKKkN": -9.737374, "RMrcXF": -9.737374, "RN": -9.737374, "RNJSmbLN": -9.737374, "RNVDLjyxvTlinQkMAZfLoW": -9.737374, "RNXWrjUHwMV": -9.737374, "RNx/": -9.737374, "RO": -9.737374, "ROnhb": -9.737374, "ROspEXNYhwbYLPZAs": -9.737374, "RPVtxpppGNmw": -9.737374, "RPeP": -9.737374, "RPfvo": -9.737374, "RQUHPvI": -9.737374, "RQdhmycItNrKpRxZPegyyTrds": -9.737374, "RRtUxse": -9.737374, "RS": -8.638762, "RSvu": -9.737374, "RT": -9.044227, "RTGmDVuY": -9.737374, "RTKhOsvxody": -9.737374, "RTUnAb": -9.737374, "RTvAmS/": -9.737374, "RUFUH": -9.737374, "RUURdHo": -9.737374, "RUqZjw": -9.737374, "RUuMGpOD": -9.737374, "RVKZjmXFtTnDDkFfQnHiTNWah": -9.737374, "RVOGqV": -9.737374, "RVf/Sve/ALHoS": -9.737374, "RVjQ": -9.737374, "RVqXspJkeW": -9.737374, "RVzSehuae": -9.737374, "RW": -9.737374, "RWvu": -9.737374, "RWzp": -9.737374, "RXBdggA": -9.737374, "RXDeDCZk/fOucccPC/nvOTLXyE": -9.737374, "RXJci": -9.737374, "RXdYhIqLIclDU": -9.737374, "RXmhR": -9.737374, "RXv": -9.737374, "RXwpWB": -9.737374, "RY": -9.737374, "RYZVQLEwEiRsuRspCObhJIRSuzmRxAEu": -9.737374, "RYdhlUD": -9.737374, "RYoUwYyulqHbmYKSbmWlDMskEChBGz": -9.737374, "RZ": -9.737374, "RZMDjIUqSKWElqV": -9.737374, "RZoyqnjaQNAPkORuvs": -9.737374, "RZun": -9.737374, "Ra": -9.044227, "RaRUgFMJ": -9.737374, "Rb": -9.044227, "RbEvNj": -9.737374, "RbPB": -9.737374, "Rc": -9.044227, "Rc/": -9.737374, "RcanTUn": -9.737374, "Rd": -9.044227, "RdRi": -9.737374, "RddqdJcaz": -9.737374, "RdpX": -9.737374, "ReCMA": -9.737374, "ReP": -9.737374, "ReSpzfiZyeXbs": -9.737374, "RehTduQjLV": -9.737374, "Rf/": -9.737374, "RfBwD": -9.737374, "RfcieebTTbgNLt": -9.737374, "Rg": -9.737374, "RgCLH": -9.737374, "RgLYwvdjiX/i": -9.737374, "Rgym": -9.737374, "RhVQtF": -9.737374, "RhgauDYCHHkme": -9.737374, "Rhnd": -9.737374, "RiC": -9.737374, "RiDu": -9.737374, "Riml": -9.737374, "RinLBtxjdkz": -9.737374, "RjANe": -9.737374, "RjBGEPPy": -9.737374, "RjCWwfPAYxGtc": -9.737374, "RjLX": -9.737374, "RjV": -9.737374, "RjdG": -9.737374, "RjsYvpfM": -9.737374, "Rjv": -9.737374, "Rk/jkWJfa": -9.737374, "RkQjCV": -9.737374, "Rkj": -9.737374, "RlCpNZPm": -9.737374, "RlYMJrLnAF": -9.737374, "RlpcPBc": -9.737374, "Rm": -9.737374, "RmaE": -9.737374, "Rn": -9.737374, "RnHoD": -9.737374, "RnKiwwluyu": -9.737374, "RnL": -9.737374, "RnMB": -9.737374, "Rnv": -9.737374, "Ro": -9.737374, "RoLnBQ": -9.737374, "RojI": -9.737374, "Rom": -9.737374, "Rp": -9.044227, "RpHGbSQ": -9.737374, "RpxDmY": -9.737374, "RpxwC": -9.737374, "RqOVLJlFVKIbH": -9.737374, "RqOtEr": -9.737374, "RqbMkmEG": -9.737374, "Rqg/": -9.737374, "RrIbjRF": -9.737374, "RrLXslSZYmhJUylK": -9.737374, "RrV": -9.737374, "RrWz": -9.737374, "Rs": -9.737374, "Rs/yWc/f": -9.737374, "RsVNNgu": -9.737374, "RsiDASlBx": -9.737374, "RsuVVmN": -9.737374, "Rt": -9.044227, "RtJYlSxtfHdJ": -9.737374, "RtXcI": -9.737374, "RtbvlBVqkQBy": -9.737374, "RtlOGC": -9.737374, "RtuKTDdzoV": -9.737374, "RuBU": -9.737374, "RuHdEP": -9.737374, "RuMmd": -9.737374, "Rv": -9.044227, "RvDkk": -9.737374, "RvJ": -9.737374, "RveJr": -9.737374, "Rvi": -9.737374, "RwSjDqJR": -9.737374, "RwY/": -9.737374, "Rwslu": -9.737374, "RwuaK": -9.737374, "RxBKV": -9.737374, "RxKy": -9.737374, "RxSyctyjxhCD": -9.737374, "RxWzVdINVmbnlCjz": -9.737374, "RxZe": -9.737374, "Ry": -9.737374, "RyDKR": -9.737374, "RyG": -9.737374, "RyN": -9.737374, "Ryu": -9.737374, "Rz": -9.737374, "RzBr/P": -9.737374, "RzFziod": -9.737374, "RzrTjTOTxxRUvHowFmRPLnSo": -9.737374, "RzuNFaZT": -9.737374, "Rzv": -9.737374, "S": -5.825351, "S/jmCOrSolwwnZyYWS": -9.737374, "S/pU": -9.737374, "S/vIPanseK": -9.737374, "S/y": -9.737374, "SA": -9.737374, "SASCfPeeM": -9.737374, "SAeScqU": -9.737374, "SBGb": -9.737374, "SBUzoS": -9.737374, "SBVynKPsT/m": -9.737374, "SBbLO": -9.737374, "SBdAxMUz/bmf": -9.737374, "SCAVlcd": -9.737374, "SD": -9.044227, "SDamLlnTW": -9.737374, "SDbwwxretETY/rFd": -9.737374, "SDhS": -9.737374, "SDqhCiqd": -9.737374, "SEXcwUTD": -9.737374, "SEluKoCF": -9.737374, "SEnFDrhAGrSrx": -9.737374, "SErbihnMWcnpUVutShc": -9.737374, "SEv/AmIaJeVQCycd": -9.737374, "SF": -9.737374, "SFfr": -9.737374, "SGMoawzWNpF": -9.737374, "SGMxIehqjG": -9.737374, "SGWu": -9.737374, "SGy": -9.737374, "SH": -9.737374, "SHRiULY": -9.737374, "SHffg": -9.737374, "SI/PS": -9.737374, "SIkISTY/A": -9.737374, "SJCbwNWHEtuM": -9.737374, "SJiLHZQn": -9.737374, "SJvbmukwO": -9.737374, "SKAQcb": -9.737374, "SKWLe": -9.737374, "SKkQbjCx": -9.737374, "SKtMS": -9.737374, "SKvNXZ": -9.737374, "SLDcbzLSoWyt": -9.737374, "SLlvvyOT/W": -9.737374, "SLn": -9.737374, "SLtTM": -9.737374, "SLz": -9.737374, "SM": -9.044227, "SMG": -9.737374, "SMbOIsOTfgladrIJGToM": -9.737374, "SMvo": -9.737374, "SN": -9.737374, "SNIefApIK": -9.737374, "SNbzedWSN": -9.737374, "SNf": -9.737374, "SP/gF": -9.737374, "SQKIRQdppElqAxFVYooNocxM": -9.737374, "SQXwNw": -9.737374, "SQeYispgT": -9.737374, "SQplt": -9.737374, "SQuuHaVfAhB": -9.737374, "SR": -9.737374, "SRxLaDFlSpOGSsK": -9.737374, "SS": -9.044227, "SSlm": -9.737374, "SSpTj": -9.737374, "SStSYugh": -9.737374, "SSw": -9.737374, "SSy": -9.737374, "ST": -9.737374, "STMudo": -9.737374, "SUKJg": -9.737374, "SUSIT": -9.737374, "SUWzk": -9.737374, "SUezuRtn": -9.737374, "SUtKno": -9.737374, "SV": -9.737374, "SV/": -9.737374, "SVDHGwaHtVy/RrV": -9.737374, "SWNr": -9.737374, "SWeU": -9.737374, "SWnpegOIxpMdNUlSr": -9.737374, "SWubxtVOXC": -9.737374, "SX": -9.737374, "SXHTut": -9.737374, "SXIevIR/": -9.737374, "SXOu": -9.737374, "SXWXZUvPAnlKpTtU": -9.737374, "SXfdU/": -9.737374, "SXiyZEyNzSK": -9.737374, "SXlomf": -9.737374, "SY": -9.737374, "SYbmSwxPDdOKfFGlqg": -9.737374, "SYyIoUbg": -9.737374, "SZ": -9.737374, "SZIZwSnZqTNbCSQmLBSLwqsLBAlHq": -9.737374, "SZfS": -9.737374, "SZn": -9.737374, "Sa": -8.638762, "SaFqnNOY": -9.737374, "SaG": -9.737374, "SaYh": -9.737374, "SaxmiD": -9.737374, "SbLkqnIi": -9.737374, "Sbd": -9.737374, "SbmOarSaHA": -9.737374, "SboVc": -9.737374, "Sc/": -9.737374, "ScIfvONWeyRgc": -9.737374, "ScO": -9.737374, "ScXw": -9.737374, "SceNebf": -9.737374, "ScrjqEtsj": -9.737374, "ScuLRLWStZl": -9.737374, "SdnFxTr": -9.737374, "SeK": -9.737374, "SePlAe": -9.737374, "Seh/I": -9.737374, "Sf": -9.737374, "Sg": -9.737374, "SgScHJ": -9.737374, "SgcTHet": -9.737374, "SgeuOUFy": -9.737374, "SgxcbNLG": -9.737374, "ShDXVYQs/O": -9.737374, "ShI": -9.737374, "ShZFK": -9.737374, "Si": -9.044227, "SiJlDdiAG": -9.737374, "SiwkrLUCrcjKDZYQmnTEVPi": -9.737374, "SizvCygDO": -9.737374, "SjxRn": -9.737374, "Sk/VftzBmcWZ": -9.737374, "Sl": -9.737374, "SlF": -9.737374, "SlaKjgScqA": -9.737374, "Slz": -9.737374, "SmSwDQdEIlgiHKhJFChSQFRD": -9.737374, "SmYCtun/qXSM": -9.737374, "Sn": -8.351080, "SnDBzcMgh": -9.737374, "SnHKtwXoM": -9.737374, "SnSXSQUmA": -9.737374, "Snc": -9.737374, "SnnaztavRN": -9.737374, "So": -9.737374, "SpK/DfJSBWIhGM": -9.737374, "SphRiYIKcK": -9.737374, "SpvsYmr": -9.737374, "SpvupsrBcmjksglKE": -9.737374, "Sq": -9.737374, "SqJGsSqyEs": -9.737374, "SqTtQMTPwTK": -9.737374, "SqsYaBlHRLzBQZ": -9.737374, "SrUCdWCQj": -9.737374, "SrZ": -9.737374, "Sre": -9.737374, "SrvvzzqfgMb": -9.737374, "SrzrQi": -9.737374, "SsSuIdeiNcWpRyvF": -9.737374, "SscYZBaqBQf": -9.737374, "StmXalqUWJwGW": -9.737374, "Stu": -9.737374, "SuJckHaInjouer": -9.737374, "SuTOYOf": -9.737374, "SuiroNR": -9.737374, "SujqJaIj": -9.737374, "Sv": -9.044227, "SvEy": -9.737374, "SvHxniloacbZ": -9.737374, "SvLZtdArIqTFM": -9.737374, "SvQpdiGuBdjqFPQXaaOcxuJ": -9.737374, "SwXeW/b": -9.737374, "Swltq": -9.737374, "SxJcnzNfWG": -9.737374, "SxNmPnZdUwrBmfqIVajFY": -9.737374, "SxRPJqveHPmHUvztEYbR": -9.737374, "SxT/RzH": -9.737374, "SxjOGqwdTthcvGRsV": -9.737374, "SxshLv": -9.737374, "SxvVYglWUHE": -9.737374, "Sy": -9.737374, "SyPaAIs": -9.737374, "SyYhu/cSU": -9.737374, "SyhBN": -9.737374, "SywUXSC": -9.737374, "SzFmIdHPclKsPUHMSnpi": -9.737374, "SzTQ": -9.737374, "SzVBCeTFW": -9.737374, "SzYpI": -9.737374, "SzZcZ": -9.737374, "T": -6.153855, "T/": -8.351080, "T/l": -9.737374, "T/pa/": -9.737374, "TAFNFtiAcxOjPnGrvO": -9.737374, "TANgk": -9.737374, "TAeyF": -9.737374, "TAmGTuSjE": -9.737374, "TAueD": -9.737374, "TB": -9.044227, "TBHVHu": -9.737374, "TBZnqfF": -9.737374, "TBdg": -9.737374, "TBhtz": -9.737374, "TCkrVkHfCQi": -9.737374, "TD": -9.737374, "TDWQ": -9.737374, "TDa": -9.737374, "TDhFpMNNbGQ": -9.737374, "TDqWnl": -9.737374, "TE": -9.737374, "TEVc": -9.737374, "TEsbshyYF": -9.737374, "TF": -9.737374, "TFFFZsarrku": -9.737374, "TFUvCevRJrJismVIGZKoqbpuXmn": -9.737374, "TFVgb": -9.737374, "TFnH": -9.737374, "TFvJ": -9.737374, "TG": -9.737374, "TGDoYtbBVaT/": -9.737374, "TGNdsl": -9.737374, "THBlUwlcsxJq": -9.737374, "THCA": -9.737374, "TI": -9.737374, "TICDhXGD": -9.737374, "TILquk": -9.737374, "TJ": -9.737374, "TJaphb": -9.737374, "TJiDOG": -9.737374, "TK": -8.638762, "TKHa/BGVSC": -9.737374, "TKYdq": -9.737374, "TL": -9.737374, "TLBdy": -9.737374, "TLPTMWexDYSWBUxi": -9.737374, "TLRkum": -9.737374, "TM": -9.737374, "TM/yb/yz": -9.737374, "TMrXJQUZ": -9.737374, "TMxDfcLKxbN": -9.737374, "TMxZpDgKXNlrB": -9.737374, "TN": -9.044227, "TN/nf/": -9.737374, "TNTw": -9.737374, "TNbkHHNeOi/ditMbXb": -9.737374, "TNrUx": -9.737374, "TOaCFUNW": -9.737374, "TOdUYyo": -9.737374, "TP": -9.044227, "TPQto": -9.737374, "TPu/XUkqfgi": -9.737374, "TPwEvBynJ//": -9.737374, "TQ": -9.737374, "TQM": -9.737374, "TQZ": -9.737374, "TQgT": -9.737374, "TQll": -9.737374, "TQruBRWCS": -9.737374, "TQy": -9.737374, "TR": -9.737374, "TRJ": -9.737374, "TRUHTOzEmxYCwai": -9.737374, "TS": -9.737374, "TSF": -9.737374, "TSVyvwaEYV": -9.737374, "TSlWpg": -9.737374, "TSlZxyyBqNea": -9.737374, "TSnLkWrQlz": -9.737374, "TSxfqytr": -9.737374, "TT": -9.737374, "TT/ndzR": -9.737374, "TTQOJ": -9.737374, "TTRzfBofBc": -9.737374, "TTgMYInbAW": -9.737374, "TTkrcsG": -9.737374, "TTsTzgibL": -9.737374, "TTxzmU": -9.737374, "TUtmGUcf": -9.737374, "TUvMzUgsqbBtZ": -9.737374, "TUyG": -9.737374, "TV": -9.737374, "TVSmVWi": -9.737374, "TW": -8.351080, "TW/": -9.737374, "TXRjPSriSI": -9.737374, "TYc": -9.737374, "TYjjCXCH": -9.737374, "TYvuxdLoHmCiGaWiU": -9.737374, "TZ": -8.638762, "TZW": -9.737374, "TZYpkd": -9.737374, "TZZrl": -9.737374, "TZkzOUNU": -9.737374, "TZzmX": -9.737374, "Ta": -9.737374, "Ta/zmRc": -9.737374, "TaMzY": -9.737374, "TazhZJmaMwfTgjN": -9.737374, "Tb": -8.638762, "TbIGXhd": -9.737374, "TbZVvO": -9.737374, "Tbf": -9.737374, "Tc": -9.737374, "TcK": -9.737374, "TcPM": -9.737374, "TcSJ": -9.737374, "Tcj": -9.737374, "TcqV": -9.737374, "TdKtEa": -9.737374, "TdjsV": -9.737374, "TdsH": -9.737374, "Te": -9.044227, "Te/D": -9.737374, "TeCBtF": -9.737374, "TeFx": -9.737374, "TeGAgW": -9.737374, "TeOPzfkYW": -9.737374, "TevIDG": -9.737374, "TfIJeHtsfUwT": -9.737374, "Tfypq": -9.737374, "Tg": -9.044227, "TgbK": -9.737374, "TgjCL": -9.737374, "ThAh": -9.737374, "ThUNvIEblxeQMyT": -9.737374, "ThYFUTZ": -9.737374, "Thj": -9.737374, "ThumgIJNz": -9.737374, "ThvPHenMwspmzypYIzhds": -9.737374, "Ti": -9.044227, "TiGcVycixd": -9.737374, "TiWJCtsI": -9.737374, "TirEDZNH": -9.737374, "Tj": -9.737374, "TjEZ": -9.737374, "TjElAjlbrTm/SGUq": -9.737374, "TjIX": -9.737374, "Tje": -9.737374, "TkEwWqVIo": -9.737374, "TkejFeHuITH": -9.737374, "Tkg": -9.737374, "TkvnQU": -9.737374, "Tl": -9.737374, "TlEiLO": -9.737374, "TlgrmUsIlDMCKFyU": -9.737374, "TlhWeg": -9.737374, "TmUxO": -9.737374, "Tmo": -9.737374, "TmtbWbYshhHODWbQ": -9.737374, "TnQW": -9.737374, "TnVLP/Dgfuu": -9.737374, "Tndupgs": -9.737374, "Tnf": -9.737374, "Tnm": -9.737374, "ToHjj": -9.737374, "ToLnnir": -9.737374, "Tp": -9.044227, "TpqW": -9.737374, "Tq": -9.044227, "TqXI": -9.737374, "Tr": -9.044227, "TrEJzgXW": -9.737374, "TrIHqC": -9.737374, "TrlEv": -9.737374, "TrnWXC": -9.737374, "Ts": -9.737374, "TsGYEnsceCpSsTIYPKnsexSDJ": -9.737374, "TsQzM": -9.737374, "TscdY": -9.737374, "Tsg": -9.737374, "TsqtuqNaXm": -9.737374, "Tt": -9.044227, "Ttlh": -9.737374, "Tu": -9.044227, "Tu/": -9.737374, "TuVJWUm": -9.737374, "TunBY": -9.737374, "Turca": -9.737374, "TuxZjy": -9.737374, "Tv": -9.044227, "TvBms": -9.737374, "TvJ": -9.737374, "TvaqDo": -9.737374, "TvfP": -9.737374, "TvyUSgFhCo": -9.737374, "Tw/L": -9.737374, "TwXxI": -9.737374, "Tx": -9.737374, "TxmG": -9.737374, "TxvaiWOGIK": -9.737374, "Ty": -9.044227, "TyVxzyZK": -9.737374, "Tymtt": -9.737374, "Tyw": -9.737374, "Tz": -9.737374, "TzCJEQTka": -9.737374, "TzLCKEh": -9.737374, "TzY": -9.737374, "Tze": -9.737374, "TzejBmGaZNbQYvYb": -9.737374, "TzlpkqHlubEl": -9.737374, "Tzv": -9.737374, "U": -7.945614, "U//rPvpUUsj": -9.737374, "U/f": -9.737374, "U/ow": -9.737374, "UAaN": -9.737374, "UEPqh": -9.737374, "UF": -9.737374, "UFKCaAx": -9.737374, "UGtS": -9.737374, "UHQTVKjKjqRFcFYn": -9.737374, "ULGRDCIjACtiDVTS": -9.737374, "UMPSO": -9.737374, "UOaaHaIMeOo": -9.737374, "UQy": -9.737374, "URXTtZ": -9.737374, "UUwMcG": -9.737374, "UV": -9.044227, "UVpI": -9.737374, "UW": -9.737374, "UWLktuUYrL": -9.737374, "UWWOLq": -9.737374, "UWtJJqBQikv": -9.737374, "UYHNX": -9.737374, "UaE": -9.737374, "UabzwNdzUZV": -9.737374, "Uaf": -9.737374, "UiM": -9.737374, "UjuvsGPpcWKc": -9.737374, "Ukige": -9.737374, "UnUYvjBvUDAQV": -9.737374, "Unk": -9.737374, "Uqndo": -9.737374, "UsAm": -9.737374, "UsjpR": -9.737374, "UsxFJIZyOVzIPHKyfjs": -9.737374, "Ut/yqX": -9.737374, "UuJcWif": -9.737374, "UuNVIYlxm": -9.737374, "UvGgyPXeXFhretDHxf": -9.737374, "UxXhBZDETrHNEjquL": -9.737374, "UxaSyMA": -9.737374, "UyVLR": -9.737374, "V": -6.126456, "V/": -9.737374, "V/nDiSRctg": -9.737374, "V/xrvaIzlrNhYwNn": -9.737374, "VAJqQFyBRRxdSmNMgfNIHMy": -9.737374, "VAYobpHwpR": -9.737374, "VAfCJ": -9.737374, "VAqjRaXEIe": -9.737374, "VB": -9.737374, "VBJetcm": -9.737374, "VBP": -9.737374, "VBTqeGYDWUiWSKG": -9.737374, "VBbiWBVnCVTP": -9.737374, "VBccA": -9.737374, "VBsvXm": -9.737374, "VCmeII": -9.737374, "VD": -9.044227, "VDTs": -9.737374, "VDi": -9.737374, "VEFWugCtGc": -9.737374, "VEPliYb": -9.737374, "VEXMuzT": -9.737374, "VF": -9.737374, "VFRmlGI/": -9.737374, "VFYPtgRZbRm": -9.737374, "VFc": -9.737374, "VFk": -9.737374, "VG": -9.044227, "VGODTR": -9.737374, "VGaXhMznLolNpPSCRZPCAV": -9.737374, "VGh/x": -9.737374, "VGnQzaDRWD": -9.737374, "VH": -9.737374, "VHPuN": -9.737374, "VIOWXR": -9.737374, "VIhsVN/yP/FaNAw": -9.737374, "VIt": -9.737374, "VIttYMc": -9.737374, "VIyFMscCLTHLzv": -9.737374, "VJN": -9.737374, "VJPkebXzFf": -9.737374, "VJvMgYpdBxS": -9.737374, "VJx": -9.737374, "VJzSkdzQ": -9.737374, "VK": -9.044227, "VKGEsa": -9.737374, "VKL": -9.737374, "VKVUNm": -9.737374, "VKawKPX": -9.737374, "VLi": -9.737374, "VLu": -9.737374, "VLzMCU": -9.737374, "VMA": -9.737374, "VMCLSMnnr": -9.737374, "VMQSh": -9.737374, "VMRejM": -9.737374, "VMn": -9.737374, "VN": -9.737374, "VN/OLv/R": -9.737374, "VNrKzfZ": -9.737374, "VO": -9.737374, "VPUtz": -9.737374, "VPVO": -9.737374, "VPidusKqaSbSpOhJFc": -9.737374, "VPtneLe": -9.737374, "VPwV": -9.737374, "VPzvb": -9.737374, "VQ": -9.737374, "VR": -9.044227, "VRKZHWj": -9.737374, "VRMJsZrAQZJuMFrziCkxWjdr": -9.737374, "VRaVt/": -9.737374, "VRtXTLo": -9.737374, "VSblKaRNKtNdn": -9.737374, "VSpR": -9.737374, "VT": -9.044227, "VTP": -9.737374, "VTS": -9.737374, "VU": -9.737374, "VUBd": -9.737374, "VV/Pd": -9.737374, "VVJPmtXUl": -9.737374, "VVbKpttJct": -9.737374, "VVdchbCjS": -9.737374, "VVszq": -9.737374, "VVt": -9.737374, "VVxfd": -9.737374, "VW": -9.737374, "VWs": -9.737374, "VWthqYWywloTS": -9.737374, "VX": -9.737374, "VXZmZkieJap": -9.737374, "VXeU": -9.737374, "VXf": -9.737374, "VXhriWjgJkma": -9.737374, "VY": -9.044227, "VY/ij": -9.737374, "VYuumW": -9.737374, "VYxsbK": -9.737374, "VZ": -9.044227, "VZZmurS": -9.737374, "VaSGxHNqtbJJg": -9.737374, "Vb": -9.737374, "Vb/snyQ": -9.737374, "VbIiyZUXOY": -9.737374, "VbVcY": -9.737374, "VbdnOyNRqH": -9.737374, "VbsyGy": -9.737374, "Vc": -9.737374, "VcXv": -9.737374, "Vcmvwik": -9.737374, "VcrX": -9.737374, "Vd": -9.044227, "Vd/": -9.737374, "Ve": -9.737374, "VeEJ": -9.737374, "VfGFX": -9.737374, "VfR": -9.737374, "Vfdae": -9.737374, "VfeDi": -9.737374, "VffSa": -9.737374, "VfvlF": -9.737374, "Vg": -9.044227, "VgaH": -9.737374, "VgrFmpR": -9.737374, "VgtqtUn": -9.737374, "Vh": -9.737374, "VhjWQHaGuxS": -9.737374, "ViHTcflAe": -9.737374, "VissGtiNcmWItY": -9.737374, "VivCvIJ": -9.737374, "VjJmNNpo": -9.737374, "VjLYn": -9.737374, "VjprH": -9.737374, "VkC": -9.737374, "VkpsnIQSSMuO": -9.737374, "VkxZb": -9.737374, "Vl": -9.737374, "VlOHsnyVk": -9.737374, "Vlgw": -9.737374, "Vm": -9.044227, "VmssZdzHo/eU": -9.737374, "Vmtn/zq": -9.737374, "VmymBZ": -9.737374, "VnMacx": -9.737374, "VnStCSt": -9.737374, "VnwCXuPZP": -9.737374, "Vo": -9.737374, "VoBydzy": -9.737374, "VoM": -9.737374, "VocO": -9.737374, "VojNS": -9.737374, "Vp": -9.737374, "VpMxbujUclhhxmkmjJHp": -9.737374, "VpSXG": -9.737374, "VpsrR": -9.737374, "VqAzNSieC": -9.737374, "VqEtaeqp": -9.737374, "VqRVYRBrIS": -9.737374, "Vqf": -9.737374, "VqqJrFMOMcRhj": -9.737374, "Vr": -9.044227, "VrehFgmR": -9.737374, "VrjVu": -9.737374, "VrrQgVifTDy": -9.737374, "Vswsnz": -9.737374, "VtUX": -9.737374, "Vu": -9.044227, "VuA": -9.737374, "VuHOVNd": -9.737374, "VuTfBz": -9.737374, "Vv": -9.737374, "VvJ": -9.737374, "Vvi": -9.737374, "Vw": -9.044227, "VwLqTa": -9.737374, "VwUpt": -9.737374, "VxMLEMW": -9.737374, "VxMUHfJG": -9.737374, "VxV": -9.737374, "VxXaaaNCpLuJbXKVkj": -9.737374, "VxqltC": -9.737374, "VxzMH": -9.737374, "Vy": -9.044227, "VyN": -9.737374, "VyRWvqWWkk": -9.737374, "VySCMdaMlMLtDmAI": -9.737374, "VyUPBACfW": -9.737374, "VymktaRY": -9.737374, "VyuXaQASUbT": -9.737374, "Vz": -9.737374, "VzxI": -9.737374, "W": -5.953184, "WA": -9.737374, "WAE": -9.737374, "WAtfApg/atuPmZqFTudTASbDipaTMI": -9.737374, "WBU": -9.737374, "WBYtglaTg": -9.737374, "WBrGcpV": -9.737374, "WBsS": -9.737374, "WCe": -9.737374, "WCkUNs": -9.737374, "WD": -9.737374, "WDa": -9.737374, "WE": -9.737374, "WEVLMgAxBU": -9.737374, "WEqwRXgwTlzdWMGNXyAsp": -9.737374, "WExKawIWsiFKThPxUzLNeV": -9.737374, "WF": -9.737374, "WFGywLr": -9.737374, "WFLMYcyGRjqAtNt": -9.737374, "WG": -9.737374, "WGGtwo": -9.737374, "WGLPDprCnlY": -9.737374, "WHjykHlw": -9.737374, "WI": -9.737374, "WIKXLOYFpyXIPZNPqJKbjUuQa": -9.737374, "WITtSTrA": -9.737374, "WIdrqE": -9.737374, "WIyH": -9.737374, "WJF": -9.737374, "WJKfTWpwxqtivOTH": -9.737374, "WJXZEs": -9.737374, "WJazzma": -9.737374, "WJrhg": -9.737374, "WJzumTLNInp": -9.737374, "WKXNVj": -9.737374, "WKZ": -9.044227, "WKZgxjHar": -9.737374, "WKcytyGp": -9.737374, "WKqIW": -9.737374, "WKvW": -9.737374, "WL": -9.737374, "WLCEnGmjnW": -9.737374, "WLF": -9.737374, "WLZF": -9.737374, "WLnMxC": -9.737374, "WMKojcxI": -9.737374, "WMlIVvz": -9.737374, "WMpJtF": -9.737374, "WMwaMzugwWnE": -9.737374, "WNLfsyebufB": -9.737374, "WNpw": -9.737374, "WOhCdetVFKBBz": -9.737374, "WOxyjlakmmsSiyTt": -9.737374, "WP/": -9.737374, "WPBSGbrGZh": -9.737374, "WPBz": -9.737374, "WPQcaLDWScX": -9.737374, "WPp": -9.737374, "WPrSZnLLfujir": -9.737374, "WQPnnjwkNe/": -9.737374, "WR": -9.737374, "WRC": -9.737374, "WRf": -9.737374, "WRn": -9.737374, "WSRbUM": -9.737374, "WSUAe": -9.737374, "WSWIxmI": -9.737374, "WSga": -9.737374, "WSnLqdzrqDiIufl": -9.737374, "WSs": -9.044227, "WT": -9.737374, "WTNpaCmhNGY": -9.737374, "WTQzeqA": -9.737374, "WTYeY": -9.737374, "WTa": -9.737374, "WTcMQZf": -9.737374, "WTud": -9.737374, "WUgzgkkpJ": -9.737374, "WV": -9.737374, "WVGTx": -9.737374, "WVMWVDW": -9.737374, "WVe": -9.737374, "WW": -8.638762, "WWIS": -9.737374, "WWQ": -9.737374, "WWjMdMuZCM": -9.737374, "WWsNjnorEquR/A": -9.737374, "WWu": -9.737374, "WWywycr": -9.737374, "WX": -9.737374, "WXIQEjBRmE": -9.737374, "WXJakdlale": -9.737374, "WXVbDHaceqOsNrPBvZrptrOUqgRZxAge": -9.737374, "WXX": -9.737374, "WY": -9.044227, "WYvh": -9.737374, "WZ": -9.737374, "WZZEmUd": -9.737374, "WZpCwJvVEOQ": -9.737374, "WZqPnOjnwucWqr": -9.737374, "WZreARPvvApSl": -9.737374, "Wa": -9.044227, "WaRWRnYik": -9.737374, "WaYN/": -9.737374, "WabcmX": -9.737374, "WahUh": -9.737374, "WalewFsT": -9.737374, "WaoVMDzwXZXw": -9.737374, "War": -9.737374, "Wb": -9.737374, "WbEPDEfmK": -9.737374, "WbPyfClNOY": -9.737374, "WbZgweZg": -9.737374, "Wbgg": -9.737374, "WbuGe": -9.737374, "WcTt/VjmpNlcS": -9.737374, "WcgsUjtikx": -9.737374, "Wcim": -9.737374, "Wcl": -9.737374, "WcxsK": -9.737374, "Wd": -9.737374, "WdF": -9.737374, "WddPlbGvlrNKG": -9.737374, "WdrdcZviSGTRgsq": -9.737374, "Wer": -9.737374, "Weu": -9.737374, "WfTFoWmLnlSbGjg": -9.737374, "WfyrX/k": -9.737374, "Wg": -9.737374, "WgOGqNY": -9.737374, "WgRuheyGNC": -9.737374, "WgTPN": -9.737374, "WgmqzonlB": -9.737374, "WhK/JpC": -9.737374, "WhO": -9.737374, "Whxlnl": -9.737374, "Wi": -9.737374, "WiPZejOQQo": -9.737374, "WiPt": -9.737374, "WiesIw": -9.737374, "Wj": -9.737374, "WjnbIWrGkQIuIwuSADALnxuSSg": -9.737374, "WjtYMNXOx": -9.737374, "WkIpO": -9.737374, "Wl": -9.737374, "WlGQljUaKRloS": -9.737374, "WlcFM": -9.737374, "WldvKXFpERsauuKSHNZRVNywIO": -9.737374, "WllOqcW": -9.737374, "Wm": -8.638762, "WmBWGI": -9.737374, "WmhxBRSyqNZgDXw": -9.737374, "WmnIUh": -9.737374, "Wmt/tit": -9.737374, "Wn": -9.044227, "WnB": -9.737374, "WnMjfOEyOSddxVX": -9.737374, "WnXPX": -9.737374, "WnaTzmpNH": -9.737374, "Wnfc": -9.737374, "Wo": -9.737374, "WoNSde": -9.737374, "Wp": -9.044227, "WpNhGlYhnhyeGSIdWtMbvA": -9.737374, "WpUvVpihuBrdQxX": -9.737374, "WpZRhpFoBGuoP": -9.737374, "Wq": -9.737374, "WqQPsxMcddxfl": -9.737374, "WqVJE": -9.737374, "Wqbm": -9.737374, "WqtwcrpowFrkdfUeXFDBC": -9.737374, "Wr": -9.737374, "WrQie": -9.737374, "WrlxpBszfDREjQVQWPidr": -9.737374, "WsIzM": -9.737374, "WsSed": -9.737374, "WsVbx": -9.737374, "WsWdAWV": -9.737374, "Wsag": -9.737374, "Wspj": -9.737374, "Wt": -9.044227, "WtdX": -9.737374, "Wtx": -9.737374, "Wu": -9.044227, "WuBjWLWyxS": -9.737374, "WuJSbqcCOWDmvc": -9.737374, "WuNORm": -9.737374, "WuV": -9.737374, "WukPxC": -9.737374, "WuomRE": -9.737374, "WvFYr": -9.737374, "WvLcOhaql": -9.737374, "WvOIs": -9.737374, "WvPsx": -9.737374, "Ww": -9.737374, "WwKWRIRmX": -9.737374, "WwKWXNhGYo/B": -9.737374, "WwbVRp": -9.737374, "Wwv": -9.737374, "WxTKQpGTxya": -9.737374, "Wxo": -9.737374, "WxqLJPgD": -9.737374, "Wxr": -9.737374, "Wy/UDMaLV": -9.737374, "Wz": -9.737374, "WzsYVdueq": -9.737374, "Wztxe": -9.737374, "X": -5.845554, "X/": -8.638762, "X/KmkH": -9.737374, "X/gf": -9.737374, "X/iRf": -9.737374, "X/jGh": -9.737374, "X/kWPumPfQWPbq": -9.737374, "X/wQ": -9.737374, "X/yzf": -9.737374, "X/zqzZ": -9.737374, "XA": -9.044227, "XAbDjNACMeaqPSBLt": -9.737374, "XAdl/": -9.737374, "XArusPnNxOn": -9.737374, "XBKpUDPdzHVkeUKmume": -9.737374, "XBUyiB": -9.737374, "XBY": -9.737374, "XBZYUBZWN": -9.737374, "XC": -9.737374, "XCAYgV": -9.737374, "XCE": -9.737374, "XCXoy": -9.737374, "XCaE/c": -9.737374, "XD": -9.044227, "XDNVd": -9.737374, "XDdtV": -9.737374, "XDwYINS": -9.737374, "XEBQ": -9.737374, "XEDusMwCIZrbOiOFoR": -9.737374, "XFGQ": -9.737374, "XFHTArNFNbXVkaJbAz": -9.737374, "XFlncDw": -9.737374, "XFoWVEijmlNymUmhhISgegMC": -9.737374, "XFxWuDDOvcwrVcqTeyThlSdPOOBhST": -9.737374, "XG": -8.638762, "XGJ/vOp": -9.737374, "XGJxX": -9.737374, "XGvLf": -9.737374, "XHJIdMuqMpm": -9.737374, "XIG": -9.737374, "XISRmRaH": -9.737374, "XInXaXB/": -9.737374, "XIou": -9.737374, "XIuwuo": -9.737374, "XJBKcJdRHy": -9.737374, "XJLLVwSqnW": -9.737374, "XJWKt/": -9.737374, "XJi": -9.737374, "XJnzxVWQutGpnNdiuWeUQjX": -9.737374, "XJtyuTFzufxGmuNiWE": -9.737374, "XK": -8.638762, "XKTQuN": -9.737374, "XKhlqOLKDtEAFIUqgYNoBX": -9.737374, "XLU": -9.737374, "XLm": -9.737374, "XLnW": -9.737374, "XLo": -9.737374, "XMBqhAfdpd": -9.737374, "XME": -9.737374, "XMLmtksbwju": -9.737374, "XMRUxbnSH": -9.737374, "XMa": -9.737374, "XMahZZg": -9.737374, "XMknWQKNmIaRYpMTmz": -9.737374, "XMr": -9.737374, "XN": -9.737374, "XNA": -9.737374, "XOZeWLcT": -9.737374, "XOnhaLx": -9.737374, "XOsUEyFyxU": -9.737374, "XP": -9.737374, "XP/Q/": -9.737374, "XPOTF": -9.737374, "XPRBdQHpVQhJ": -9.737374, "XPSwmm": -9.737374, "XPlRyVzpGL": -9.737374, "XPoM": -9.737374, "XPrUX": -9.737374, "XQ": -9.737374, "XQfvCauRHY": -9.737374, "XQxinH": -9.737374, "XRTGoFc": -9.737374, "XRaDkVKpaK": -9.737374, "XRitSSY": -9.737374, "XRuo/OhOZ": -9.737374, "XS/sZWbr": -9.737374, "XSShAqLqTJMLFs": -9.737374, "XSX": -9.737374, "XTMKMEYP": -9.737374, "XTrcl": -9.737374, "XTznxFKb": -9.737374, "XU": -9.044227, "XURWslQRy": -9.737374, "XUSGpUBrtCI": -9.737374, "XUppUeJ": -9.737374, "XVMuieH": -9.737374, "XVdxu": -9.737374, "XVnNClqOJKCl": -9.737374, "XVt": -9.737374, "XVvfJqv/A/fzJ": -9.737374, "XVwdFvU": -9.737374, "XWMH": -9.737374, "XWVamQyJ": -9.737374, "XWn": -9.737374, "XWnMM": -9.737374, "XWt": -9.737374, "XWxgmG": -9.737374, "XX": -9.737374, "XXY": -9.737374, "XY": -9.737374, "XYBeQbPD": -9.737374, "XYyMS": -9.737374, "XZDWRBQF": -9.737374, "XZk": -9.737374, "XZuyoY": -9.737374, "XZvThTaspRhzyuEUMykL": -9.737374, "XZwrsQZOnhdS": -9.737374, "XaQ": -9.737374, "XaZdHnp": -9.737374, "Xb": -9.737374, "Xb/Jt": -9.737374, "Xb/UZMakDqN": -9.737374, "XcJo": -9.737374, "XcN": -9.737374, "XcqOl": -9.737374, "XdAivn": -9.737374, "XdNenFiH/Qv": -9.737374, "Xdf": -9.737374, "XdnxZ": -9.737374, "XdztYKUROfZ": -9.737374, "Xe": -9.737374, "XePvVS": -9.737374, "XeXFC": -9.737374, "Xexa": -9.737374, "Xf": -9.044227, "XfrGOAZ": -9.737374, "XfrtcGIZcznn": -9.737374, "XfvdbYZd": -9.737374, "XfyXv": -9.737374, "Xg": -8.638762, "XgIuiLaUMdN": -9.737374, "XgM": -9.737374, "XgQZdchj": -9.737374, "XhFoFhcxKKVCUHeyOmm": -9.737374, "XhJqnVXEzSHtZLLnu": -9.737374, "XhTB": -9.737374, "XhTKf": -9.737374, "XhqbAaAEJn": -9.737374, "XiJQlPDqscNelds": -9.737374, "Xil": -9.737374, "Xj": -9.737374, "XjMh": -9.737374, "XjMv": -9.737374, "Xk": -8.638762, "Xka": -9.737374, "Xktx": -9.737374, "XkuA": -9.737374, "XlISxdVcFt": -9.737374, "XlSKUg": -9.737374, "XlSSzbUkZAznZ": -9.737374, "XlViOORKCjgUZ": -9.737374, "XlcoTkxJyv": -9.737374, "Xlh": -9.737374, "Xlk": -9.737374, "XlxdS": -9.737374, "Xm": -9.737374, "Xmlfr": -9.737374, "Xmm": -9.737374, "Xn": -8.351080, "XnM": -9.737374, "XnPM": -9.737374, "XnWUwOknjN": -9.737374, "Xnhqu": -9.737374, "XnkrttL": -9.737374, "Xnncz": -9.737374, "XnyyXtcHSrvf": -9.737374, "Xoaa": -9.737374, "Xovwwrp": -9.737374, "XpCLQKaC": -9.737374, "XpSbMLEcHtltxWcIaCYOd": -9.737374, "XpYYOCEedTWiuiZXt": -9.737374, "XpZFUz": -9.737374, "XpbwykhbJyKHDCPblANfmDqxMnkfwmHDO": -9.737374, "XpphSOmpupnCZcojeZHrZ": -9.737374, "Xpry": -9.737374, "Xq": -9.737374, "XqUWc": -9.737374, "XqVVE": -9.737374, "Xqbjxzqu": -9.737374, "Xr": -9.044227, "XrJTJSug": -9.737374, "XrQz": -9.737374, "XrixfKW": -9.737374, "XrtezkGo": -9.737374, "Xs/rq": -9.044227, "XsKoXIi": -9.737374, "XscfOwTKedYEW": -9.737374, "XtPIo": -9.737374, "Xu": -9.737374, "Xv": -8.351080, "XvS": -9.737374, "XvSBt": -9.737374, "XvgADb": -9.737374, "XvpbNJ": -9.737374, "Xw": -9.737374, "XwCQ": -9.737374, "XwwLIiTI": -9.737374, "XwxJ": -9.737374, "XxqBbV": -9.737374, "XxyANejPurxqvPrzzdHdeHYXDEu": -9.737374, "Xyrf/": -9.737374, "Xz": -9.737374, "Xzo": -9.737374, "Y": -5.676931, "Y/": -9.737374, "Y//n": -9.737374, "Y/LpH": -9.737374, "YA/V": -9.737374, "YAE/UL": -9.737374, "YAIoGeUllcHdqndRSxWNwtYe": -9.737374, "YAuVHfJ/": -9.737374, "YB": -9.737374, "YBmxOYm": -9.737374, "YC": -9.044227, "YCHFUmppN": -9.737374, "YCSZiC/RSsjK": -9.737374, "YCW": -9.737374, "YCerJEcq": -9.737374, "YClyzK": -9.737374, "YCy": -9.737374, "YD": -9.737374, "YDbXo": -9.737374, "YDmSObJn//Ov": -9.737374, "YE": -9.737374, "YESv": -9.737374, "YExpZN": -9.737374, "YFbpVZ": -9.737374, "YFh": -9.737374, "YFlgUZv": -9.737374, "YFnDqBI": -9.737374, "YFzf": -9.737374, "YG": -9.737374, "YGOrUl": -9.737374, "YGQEsTXInqh": -9.737374, "YH": -9.044227, "YIYoHIuT": -9.737374, "YIlYxG": -9.737374, "YJJQIEUQUy": -9.737374, "YJgs": -9.737374, "YJozqoZkVbqnUxUG": -9.737374, "YKQ": -9.737374, "YKRuANmld": -9.737374, "YKV": -9.737374, "YKgijmT": -9.737374, "YKlfoGxqKRUS": -9.737374, "YKr": -9.737374, "YKsOZO": -9.737374, "YL": -9.044227, "YL/": -9.737374, "YLSkWUZNYQ/ZjU": -9.737374, "YLXp": -9.737374, "YLsBGP": -9.737374, "YM": -9.737374, "YM/": -9.737374, "YN": -9.737374, "YNmJhfAjf": -9.737374, "YO": -9.044227, "YOJgJzWZzzMBZUD": -9.737374, "YOYTsZHC": -9.737374, "YOl": -9.737374, "YOxRtWrGYYbr": -9.737374, "YP/vc/xGaDtKNzXxp": -9.737374, "YPDZVGa": -9.737374, "YPih": -9.737374, "YPsD": -9.737374, "YQ": -9.737374, "YQPL": -9.737374, "YQkSRKdjKXaUlLsnSycykDqh": -9.737374, "YQt": -9.737374, "YR": -9.044227, "YRJ": -9.737374, "YRLK": -9.737374, "YRpV": -9.737374, "YRzDGb": -9.737374, "YS": -9.044227, "YSPKoVXlqzosxrVF": -9.737374, "YTLI": -9.737374, "YTXi": -9.737374, "YTYQrz": -9.737374, "YTtuR": -9.737374, "YTzxxBP": -9.737374, "YU": -9.737374, "YUVj": -9.737374, "YUf": -9.737374, "YUnW": -9.737374, "YUsyrjKNNPo": -9.737374, "YUy": -9.737374, "YV": -8.638762, "YVG": -9.737374, "YVNBVd": -9.737374, "YVNOs": -9.737374, "YVS": -9.737374, "YVU": -9.737374, "YVZ": -9.737374, "YVf": -9.737374, "YW": -9.737374, "YWAjw": -9.737374, "YWT": -9.737374, "YWmjzqoozdaL": -9.737374, "YX": -9.737374, "YXUtveWUrheC": -9.737374, "YXsjXcr": -9.737374, "YXupSvN": -9.737374, "YXwTj": -9.737374, "YY": -9.044227, "YY/gO": -9.737374, "YYdsnH": -9.737374, "YYiEmI": -9.737374, "YYjpcd": -9.737374, "YYxeP": -9.737374, "YZ": -9.737374, "YZAT": -9.737374, "YZLY": -9.737374, "YZPEFwPCTW": -9.737374, "YZQp": -9.737374, "YZVJ": -9.737374, "YZXhkZ": -9.737374, "YZiSbp": -9.737374, "YZrabrfClRVicFjh": -9.737374, "Ya": -9.737374, "YaG": -9.737374, "YajY": -9.737374, "YandhcybHeuhZtzIzcZVoQk": -9.737374, "Yavs/": -9.737374, "YbRWvLg": -9.737374, "Yc": -9.044227, "YcJjIPg": -9.737374, "YcJzONwHcZl": -9.737374, "YcifNYmtsciPfFUpRxV": -9.737374, "YdB": -9.737374, "Ydh": -9.737374, "YdkpIoXj": -9.737374, "YdnfPF": -9.737374, "YdsunfaGRNmg": -9.737374, "Ye/": -9.737374, "YeRIZaM": -9.737374, "YeScbBQ": -9.737374, "Yf": -9.737374, "YfGQu": -9.737374, "YfJRZRpD": -9.737374, "YfPdaI": -9.737374, "YfkQ": -9.737374, "YfvOG": -9.737374, "Yg": -9.737374, "YgG": -9.737374, "YgKrmNwzuLA": -9.737374, "Yggv": -9.737374, "YgrsKVL": -9.737374, "Yh": -8.638762, "YhC": -9.737374, "YhUcYr": -9.737374, "YhxWeP": -9.737374, "YiVLV": -9.737374, "YidpDHdeABV": -9.737374, "Yirs": -9.737374, "Yj": -9.737374, "YjbZKEw": -9.737374, "YkGgtRBM": -9.737374, "YkSClD": -9.737374, "YkXeMtDqOXAlvnbuXDHG": -9.737374, "YkqIxqdWVYWZJ": -9.737374, "Yl": -9.737374, "YlPtAOSxGqS": -9.737374, "YlQaaykUE": -9.737374, "YlrU": -9.737374, "YmDydfYKL": -9.737374, "YmjZ": -9.737374, "YmjtNk": -9.737374, "YmndOQNmZiqINuxdd": -9.737374, "YmrFFY": -9.737374, "Yn": -9.737374, "YnDqCSJRUoeyYO": -9.737374, "YnWpL": -9.737374, "Ynhw": -9.737374, "Ynlo": -9.737374, "Yo": -9.737374, "YoSIc": -9.737374, "YoduQ": -9.737374, "YpGUVrGU/rJ": -9.737374, "YpJwmUm": -9.737374, "YpZQgvNnhub": -9.737374, "Yq": -8.638762, "YqBcOMEZNejN": -9.737374, "YqIwl": -9.737374, "YqpcPzKatnhOnCGgoRHdMY": -9.737374, "YqwRMSqAeKPUFVcWUgix": -9.737374, "Yr": -9.737374, "YrGRk": -9.737374, "YrLW/": -9.737374, "YrM": -9.737374, "YrN": -9.737374, "YrOqKwxsFqYF": -9.737374, "YrQt": -9.737374, "YrRtPF": -9.737374, "YrWlLOp": -9.737374, "YsWZEXpzuzMu": -9.737374, "Ysk": -9.737374, "Yu": -9.737374, "YuDc": -9.737374, "YuKzZrGGP": -9.737374, "YuM": -9.737374, "Yux": -9.737374, "YuyzMPVRp": -9.737374, "Yvq": -9.737374, "YwxKO": -9.737374, "YwyZhjn": -9.737374, "YxTtkH": -9.737374, "YxvjRF": -9.737374, "YycxAScGKSRCgKVE": -9.737374, "YzGVCnb": -9.737374, "YzMH/mCZ": -9.737374, "YzQqO": -9.737374, "YzSsgy/NSFaZb": -9.737374, "YzWjdGdo/k": -9.737374, "Yzh": -9.737374, "YzmTDS": -9.737374, "Z": -5.887226, "Z/": -9.044227, "Z/BIghUB": -9.737374, "ZA": -9.737374, "ZAXPT": -9.737374, "ZBDV": -9.737374, "ZBX": -9.737374, "ZBZmuNqwpJR": -9.737374, "ZBzx": -9.737374, "ZC": -9.737374, "ZCFB": -9.737374, "ZCQWN": -9.737374, "ZCVVYHmQ": -9.737374, "ZCehH": -9.737374, "ZD": -9.737374, "ZDCfq": -9.737374, "ZDGp": -9.737374, "ZDaLj": -9.737374, "ZDrnqUj": -9.737374, "ZE": -9.737374, "ZEcTuD": -9.737374, "ZEzrqHZ": -9.737374, "ZF": -9.737374, "ZFLqrEVT": -9.737374, "ZFbvvaoRid": -9.737374, "ZFgb": -9.737374, "ZFpU": -9.737374, "ZG": -9.737374, "ZGq": -9.737374, "ZH": -9.044227, "ZHDHNLEOsYDeNl": -9.737374, "ZHo": -9.737374, "ZHxmUKFgg/e": -9.737374, "ZI": -9.044227, "ZIJP": -9.737374, "ZISbNaXE": -9.737374, "ZIZfRBSL": -9.737374, "ZJCn": -9.737374, "ZJMVEkZxozJIvrTcyF": -9.737374, "ZJlRjzTOLlQsRYZiw": -9.737374, "ZJuux": -9.737374, "ZK": -9.737374, "ZKKtP": -9.737374, "ZKOBz": -9.737374, "ZKQ": -9.737374, "ZKScdR": -9.737374, "ZKUMaQ": -9.737374, "ZKkZ/RQWIOJl/y": -9.737374, "ZKvzAme": -9.737374, "ZKxLWaTM": -9.737374, "ZLBfUjOojC": -9.737374, "ZLBiz": -9.737374, "ZLgPj": -9.737374, "ZM/reT": -9.737374, "ZMJcymS": -9.737374, "ZMv/cr/hC/": -9.737374, "ZNNJ": -9.737374, "ZO": -9.737374, "ZOCDfdcUfnOIrpNeLjIOhUHJmidU": -9.737374, "ZOTul": -9.737374, "ZOVsIZyZpqn": -9.737374, "ZOf/AQ/": -9.737374, "ZOj": -9.737374, "ZOpVswYxLr": -9.737374, "ZPRCz": -9.737374, "ZPuOm": -9.737374, "ZQAYOTEoUxkKb": -9.737374, "ZQYPKzlXXzr": -9.737374, "ZQkt": -9.737374, "ZQlpAmWEBSO": -9.737374, "ZQnNYp": -9.737374, "ZR": -9.044227, "ZRN/": -9.737374, "ZRVvQyO": -9.737374, "ZS": -9.737374, "ZSV": -9.737374, "ZSbDDxUxtXalpfPANzOiece": -9.737374, "ZTlqPJBp": -9.737374, "ZTswfuyv/m": -9.737374, "ZUBfncpTNQ": -9.737374, "ZUG": -9.737374, "ZV": -9.044227, "ZV/RiwvUwXlwH": -9.737374, "ZVW": -9.737374, "ZVe": -9.737374, "ZVghXfZkG": -9.737374, "ZVharPL": -9.737374, "ZVxJhIMWhyjDhkOzKPyEvcFfa": -9.737374, "ZW": -9.737374, "ZWJqvGF": -9.737374, "ZWsxeNefFrG": -9.737374, "ZWySBedixgFOfl": -9.737374, "ZX": -9.737374, "ZXGbzGU": -9.737374, "ZYFBm": -9.737374, "ZYH": -9.737374, "ZYIvS": -9.737374, "ZYNNypHDFc": -9.737374, "ZYO": -9.737374, "ZYYqlrdFLrITlN": -9.737374, "ZYimPeTi": -9.737374, "ZZ": -9.044227, "ZZTmDKp": -9.737374, "ZZkuZk": -9.737374, "ZZrZ": -9.737374, "ZZxJl": -9.737374, "ZaM": -9.737374, "ZaXsJnnjmU/mFD/woz": -9.737374, "ZbJrZQb": -9.737374, "ZbPdB": -9.737374, "ZbVh": -9.737374, "ZbaVtcaom": -9.737374, "Zbazi": -9.737374, "Zbs": -9.737374, "ZbzhwcL": -9.737374, "ZcAx": -9.737374, "ZcL": -9.737374, "ZdVUmYpAkpUbOroBuSdGoN": -9.737374, "ZdWjMf": -9.737374, "Ze": -9.737374, "ZecUknvlZFgt": -9.737374, "Zeddv": -9.737374, "Zer": -9.737374, "ZeyUTSb": -9.737374, "ZeyzeaVrMwdlV": -9.737374, "ZfN": -9.737374, "ZfV": -9.737374, "ZfvTeXNCTpoNW": -9.737374, "ZfyQnAtNksGA": -9.737374, "Zg": -9.044227, "ZgPCxX/bxfMJmFu": -9.737374, "Zga": -9.737374, "ZggKFKYSgNikryq": -9.737374, "Zh": -9.737374, "ZhXUfbd": -9.737374, "ZhqW": -9.737374, "ZhuSzcUQqCVl": -9.737374, "ZijtDby": -9.737374, "ZjBX": -9.737374, "ZjCqUb": -9.737374, "ZjFxYLdiU": -9.737374, "Zjq": -9.737374, "ZjtJ": -9.737374, "Zjxohk": -9.737374, "ZkDpUl": -9.737374, "ZkFeJ": -9.737374, "ZkV": -9.737374, "ZkcO/": -9.737374, "Zkf": -9.737374, "Zl": -9.737374, "ZlGxwo": -9.737374, "ZlOmbLp": -9.737374, "ZlRsMkvvjfPfL": -9.737374, "ZldRpdYwZyJLfE/": -9.737374, "Zlo": -9.737374, "ZmLxjA": -9.737374, "Zn": -9.737374, "ZnCXQUG": -9.737374, "ZnKsghLNWB": -9.737374, "ZnMVRjUqLB": -9.737374, "ZnrYm": -9.737374, "Zo": -9.737374, "Zo/": -9.737374, "ZoRPhY": -9.737374, "ZoT": -9.737374, "ZoV": -9.737374, "ZoYciBVa": -9.737374, "ZoagNupC": -9.737374, "Zobrx": -9.737374, "Zp": -9.044227, "ZpMEayK": -9.737374, "ZpbGCI": -9.737374, "ZpdFOX": -9.737374, "ZpeywdQeWltUv": -9.737374, "ZqDiT": -9.737374, "ZqXKDOXDNhC/": -9.737374, "ZqltApmdohHp": -9.737374, "Zqrwpd": -9.737374, "Zqxb": -9.737374, "Zqxs": -9.737374, "ZqzS": -9.737374, "Zr": -9.737374, "ZrUlNZJJphNTAWfxSEnrC": -9.737374, "ZrsJDkUqgohBc": -9.737374, "Zs": -9.737374, "ZsIsORygQU": -9.737374, "ZsKJKmY": -9.737374, "ZsLKt/HwQuE": -9.737374, "ZsLOSnbXpcMT": -9.737374, "ZsLta": -9.737374, "ZsPZxHFedltCNZ": -9.737374, "ZsSVGpfejpx": -9.737374, "ZsjaSBnoNBsVaz": -9.737374, "ZsonLQOWE": -9.737374, "ZswSqcbUpRqYNn": -9.737374, "Zt": -9.737374, "Zt/FfH": -9.737374, "Ztgy/G": -9.737374, "ZtlPLwlzx": -9.737374, "Ztw": -9.737374, "Zui": -9.737374, "Zv": -9.044227, "Zv/": -9.737374, "ZvMTm": -9.737374, "ZvUCsaB": -9.737374, "ZvZtwIpy": -9.737374, "Zw": -9.737374, "ZwaOtDcv": -9.737374, "ZxILb": -9.737374, "ZxW": -9.737374, "ZxXou": -9.737374, "ZxhWnEgZCr": -9.737374, "ZxzVBLE": -9.737374, "ZxznIlXvTc": -9.737374, "Zy": -8.638762, "ZyVndfpG": -9.737374, "Zyz": -9.737374, "ZyzBTZ": -9.737374, "Zz": -9.737374, "ZzBWxoCOwxrcxBNkglK": -9.737374, "ZzE": -9.737374, "ZzPuVpYBKhxuCp": -9.737374, "ZzcN": -9.737374, "ZzkBKW": -9.737374, "ZznSfPZ/CF": -9.737374, "ZztD": -9.737374, "[": -8.351080, "\\": -2.592178, "]": -9.044227, "a": -5.419886, "a/": -9.737374, "a/O": -9.737374, "a/Vjt": -9.737374, "a/pjiZnz": -9.737374, "a/wx": -9.737374, "aA": -9.044227, "aARHFxtG": -9.737374, "aAXnRcS": -9.737374, "aAaPtX": -9.737374, "aAdY": -9.737374, "aAv": -9.737374, "aAz": -9.737374, "aBHYcbCWFjJEQWt": -9.737374, "aBO": -9.737374, "aBPipD": -9.737374, "aBT": -9.737374, "aBh": -9.737374, "aBrVCjp": -9.737374, "aCKDSTsF": -9.737374, "aCZir": -9.737374, "aCaEAMkhvHOBATXhzJqxfGKMFdOCwZo": -9.737374, "aCpFR": -9.737374, "aD": -9.044227, "aDFCugAYPs": -9.737374, "aDNjJjL": -9.737374, "aDszkXeJxlzZL": -9.737374, "aEFqFMpm": -9.737374, "aELLU": -9.737374, "aEUz": -9.737374, "aEcKJ": -9.737374, "aEhQE": -9.737374, "aErXIzHLlRjElxO": -9.737374, "aF": -9.044227, "aFbWajA": -9.737374, "aG": -9.737374, "aG/WBZXabNgIV": -9.737374, "aGetsnRmx": -9.737374, "aGgBwyejQ": -9.737374, "aGiS/Ct": -9.737374, "aGvZMxYWyZyIvHC": -9.737374, "aIHIg": -9.737374, "aIOzLdwGr": -9.737374, "aIbm": -9.737374, "aIdm": -9.737374, "aIj": -9.737374, "aIkxsOPl": -9.737374, "aIoMosZH": -9.737374, "aIrqVLZioHZOA": -9.737374, "aIy": -9.737374, "aJ": -9.737374, "aJFzmQCFQ": -9.737374, "aJH": -9.737374, "aJIvYgBbYBWgt": -9.737374, "aJWQsgSLRNzx": -9.737374, "aJlpg": -9.737374, "aKMHFXCqA": -9.737374, "aKN": -9.737374, "aKee": -9.737374, "aKlriSOt": -9.737374, "aLKV": -9.737374, "aLWrQsPNf": -9.737374, "aLdXSnWANoUUakGNiZQhETylJEF": -9.737374, "aLrGWN": -9.737374, "aLwfc": -9.737374, "aM/": -9.737374, "aMLejTKlHSRtincTSAeepWfSMqc": -9.737374, "aMSRGw": -9.737374, "aMSZ//DlCb": -9.737374, "aMaR": -9.737374, "aMhi": -9.737374, "aMj": -9.737374, "aMta": -9.737374, "aMxavNhgNmO": -9.737374, "aN": -9.737374, "aNRp": -9.737374, "aNfHTaKB": -9.737374, "aO": -9.737374, "aOSdaGgyHZSycHEbsRNeUkpi": -9.737374, "aObgnbZf": -9.737374, "aOwb": -9.737374, "aPBEbjN": -9.737374, "aPWGthkdNWbQa": -9.737374, "aPrX": -9.737374, "aQmscuFUJ": -9.737374, "aQoaHYF": -9.737374, "aR": -9.737374, "aRKdRopSzLGUAX": -9.737374, "aRiDIdXLgobmrVVOy": -9.737374, "aRoJUWI": -9.737374, "aS": -9.737374, "aSQ": -9.737374, "aSQi": -9.737374, "aSRUoSz": -9.737374, "aSazXOdXKrjiMPN": -9.737374, "aSsTAXtBq": -9.737374, "aT": -9.044227, "aTA": -9.737374, "aTBoxjOawn": -9.737374, "aTSsLIFJtBkVsiTMaP": -9.737374, "aTV": -9.737374, "aTfLooY": -9.737374, "aU": -8.638762, "aUDHkL": -9.737374, "aUheaNyBwvxuUG": -9.737374, "aUkl": -9.737374, "aUu": -9.737374, "aUvPNlxU": -9.737374, "aVWsTaagO": -9.737374, "aVdbom": -9.737374, "aVkUka": -9.737374, "aW": -9.737374, "aXVstKMsrfB": -9.737374, "aXsgXnfgplER": -9.737374, "aXz/MGUO": -9.737374, "aY": -9.737374, "aYKaF": -9.737374, "aYMPQlQbBSrmm": -9.737374, "aYYDpl": -9.737374, "aYoDEzYkC": -9.737374, "aYqHNdCf": -9.737374, "aZ": -9.737374, "aZUEMIjozk": -9.737374, "aZjO": -9.737374, "aZkqwHufO/": -9.737374, "aZo": -9.737374, "aa": -9.044227, "aaiYnUmJ": -9.737374, "aaqNxBPhIGTleZFjAMYkM": -9.737374, "aauIqDhyS": -9.737374, "ab": -9.737374, "abAi": -9.737374, "abSbWjNsp": -9.737374, "abXU": -9.737374, "absbBHDdKW": -9.737374, "acHw": -9.737374, "acXiWFA": -9.737374, "acbH": -9.737374, "acbWyJYPAhyLkZqZn": -9.737374, "acyNXoZcBZs": -9.737374, "adX/faf": -9.737374, "adqM": -9.737374, "adwnfzWv": -9.737374, "ae": -9.737374, "aeAZaYHsFAopEqUHRpCyU": -9.737374, "aeEN": -9.737374, "aeedg": -9.737374, "af": -9.737374, "afuwuCWIqCZbCdSosuVAv": -9.737374, "agGeGNsyWHOTPhBSdtctCJ/LKoGFu": -9.737374, "agQrVJAUH": -9.737374, "agi": -9.737374, "agssa": -9.737374, "ahZQG": -9.737374, "ahlYc": -9.737374, "ahttfN": -9.737374, "ai": -8.638762, "aimbcY": -9.737374, "aj": -9.737374, "ajD": -9.737374, "ajHU": -9.737374, "ajIaS": -9.737374, "ajO": -9.737374, "ajPZFmpJLMuQYq": -9.737374, "ak": -9.737374, "aktSTUUI": -9.737374, "al": -9.737374, "alGOVvOdU": -9.737374, "alJKZWxPnQ": -9.737374, "alL": -9.737374, "alNZ": -9.737374, "alOw": -9.737374, "alxUW": -9.737374, "am": -9.044227, "aml": -9.737374, "amwUq": -9.737374, "an": -9.737374, "anCirTiha": -9.737374, "anD": -9.737374, "anDOCzEBRXIqhhmhw": -9.737374, "anZKRs": -9.737374, "anyKh": -9.737374, "ap": -8.638762, "apBa": -9.737374, "apDTEISN": -9.737374, "apMD": -9.737374, "apOj": -9.737374, "apdKYF": -9.737374, "apoLHn": -9.737374, "aps": -9.737374, "aq": -9.044227, "aqYcigIOS": -9.737374, "aqamutoVfyiMSe": -9.737374, "aqfNsoX": -9.737374, "aqrNxdE": -9.737374, "ar/": -9.737374, "arB": -9.737374, "arDmZXJK": -9.737374, "arF": -9.737374, "arTk": -9.737374, "arWcnxYqbK": -9.737374, "arhXq": -9.737374, "armQJBB": -9.737374, "as": -9.737374, "asPtUqN": -9.737374, "attF": -9.737374, "auYz": -9.737374, "avSg": -9.737374, "avWak": -9.737374, "avaR": -9.737374, "avb": -9.737374, "aw": -9.737374, "awJ": -9.737374, "axFSCZHIdT": -9.737374, "axGEtN": -9.737374, "ayLhcrnw": -9.737374, "aym": -9.737374, "aysGKHQOo/ZrtlN": -9.737374, "ayySTfndk": -9.737374, "ayz": -9.737374, "az": -9.737374, "azbbA": -9.737374, "azqbLQZdd": -9.737374, "aztoW": -9.737374, "azu": -9.737374, "b": -6.211013, "b/aWtrCkDLjzGgnzkdsLtND": -9.737374, "b/p": -9.737374, "b/pKpPTO": -9.737374, "bANdoqBZIhVnQeLE": -9.737374, "bAO/zcC": -9.737374, "bAiK": -9.737374, "bAm": -9.737374, "bArlfp": -9.737374, "bB": -9.737374, "bBB": -9.737374, "bBnMu": -9.737374, "bCPMpFIgNTvLZrvSKc": -9.737374, "bD": -9.044227, "bDH": -9.737374, "bDQt": -9.737374, "bDUrSsdK": -9.737374, "bDyjXPl": -9.737374, "bE": -9.737374, "bF/x": -9.737374, "bFpe": -9.737374, "bFqxc": -9.737374, "bGWEkEytX": -9.737374, "bGoDTaffPGbcd": -9.737374, "bGxZ": -9.737374, "bH": -9.737374, "bHH": -9.737374, "bHpKFKpIZr": -9.737374, "bI": -9.737374, "bIEN": -9.737374, "bIPOo/HRRD": -9.737374, "bItDxSHYlrarSxGgyyBxmOKdVin/o": -9.737374, "bJDKT": -9.737374, "bJNOg": -9.737374, "bJmSiPUBNretnhFyJreVpCyG": -9.737374, "bJshbWmjmmzGFVs": -9.737374, "bKGC/qVvShQzSRFTZiH/q": -9.737374, "bKdb": -9.737374, "bKj": -9.737374, "bKjkhLBdDHy": -9.737374, "bL": -9.737374, "bLC": -9.737374, "bLKUbcpdp": -9.737374, "bLTNLkJqGMLAZSqcQIvuGTyFRDzcsp": -9.737374, "bLi": -9.737374, "bMg": -9.737374, "bNH": -9.737374, "bNdecqaLJO": -9.737374, "bNlFUCjx": -9.737374, "bOAxkjwo": -9.737374, "bOFbb": -9.737374, "bOglrtox": -9.737374, "bP": -9.737374, "bPmBycU": -9.737374, "bPv": -9.737374, "bQgUvyRn": -9.737374, "bQhyKnXg": -9.737374, "bQw": -9.737374, "bQwt": -9.737374, "bR": -9.044227, "bRgFt": -9.737374, "bRl": -9.737374, "bRmbHAZJho": -9.737374, "bRrGE": -9.737374, "bRtbGuZGd": -9.737374, "bS": -9.044227, "bSIFh": -9.737374, "bSa": -9.737374, "bSkvLYcl": -9.737374, "bSxtaGR": -9.737374, "bT": -9.737374, "bTLzJRRpJW": -9.737374, "bTNQhTpZgmmxlQbmSW": -9.737374, "bTkgv": -9.737374, "bTlVYolZMq": -9.737374, "bUJbtrlQXFyDhbL": -9.737374, "bUJxmFbRS/Ggrz": -9.737374, "bUWNxInvK": -9.737374, "bUlYbu": -9.737374, "bUrv": -9.737374, "bUwbG": -9.737374, "bV": -8.638762, "bVMZmKis": -9.737374, "bVWcsnTrTX": -9.737374, "bVeVdd": -9.737374, "bVrxtodVjJdBLtzySz": -9.737374, "bVtt": -9.737374, "bVyfjxzKAodJZvMgSGyhWX": -9.737374, "bW/": -9.737374, "bW/cevf/WoNrG": -9.737374, "bWjWYmtTS": -9.737374, "bXDd": -9.737374, "bXLnaFN": -9.737374, "bXQ": -9.737374, "bXcfvRdqGnZvnMNZYVxD": -9.737374, "bYOHZ": -9.737374, "bYo": -9.737374, "bZ": -9.737374, "bZDXzxsRqzh": -9.737374, "bZFz": -9.737374, "bZi": -9.737374, "bZnWu": -9.737374, "bZpH": -9.737374, "bZrpS": -9.737374, "baEGVoiK": -9.737374, "baHp": -9.737374, "bae": -9.737374, "bah/": -9.737374, "bazvujk": -9.737374, "bb/": -9.737374, "bbOVXoh": -9.737374, "bbOdOroXRnYJx": -9.737374, "bbvU": -9.737374, "bc": -9.737374, "bcTDzbK": -9.737374, "bcV": -9.737374, "bccv/gqwrWXfOqrbDx": -9.737374, "bdK": -9.737374, "bdibBUY": -9.737374, "bdm": -9.737374, "be": -9.737374, "beC": -9.737374, "beS": -9.737374, "betce": -9.737374, "bezzqYWhnix/": -9.737374, "bf": -9.737374, "bfepI": -9.737374, "bfhY": -9.737374, "bfp": -9.737374, "bfvpYMFH": -9.737374, "bgPM": -9.737374, "bgXP": -9.737374, "bgfxaHCIFHt": -9.737374, "bgvnvIfWNfAPOaVNV": -9.737374, "bgzJ/szar": -9.737374, "bhVaEXb": -9.737374, "bhoviS": -9.737374, "bhpjy": -9.737374, "bhuSKheFLyw": -9.737374, "bhx": -9.737374, "bi": -9.737374, "bidtGRd": -9.737374, "biuZ": -9.737374, "bj": -9.737374, "bjRi": -9.737374, "bjo": -9.737374, "bjveVFzO": -9.737374, "bjzXM//S": -9.737374, "bk": -9.737374, "bkCj": -9.737374, "bko": -9.737374, "bl": -9.044227, "blFDsjR": -9.737374, "blJc": -9.737374, "blqoMNUm": -9.737374, "blr/": -9.737374, "blrFNTs": -9.737374, "blt": -9.737374, "bltjzw": -9.737374, "blurnKGgyz": -9.737374, "bmIldjmWyLnkvowjK": -9.737374, "bn": -9.737374, "bn/": -9.737374, "bnx": -9.737374, "bo": -9.737374, "boGY": -9.737374, "boPwJD/ekRKNhmZwGHaMWOVhzlSLF": -9.737374, "bp": -9.737374, "bpb": -9.737374, "bpwyBicxlCyUZ": -9.737374, "bpyukZBAiUlO": -9.737374, "bqAd": -9.737374, "bqI": -9.737374, "bqMImRgpnSB": -9.737374, "bqWZKJsHu": -9.737374, "bqZYjH": -9.737374, "bqjX": -9.737374, "bqmLmqCqqStWiUOKEvBnnubgFvE": -9.737374, "bqo": -9.737374, "br": -9.737374, "brB": -9.737374, "brdxp": -9.737374, "brtug": -9.737374, "bs/EEzFIQPPy": -9.737374, "bsMLB": -9.737374, "bsMePvV": -9.737374, "bsm": -9.737374, "bsonFsCLA": -9.737374, "bsv": -9.737374, "bt": -9.737374, "btNgyVSwuhz": -9.737374, "btZnx": -9.737374, "btgHFlR": -9.737374, "bu": -9.044227, "buMG": -9.737374, "buZ": -9.737374, "buasvrSHY": -9.737374, "bugokkwYLXf": -9.737374, "buhWoHWyVhHUcXSYRSlJoluQe": -9.737374, "burTjnNiOYZuaYVAOZ": -9.737374, "buxt": -9.737374, "bv": -9.737374, "bvZwii": -9.737374, "bvxDP/eX": -9.737374, "bwIRreBRkjkCq": -9.737374, "bwMSYLalng": -9.737374, "bwiJ": -9.737374, "bx": -9.044227, "bxGTxQika": -9.737374, "bxZmpVlxM": -9.737374, "bxlOhcyblTPZEiawWUi": -9.737374, "bxut": -9.737374, "bxyX": -9.737374, "bxzv": -9.737374, "byU": -9.737374, "bye": -9.044227, "byg": -9.737374, "byjqzfaB": -9.737374, "byote": -9.737374, "byw": -9.737374, "bzAs": -9.737374, "bzCaVQVVpo": -9.737374, "bzof": -9.737374, "c": -5.748390, "c/": -9.737374, "c/E": -9.737374, "c/dOkRVtplaQsT": -9.737374, "c/nHB": -9.737374, "cAuD": -9.737374, "cBUzihKp": -9.737374, "cBsMAjO": -9.737374, "cBvc": -9.737374, "cBzGtRmHC": -9.737374, "cC": -9.737374, "cCdA": -9.737374, "cCkz": -9.737374, "cCq": -9.737374, "cCyCFwWDUwxsn": -9.737374, "cDRBWJCJOycKV": -9.737374, "cDd": -9.737374, "cDnr": -9.737374, "cE": -9.044227, "cEURuL": -9.737374, "cEjYHZJNJ": -9.737374, "cEr": -9.737374, "cExxT": -9.737374, "cF": -9.737374, "cFFrGWEVJcmSah": -9.737374, "cFM": -9.737374, "cFXKYoXtsEjr/OE/": -9.737374, "cFy": -9.737374, "cG": -9.737374, "cGaBLVJJih": -9.737374, "cGf/C/wdV//": -9.737374, "cGmruXZFoOjxAXZgBCPUgmr": -9.737374, "cGu": -9.737374, "cHfN": -9.737374, "cHstahanp": -9.737374, "cI": -9.737374, "cIiZ": -9.737374, "cIo": -9.737374, "cJ": -9.737374, "cJHfTNXwm": -9.737374, "cJJFKQfOylBz": -9.737374, "cK": -8.351080, "cKKcHLXvIheN": -9.737374, "cKX": -9.737374, "cKZcGSRaVSGVR": -9.737374, "cKeQ": -9.737374, "cKw": -9.737374, "cKziwdU": -9.737374, "cL": -9.737374, "cLDAFW": -9.737374, "cLHMpjIi": -9.737374, "cLJQ": -9.737374, "cLUYVjPRGznLXFFyZimJ": -9.737374, "cLde": -9.737374, "cLiA": -9.737374, "cLsQ": -9.737374, "cM": -9.044227, "cM/dDkQktpRAouTYqnOUoF": -9.737374, "cMSrKvVdrX/uPFcsHxy": -9.737374, "cMW/JZM": -9.737374, "cMdY": -9.737374, "cMjdYp": -9.737374, "cN": -9.737374, "cNYncfNvustXHZEVul": -9.737374, "cNlE": -9.737374, "cNmpujM": -9.737374, "cNw": -9.737374, "cO": -9.737374, "cO/": -9.737374, "cOA": -9.737374, "cP": -9.737374, "cPLYqN": -9.737374, "cPMzF": -9.737374, "cPyjl": -9.737374, "cQ": -9.737374, "cQSXRXuAJt": -9.737374, "cQzXbNiS": -9.737374, "cRgPl": -9.737374, "cRmJb": -9.737374, "cSCxC": -9.737374, "cSeCx": -9.737374, "cSeIcCgR": -9.737374, "cSg": -9.737374, "cT": -8.638762, "cTCtMbxx": -9.737374, "cTO": -9.737374, "cTPp": -9.737374, "cTynMaciQe": -9.737374, "cU": -9.737374, "cUB/": -9.737374, "cUd/": -9.737374, "cV": -8.638762, "cVMZhd": -9.737374, "cVhiaXO": -9.737374, "cW/": -9.737374, "cWliVzvm": -9.737374, "cWt": -9.737374, "cX": -9.737374, "cXC": -9.737374, "cXCoz": -9.737374, "cXYzVYccIKPantEh": -9.737374, "cXp": -9.737374, "cXpXcveZVJN": -9.737374, "cY": -9.737374, "cYdudzfXgjyZFQS": -9.737374, "cYm": -9.737374, "cYvJeS": -9.737374, "cZdcLhF": -9.737374, "cZmZlypJelKm": -9.737374, "cZpPRpXl": -9.737374, "cZrLV": -9.737374, "cZskTZD/NSCrbMivjL/": -9.737374, "cZwN": -9.737374, "ca": -9.737374, "caMUmx": -9.737374, "cavig": -9.737374, "cbTGqeMZhnf": -9.737374, "cbVBnlJqthQJ": -9.737374, "cbcvs": -9.737374, "cbjmfo": -9.737374, "cbo": -9.737374, "cbuT": -9.737374, "ccEwFBdH": -9.737374, "ccP": -9.737374, "ccdNWxpW": -9.737374, "ccmuLc": -9.737374, "ccqu": -9.737374, "ccriI": -9.737374, "cd": -9.737374, "cd/": -9.737374, "cdaPGbhikXDtH": -9.737374, "ce": -9.737374, "ce/egv": -9.737374, "ceA": -9.737374, "ceL": -9.737374, "ceSN": -9.737374, "ceh": -9.737374, "ceq": -9.737374, "cf": -9.044227, "cfKQaE": -9.737374, "cfT": -9.737374, "cgBihU": -9.737374, "cgRIDNCmPgMDelfboH": -9.737374, "cgTri": -9.737374, "cgZ": -9.737374, "cgzhbsBVnTs": -9.737374, "chHlQuVg": -9.737374, "chWO": -9.737374, "chbquDMy": -9.737374, "chilOzUn/ah": -9.737374, "ci": -9.044227, "ciTdbNwRcvrJitcy": -9.737374, "ciYmi": -9.737374, "ciivKelXotngJWcFsWTyiLoD/IYWcp": -9.737374, "cjDxMyyTZcJr": -9.737374, "cjIhNZtOLyT": -9.737374, "cjQ/qdqfNKrlBz": -9.737374, "cjRmuTCVO": -9.737374, "cjS": -9.737374, "cjaHakXC": -9.737374, "cjljb": -9.737374, "cjwk": -9.737374, "cjxnMs": -9.737374, "ck": -9.044227, "ckJFNAz": -9.737374, "ckn": -9.737374, "ckuyEQNKR": -9.737374, "cl": -9.044227, "clN": -9.737374, "clRpJPhVphcy": -9.737374, "clZTgPm": -9.737374, "clbTo": -9.737374, "clkSpiv": -9.737374, "clsxxzVwviesD": -9.737374, "cmE": -9.737374, "cmgzbB/sqo": -9.737374, "cmpkotOrW": -9.737374, "cnCoio": -9.737374, "cnGDMwWNTvQiuxejILlwMsnse": -9.737374, "cnI": -9.737374, "cnTUklcnq": -9.737374, "cnVd": -9.737374, "cnde": -9.737374, "co/byqVYYURm": -9.737374, "coEk": -9.737374, "coe": -9.737374, "cogQzIyKhksMHLy": -9.737374, "cogU": -9.737374, "coslsxGIch": -9.737374, "cpZsBqMPVQIeQa": -9.737374, "cplmeI": -9.737374, "cpmWqHPtCHTq/fJppncqVwh": -9.737374, "cpy": -9.737374, "cpyqZrNuy": -9.737374, "cq": -9.737374, "cqWSC": -9.737374, "cqYJxjNcz": -9.737374, "cr": -9.737374, "crM": -9.737374, "crMNvrFtelAF": -9.737374, "crOSLkFOo": -9.737374, "crT": -9.737374, "crztL": -9.737374, "cs": -9.737374, "csHTZNlpSVS": -9.737374, "cshocr": -9.737374, "csmDBpx": -9.737374, "csr/zar/": -9.737374, "ctAF": -9.737374, "ctDN/aXMHEKG": -9.737374, "ctUppc": -9.737374, "cth/izD": -9.737374, "ctu": -9.737374, "cu": -9.044227, "cuOlR": -9.737374, "cuQ": -9.737374, "cuXxoxN/": -9.737374, "cucMmN": -9.737374, "cue": -9.737374, "cuwCuvdGnzZU": -9.737374, "cuzqhq": -9.737374, "cv": -9.044227, "cvP": -9.737374, "cvahE/NdqmHvKIwWidUDY": -9.737374, "cwJ": -9.737374, "cwVurjcRufrA": -9.737374, "cwf": -9.737374, "cwfVG": -9.737374, "cwyeHrqnNcCHDfjVS": -9.737374, "cx": -9.044227, "cxZAkr": -9.737374, "cxcNcmCpjHMDiz/": -9.737374, "cxmUFn": -9.737374, "cxwSaanTXKCDtUWsoopk": -9.737374, "cxyTa": -9.737374, "cyC": -9.737374, "cyDhVCqdCCG": -9.737374, "cyIlML": -9.737374, "cyUmmntTPRMcuEdBefuJM": -9.737374, "cyZe": -9.737374, "cyjmthKQo": -9.737374, "cyn": -9.737374, "cytTYlS": -9.737374, "cyyVbZe": -9.737374, "czKnAjrTmoZTpRiUhaoDHQ": -9.737374, "czXStG": -9.737374, "czY": -9.737374, "czhRq": -9.737374, "czwFZPlyErH": -9.737374, "d": -5.712022, "d/": -9.044227, "d/Iqn": -9.737374, "d/XtnMIldzF": -9.737374, "d/n/": -9.737374, "d/rWdi": -9.737374, "dA": -9.737374, "dACdGnEU/Bm": -9.737374, "dAMAieXqaqfekFGU": -9.737374, "dAP": -9.737374, "dAgemBcugluKqi": -9.737374, "dB": -9.044227, "dBVHKtzETLkcf/": -9.737374, "dBiP": -9.737374, "dBy": -9.737374, "dC": -9.737374, "dCoIDwzgjmXHyMCEzqKWYFUTg": -9.737374, "dCoZti": -9.737374, "dDV": -9.737374, "dDer": -9.737374, "dDfJzAqi": -9.737374, "dDr": -9.737374, "dDuLpiXow": -9.737374, "dDyfJVpUbov": -9.737374, "dEUk": -9.737374, "dEtvByKVZCVzFoQnXgV": -9.737374, "dF": -9.737374, "dFD": -9.737374, "dFjf": -9.737374, "dG": -9.044227, "dGGPzgZtcModDH": -9.737374, "dGJSLYkooqB": -9.737374, "dGnb": -9.737374, "dHEdstFLGIJqn": -9.737374, "dHGPK": -9.737374, "dHKG": -9.737374, "dHQxru": -9.737374, "dHcb": -9.737374, "dHdyqHtWTARHMWGcx": -9.737374, "dI": -9.737374, "dIiqsFpLvuwmUZ": -9.737374, "dIlC": -9.737374, "dJ": -8.638762, "dJX": -9.737374, "dJalkRdEwqJTTA": -9.737374, "dJcbroAswGbdNdfgnLLGT": -9.737374, "dJysa": -9.737374, "dKLmwrY": -9.737374, "dKMOOEusGLOi": -9.737374, "dKWBCpMYnYXDpxVm": -9.737374, "dKkr": -9.737374, "dKzlzL": -9.737374, "dL": -9.737374, "dLITFbYyQ": -9.737374, "dLIcrHtw": -9.737374, "dLQ": -9.737374, "dLWT": -9.737374, "dLcsMgGW": -9.737374, "dLzmmhR": -9.737374, "dM": -9.044227, "dMMB": -9.737374, "dMfDg": -9.737374, "dMgZm": -9.737374, "dMtX": -9.737374, "dMvdKoayS": -9.737374, "dN": -9.737374, "dNAqRXJPOnKZVcZBDvvaOJrDDnCUqu": -9.737374, "dNNdryIXY": -9.737374, "dNfT": -9.737374, "dNte": -9.737374, "dOBtnF": -9.737374, "dOCl": -9.737374, "dOHHvX": -9.737374, "dOwONYpJ": -9.737374, "dP": -9.044227, "dP/ulv": -9.737374, "dPKNrC": -9.737374, "dPOWMjjdb": -9.737374, "dPfQbdkYjdUStlCFNXsW": -9.737374, "dPv": -9.737374, "dQ": -9.737374, "dQI": -9.737374, "dQdLaleeUNQHluNUiQpJIO": -9.737374, "dQf/JeA": -9.737374, "dQoZt": -9.737374, "dQtZxKqMorGFK": -9.737374, "dQxa": -9.737374, "dREnq": -9.737374, "dRFmRr": -9.737374, "dRS": -9.737374, "dRU": -9.737374, "dRYmnF": -9.737374, "dRmyrVz": -9.737374, "dSFkie": -9.737374, "dSJSm": -9.737374, "dSJSunn": -9.737374, "dSv": -9.737374, "dT": -9.044227, "dTmOThAcW": -9.737374, "dTn": -9.737374, "dTuZ": -9.737374, "dU": -9.737374, "dUVy": -9.737374, "dUlW": -9.737374, "dUoUZFfheCBkio": -9.737374, "dUt": -9.737374, "dV": -9.044227, "dVNpiEmSCXDGrMUVY": -9.737374, "dVfrsSU": -9.737374, "dVmQzmMuIy": -9.737374, "dVnjcEOzLgeZsfylOaeEpSzTuCtImS": -9.737374, "dVrxXJgw": -9.737374, "dVwL": -9.737374, "dWkrTWGOMkrxcVTWo": -9.737374, "dWmzEdpi": -9.737374, "dX": -9.044227, "dXO": -9.737374, "dXk": -9.737374, "dXokWim": -9.737374, "dXs": -9.737374, "dY": -9.737374, "dYFt": -9.737374, "dYIUZHLcpwywyWT": -9.737374, "dYJNQUsSTHWKtSL": -9.737374, "dYVarnEYx": -9.737374, "dYaDP": -9.737374, "dYh": -9.737374, "dZ": -9.044227, "dZEbNaPLdYQmwojZGSjNyJ": -9.737374, "dZHwgtmvclvKl": -9.737374, "dZLhrBdV": -9.737374, "dZu": -9.737374, "da": -9.737374, "daOUX": -9.737374, "db": -9.737374, "dbGYQheoTi": -9.737374, "dbNXO": -9.737374, "dbUJmfazjVKamqGtMWw": -9.737374, "dbXKsxbOCe": -9.737374, "dbnTZtIqJWS": -9.737374, "dboZzboMxuuSNXSzd": -9.737374, "dbvxf/": -9.737374, "dc": -9.737374, "dcZr": -9.737374, "dck": -9.737374, "dcqu": -9.737374, "ddAGkNvYKyCXXZ": -9.737374, "ddfzS": -9.737374, "ddidDNJdgQ": -9.737374, "de": -9.044227, "dePssoJu": -9.737374, "del": -9.737374, "df": -9.044227, "dfdBVBG": -9.737374, "dg": -8.351080, "dgMdMIHaZgFngNjjhU": -9.737374, "dgwCnFwhudCaQeWh": -9.737374, "dgwMKk": -9.737374, "dh/Su": -9.737374, "dhEg": -9.737374, "dhFgdeHHsLiNLVZa": -9.737374, "dhHPIvjzEA": -9.737374, "dhKIqY": -9.737374, "dhSTAzGhN": -9.737374, "dhUPF": -9.737374, "di/OWPN/": -9.737374, "diLnzOm": -9.737374, "dj": -8.638762, "djIP": -9.737374, "djYmVLwbPr": -9.737374, "dja": -9.737374, "djaD": -9.737374, "djacN": -9.737374, "djqJnJwid": -9.737374, "djql": -9.737374, "djvi": -9.737374, "djy": -9.737374, "dk": -9.044227, "dkPEU": -9.737374, "dkuuCK": -9.737374, "dllswTuPw": -9.737374, "dlorK": -9.737374, "dlw": -9.737374, "dm": -9.737374, "dmbl": -9.737374, "dmhzVkVY": -9.737374, "dmiLD/": -9.737374, "dmvWgkZnpRQBR": -9.737374, "dn": -9.737374, "dnR": -9.737374, "dnTJEkOD": -9.737374, "dnXsVv/j": -9.737374, "dnYluuCHH": -9.737374, "dnwUzKK": -9.737374, "doSpfptnc": -9.737374, "doxFoCggc": -9.737374, "doxj": -9.737374, "dpNn": -9.737374, "dpONWNvur": -9.737374, "dpSN": -9.737374, "dpkYL": -9.737374, "dpstRYs": -9.737374, "dq": -9.737374, "dqRI": -9.737374, "dqgOg": -9.737374, "drcF/OtR": -9.737374, "drcPmnduOuC/zQGm": -9.737374, "drfeNLKnoTCqT": -9.737374, "drm": -9.737374, "dror": -9.737374, "dsJ": -9.737374, "dssmsuMWh": -9.737374, "dsttvSWlEg": -9.737374, "dstvhvfsPfDcBXfc": -9.737374, "dtrfc": -9.737374, "du": -9.737374, "du/h": -9.737374, "dub": -9.737374, "dudAS": -9.737374, "dv": -8.638762, "dvOZ": -9.737374, "dvgvBv": -9.737374, "dvm": -9.737374, "dvvqgBLr": -9.737374, "dwaALuMquhDFFtHh": -9.737374, "dwtRDWoJ/mNF": -9.737374, "dwvuXK": -9.737374, "dx": -9.737374, "dxPQfd": -9.737374, "dxVlt": -9.737374, "dxjXIf///cX": -9.737374, "dy": -9.044227, "dydTOOLT": -9.737374, "dyeeN": -9.737374, "dyxgCg": -9.737374, "dz": -9.044227, "dzCSispqE": -9.737374, "dzO": -9.737374, "dzX": -9.737374, "e": -5.976174, "e/": -8.351080, "e/IlLdnlOCcsNW": -9.737374, "e/J": -9.737374, "e/lL": -9.737374, "eABriuXCEJYAcCmGIuYCjclV": -9.737374, "eASBISnA": -9.737374, "eAYrofTZBGulQKIuOLEV": -9.737374, "eAqNAS": -9.737374, "eB": -9.044227, "eBAWfpwuTund": -9.737374, "eBP/S": -9.737374, "eBUhuOJm": -9.737374, "eBdHOYuoDW": -9.737374, "eBiSY": -9.737374, "eCDO": -9.737374, "eCIJCAFYHTuB": -9.737374, "eCTVM": -9.737374, "eCdayPoiurS": -9.737374, "eCmNTXIZtz": -9.737374, "eD": -9.044227, "eDABheHB": -9.737374, "eDLwgGFSPqxsvHtb": -9.737374, "eDuc": -9.737374, "eEF": -9.737374, "eEJdK": -9.737374, "eEOvTNCiQIv": -9.737374, "eElChpWTIfrOz": -9.737374, "eEyUO": -9.737374, "eF": -9.737374, "eFeNB": -9.737374, "eFj": -9.737374, "eFwIGwDfeS": -9.737374, "eGPhIVToYyZ": -9.737374, "eGfMwBFCoZdmKdtccGvI": -9.737374, "eGl": -9.737374, "eGrelOX": -9.737374, "eGxkucLrktM": -9.737374, "eHth": -9.737374, "eJ": -9.044227, "eKDkM": -9.737374, "eKgHeQtbeSnnr": -9.737374, "eKuaCz": -9.737374, "eLNVJ": -9.737374, "eLQLGiuKeTa": -9.737374, "eLfVKd": -9.737374, "eLv": -9.737374, "eMiaxHMqCAq": -9.737374, "eMwBiE": -9.737374, "eNxbK": -9.737374, "eO": -9.737374, "eOGxukVOROGx": -9.737374, "eOOP/u": -9.737374, "eOSNYNz": -9.737374, "eOV": -9.737374, "eOoekORm": -9.737374, "ePJ": -9.737374, "ePd": -9.737374, "ePibVklrWwHuBeMQ": -9.737374, "ePvz": -9.737374, "eQ": -9.737374, "eQyHNi": -9.737374, "eREZ": -9.737374, "eRIELoMWu": -9.737374, "eRKdNhb": -9.737374, "eRTd": -9.737374, "eRU": -9.737374, "eRUHp": -9.737374, "eSBb/pU": -9.737374, "eSDsoPRJJvq": -9.737374, "eSPtqMFw": -9.737374, "eSTYuYWkH": -9.737374, "eSnU": -9.737374, "eT/UIvUNLI": -9.737374, "eT/oH": -9.737374, "eTL": -9.737374, "eTQDouuA": -9.737374, "eTTK": -9.737374, "eTTjXgq": -9.737374, "eToz": -9.737374, "eU": -9.737374, "eUJc": -9.737374, "eUbRdlZ": -9.737374, "eUj": -9.737374, "eUltp": -9.737374, "eUzN": -9.737374, "eV": -9.737374, "eVm": -9.737374, "eVw": -9.737374, "eWKeIGo": -9.737374, "eWUuWit": -9.737374, "eWgZVdmINXXibFdgogKh": -9.737374, "eWq": -9.737374, "eWvJqXLm/HFwug": -9.737374, "eWyQa": -9.737374, "eX": -9.737374, "eXBQnNF": -9.737374, "eXBb": -9.737374, "eXQ": -9.737374, "eXXh": -9.737374, "eXnYLV": -9.737374, "eXoLHffK": -9.737374, "eYkWVCbff": -9.737374, "eZ": -9.737374, "eZIpn": -9.737374, "eZLJwZ": -9.737374, "eZXGE": -9.737374, "eZa": -9.737374, "ea": -9.737374, "eaFE": -9.737374, "eaPs": -9.737374, "eapag": -9.737374, "eb": -9.737374, "ebFDOT": -9.737374, "ebtlM": -9.737374, "ebv/": -9.737374, "ec/OwMeQ": -9.737374, "ecBUEoZU": -9.737374, "ecVrlmsct": -9.737374, "ecbwSnv": -9.737374, "ecfm": -9.737374, "echHqgc": -9.737374, "ed": -9.737374, "edZKjrDNLJUZQb": -9.737374, "edZPJ": -9.737374, "edqJjgQlTi": -9.737374, "edsOmvxhHvB": -9.737374, "eeOy": -9.737374, "eePDwig": -9.737374, "eebTm": -9.737374, "eej": -9.737374, "eemZOFmuiCb": -9.737374, "eeulp": -9.737374, "ef": -9.737374, "ef/": -9.737374, "efDZ": -9.737374, "efDhDOw": -9.737374, "efLTv": -9.737374, "efOFNYUBjkSknfDE": -9.737374, "efXi": -9.737374, "efmR": -9.737374, "efp": -9.737374, "egVwbhC/dyX": -9.737374, "egr": -9.737374, "ehBybPg": -9.737374, "ehgopTsy": -9.737374, "ehpQ": -9.737374, "eiBYfBmRMT": -9.737374, "eiJ": -9.737374, "eiXZs": -9.737374, "ejsnHfn": -9.737374, "ejx": -9.737374, "ekDsqPuqIfMMuGSwjEZWSw": -9.737374, "ekT": -9.737374, "el": -9.044227, "ellMKb": -9.737374, "elwWRm": -9.737374, "em": -8.638762, "emHlDSuIrYmVIAACAASURB": -9.737374, "emIuFeTgZe": -9.737374, "emO": -9.737374, "emQ": -9.737374, "emdaWjjCS": -9.737374, "emil": -9.737374, "emzLew": -9.737374, "enEalRNLi": -9.737374, "enZNwfBcMQJsZVU": -9.737374, "enwM": -9.737374, "eoLqer": -9.737374, "eoQXNfMcQkeXBUeHBPHDPcWEawkNZTEqPculcoe": -9.737374, "eoXDIioWxejNWRz": -9.737374, "eocjRebdC": -9.737374, "eorCR": -9.737374, "epF": -9.737374, "epSJwlofCYCM": -9.737374, "epYRIfYXBoI": -9.737374, "epbXemc": -9.737374, "epj": -9.737374, "eq": -9.737374, "eqDn": -9.737374, "eqKiYUERMhtYZzkiQ": -9.737374, "eqRXsVK/": -9.737374, "er": -9.737374, "er/sWPl": -9.737374, "erDT": -9.737374, "erLDmG": -9.737374, "erNxcXas": -9.737374, "es": -9.044227, "esMVOHIu": -9.737374, "esQVoQsnirW": -9.737374, "esVj": -9.737374, "ess/UtR": -9.737374, "etK": -9.737374, "etUMfl": -9.737374, "eteR": -9.737374, "euB": -9.737374, "euZWOthSMgutM": -9.737374, "euhV": -9.737374, "euhWCEhz": -9.737374, "ev": -9.737374, "evDTwqre": -9.737374, "evJwHL": -9.737374, "evPah": -9.737374, "evm": -9.737374, "ewKnUHUboZ": -9.737374, "ewlMz": -9.737374, "exOn": -9.737374, "extEKMzprwOT": -9.737374, "exuNMeMkQQlENowiuxWyFELo": -9.737374, "ey": -9.044227, "eyKUYpUr": -9.737374, "eyW": -9.737374, "eyp": -9.737374, "eyuJZuRUu": -9.737374, "ezNZe": -9.737374, "ezSplklUaNbX": -9.737374, "f": -7.657932, "fA": -9.044227, "fDVWta": -9.737374, "fJ": -9.737374, "fLX/oMdfktfOsf": -9.737374, "fNG": -9.737374, "fNW": -9.737374, "fQwWggDWLUYQwaL": -9.737374, "fW": -9.737374, "fZd": -9.737374, "fa//S": -9.737374, "faUsayADHEjC": -9.737374, "false": -9.737374, "fc": -9.737374, "fcDg": -9.737374, "fj": -9.737374, "flEI": -9.737374, "flKMboqk": -9.737374, "flSYTPFptXWf": -9.737374, "fpeMmo": -9.737374, "ftTJox": -9.737374, "fteIhS": -9.737374, "fu": -9.737374, "fufeu/gKNVhTEP": -9.737374, "fwoTTdWgaWZx": -9.737374, "fwtiAp": -9.737374, "fxF": -9.737374, "fyHa/": -9.737374, "g": -6.073812, "g/": -9.737374, "gAXwelCzaOfTWu": -9.737374, "gBErVYs": -9.737374, "gBySOl": -9.737374, "gCSL": -9.737374, "gCct": -9.737374, "gCfQdHdJ": -9.737374, "gCwmippzDDqIDsMuixd": -9.737374, "gDoA": -9.737374, "gE": -8.638762, "gEWVX": -9.737374, "gEaHAAAgAElEQVRD": -9.737374, "gElSLWwAqQRa": -9.737374, "gEocggRAY": -9.737374, "gF": -9.737374, "gFlzUetRTVfjlpi": -9.737374, "gGBCn": -9.737374, "gGLG": -9.737374, "gH": -9.737374, "gHUqHFHvqoWaB": -9.737374, "gIadht": -9.737374, "gIid": -9.737374, "gIt": -9.737374, "gJMS": -9.737374, "gJaMywnflzcQ": -9.737374, "gK/izE": -9.737374, "gKCS": -9.737374, "gKYmwdcrvEMKXqX": -9.737374, "gKZ": -9.737374, "gKcjLZUmex": -9.737374, "gKiwL": -9.737374, "gL": -9.044227, "gLBL": -9.737374, "gLHryJKmfCkwbiZwQ": -9.737374, "gMWEpy": -9.737374, "gMilK": -9.737374, "gMz": -9.737374, "gNaOkjs": -9.737374, "gNbiu": -9.737374, "gNjiNZszEbXDLAYZ": -9.737374, "gOee": -9.737374, "gOmPMOyAYus": -9.737374, "gOoz": -9.737374, "gOuSeFgLS": -9.737374, "gPZ/ZNYjeVKVu": -9.737374, "gPcXY": -9.737374, "gPuiiZEd": -9.737374, "gQrtqlne": -9.737374, "gR": -9.044227, "gRXlmhg": -9.737374, "gS": -9.737374, "gSKduNKJiPYzWZcWkxuBT": -9.737374, "gSMBOp": -9.737374, "gSQZKhS": -9.737374, "gSczY": -9.737374, "gSlUUbkQPREpCqNKyZywIJeiZv": -9.737374, "gSn": -9.737374, "gSstmACybIFrapODqsN": -9.737374, "gSvMtblOH": -9.737374, "gSwpd": -9.737374, "gT": -9.737374, "gTc": -9.737374, "gTf": -9.737374, "gTlhfr": -9.737374, "gU": -9.737374, "gUM": -9.737374, "gUNKJraeOZR": -9.737374, "gUSg": -9.737374, "gUk": -9.737374, "gV": -9.737374, "gVAw": -9.737374, "gVgswqWkyhxTF": -9.737374, "gVvyOCcVRoZgo": -9.737374, "gWpU": -9.737374, "gWsVd": -9.737374, "gX": -9.737374, "gXBzrqTucXsY": -9.737374, "gXCmMUMjikzN": -9.737374, "gXeBi": -9.737374, "gXsJSFK": -9.737374, "gZ/DXP/OOzz": -9.737374, "gZH/vYK": -9.737374, "ga": -9.044227, "gaOqulukCPmg": -9.737374, "gachSRMuyZbTMYQmuObtycjNMpeNzhfJbm": -9.737374, "gae": -9.737374, "gavQkQ": -9.737374, "gawbhxvUIOsmGV": -9.737374, "gazHljndHQlR": -9.737374, "gb": -8.638762, "gbD": -9.737374, "gbaRmjOq": -9.737374, "gby": -9.737374, "gc": -9.044227, "gc/swSO": -9.737374, "gceguPYQNoUfdSpnLvEFqkZBBdNrjsIj": -9.737374, "gchQPh/PpT": -9.737374, "gchrjWjyPxfPQ": -9.737374, "gcytJb": -9.737374, "gdFcs": -9.737374, "gdLdECWcx": -9.737374, "gdznj": -9.737374, "ge": -9.737374, "geSAGGMo/Hhtvi": -9.737374, "geWo": -9.737374, "geXD": -9.737374, "gf/c": -9.737374, "gfBhxu": -9.737374, "gfZZNimRAkDC": -9.737374, "gfpp": -9.737374, "gg": -9.737374, "ggeb": -9.737374, "gh": -8.638762, "ghSFR": -9.737374, "ghjCcMi": -9.737374, "ghjaH": -9.737374, "ghjegKzerblPMwsjEMbEjnTBnRY": -9.737374, "ghsh": -9.737374, "gi": -8.638762, "giHkYGOUOFDWNJxmFo": -9.737374, "giQimSuRStZOZquU": -9.737374, "giUmQYJavPdComQUgiDKoAFYQbswaQiCg": -9.737374, "giw": -9.737374, "gjTN": -9.737374, "gjpma": -9.737374, "gk": -9.737374, "gkBi": -9.737374, "gkVMmEK": -9.737374, "gkWQG": -9.737374, "gkfIJRmh": -9.737374, "gl//rfQPfQnFweHCu": -9.737374, "glGNHGpWCR": -9.737374, "glcorbqWu": -9.737374, "gmOcvt": -9.737374, "gmTHe": -9.737374, "gmdaL": -9.737374, "gmuJ": -9.737374, "gmwtGEthdNfQfx": -9.737374, "gnACTN": -9.737374, "gnF": -9.737374, "gneeOz/": -9.737374, "goU": -9.737374, "gom": -9.737374, "govD": -9.737374, "gpPr": -9.737374, "gpv": -9.737374, "gqHVH": -9.737374, "gqJVrQeua": -9.737374, "gqOTcxZNbSxCmCe/dQWY": -9.737374, "gqV": -9.737374, "gqWqSPR": -9.737374, "gqda": -9.737374, "gqe": -9.737374, "gqnfGpRkioQ": -9.737374, "gquhKrmMgOUAg": -9.737374, "gr": -9.737374, "grO": -9.737374, "grdB": -9.737374, "grdn": -9.737374, "greZPFZKnVJyBno": -9.737374, "gs": -9.737374, "gs/j": -9.737374, "gsNcErE": -9.737374, "gt": -9.737374, "gtO": -9.044227, "gtY": -9.737374, "gu": -9.044227, "guJn": -9.737374, "gub": -9.737374, "gupCGwVe": -9.737374, "gv": -9.737374, "gvf": -9.737374, "gvoT": -9.737374, "gvyXZ": -9.737374, "gw": -9.737374, "gwb": -9.737374, "gwg": -9.737374, "gwiprSvZ": -9.737374, "gxPjwkKkTk": -9.737374, "gxSjiK": -9.737374, "gxdpLGw": -9.737374, "gxfeGr": -9.737374, "gyG": -9.737374, "gyLzwNoJ": -9.737374, "gyP": -9.737374, "gytdF": -9.737374, "gz/qak": -9.737374, "gzOOVgzOSeKRkJto": -9.737374, "gzo": -9.737374, "h": -5.887226, "hAVH": -9.737374, "hB": -9.737374, "hBEuubMnaXwL": -9.737374, "hBKM": -9.737374, "hBLUWvCi": -9.737374, "hC": -9.044227, "hCLOlvXEUjCHlWSONj": -9.737374, "hCZzaaSDdi": -9.737374, "hCiAqo": -9.737374, "hDlCBmBldAZMPL": -9.737374, "hEEjTMehub": -9.737374, "hESsd": -9.737374, "hEaxrIu": -9.737374, "hEjemcbtvPF": -9.737374, "hExp": -9.737374, "hFMU": -9.737374, "hFQpMcna": -9.737374, "hFcjwlEKiKau": -9.737374, "hFjciWThre": -9.737374, "hFqScpS/Dag": -9.737374, "hGdawQUTDd": -9.737374, "hHDMZdwy": -9.737374, "hHFOmLol": -9.737374, "hHHcw": -9.737374, "hHKHrvcaKYst": -9.737374, "hHY": -9.737374, "hHax": -9.737374, "hHjOlFMF": -9.737374, "hHnGEjiFhaAvjk": -9.737374, "hIW": -9.737374, "hIpEuepke": -9.737374, "hIvO/tuP": -9.737374, "hIx/": -9.737374, "hJKTZcmHtTKuxoxF": -9.737374, "hJN": -9.737374, "hJcvDmJ": -9.737374, "hJhdwK/NM": -9.737374, "hJiHcx": -9.737374, "hKd": -9.737374, "hKkpT": -9.737374, "hKrLpOC": -9.737374, "hLCkNfu": -9.737374, "hLEoeAksgRcidghQYg": -9.737374, "hLUppSUt": -9.737374, "hLnfslzclI": -9.737374, "hMPD": -9.737374, "hMR": -9.737374, "hMRnHNR": -9.737374, "hN": -9.737374, "hNNNFvINWyqbyCiKVfLCmDs": -9.737374, "hNQv": -9.737374, "hNiToP": -9.737374, "hNjTc": -9.737374, "hNwMQXxv": -9.737374, "hO": -9.737374, "hOStXzXKvvrMKgtM": -9.737374, "hOTqzQanKNVEJELswqpSzqdlSO": -9.737374, "hOfuSl/rEh": -9.737374, "hP": -9.737374, "hPvlDf": -9.737374, "hQ": -9.737374, "hQDI": -9.737374, "hQUpDIJG": -9.737374, "hQokf": -9.737374, "hQzInf": -9.737374, "hRJasV": -9.737374, "hRXwZnGi": -9.737374, "hS": -9.044227, "hSVYVeg": -9.737374, "hSX": -9.737374, "hSXFCgzMG": -9.737374, "hTT": -9.737374, "hUNr": -9.737374, "hUkNtSs": -9.737374, "hUwhVl": -9.737374, "hV": -8.638762, "hV//HAsWsye": -9.737374, "hVEpDUkHbiAZRcFtKaIogIkAdcQtOQlJwAJuU": -9.737374, "hVFzMaywlKb": -9.737374, "hVG": -9.737374, "hVPMRjtZJJOMeDc": -9.737374, "hVWgyqwu": -9.737374, "hVfX": -9.737374, "hVrB": -9.737374, "hVuqrjLlF": -9.737374, "hW": -9.044227, "hWhl": -9.737374, "hX": -9.044227, "hXC": -9.737374, "hXOdxkRsi": -9.737374, "hXPFK": -9.737374, "hXjsBbuHxJrVdTOee/sI": -9.737374, "hY": -9.737374, "hYZ": -9.737374, "hYueaREOcaBeTZmv": -9.737374, "hZ": -9.044227, "hZY": -9.737374, "hZwvHdFr": -9.737374, "ha": -9.737374, "haLDrWmlitO": -9.737374, "haT": -9.737374, "hakQ": -9.737374, "harZudc": -9.737374, "hbnOLCUJng": -9.737374, "hbpzUoTHYz": -9.737374, "hc": -9.044227, "hcI": -9.737374, "hcS": -9.737374, "hcSaRu": -9.737374, "hcT/vbmHtJQ": -9.737374, "hccK": -9.737374, "hd": -9.737374, "hdRgsvgh": -9.737374, "hdTdL": -9.737374, "hdUYKSNRij": -9.737374, "hdcHJdA/AJ": -9.737374, "hdfxeOAT": -9.737374, "hdpjuKGbaqYt": -9.737374, "heQuCZYgMuwLa": -9.737374, "hf/": -9.737374, "hfII": -9.737374, "hfq": -9.737374, "hftfYxk": -9.737374, "hg": -9.044227, "hg/dlcp": -9.737374, "hgbmh": -9.737374, "hgqaOt": -9.737374, "hgx": -9.737374, "hh": -9.737374, "hhJ": -9.737374, "hhOlFbs": -9.737374, "hhdsUsP": -9.737374, "hi": -9.737374, "hiDtsi": -9.737374, "hiut": -9.737374, "hjLSlpFJJbP": -9.737374, "hjN/": -9.737374, "hjkXIzQ": -9.737374, "hk": -9.737374, "hkA": -9.737374, "hkTLll": -9.737374, "hkXHS": -9.737374, "hkuj": -9.737374, "hl": -9.737374, "hlK": -9.737374, "hlZc": -9.737374, "hljoGXokg": -9.737374, "hlxKSwHnrpFpoDmuRrMaTkzyT": -9.737374, "hmCMWkSpCNzUkkFYbM": -9.737374, "hmFo": -9.737374, "hmveuJefHOJyq": -9.737374, "hnDHrFSc": -9.737374, "hnJ": -9.737374, "hnVRc": -9.737374, "hnnT": -9.737374, "hnrg": -9.737374, "ho": -9.044227, "hoIxW": -9.737374, "hoPusF": -9.737374, "hp": -9.737374, "hpCgXncqCetNfzq": -9.737374, "hpGRKkrFYNLaVCWTM": -9.737374, "hqTnjG": -9.737374, "hqTzQje": -9.737374, "hqpnLD": -9.737374, "hqu": -9.737374, "hriXJhHsmZDEiOLyxesHSl": -9.737374, "hrtJSyq": -9.737374, "hsR": -9.737374, "hsgkuGWjNtOF/": -9.737374, "hsm": -9.737374, "hspTiWsEFSurHxEWypD": -9.737374, "ht/LbUWXn": -9.737374, "ht/rdqw": -9.737374, "htRjLsphTESXQydRB": -9.737374, "hu//": -9.737374, "huJ": -9.737374, "huKL": -9.737374, "hujbL": -9.737374, "hunEag": -9.737374, "husZRxnqHu": -9.737374, "hv": -9.044227, "hvIulboy": -9.737374, "hvd": -9.737374, "hvfKqpmfyGcNyGCGdp": -9.737374, "hvn": -9.737374, "hw": -9.737374, "hwnnLm": -9.737374, "hx": -8.638762, "hxVu": -9.737374, "hxduEIMnnxwl": -9.737374, "hxj": -9.737374, "hxjcD": -9.737374, "hxovmvLgWL": -9.737374, "hy": -9.737374, "hyR": -9.737374, "hyUFeG": -9.737374, "hybZ": -9.737374, "hyj": -9.737374, "hzFTs": -9.737374, "hzNgWY": -9.737374, "hza": -9.737374, "i": -5.845554, "i//AK": -9.737374, "i//DI": -9.737374, "i/dZD": -9.737374, "i/nbWYOnZHOYFuF": -9.737374, "iAZVxv": -9.737374, "iAhtdnWXUnlJmhqdYGZuy": -9.737374, "iB": -9.044227, "iBIJnYv/v": -9.737374, "iCBjcVgS": -9.737374, "iCD": -9.737374, "iCFORVeAcT": -9.737374, "iCdWwrqfu": -9.737374, "iDSC": -9.737374, "iDYYtjHJQVty": -9.737374, "iDiHex": -9.737374, "iDkJbeU": -9.737374, "iDkyF": -9.737374, "iDriQtZJRbb": -9.737374, "iE": -9.737374, "iEHpTs": -9.737374, "iEOMielUkyJzyvybgmsSqYZm": -9.737374, "iEW": -9.737374, "iF": -9.737374, "iFFUVSckslvnNt": -9.737374, "iFiucXo": -9.737374, "iFlVaxkXs/O": -9.737374, "iGhEPjDrrOU": -9.737374, "iH": -9.737374, "iHSiNJ": -9.737374, "iHfVab": -9.737374, "iHn": -9.737374, "iHvRMVCPawGl": -9.737374, "iI": -9.737374, "iIDxmasM": -9.737374, "iINpExOvgDmDZrmRqYHROZE": -9.737374, "iIctp": -9.737374, "iJ": -9.044227, "iJqJ": -9.737374, "iKSxJ": -9.737374, "iKZ": -9.737374, "iKd": -9.737374, "iKguJ": -9.737374, "iLVvUlqTEK": -9.737374, "iLpVJtyEKOwRSPZwu": -9.737374, "iLzkJJBk": -9.737374, "iM": -9.737374, "iMLfJ": -9.737374, "iMR": -9.737374, "iNKHWlPj": -9.737374, "iNgPpy": -9.737374, "iOCQDKyQJoj": -9.737374, "iODcAUAKZiRnLB": -9.737374, "iODei": -9.737374, "iOW": -9.737374, "iOn": -9.737374, "iOqi": -9.737374, "iOxzJmU": -9.737374, "iPNYU": -9.737374, "iQIAl/qRuhOdDhrzzGReN/RbFx/npYALeFi": -9.737374, "iQK/sYeQ": -9.737374, "iQX": -9.737374, "iRu": -9.737374, "iS": -9.737374, "iSsbVidlB/fM": -9.737374, "iSw": -9.737374, "iT": -9.737374, "iT/vV": -9.737374, "iTS": -9.737374, "iTWorYuf": -9.737374, "iUhEckhbX/": -9.737374, "iUkSBc": -9.737374, "iV": -9.737374, "iVBORw": -9.737374, "iVunVmPW/U": -9.737374, "iVx": -9.737374, "iW": -9.044227, "iWE": -9.737374, "iWOXQS": -9.737374, "iWZYA": -9.737374, "iWrKWbqT/tzj": -9.737374, "iWw": -9.737374, "iX": -9.737374, "iXAddcjAz": -9.737374, "iXBIGtuyk": -9.737374, "iYu": -9.737374, "iZLWaGeCGDhcRTBN": -9.737374, "iZcPr": -9.737374, "iZkOozMhSCbQxWK": -9.737374, "ia": -9.737374, "ialSaaJbvtUqlkY": -9.737374, "ibTj": -9.737374, "ibd": -9.737374, "ibp": -9.737374, "ic": -9.737374, "icVXSpz": -9.737374, "icy": -9.737374, "idCKSc": -9.737374, "idPDS": -9.737374, "idSgg": -9.737374, "idsEnl": -9.737374, "idwNLjjJeT": -9.737374, "idxXmY/NY": -9.737374, "ie": -9.737374, "ieJkwY": -9.737374, "iexZBy": -9.737374, "if": -8.638762, "if/nXR/k": -9.737374, "ifabkPM": -9.737374, "igPchbetTzMCMKajC": -9.737374, "igbYgzl": -9.737374, "igculi": -9.737374, "igdFzy": -9.737374, "igp": -9.737374, "igpfGuS": -9.737374, "ih": -9.044227, "ihkU": -9.737374, "ihtVM": -9.737374, "ihu": -9.737374, "ihx": -9.737374, "iiB": -9.737374, "iiTPVhqEJDF": -9.737374, "iiWyS": -9.737374, "iiqAxEF": -9.737374, "ijCHcj": -9.737374, "ijXIqtTLfhYyWc": -9.737374, "ijXeXqE": -9.737374, "ik": -9.737374, "ikfggvBAcCnjYT": -9.737374, "ikhzOmJ": -9.737374, "ilq": -9.737374, "ilvuifObSiVdZdIeWg": -9.737374, "im": -9.737374, "imTMzrRjHie": -9.737374, "imung": -9.737374, "in": -8.638762, "in/jEx": -9.737374, "inPVItKVaN": -9.737374, "inku": -9.737374, "inmiV": -9.737374, "inopLuLoYu": -9.737374, "ioODIJp": -9.737374, "iomG": -9.737374, "ionUjNaMf": -9.737374, "iopRUjZ": -9.737374, "ipYxiOfAHConhwly": -9.737374, "ipdP/aB": -9.737374, "ipsMyQpllxqklYBbhdzi": -9.737374, "iq": -9.737374, "iqIRFUJWjGSOx": -9.737374, "iqK": -9.737374, "iqSWIqhm/ApELcyy": -9.737374, "iqgUugeSznPgqo": -9.737374, "iqkBSIdPL": -9.737374, "iqu": -9.737374, "ir": -9.737374, "irO": -9.737374, "irXWtyqM": -9.737374, "ircm": -9.737374, "isH": -9.737374, "isYY": -9.737374, "isl": -9.737374, "it": -9.044227, "it/": -9.737374, "itBRgCZyB": -9.737374, "itKOV": -9.737374, "itNHsxZ": -9.737374, "itgc": -9.737374, "itiavVwfs": -9.737374, "itlTmILM": -9.737374, "iuTT": -9.737374, "iuUnDjMPvV": -9.737374, "iv/": -9.737374, "ivsLucofn": -9.737374, "iw": -9.044227, "iwCL": -9.737374, "iwFlrqyHjPHY": -9.737374, "iwbQ": -9.737374, "iweZw": -9.737374, "ix": -9.737374, "ixLonziz": -9.737374, "ixmSf": -9.737374, "ixx": -9.737374, "iy": -9.737374, "iyLtWSnXit": -9.737374, "iywIQw": -9.737374, "izVcAcW": -9.737374, "j": -6.048494, "j/": -9.737374, "j//": -9.737374, "j/NsWuL/": -9.737374, "j/OuH/o": -9.737374, "j/ulSyFDz": -9.737374, "j/xV": -9.737374, "jA": -9.737374, "jAktWXptGXJmh": -9.737374, "jAp": -9.737374, "jAuX": -9.737374, "jBIDinLmo": -9.737374, "jBULp/Pdf/p": -9.737374, "jBdX": -9.737374, "jC": -9.737374, "jCiOnDqFoME": -9.737374, "jCylZclGa": -9.737374, "jD": -9.737374, "jDGHuxNjJBzd/BM": -9.737374, "jDW": -9.737374, "jDg": -9.737374, "jE": -9.737374, "jEoNbCem": -9.737374, "jF": -9.737374, "jFI": -9.737374, "jFh": -9.737374, "jG": -9.044227, "jGDe": -9.737374, "jGXtIyXnSfDbfJsWT": -9.737374, "jHbXLOsHXQ": -9.737374, "jHdaYRx": -9.737374, "jIJgY": -9.737374, "jIQeXRPIcUXo": -9.737374, "jIkgZEEWxEO": -9.737374, "jImpXTEOi": -9.737374, "jJE": -9.737374, "jJtmFPibk": -9.737374, "jJvNOCxZRple": -9.737374, "jJyQz": -9.737374, "jK": -9.737374, "jKeK": -9.737374, "jKxI": -9.737374, "jL": -9.737374, "jLMTQNHsCluyArOg": -9.737374, "jLNa": -9.737374, "jLvj": -9.737374, "jM": -9.044227, "jMNSGddQz": -9.737374, "jNKd": -9.737374, "jNoKnl": -9.737374, "jNzmV": -9.737374, "jOCljZ": -9.737374, "jOHuX": -9.737374, "jOLRsqwdnNjGFwG": -9.737374, "jOchuBEF/uF/": -9.737374, "jOf": -9.737374, "jOvpA": -9.737374, "jP": -8.638762, "jPCPmkjo": -9.737374, "jPpbmMTQFaCh": -9.737374, "jQHXEuHpe": -9.737374, "jQTe": -9.737374, "jQm": -9.737374, "jRgQxE": -9.737374, "jRgkyg": -9.737374, "jRq": -9.737374, "jSFtGgRyJxRdBKZ": -9.737374, "jSKuZ": -9.737374, "jSQtZ": -9.737374, "jSRKebDtFQlpiUh": -9.737374, "jST": -9.737374, "jTG": -9.737374, "jTo": -9.737374, "jU": -9.044227, "jUe": -9.737374, "jUmJ": -9.737374, "jUtcxa": -9.737374, "jVmpPWug": -9.737374, "jVuGPSM": -9.737374, "jW": -9.044227, "jWFKl": -9.737374, "jWNjTekti": -9.737374, "jWR": -9.737374, "jWgllgAZPLW": -9.737374, "jWmCzsaJx": -9.737374, "jX": -9.044227, "jXf/Zf/Cu": -9.737374, "jXxoL": -9.737374, "jYJaFwd": -9.737374, "jYS": -9.737374, "jYWHJC": -9.737374, "jZ": -9.737374, "jZBcjZnBeSZLgmnNg": -9.737374, "jZJZSK": -9.737374, "jZNc/uyK": -9.737374, "jZQsYA": -9.737374, "jaDZ": -9.737374, "jaElVZzb": -9.737374, "jaH": -9.737374, "jafMwLpCB": -9.737374, "jbBKxIZH": -9.737374, "jbF": -9.737374, "jbVtmuxYmY/kX": -9.737374, "jbp": -9.737374, "jbpAW": -9.737374, "jbxaEET": -9.737374, "jcFzURz": -9.737374, "jcO": -9.737374, "jcRRYUXJgP": -9.737374, "jcRjX": -9.737374, "jcXa": -9.737374, "jcY": -9.737374, "jciIHGFv": -9.737374, "jdv": -9.737374, "jeWHf": -9.737374, "jf": -9.737374, "jfZ": -9.737374, "jfijD": -9.737374, "jfnuPwv": -9.737374, "jfrHKdspWmT": -9.737374, "jftzNAC": -9.737374, "jgD": -9.737374, "jhQx/CWyddL": -9.737374, "jhRU": -9.737374, "jhdfPPHO": -9.737374, "jhoptFDH": -9.737374, "ji": -9.737374, "jjBreBId": -9.737374, "jjeYIRnDjPa/K": -9.737374, "jk": -9.044227, "jkICLEvlf": -9.737374, "jkItoX": -9.737374, "jkdg": -9.737374, "jkeFIPFU": -9.737374, "jkeKstsSyxrIuNYKrBufPln": -9.737374, "jl": -9.044227, "jlRUDCmjDIYskNVFhsr": -9.737374, "jlVBYCv": -9.737374, "jltz/J": -9.737374, "jm": -9.737374, "jmHPMSLERlbF": -9.737374, "jmIqZmyQeduRaYc": -9.737374, "jmf": -9.737374, "jnHAG/i": -9.737374, "jnUeliyC": -9.737374, "jnUyjarRAGsUD": -9.737374, "jnnmWMWWWTWUggL": -9.737374, "jo": -9.737374, "joB": -9.737374, "joSc": -9.737374, "joXceu/PWi": -9.737374, "jooI": -9.737374, "jp": -9.737374, "jpEAgknVL": -9.737374, "jpEYCQfJDK": -9.737374, "jpmgUtYkT": -9.737374, "jqC": -9.737374, "jqTqdUOuF": -9.737374, "jqiEOSZUTszT": -9.737374, "jrNO": -9.737374, "jrP": -9.737374, "jrPj": -9.737374, "jrtH": -9.737374, "js": -9.737374, "jsDFmKF/Cx": -9.737374, "jsTejhq": -9.737374, "jsm": -9.737374, "jsxvuFX": -9.737374, "jtSpHRlbAJLGQRrqUtN": -9.737374, "jtUOq": -9.737374, "jtdU": -9.737374, "jtykj": -9.737374, "ju": -9.737374, "juAzjrccLjxfn": -9.737374, "juDK": -9.737374, "juL": -9.737374, "juWbqgQCC": -9.737374, "jujlrAu": -9.737374, "junbWfJiaefPPCO/": -9.737374, "jv/CTFdmysivqmybCYzxCMCY": -9.737374, "jvJKvqXTPoe": -9.737374, "jviK": -9.737374, "jvkpvnPGhqZIRxsUvYOFlnxa": -9.737374, "jw": -8.638762, "jwxWWghh": -9.737374, "jx": -9.737374, "jxCEcIYU": -9.737374, "jxXEc": -9.737374, "jxdvRw": -9.737374, "jxkRjLlJFUqeVWuFiJvVIc": -9.737374, "jyP": -9.737374, "jyb": -9.737374, "jyiu/lRNqN": -9.737374, "jyjO": -9.737374, "jytzVVcXUvHGIl": -9.737374, "jz": -9.044227, "jzqg": -9.737374, "k": -5.626500, "k/bCNgYj": -9.737374, "k/h": -9.737374, "kAI": -9.737374, "kAMVfa": -9.737374, "kBVzd": -9.737374, "kBskzNcnm": -9.737374, "kC": -9.737374, "kCJSSkxe": -9.737374, "kCSx": -9.737374, "kCbFRonFh": -9.737374, "kDolWpFL": -9.737374, "kDu": -9.737374, "kE": -9.044227, "kE/Gmstukt": -9.737374, "kE/xya": -9.737374, "kEJ": -9.737374, "kEW": -9.737374, "kEc": -9.737374, "kEpEc/cRK": -9.737374, "kEpQRTA": -9.737374, "kEwOcTtqz": -9.737374, "kEy/YSS": -9.737374, "kFCJFhKEiiAZzJuKGFkQlIqC": -9.737374, "kFOzj": -9.737374, "kFR": -9.737374, "kFU": -9.737374, "kFapVzrw": -9.737374, "kFeadlJezBMkjL": -9.737374, "kFeevmGYcHD": -9.737374, "kFkDyQwkZ": -9.737374, "kG": -9.737374, "kGVnFNm": -9.737374, "kGaxYrF": -9.737374, "kGxCpmw": -9.737374, "kH": -9.737374, "kHc": -9.737374, "kI": -9.737374, "kIjzjawWUTr": -9.737374, "kIkqTpMiFrpxI": -9.737374, "kIn": -9.737374, "kIthHcBqdNjZ": -9.737374, "kIvnTUVIj": -9.737374, "kIzupRnj": -9.737374, "kJUrWYCiTnnnzXUIhA": -9.737374, "kJcUS": -9.737374, "kJu": -9.737374, "kJultnPAmVXFDedBHjAmFHKQ": -9.737374, "kK/": -9.737374, "kKQdiNCNdmt": -9.737374, "kKWayNqBY": -9.737374, "kKYIfB": -9.737374, "kKoyti": -9.737374, "kKrAHorW": -9.737374, "kLKT": -9.737374, "kLbkhlcCwwDvdk": -9.737374, "kM": -9.044227, "kMPEZnPgn": -9.737374, "kMW": -9.737374, "kMljFNaSjtIw": -9.737374, "kN": -9.737374, "kNKTW": -9.737374, "kNL": -9.737374, "kNVKD": -9.737374, "kNX": -9.737374, "kNi/KgZ": -9.737374, "kNkUnW/t": -9.737374, "kNna": -9.737374, "kNsiurEo": -9.737374, "kNvefNcNScCvONLDsKi": -9.737374, "kO": -9.737374, "kOPiHA": -9.737374, "kOmjwVE": -9.737374, "kOn": -9.737374, "kOu": -9.737374, "kPJmGbnUN": -9.737374, "kPiKz": -9.737374, "kPkZQ": -9.737374, "kQ": -9.737374, "kQcnLHMmYEjRSxrKx": -9.737374, "kRKmYjCeS": -9.737374, "kRNTVCxV": -9.737374, "kRm": -9.737374, "kRw": -9.737374, "kSWnDJHvXtmNRF": -9.737374, "kSwWlFctbih": -9.737374, "kT": -9.044227, "kTDSLiK": -9.737374, "kTIy": -9.737374, "kTdQ/rHQKfhvotRG": -9.737374, "kTg": -9.737374, "kTyYSTvJSdlYTl": -9.737374, "kU": -9.044227, "kUOHUq": -9.737374, "kUQGEScW": -9.737374, "kUVHbDfjI": -9.737374, "kUe": -9.737374, "kUszDmCLetyagUQkjl": -9.737374, "kV": -9.737374, "kW": -9.737374, "kWCJSRCefQZ": -9.737374, "kWCoAQywCbqpuKUycsS": -9.737374, "kWIbne": -9.737374, "kWK": -9.737374, "kWL/": -9.737374, "kWV": -9.737374, "kWgabkilQf": -9.737374, "kWnEqig": -9.737374, "kWphUhZbKdbkQFtorhmVpOsx": -9.737374, "kXdGDiLjoxF": -9.737374, "kXdm": -9.737374, "kXu": -9.737374, "kXyNi/uj": -9.737374, "kZ": -9.044227, "kZNNaSlrKaJO": -9.737374, "kZTR": -9.737374, "kZeW": -9.737374, "kZfTTBxVmbbbIVPxTdxMN": -9.737374, "kZyMFz": -9.737374, "kb": -9.044227, "kbML": -9.737374, "kbcdpEku": -9.737374, "kcCJz": -9.737374, "kcUpbv": -9.737374, "kcmvtFiyAV": -9.737374, "kd": -9.737374, "kd/": -9.737374, "kdO": -9.737374, "kdRPmn/shfQqsaStBJRJNM": -9.737374, "kdcs": -9.737374, "kdgSgBcNa": -9.737374, "keX": -9.737374, "kewbsho": -9.737374, "kfAOsYYvilFSNVUKJoUXR": -9.737374, "kfGXSdHino": -9.737374, "kg": -9.737374, "kgfPbzv": -9.737374, "kgoiqd": -9.737374, "khTj": -9.737374, "khiTsl": -9.737374, "khjPX": -9.737374, "khoE": -9.737374, "khy": -9.737374, "khzemz": -9.737374, "kiK/R": -9.737374, "kiTbbZJG": -9.737374, "kivmknaxZZELs": -9.737374, "kj": -9.737374, "kjXqLhvVBq": -9.737374, "kjguR": -9.737374, "kjpzXaYsa": -9.737374, "kjwPKUys": -9.737374, "kk": -9.737374, "kkKLCUUipMp": -9.737374, "kkd": -9.737374, "klF": -9.737374, "klutJE": -9.737374, "klvIwm": -9.737374, "klyrcnzKlQm": -9.737374, "km": -9.737374, "kmf": -9.737374, "kn": -9.737374, "kn/TC": -9.737374, "knD": -9.737374, "knLQ": -9.737374, "knS": -9.737374, "koPMEJnftZHs": -9.737374, "kolIyaOnYe": -9.737374, "koyCFaflpBdF": -9.737374, "kp": -9.737374, "kpOOSFZiZraglyriRriHyq": -9.737374, "kpWdThOtiP": -9.737374, "kptbbrRFbVhRVlAfWJDkzR": -9.737374, "kpwlJN": -9.737374, "kq": -9.044227, "kqlKcVVDZGO": -9.737374, "kr": -9.044227, "krFInHR": -9.737374, "krJ": -9.737374, "krcIYrEvUddFNzTEcwq": -9.737374, "krk": -9.737374, "krl/rByKzXw": -9.737374, "krlPklpLBY": -9.737374, "ks": -9.737374, "ksBSEzpP": -9.737374, "ksJnV": -9.737374, "ksM": -9.737374, "kt": -9.737374, "ktbMnpbKYQU": -9.737374, "ktg": -9.737374, "ktpc": -9.737374, "ktuYU": -9.737374, "ktyQC": -9.737374, "ktzTpbcV": -9.737374, "ku": -8.638762, "kuUubWJeRmbG": -9.737374, "kucyjGWqRUWPI": -9.737374, "kuyqvkmdF": -9.737374, "kuzPGYDxBRSRZfX": -9.737374, "kv": -9.737374, "kv/NzPg": -9.737374, "kvJClrHRCC": -9.737374, "kvMrS/I": -9.737374, "kvXUlVpRich": -9.737374, "kvn": -9.737374, "kvnu//id": -9.737374, "kw": -9.044227, "kx": -9.737374, "kxGY": -9.737374, "kxHrwU/sx": -9.737374, "kxUXOyFqoO": -9.737374, "kxtGC": -9.737374, "kxunOlLrBWTSGLS": -9.737374, "ky": -9.044227, "kyR/": -9.737374, "kyS/": -9.737374, "kyTqIMlsmdaCg": -9.737374, "kyiUuL": -9.737374, "kyzFftGbcuvPU": -9.737374, "kz": -9.737374, "l": -7.791464, "lPQv/T": -9.737374, "le": -9.737374, "liCDOONHFRZ": -9.737374, "lkXSm": -9.737374, "lq": -9.737374, "lruT": -9.737374, "ltzKsoQ/OybSczJO": -9.737374, "lxURXmHLScvHYLrW": -9.737374, "m": -5.748390, "m/": -9.044227, "m/BfzyaTAp": -9.737374, "m/b": -9.737374, "mB": -9.737374, "mBDKQyPSGx": -9.737374, "mBHKkD": -9.737374, "mBcsqK": -9.737374, "mBhxKyYuWy": -9.737374, "mCMYppOz": -9.737374, "mCbsEwtaYTvcnEIeVCasuqD": -9.737374, "mCjcMFCXvrd": -9.737374, "mCouGu": -9.737374, "mCrYXi": -9.737374, "mCx": -9.737374, "mDI": -9.737374, "mDU": -9.737374, "mDkwmpanKnSnbr": -9.737374, "mE": -9.737374, "mEUERFISzUarcAzhclHu": -9.737374, "mEcAGjQxs": -9.737374, "mExOwYU": -9.737374, "mF": -9.737374, "mFHjourVmR": -9.737374, "mFViphptt": -9.737374, "mFc": -9.737374, "mFtFfqp": -9.737374, "mGO/P": -9.737374, "mGdjSsG": -9.737374, "mGmGeE": -9.737374, "mGryPkU": -9.737374, "mH": -9.737374, "mI": -9.737374, "mIo": -9.737374, "mJHdHz": -9.737374, "mJMQgdKkSU/OsmQG": -9.737374, "mJQwznhWU": -9.737374, "mJTgO": -9.737374, "mJc": -9.737374, "mJmaDyW": -9.737374, "mJtuFFL": -9.737374, "mKSMHpLG": -9.737374, "mKeet": -9.737374, "mKmkk": -9.737374, "mLBdCKH/": -9.737374, "mLDxSMsQS": -9.737374, "mLOcys": -9.737374, "mLQ": -9.737374, "mLWVbylZt": -9.737374, "mLbjeKg": -9.737374, "mLsYEgOQ": -9.737374, "mM": -9.737374, "mMGKQSrEfjToXD": -9.737374, "mMKclb": -9.737374, "mMN": -9.737374, "mMU": -9.737374, "mMVfBq": -9.737374, "mMifKPHqn": -9.737374, "mMpuVRGgz": -9.737374, "mNIy": -9.737374, "mNdXeb/": -9.737374, "mNtHL": -9.737374, "mO": -9.737374, "mOdnCUdoGm": -9.737374, "mOyig": -9.737374, "mP": -9.737374, "mPEiKE": -9.737374, "mPEmeVEPimNVYsIiWuJkS": -9.737374, "mPVgRK": -9.737374, "mQM": -9.737374, "mQTRAQ": -9.737374, "mQwla": -9.737374, "mS": -9.737374, "mSDPnjvl": -9.737374, "mT": -9.737374, "mTG": -9.737374, "mTOZc": -9.737374, "mTVywwilKbbPGXltS": -9.737374, "mTmVN": -9.737374, "mTusU": -9.737374, "mU": -9.737374, "mVGeta": -9.737374, "mWLiZ": -9.737374, "mWq": -9.737374, "mXAuS": -9.737374, "mXCtwl": -9.737374, "mXGn": -9.737374, "mXNs": -9.737374, "mXcqJKvu": -9.737374, "mXp": -9.737374, "mXsAzCneuLh": -9.737374, "mYQlyIQ": -9.737374, "mYQpWnVpO": -9.737374, "mYSx": -9.737374, "mYf": -9.737374, "mZ": -8.638762, "mZCklyoygVPpQr": -9.737374, "mZIVUUM": -9.737374, "mZOb": -9.737374, "mZqNlaNfFz": -9.737374, "ma": -9.737374, "maL": -9.737374, "maPSZhEOlczSjpbNq": -9.737374, "makTQr": -9.737374, "man": -9.737374, "mao": -9.737374, "mb": -9.737374, "mbLh": -9.737374, "mbQjT": -9.737374, "mbQt": -9.737374, "mbX": -9.737374, "mbf": -9.737374, "mbgCsoqixUZrGINVD": -9.737374, "mbq": -9.737374, "mbqI": -9.737374, "mbwddUvmBtc": -9.737374, "mcRFDh/fnWoknxFxEFG": -9.737374, "mcVWNZzt": -9.737374, "mclSsaBB": -9.737374, "mdELnHVVPv": -9.737374, "mdZBazAOYdCvGVoMTVx": -9.737374, "mdfUaa": -9.737374, "mdyLGWmX": -9.737374, "mdyt": -9.737374, "me/B": -9.737374, "meJBZmD": -9.737374, "meNauH": -9.737374, "mefTR": -9.737374, "mf": -9.737374, "mfBuCllx": -9.737374, "mfHKnBs": -9.737374, "mfSQjtr": -9.737374, "mfXIZsu": -9.737374, "mg": -9.737374, "mg/": -9.737374, "mgNseicGO": -9.737374, "mgOCOnPIQB": -9.737374, "mgdIJFr": -9.737374, "mgkVh": -9.737374, "mgnOrsbn/": -9.737374, "mgreDucKQzvEFpvPCbOnQv": -9.737374, "mhJ/N/O": -9.737374, "mhKa": -9.737374, "mhdSJZrdZJWzbBE": -9.737374, "mhnEcD": -9.737374, "mhweMeS": -9.737374, "miICnC/MI": -9.737374, "miIkLW/san": -9.737374, "miN": -9.737374, "mihEY": -9.737374, "mii": -9.737374, "mj": -9.737374, "mjNMsc": -9.737374, "mjsRrYezUuDWCuZJRgaUD": -9.737374, "mjxXgy": -9.737374, "mkJeF": -9.737374, "mkmdVmuUCIPzBGwtLji": -9.737374, "mlD": -9.737374, "mlU": -9.737374, "mlvUdyslOUE": -9.737374, "mmL": -9.737374, "mmWsmcwZKkysYGvv": -9.737374, "mmgwNXtLnborRCI": -9.737374, "mmpshzYrHOkpVZlnpneGcvYNk": -9.737374, "mn": -9.737374, "mn/eZ/ny/": -9.737374, "mnImWM": -9.737374, "mnLnHChOu": -9.737374, "mnZQkMKE": -9.737374, "moA": -9.737374, "moslhmmtF": -9.737374, "mp": -9.044227, "mpbv": -9.737374, "mq": -9.737374, "mqXq/": -9.737374, "mqag": -9.737374, "mri": -9.737374, "mtF": -9.737374, "mtLCJHvMm/aTSJoBrRj": -9.737374, "mtYx": -9.737374, "mtarh": -9.737374, "mtcGxWwFbFSAvp": -9.737374, "mtf": -9.737374, "mtiHXn": -9.737374, "mtiMcTCyOyUpdC/mzZpNPG": -9.737374, "mtylnnUqKbY": -9.737374, "mu": -9.737374, "mu/WRswIkVlNWo": -9.737374, "muAEJZVsGlEpe": -9.737374, "muHA": -9.737374, "muN": -9.737374, "mvB": -9.737374, "mw": -9.044227, "mwNGpRUxzTrmaWOJ": -9.737374, "mwTh": -9.737374, "mwX": -9.737374, "mwiGVP": -9.737374, "mwj": -9.737374, "mxPkJRllCL/gLamUtLvlxO": -9.737374, "mxoQT": -9.737374, "my": -9.737374, "myQ": -9.737374, "mySdKhnWCZtXsOb": -9.737374, "myTqEEXmW": -9.737374, "myWVmS/OlQoeFmwDKLYoJehlr": -9.737374, "mybDsLD": -9.737374, "myj": -9.737374, "mzIE": -9.737374, "mzOMoFx": -9.737374, "mzm/nYuHh": -9.737374, "n": -4.215913, "n/": -7.540149, "n/A": -9.737374, "n/H": -9.737374, "n/ISlS": -9.737374, "n/Lb/": -9.737374, "n/Md": -9.737374, "n/NbWA": -9.737374, "n/QN/klCQLNQ": -9.737374, "n/VFYTkiR": -9.737374, "n/diveJb": -9.737374, "n/e": -9.044227, "n/eFMepGJoqHlZITAObHlpcuArkslp": -9.737374, "n/g": -9.737374, "n/lO": -9.737374, "n/sSfwVNGCxDUJ": -9.737374, "n/tLVWZaoJFMqjYIkS": -9.737374, "n/unfTMtC": -9.737374, "n/vlv/": -9.737374, "n/y//wMwfm": -9.737374, "n/zo/": -9.737374, "nA": -7.945614, "nAAALEgAACxIB": -9.737374, "nAElEQVRYwLcBIZ": -9.737374, "nAF/": -9.737374, "nAH": -9.737374, "nAV": -9.737374, "nAe": -9.737374, "nAgi": -9.737374, "nAhmDi": -9.737374, "nAmzGc": -9.737374, "nAomU": -9.737374, "nAyLxUs": -9.737374, "nAzbyCZROWcu": -9.737374, "nB": -9.044227, "nBA": -9.737374, "nBK": -9.737374, "nBMQhGGgZt": -9.737374, "nBNnx": -9.737374, "nBTMvutEMRfMMDT": -9.737374, "nBTNTtP": -9.737374, "nBTnU": -9.737374, "nBZ/": -9.737374, "nBZXasOmqQOdKKkRNkwNPovVAiRdrt": -9.737374, "nBft/rLMhuw": -9.737374, "nBmMIQ": -9.737374, "nBmahS": -9.737374, "nBniKlxDzJtefLiqAM": -9.737374, "nBqFVUh": -9.737374, "nBqUXbnrXyTtBJ": -9.737374, "nBsGlwfVhZl": -9.737374, "nBtAKbdNe": -9.737374, "nBup": -9.737374, "nC": -8.351080, "nC/UYg": -9.737374, "nC/XhM": -9.737374, "nCBriyGRJj": -9.737374, "nCD": -9.737374, "nCHWjPnaxPJAyyGexMTyBQ": -9.737374, "nCIpPqrtaOxOx": -9.737374, "nCLxrKNgt": -9.737374, "nCMyXNrbSQKYNb": -9.737374, "nCNR": -9.737374, "nCOrzmgqsLs": -9.737374, "nCPFdjrmQqvaey/e": -9.737374, "nCagmzU": -9.737374, "nCdUVTMP": -9.737374, "nCf": -9.737374, "nCgyHucihrDwB": -9.737374, "nCoy": -9.737374, "nCt": -9.737374, "nCuZwfujd": -9.737374, "nCyLNGj": -9.737374, "nCzenXae": -9.737374, "nD": -9.737374, "nDAcE": -9.737374, "nDC": -9.737374, "nDMXhgETxuVgmqZJmMTpsxzh": -9.737374, "nDOJKdbWAihlUplVEoVdxBhhBdIUMTqAWVQdrw": -9.737374, "nDSqsTm": -9.737374, "nDTZOGqpofRKn": -9.737374, "nDUSWhRjiPKm": -9.737374, "nDVWw": -9.737374, "nDWRb": -9.737374, "nDXjpPLgd": -9.737374, "nDYEmC": -9.737374, "nDZC": -9.737374, "nDe": -9.737374, "nDi": -9.737374, "nDkLH": -9.737374, "nDkgbQkQrkw": -9.737374, "nDnAmaJ": -9.737374, "nDo": -9.737374, "nDqtdsCQuv": -9.737374, "nDrlwRof/": -9.737374, "nDt": -9.737374, "nDtsQ": -9.737374, "nDvuzBx": -9.737374, "nDw": -9.737374, "nDwP": -9.737374, "nDx": -9.737374, "nDyuxQ": -9.737374, "nE": -9.044227, "nE/uo": -9.737374, "nECbGhtIjautc": -9.737374, "nEDvgCl": -9.737374, "nEHQHzFjKiiKmMTFuD": -9.737374, "nEI": -9.737374, "nELXOXaOVHg": -9.737374, "nENFW": -9.737374, "nEOquu": -9.737374, "nEU": -9.737374, "nEUehJEdxmssCv/lqpA": -9.737374, "nEW": -9.737374, "nEcAOIJhD": -9.737374, "nEhSmqszbIFHZyjTSmDbjWzh": -9.737374, "nEi": -9.737374, "nEiGUhCgJMYoDNrYTl": -9.737374, "nEimyJiU": -9.737374, "nEnNxkJw": -9.737374, "nEpsC": -9.737374, "nEsQKWlaeXXZQebJVAMzUocDU": -9.737374, "nEvHE": -9.737374, "nF": -8.351080, "nF/HBi/NTf": -9.737374, "nFEh": -9.737374, "nFMXHd": -9.737374, "nFSjlpYRR": -9.737374, "nFSuLSLjF": -9.737374, "nFVmBm": -9.737374, "nFcfRd": -9.737374, "nFgh": -9.737374, "nFibIfAQnb": -9.737374, "nFmItuldeteTpkEOxpkBGtRl": -9.737374, "nFo": -9.737374, "nFonPuRzdYP/oJRpes": -9.737374, "nFqXla": -9.737374, "nFxkijWmUk": -9.737374, "nG": -9.044227, "nGIEnYcUmYjUC": -9.737374, "nGIPnM": -9.737374, "nGJhIVyw": -9.737374, "nGOb": -9.737374, "nGQHPON": -9.737374, "nGSV": -9.737374, "nGUM": -9.737374, "nGV": -9.737374, "nGVT/Om": -9.737374, "nGdI": -9.737374, "nGfGUeze": -9.737374, "nGmcv": -9.737374, "nGrVrNqu": -9.737374, "nGylUOlpwKUi": -9.737374, "nH": -9.737374, "nH/": -9.737374, "nH/wzs": -9.737374, "nHCS": -9.737374, "nHK": -9.737374, "nHKFQLbm": -9.737374, "nHKwuLE/WuQ/ZvMOfAs": -9.737374, "nHM": -9.737374, "nHSnfPYghUbSWTImFY": -9.737374, "nHUCmE": -9.737374, "nHdQggSQIAU": -9.737374, "nHeYPLivcq": -9.737374, "nHhyXlTqHgtelUHNAUupwjgBWam": -9.737374, "nHp/M": -9.737374, "nHrE": -9.737374, "nHtmoKxRt": -9.737374, "nI": -8.638762, "nICooFlKOdOHUFSwQM": -9.737374, "nIIjBhHzfckZQ": -9.737374, "nILX": -9.737374, "nIeqHVDPDNU": -9.737374, "nIfZwdhzLzlUqPHHMrIeAgJf": -9.737374, "nIgMb": -9.737374, "nIhdhscP": -9.737374, "nIjPDUuUqJUhNoB": -9.737374, "nIpXgO": -9.737374, "nIuq": -9.737374, "nIvbnGHFqIR": -9.737374, "nIxp": -9.737374, "nJ": -7.945614, "nJAoczXhcFTcZn": -9.737374, "nJDPThl": -9.737374, "nJDRQCZID": -9.737374, "nJE": -9.737374, "nJM": -9.737374, "nJMO": -9.737374, "nJMVG": -9.737374, "nJNBnDLaRJRJ": -9.737374, "nJOhqSaQlGF": -9.737374, "nJQ": -9.737374, "nJSWEigHvnaOKi/le/rZd": -9.737374, "nJTILyrEwZKdydWGYUzKQEa": -9.737374, "nJXeShIxkWNc": -9.737374, "nJYgpjKyOMUZH": -9.737374, "nJb": -9.737374, "nJbQl": -9.737374, "nJftu": -9.737374, "nJgh": -9.737374, "nJiRrdzg": -9.737374, "nJjJu": -9.737374, "nJn": -9.737374, "nJtufbJxFG": -9.737374, "nJwAAIABJREFUlBCXZ": -9.737374, "nK": -8.351080, "nKB": -9.737374, "nKBG": -9.737374, "nKBIgS": -9.737374, "nKFVe": -9.737374, "nKH": -9.737374, "nKH/": -9.737374, "nKNUl": -9.737374, "nKUW": -9.737374, "nKWB": -9.737374, "nKZU": -9.737374, "nKb": -9.737374, "nKcDvLull": -9.737374, "nKhqrJd": -9.737374, "nKiVOf/Wv/": -9.737374, "nKje": -9.737374, "nKknd": -9.737374, "nKly": -9.737374, "nKoBOLg": -9.737374, "nKqjSirOMaK": -9.737374, "nKqjY": -9.737374, "nKsfVuLMaa": -9.737374, "nKt": -9.737374, "nKz": -9.737374, "nL": -9.737374, "nL/": -9.737374, "nLApsMmi": -9.737374, "nLC": -9.737374, "nLGqliozmRE": -9.737374, "nLKI": -9.737374, "nLL": -9.737374, "nLPwicUJI": -9.737374, "nLUEluqKU": -9.737374, "nLgJCNC": -9.737374, "nLgPCilq": -9.737374, "nLgpKbblMIkVVZ": -9.737374, "nLiwLNxek": -9.737374, "nLka": -9.737374, "nLmU": -9.737374, "nLoSvIj": -9.737374, "nLsDUEx": -9.737374, "nLv": -9.737374, "nLwXbDK": -9.737374, "nLwvb": -9.737374, "nLxDOVr": -9.737374, "nM": -7.657932, "nMEYdLKNACcwlgSpzVpW": -9.737374, "nMG": -9.044227, "nMIdxNVg": -9.737374, "nMdIXlm": -9.737374, "nMdsXw": -9.737374, "nMfCPhPYgADQ": -9.737374, "nMgFrgC": -9.737374, "nMgpUWxIHDwRr": -9.737374, "nMhbrD": -9.737374, "nMkcwE": -9.737374, "nMllTJP": -9.737374, "nMm": -9.737374, "nMmGuIi": -9.737374, "nMqrQeP": -9.737374, "nMszoAF": -9.737374, "nMwJlMCvJLFYmyH": -9.737374, "nMyVhKFlActaRg": -9.737374, "nMzj": -9.737374, "nN": -8.638762, "nN/": -9.044227, "nN/qymyuLrpKtOrGZQGKcM": -9.737374, "nNEZL": -9.737374, "nNGxQjMls": -9.737374, "nNIE": -9.737374, "nNJcFxUEd": -9.737374, "nNR": -9.737374, "nNSdWCTmx": -9.737374, "nNT": -9.737374, "nNVW": -9.737374, "nNY": -9.737374, "nNaAcKktWa": -9.737374, "nNagsnohtANKy": -9.737374, "nNbX": -9.737374, "nNc": -9.737374, "nNglqYdroQ/Ew": -9.737374, "nNiNbPPCiRV": -9.737374, "nNujH": -9.737374, "nNw": -9.737374, "nO": -8.127936, "nOEMR": -9.737374, "nOHXjpe": -9.737374, "nOHdZIcE": -9.737374, "nOMgPQEMUbAkcQoQQTzxEPCCBUACDECgIkCMZkSdEBEQmxEmQIiwegoQfEiPidmwcx": -9.737374, "nObE": -9.737374, "nOg": -9.737374, "nOjUXs": -9.737374, "nOnYkZHKbweu": -9.737374, "nOoYt": -9.737374, "nOs": -9.737374, "nOt/e": -9.737374, "nP": -8.638762, "nPErjiwMQsrobXg": -9.737374, "nPFXTRV": -9.737374, "nPIXHEOIMcrsQIf": -9.737374, "nPL/tv/": -9.737374, "nPLf": -9.737374, "nPMB": -9.737374, "nPRxTMA": -9.737374, "nPWowoYqbZWI": -9.737374, "nPXQqTmLmTqnwMshz": -9.737374, "nPYm": -9.737374, "nPlMAismlk/TSKP": -9.737374, "nPs": -9.737374, "nPsVP": -9.737374, "nPvChj": -9.737374, "nPxX": -9.737374, "nQ": -8.127936, "nQ/M": -9.737374, "nQBb": -9.737374, "nQEInvX": -9.737374, "nQHssSYsec": -9.737374, "nQJxyVtl": -9.737374, "nQLesBSg": -9.737374, "nQLlPIf": -9.737374, "nQXij": -9.737374, "nQZnB": -9.737374, "nQan": -9.737374, "nQl": -9.044227, "nQlbFhc": -9.737374, "nQlcfjFp": -9.737374, "nQnfPpTn": -9.737374, "nQrfkTSA": -9.737374, "nQs": -9.737374, "nQspdVvD": -9.737374, "nQtU": -9.737374, "nQzyuistAZCFLEIWIIHMnlhJ": -9.737374, "nR": -9.737374, "nRBI": -9.737374, "nRBtsoc/Y": -9.737374, "nREmw": -9.737374, "nRJWBk": -9.737374, "nRJZHJJ": -9.737374, "nRMOQKbicwAIvwhcm": -9.737374, "nRVsavg": -9.737374, "nRW": -9.737374, "nRaB": -9.737374, "nRazgC": -9.737374, "nRe": -9.737374, "nRhY": -9.737374, "nRnGiTZmIjro": -9.737374, "nRnHZhODiQFFvC": -9.737374, "nRoB": -9.737374, "nRoF": -9.737374, "nRobXOGTiN": -9.737374, "nRrJWqePd": -9.737374, "nRs": -9.737374, "nRtbAYwmriqSr": -9.737374, "nRtzBqlM": -9.737374, "nRujDVUAI": -9.737374, "nRw": -9.737374, "nS": -8.351080, "nSE": -9.737374, "nSIridpx": -9.737374, "nSM": -9.737374, "nSM/": -9.737374, "nSNxMQ": -9.737374, "nSR": -9.737374, "nSSMfye": -9.737374, "nSU": -9.737374, "nSUfgaHeMIRiJ": -9.737374, "nSVV": -9.737374, "nSYeF/PjdlTY": -9.737374, "nSZf": -9.737374, "nSa/GUZwPb": -9.737374, "nSanG": -9.737374, "nScS": -9.737374, "nSeXetMtrqhFKSevaHa": -9.737374, "nShSlTEmjz": -9.737374, "nSkyJF": -9.737374, "nSn": -9.737374, "nSnz": -9.737374, "nSrdp": -9.737374, "nSsiV": -9.737374, "nStKT": -9.737374, "nSvHI": -9.737374, "nSwuoHEKwUTU": -9.737374, "nSyABczGYmpgY": -9.737374, "nT": -9.044227, "nTCRzcy": -9.737374, "nTO": -9.737374, "nTSbh": -9.737374, "nTUGKw": -9.737374, "nTUWU": -9.737374, "nTWYcqn": -9.737374, "nTXRftAN": -9.737374, "nTXmZDAyRpXTqk": -9.737374, "nTZcq": -9.737374, "nTa": -9.737374, "nTe": -9.737374, "nTha/": -9.737374, "nTpYqai": -9.737374, "nTtbW": -9.737374, "nTwNONBFCHF": -9.737374, "nU": -7.945614, "nUCjqlUZck": -9.737374, "nUG": -9.737374, "nULbJJNGFW": -9.737374, "nUMCm": -9.737374, "nUMrM": -9.737374, "nUR": -9.737374, "nUTtjay": -9.737374, "nUcfFqEsi": -9.737374, "nUdIdryhe": -9.737374, "nUf": -9.737374, "nUfT": -9.737374, "nUlGUVLa": -9.737374, "nUmEpxoNj": -9.737374, "nUmWVKWNQLF": -9.737374, "nUoVgi": -9.737374, "nUyjf": -9.737374, "nV": -8.351080, "nVA": -9.737374, "nVAU//mPf": -9.737374, "nVC": -9.737374, "nVCT": -9.737374, "nVFZp": -9.737374, "nVG": -9.737374, "nVIaWotLzmAK": -9.737374, "nVIvQxEKQhFGFZGEFqvEUh": -9.737374, "nVKPzkn//z/ILr/s/uXtn": -9.737374, "nVKqCesuKfx": -9.737374, "nVPR": -9.737374, "nVSrRYhvmtyywAMnpzGSPb": -9.737374, "nVTzOZIbwegZnNMl": -9.737374, "nVW": -9.737374, "nVWxHV": -9.737374, "nVZ": -9.737374, "nVahT": -9.737374, "nVd": -9.737374, "nVhMwjo": -9.737374, "nVixsOoXGsy": -9.737374, "nVn": -9.737374, "nVpP": -9.737374, "nVpZsAPklO": -9.737374, "nVsSE": -9.737374, "nVuyqxLjYhkmbsfq": -9.737374, "nVveDzAgMQXUzphYMmlwoachHC": -9.737374, "nVwfBxIksjq": -9.737374, "nW": -8.638762, "nW/met/": -9.737374, "nWBK": -9.737374, "nWBn": -9.737374, "nWE": -9.737374, "nWFMcz": -9.737374, "nWGbGpAb": -9.737374, "nWHIyAsdEMy": -9.737374, "nWKslRnYBX": -9.737374, "nWOVgQloByuv": -9.737374, "nWQOp/": -9.737374, "nWSTJUhj": -9.737374, "nWVv": -9.737374, "nWWqm": -9.737374, "nWXURJ": -9.737374, "nWZTKWyzTk": -9.737374, "nWcP": -9.737374, "nWjJotJWcVOkvx": -9.737374, "nWkC": -9.737374, "nWlapuxKUFZInUk": -9.737374, "nWmlOtYa": -9.737374, "nWmnR": -9.737374, "nWn": -9.737374, "nWpKYg": -9.737374, "nWpkOKKQW": -9.737374, "nWwLKNlHZwTbXgJQzCWYeRLRiY": -9.737374, "nWy": -9.737374, "nWzEgLfgw": -9.737374, "nWznJIC/": -9.737374, "nX": -8.127936, "nXA": -9.737374, "nXAfw": -9.737374, "nXDUGwh": -9.737374, "nXEW/GFauLLQCi": -9.737374, "nXFZNvQnWiiFpV": -9.737374, "nXG": -9.737374, "nXLGHmdp": -9.737374, "nXNGgvBZj": -9.737374, "nXNcnuf": -9.737374, "nXNwsOA": -9.737374, "nXOkcvqH": -9.737374, "nXQkgumtUnbR": -9.737374, "nXRCUowq": -9.737374, "nXSUoKYXUGYvedsT": -9.737374, "nXUmzawnqGlwdD": -9.737374, "nXWgBlMb": -9.737374, "nXYohTcZIjSGvYRsw": -9.737374, "nXZbayBnGlYKm": -9.737374, "nXb": -9.737374, "nXhajjNQbWnBLY": -9.737374, "nXr": -9.737374, "nY": -9.737374, "nYHQpPDSwl": -9.737374, "nYKwqRrDVHbqqBdGyAG/": -9.737374, "nYM": -9.737374, "nYSMnVySPcN": -9.737374, "nYTZcvu": -9.737374, "nYVNMjNrwEUtdPl": -9.737374, "nYWmrJ": -9.737374, "nYewS": -9.737374, "nYjJyralt": -9.737374, "nYlB": -9.737374, "nYnh": -9.737374, "nYo": -9.737374, "nYqpIKa": -9.737374, "nYrnmVhmVQKhJS": -9.737374, "nYsMGwebGmnSAypamyMNJ": -9.737374, "nYsVTJr": -9.737374, "nYt": -9.737374, "nYtvyw": -9.737374, "nZ": -7.791464, "nZAbrDig": -9.737374, "nZCuc": -9.737374, "nZIO": -9.737374, "nZMiJiIk": -9.737374, "nZN": -9.737374, "nZOIFjjDOKFJYx": -9.737374, "nZRBTOmxz": -9.737374, "nZTw": -9.737374, "nZVG": -9.737374, "nZVVe/KX/": -9.737374, "nZa": -9.737374, "nZaydNpSGSzjjnPmyP/IN/Mjbv": -9.737374, "nZb": -9.737374, "nZbDdbHTPnG": -9.737374, "nZdMMZi": -9.737374, "nZimNdFGxqe": -9.737374, "nZmOeTltyxjyGstjKIJsgNd": -9.737374, "nZmhB": -9.737374, "nZnzX": -9.737374, "nZq": -9.044227, "nZsVf/p": -9.737374, "nZtxXaMaMG": -9.737374, "nZtyac": -9.737374, "nZy": -9.737374, "na": -9.044227, "naC": -9.737374, "naCB": -9.737374, "naCTja": -9.737374, "naLYxo/WwQq": -9.737374, "naNpmdy": -9.737374, "naP": -9.737374, "naVvRKDvFTN": -9.737374, "naW": -9.737374, "naiBgl": -9.737374, "napEqB": -9.737374, "navi": -9.737374, "nax": -9.737374, "nazIIRDP": -9.737374, "nb": -9.044227, "nbAEvtuDzf": -9.737374, "nbDKPvXQ": -9.737374, "nbHCknu": -9.737374, "nbHigicGDJzPLxu": -9.737374, "nbKPDFIADOFOV": -9.737374, "nbOIoyFTZb": -9.737374, "nbOpx": -9.737374, "nbP": -9.737374, "nbPQxOPUuwfrm": -9.737374, "nbV": -9.737374, "nbWo": -9.737374, "nba": -9.044227, "nbaKt": -9.737374, "nbbqvmJKphHbalNPdcKukKss": -9.737374, "nbdFLoRexoSXZDq": -9.737374, "nbdVV": -9.737374, "nbjtlLnx": -9.737374, "nbnTCBm": -9.737374, "nbnj": -9.737374, "nbpzG": -9.737374, "nbqQ": -9.737374, "nbqQXFpbM": -9.737374, "nbtJM": -9.737374, "nbtXJcsjkG": -9.737374, "nbuUrUcLrVpBgxrkTMMogeqc": -9.737374, "nbx": -9.044227, "nc": -7.945614, "nc/vVtVh": -9.737374, "ncEaaxgjEDh": -9.737374, "ncJIFKa": -9.737374, "ncJs": -9.737374, "ncJxJMasY": -9.737374, "ncLF": -9.737374, "ncLLsKKnM": -9.737374, "ncMk": -9.737374, "ncSVfPKSBu": -9.737374, "ncdwwlzqjqvEpUpClDMbYyEeTysTMBCIfm": -9.737374, "ncgLd": -9.737374, "nchyy": -9.737374, "nciQ": -9.737374, "ncl": -9.737374, "nclY": -9.737374, "ncq/DtSyrW": -9.737374, "ncsxN": -9.737374, "ncu": -9.737374, "ncuH": -9.737374, "nczFvm": -9.737374, "nczXTtII": -9.737374, "nd": -7.791464, "ndB": -9.737374, "ndIz": -9.737374, "ndKFI": -9.737374, "ndN": -9.737374, "ndObS": -9.737374, "ndOiNnEt": -9.737374, "ndUVyVuCxdtdgTCtm": -9.737374, "ndWTruJ": -9.737374, "nda": -9.737374, "ndb": -9.737374, "ndbaWe": -9.737374, "ndcpouxUfbY": -9.737374, "ndd/": -9.737374, "ndeUqBw": -9.737374, "ndjC": -9.737374, "ndkO": -9.737374, "ndleBJ": -9.737374, "ndmhrhzLl": -9.737374, "ndnhGA": -9.737374, "ndsVCz": -9.737374, "ndtC": -9.737374, "ndtds": -9.737374, "nduPuSaPRKhTEiRY": -9.737374, "nduvq": -9.737374, "ndz": -9.737374, "ndzzcs": -9.737374, "ne": -8.638762, "neD": -9.737374, "neDWY": -9.737374, "neGAvuuvU/qcUcBAY": -9.737374, "neHHVbPrSNW": -9.737374, "neIUXj": -9.737374, "neKgkc/": -9.737374, "neM": -9.737374, "neOLKuD": -9.737374, "neOeDG": -9.737374, "neRbjSFhit": -9.737374, "neSUjl": -9.737374, "neTRut": -9.737374, "neUxpQ": -9.737374, "neVFyKGU": -9.737374, "neWeMoYxLInagKqgLWsJDFTVqQynFBSGSxtizoRyEhoSk": -9.737374, "neXTTePqZ": -9.737374, "neXWn": -9.737374, "neZpJBqlqEUsBYxUJLdx": -9.737374, "nedbBYLg": -9.737374, "nefldV": -9.737374, "negPN": -9.737374, "nehaPEUC": -9.737374, "nejRV": -9.737374, "nekCzg": -9.737374, "nem": -9.737374, "nexOK": -9.737374, "nf": -7.791464, "nfOGe": -9.737374, "nfOyKlybtJOtNYSAYkkrOhY": -9.737374, "nfQ": -9.737374, "nfRgPPrhcjYfmHEN": -9.737374, "nfSjqpVQsNs": -9.737374, "nfW": -9.737374, "nfZixIhjT": -9.737374, "nfa": -9.737374, "nfbsvOnBtu": -9.737374, "nfe": -9.737374, "nff": -9.737374, "nfg": -9.737374, "nfjtPzluQBbfHwnQQmkhHwQ": -9.737374, "nfpqx": -9.737374, "nfqiVzBgqHT": -9.737374, "nfrjN": -9.737374, "nfs": -9.737374, "nfsgxw": -9.737374, "nfuYnf": -9.737374, "nfuk": -9.737374, "nfwHd/": -9.737374, "nfxSV": -9.737374, "ng": -7.791464, "ngC/RSG": -9.737374, "ngJWUCplOD": -9.737374, "ngOyEBy": -9.737374, "ngQ": -9.737374, "ngSoEFyGRnFmLBq": -9.737374, "ngVncY": -9.737374, "ngVzQn": -9.737374, "ngYcmGZYHO": -9.737374, "ngckfbE": -9.737374, "ngegOhpIcBkag": -9.737374, "ngiqnQjAUcThysCobEkslNbj": -9.737374, "ngjuasFySweUOCa": -9.737374, "ngl": -9.737374, "nglWefY": -9.737374, "ngmMtGF": -9.737374, "ngvDmjIlu": -9.737374, "ngyR": -9.737374, "ngzN": -9.737374, "nh": -7.657932, "nhKdtiOS": -9.737374, "nhKkTY": -9.737374, "nhLXwxZtEEQLChbIm": -9.737374, "nhLr": -9.737374, "nhMqEGh": -9.737374, "nhT": -9.737374, "nhVc": -9.737374, "nhZ": -9.737374, "nhZgOg": -9.737374, "nhc": -9.737374, "nhjz": -9.737374, "nhpPEb": -9.737374, "nhpwLrcnsUC": -9.737374, "nhqdIzbX": -9.737374, "nhx": -9.737374, "nhzLOblrjtnVu": -9.737374, "nhzS": -9.737374, "ni": -8.638762, "ni//": -9.737374, "ni/BOzMUFdUjNbR": -9.737374, "ni/dUZaSi": -9.737374, "niF": -9.737374, "niGRFEtGzHapa": -9.737374, "niKSa": -9.737374, "niPEFMaWgXBixjIEKW": -9.737374, "niPkba": -9.737374, "niSlrumwuhdgi": -9.737374, "nicuwgiRxHttSaYkPVTOezhmTF": -9.737374, "nidKyppVvpYmiV": -9.737374, "nimDxyzyQfrzXv": -9.737374, "nimWbP": -9.737374, "ninl": -9.737374, "nitgAYxmPnDyfYFYZ": -9.737374, "nixRS": -9.737374, "niySr": -9.737374, "nizfby": -9.737374, "nj": -7.791464, "njBWxMCAFNZ": -9.737374, "njBbeUlWtCTOgZZkWlu": -9.737374, "njDdr": -9.737374, "njDnn": -9.737374, "njLRFQSwcl": -9.737374, "njSH": -9.737374, "njSOx/VV": -9.737374, "njZiRzVkfdISAMzGMzRvJFaMeowpUgqaoNWmKmA": -9.737374, "njaIPw": -9.737374, "njc": -9.737374, "njcilDqlqz": -9.737374, "njd": -9.737374, "njd/": -9.737374, "njeUsZ": -9.737374, "njhPZoYvXWlHLIBbDt": -9.737374, "njiVzb": -9.737374, "njkDb": -9.737374, "njoEked": -9.737374, "njugQms": -9.737374, "njwt": -9.737374, "njysq": -9.737374, "nk": -7.945614, "nkCI": -9.737374, "nkFMDHXN": -9.737374, "nkFwgey": -9.737374, "nkHuH": -9.737374, "nkIY": -9.737374, "nkJutCIhTkHOtV": -9.737374, "nkMX": -9.737374, "nkRxCXIpg": -9.737374, "nkSLzD": -9.737374, "nkUfpYWgFHz": -9.737374, "nkYqmgyiTaL": -9.737374, "nkZqArdn": -9.737374, "nkkLUf": -9.737374, "nkkWDoIVE": -9.737374, "nknEoiSUnHYpMJ": -9.737374, "nkodkVeClHKK": -9.737374, "nkrBIrIuzgRgmLd": -9.737374, "nkroHw": -9.737374, "nksDbPDiaxjc": -9.737374, "nksOME/A": -9.737374, "nksVkzPBbIZZzP": -9.737374, "nkz/": -9.737374, "nkzT": -9.737374, "nkzWLj/elaoUmjTTOW": -9.737374, "nkzWwWbYpSJHo": -9.737374, "nl": -9.044227, "nlAuR": -9.737374, "nlDmGduPpZ": -9.737374, "nlEdukDkYBUfc": -9.737374, "nlG": -9.737374, "nlGTNQuYNh": -9.737374, "nlIZd": -9.737374, "nlKIFjzMp": -9.737374, "nlMktVO": -9.737374, "nlR": -9.737374, "nlVyCQxUKoCxwMFXHORmpBsmlxb": -9.737374, "nlWemgMgbKwZWG": -9.737374, "nlZZvdHFsi": -9.737374, "nlbrSi": -9.737374, "nleLfZqCstLl": -9.737374, "nlk": -9.737374, "nlmMCZQf": -9.737374, "nlo": -9.737374, "nlpyFB": -9.737374, "nlrBNPBVnIaWENvN": -9.737374, "nluClavBRJI": -9.737374, "nlwstaqvkhCNDI": -9.737374, "nlxNzn": -9.737374, "nm": -7.945614, "nmAoyo": -9.737374, "nmCu": -9.737374, "nmG": -9.737374, "nmGfqx": -9.737374, "nmHJA/f": -9.737374, "nmIGtko": -9.737374, "nmLJE": -9.737374, "nmMoH": -9.737374, "nmOQccCRIaSOVFe/bb/OuSx": -9.737374, "nmQ": -9.737374, "nmR": -9.737374, "nmRXmYOyFkoWIO": -9.737374, "nmSwHZsEqw": -9.737374, "nmXi": -9.737374, "nmY": -9.737374, "nmZmsKWa": -9.737374, "nmaurzOFolKrl": -9.737374, "nmjMF": -9.737374, "nmlr": -9.737374, "nmn": -9.737374, "nmtMnM": -9.737374, "nmvRqEvv": -9.737374, "nmwZn": -9.737374, "nn": -8.351080, "nn/gRvuvf": -9.737374, "nnAMoFzIyL": -9.737374, "nnBlfJB": -9.737374, "nnGQZdWBcBm": -9.737374, "nnLEs": -9.737374, "nnLJ/": -9.737374, "nnMxmLDWoNiiLdNg": -9.737374, "nnPor": -9.737374, "nnXouzdIdSpG": -9.737374, "nngzINOa": -9.737374, "nnroYDM": -9.737374, "nns": -9.737374, "no": -9.044227, "noB": -9.737374, "noBJ": -9.737374, "noKaFsMbojR/": -9.737374, "noMUCUzSVkII": -9.737374, "noQ/E/ef": -9.737374, "noT": -9.737374, "noThuZzp": -9.737374, "noYg": -9.737374, "noacWsadPaduvoN": -9.737374, "nocKQ": -9.737374, "noe/gGlTBoxZ": -9.737374, "nojM": -9.737374, "nokSIcLSCYYXJBAzJicTBGLYhiDZnDVd": -9.737374, "noljJ": -9.737374, "nonWNzN": -9.737374, "now": -9.737374, "nozUmwWW": -9.737374, "np": -9.044227, "npB": -9.737374, "npD": -9.737374, "npE": -9.737374, "npFrNxsxkAxHWYowsV": -9.737374, "npH": -9.737374, "npJWhliHVppjDNVUFnAvePE/GCs": -9.737374, "npJb": -9.737374, "npMc": -9.737374, "npPYzHjNJuyNdeKzJmv": -9.737374, "npSEfFtyKZtitwa": -9.737374, "npSw": -9.737374, "npUerJriy": -9.737374, "npXG": -9.737374, "npYtNSL": -9.737374, "npaw": -9.737374, "npearJjC": -9.737374, "nperGA": -9.737374, "nphgBdHq": -9.737374, "npkrc": -9.737374, "npoY": -9.737374, "npqRafa": -9.737374, "npt": -9.737374, "nptQKMYycUlKMKR": -9.737374, "nq": -9.044227, "nqCdZ": -9.737374, "nqDcusS": -9.737374, "nqESOmsttuhQxCL/h": -9.737374, "nqFdhI": -9.737374, "nqJk": -9.737374, "nqLpp": -9.737374, "nqNrqaUsV": -9.737374, "nqOvyTYCrW": -9.737374, "nqRRJZSIyQIPK": -9.737374, "nqRYXi": -9.737374, "nqRl": -9.737374, "nqU": -9.737374, "nqULR": -9.737374, "nqUOxQjD": -9.737374, "nqYy": -9.737374, "nqcFKU": -9.737374, "nqgUuZ": -9.737374, "nqiZJ": -9.737374, "nqrLxJLrFrii": -9.737374, "nqsRW/": -9.737374, "nqsZqOnzemDfW": -9.737374, "nqvjxHaeTHx": -9.737374, "nqwTKeQ": -9.737374, "nqxzO": -9.737374, "nr": -8.351080, "nr/N": -9.737374, "nr/jt/Pxf": -9.737374, "nrB/orGDxNO": -9.737374, "nrCxSDK": -9.737374, "nrGAcm": -9.737374, "nrKQxWZ": -9.737374, "nrKwhL": -9.737374, "nrMs": -9.737374, "nrMt": -9.737374, "nrOM": -9.737374, "nrOWOjU": -9.737374, "nrSfZFSWWpwrjbnKmIXvgjHA": -9.737374, "nrTPNOAIFkRmjs/fEeag": -9.737374, "nrYMGNIcFPQ": -9.737374, "nraay": -9.737374, "nrciLkQWB": -9.737374, "nrggeCx": -9.737374, "nrk": -9.737374, "nrnFb/pN": -9.737374, "nrs": -9.737374, "nrsG": -9.737374, "nrtaFJ": -9.737374, "nru": -9.737374, "nruytV": -9.737374, "nrx": -9.737374, "nrz": -9.737374, "ns": -8.127936, "nsFJoowmPWoxajNWKtMIxSKak": -9.737374, "nsGaXhnSGc": -9.737374, "nsIa": -9.737374, "nsSZz": -9.737374, "nsWi": -9.737374, "nsYcz": -9.737374, "nsdpNRLCrNfGBD/": -9.737374, "nsfurSq/OUeSWufUbR": -9.737374, "nsgRXqKKtZkrVqNJ": -9.737374, "nsjrRgiPFbb": -9.737374, "nsklXgymG": -9.737374, "nsrU": -9.737374, "nssw": -9.737374, "nstH": -9.737374, "nt": -8.638762, "ntG": -9.737374, "ntGBt": -9.737374, "ntI/GQRlL": -9.737374, "ntJZMobCPyXRIjh": -9.737374, "ntMJWlMLxJM": -9.737374, "ntOQsDWOMabkdVKu": -9.737374, "ntW": -9.737374, "ntX": -9.737374, "ntXDJzPTFOmRtn": -9.737374, "ntcyhD": -9.737374, "ntfz": -9.737374, "ntgrZJ": -9.737374, "ntgxLzVqttMnLXWLJ": -9.737374, "nthV": -9.737374, "ntlFC": -9.737374, "ntmPTbRIk": -9.737374, "ntncvW": -9.737374, "ntntXavcth": -9.737374, "ntp": -9.737374, "ntrfxzRvHrPeHxb": -9.737374, "ntsnyaCygPtSUXmvogTOFSpq": -9.737374, "ntt": -9.737374, "ntvIjRHjESQZ": -9.737374, "ntwLgGG": -9.737374, "nu": -8.127936, "nu/": -9.737374, "nu/FuymF": -9.737374, "nuB": -9.737374, "nuEIxSKA": -9.737374, "nuJ": -9.737374, "nuJJ": -9.737374, "nuJaDmZZGVrhWZy": -9.737374, "nuK": -9.737374, "nuKmzREDzFhyHM/pOhe": -9.737374, "nuW": -9.737374, "nuX": -9.737374, "nuYncVOFyQR": -9.737374, "nubBqsfrBS": -9.737374, "nubGWvcElysprdHvY": -9.737374, "nudvwTou": -9.737374, "nufGpjLuUmBpEyUBy": -9.737374, "nuh": -9.737374, "nujbQnJXEMCEtzF": -9.737374, "nunmPjcvs": -9.737374, "nuqKjVEadxPLtStqZbVWHohus": -9.737374, "nuqcXXn": -9.737374, "nuw/mVIKRxZRtGL/rT/wAYLznFz": -9.737374, "nuwB": -9.737374, "nv": -8.638762, "nv/XXfwwQDjNElFVgfjBXMFN": -9.737374, "nv/mv/AxevRj": -9.737374, "nvFDbwsr": -9.737374, "nvHW": -9.737374, "nvHgcfPCtR": -9.737374, "nvM": -9.737374, "nvMJMIZXvf": -9.737374, "nvMuAVCRrBvcdKNAIohoRxsdplF": -9.737374, "nvPtFjMAj": -9.737374, "nvQxpjoJSJmJC": -9.737374, "nvTtbBH": -9.737374, "nvTu": -9.737374, "nvXMf": -9.737374, "nvZx": -9.737374, "nvehjX": -9.737374, "nvjpgFiwZDguUVGmuzdtiQE": -9.737374, "nvvOP": -9.737374, "nvw": -9.737374, "nvwC": -9.737374, "nvwjGKPzP": -9.737374, "nw": -8.351080, "nwBZZA": -9.737374, "nwHryhGs": -9.737374, "nwIWXD": -9.737374, "nwJazuhEjOVplP/HYpbypWYycB": -9.737374, "nwLNo": -9.737374, "nwPCDF": -9.737374, "nwSEFAoFSLBRBVYhITAzVpLJjh": -9.737374, "nwW/hm": -9.737374, "nwX/emcmPnMbTXJzn": -9.737374, "nwd": -9.737374, "nwdBITHvOREhTt": -9.737374, "nwe": -9.737374, "nwerKt": -9.737374, "nwfLOdSiptmywwhgmgwXZ": -9.737374, "nwgDvYfasvqej": -9.737374, "nwmwd": -9.737374, "nwn": -9.737374, "nwo": -9.737374, "nwud/Pmec/Nk//PW": -9.737374, "nwzfWhpAE": -9.737374, "nx": -9.737374, "nxBspSgCeK": -9.737374, "nxDkZpmVhAC": -9.737374, "nxHvKtFqRdjAF": -9.737374, "nxK": -9.737374, "nxKVDcqbxclN": -9.737374, "nxKss": -9.737374, "nxLTGwjwJmAQ": -9.737374, "nxN": -9.737374, "nxYLijce": -9.737374, "nxZlCrMbJO": -9.737374, "nxaxw": -9.737374, "nxg": -9.737374, "nxkFvg": -9.737374, "nxqOMc": -9.737374, "nxsoiolUYUqi": -9.737374, "nxtgpzq": -9.737374, "nxyqdxm": -9.737374, "ny": -7.945614, "nyAiwOjTEdT": -9.737374, "nyD": -9.737374, "nyDC": -9.737374, "nyDCDSUmBGdUdR": -9.737374, "nyGLtdrdSi": -9.737374, "nyGTeJ": -9.737374, "nyPl": -9.737374, "nyQjBqHvqZsqJ": -9.737374, "nyTEQIMWS": -9.737374, "nyZlusChoG": -9.737374, "nydx": -9.737374, "nye": -9.737374, "nyghs": -9.737374, "nyiQDyvL": -9.737374, "nyk": -9.737374, "nyrEnx": -9.737374, "nyrxK": -9.737374, "nyugFH": -9.737374, "nz": -7.945614, "nzAXt": -9.737374, "nzB": -9.737374, "nzEsJv": -9.737374, "nzLVNLmtto": -9.737374, "nzNp": -9.737374, "nzNxi": -9.737374, "nzO": -9.737374, "nzPzTaViyMJmbFGqZzZaS": -9.737374, "nzS": -9.737374, "nzSVlTkIuZ": -9.737374, "nzWW": -9.737374, "nzZUUitoeKahhlFTJNI": -9.737374, "nzc": -9.737374, "nzcHWr": -9.737374, "nzeDtEuloRjCHDimq": -9.737374, "nzeTd": -9.737374, "nzii": -9.737374, "nzjOYq": -9.737374, "nzl": -9.737374, "nzmqSfvs": -9.737374, "nzqhvSdtzLGFGKyWgFtrKr": -9.737374, "nzrAHdKg": -9.737374, "nztg": -9.737374, "nzuUzqg": -9.737374, "nzue": -9.737374, "nzupF": -9.737374, "nzv/": -9.737374, "nzv/wB/": -9.737374, "o": -5.866173, "o/BTd": -9.737374, "o/XOiebDbSvgI": -9.737374, "o/jH": -9.737374, "oAZb": -9.737374, "oBLJSVbhFqPbRoWtokrsaErkEO": -9.737374, "oBhTZAgHZbVcPbO": -9.737374, "oBtb": -9.737374, "oC": -9.737374, "oC/": -9.737374, "oCBdt": -9.737374, "oCoIQZZiatw": -9.737374, "oDO": -9.737374, "oDaReKKkfKtmd": -9.737374, "oDoasY": -9.737374, "oDqxLqLv": -9.737374, "oDuTGNSSAc": -9.737374, "oE": -9.737374, "oECLI": -9.737374, "oESBqxZDrZqpKeJ": -9.737374, "oEjYDYoH": -9.737374, "oFAZ": -9.737374, "oFN": -9.737374, "oFQfNuUHVVIqMUt": -9.737374, "oFUxum": -9.737374, "oFrL": -9.737374, "oG": -9.044227, "oGfJ": -9.737374, "oGwJmrSh": -9.737374, "oGxTHrQuxW": -9.737374, "oHJaq": -9.737374, "oIPXn/AD/": -9.737374, "oIrlfnuDj": -9.737374, "oJrsAxZLGQFrve/AZgw": -9.737374, "oJyuLk": -9.737374, "oK": -9.044227, "oKdxHXLb": -9.737374, "oKjkg": -9.737374, "oLRDC": -9.737374, "oLbifjdvsvJzF": -9.737374, "oLd": -9.737374, "oLpID": -9.737374, "oLqrKWZobPHcAQ": -9.737374, "oLrH": -9.737374, "oLvK": -9.737374, "oM/wCeepLnr": -9.737374, "oMWUIcZpSetKvJ": -9.737374, "oMgQ": -9.737374, "oMp": -9.737374, "oMsRUaNoDbJtJqp": -9.737374, "oN": -9.737374, "oNMAHfuAH": -9.737374, "oNR": -9.737374, "oNT": -9.737374, "oNTexq": -9.737374, "oNZ": -9.737374, "oNm": -9.737374, "oNqayh": -9.737374, "oO": -9.044227, "oOIJq": -9.737374, "oORAtsImb": -9.737374, "oP": -9.737374, "oPNbLR": -9.737374, "oPsjtr": -9.737374, "oPu": -9.737374, "oPvKy": -9.737374, "oQVpYkOxCopabLC": -9.737374, "oRL": -9.737374, "oRd": -9.737374, "oRdpoU": -9.737374, "oSRxCvM": -9.737374, "oSfOuvl": -9.737374, "oSonFgwVwZLtzTl": -9.737374, "oStKhKAnbn": -9.737374, "oTPVoP": -9.737374, "oTXRW": -9.737374, "oTehVzNoqwYNGadHOeQPrcV": -9.737374, "oU": -9.044227, "oUSYtxn": -9.737374, "oUSah": -9.737374, "oV": -9.737374, "oVVqwuQhhtL": -9.737374, "oVYS": -9.737374, "oVYs": -9.737374, "oVa": -9.737374, "oVgFsZJVQTTbWzsNzaqC": -9.737374, "oWFxrlEwpaBtSkj": -9.737374, "oWOK": -9.737374, "oWe": -9.737374, "oX": -9.737374, "oXRdnS": -9.737374, "oXvgtnmr": -9.737374, "oXzFKLr": -9.737374, "oYHMWnlAC": -9.737374, "oYol": -9.737374, "oZ": -9.737374, "oZSgFIqVBTMLJel": -9.737374, "oaPbam": -9.737374, "obYdDKXPPi": -9.737374, "obar": -9.737374, "ocO": -9.737374, "ocgchIDZ": -9.737374, "ocm": -9.737374, "ocs": -9.737374, "ocwCLQKkSAMFgWhPBKYTiQ": -9.737374, "odorkK": -9.737374, "odwykOyAXVnAScxFbt": -9.737374, "odzKWxDJSL": -9.737374, "oePN": -9.737374, "ofTFPf": -9.737374, "ofWVDlV": -9.737374, "ofiNY": -9.737374, "ogHOyrd": -9.737374, "ogWzHoYfSYqoSpmlrikUmq": -9.737374, "ogmOEqgZ": -9.737374, "ogvo": -9.737374, "oh": -9.044227, "ohr": -9.737374, "oi": -9.737374, "oiCKPhYVCNj": -9.737374, "oiZ": -9.737374, "oiabIrRdtdLjLXYljTRXVoK": -9.737374, "oikYdbumcVNpoyRWNLO": -9.737374, "oinWxkDRlT": -9.737374, "oiyxUkX": -9.737374, "oj": -9.737374, "ojD": -9.737374, "ojR": -9.737374, "okEFu": -9.737374, "okI": -9.737374, "okX": -9.737374, "ol": -9.737374, "olEzqzpMawzlNN": -9.737374, "omNLXJO": -9.737374, "omREZ": -9.737374, "omYybRXO": -9.737374, "onAzJufbI": -9.737374, "onccGx": -9.737374, "oo": -9.737374, "ooX": -9.737374, "oopbBS": -9.737374, "opVKqomQaQVQR": -9.737374, "opbO": -9.737374, "opfaKt": -9.737374, "opzei": -9.737374, "opzfAj": -9.737374, "oqVV": -9.737374, "oqYLq": -9.737374, "oqcBNqTW": -9.737374, "oqhCA": -9.737374, "oqjJbwMqjJWMcF": -9.737374, "oqt": -9.737374, "oqybRX": -9.737374, "orbBU": -9.737374, "os": -9.737374, "osEX": -9.737374, "osNZMXYTJrdQ": -9.737374, "osQk/dSDr": -9.737374, "ospabkdRm": -9.737374, "osz": -9.737374, "otCLobak": -9.737374, "otetKHkh": -9.737374, "otrskN": -9.737374, "ou": -9.737374, "ouEFBh": -9.737374, "ovWG": -9.737374, "ovampt/aXfvAlrmvRvYrryR": -9.737374, "ow": -9.737374, "owNHrsHwwaFF": -9.737374, "owR": -9.737374, "owfArL": -9.737374, "owwjveEK": -9.737374, "oxNjrBuX": -9.737374, "oxVUduaLTEgjE": -9.737374, "oxeftpDXhMrsfnDfj": -9.737374, "oy": -9.737374, "oyDeuJQgHcWxLL": -9.737374, "oyELpq/YSyHwlU": -9.737374, "oyMOwZPMpZFKc": -9.737374, "oySVVoHOI": -9.737374, "oyUW": -9.737374, "oysQsA/": -9.737374, "oz": -9.737374, "ozjq": -9.737374, "oznIihRfsYRGtUd": -9.737374, "p": -5.805548, "p//XH": -9.737374, "p/Ir/": -9.737374, "p/OD/": -9.737374, "p/awFvWtg": -9.737374, "p/vgcRNiUojHxkqiD": -9.737374, "p/yF": -9.737374, "pA": -9.737374, "pACabTuhYpWG": -9.737374, "pAccIPv": -9.737374, "pAj": -9.737374, "pB": -9.737374, "pBFgyxpVxtJPPdqKWSkp": -9.737374, "pBG": -9.737374, "pBYplGVLKTKG": -9.737374, "pBaV/TffOzu": -9.737374, "pBd": -9.737374, "pBghzlxJN": -9.737374, "pBkSqfdf": -9.737374, "pBqTBTiUUPDjSmXoBcZyAavdnItFyc": -9.737374, "pC": -9.737374, "pC/aHCoaCqWoUFB": -9.737374, "pCaaFsNugXIKql": -9.737374, "pCohg": -9.737374, "pDGYzFWY": -9.737374, "pDOlycKkiZITS/ob": -9.737374, "pDpIhEDmBsca": -9.737374, "pDt/bngUu": -9.737374, "pDy": -9.737374, "pE": -9.737374, "pE/ECIJmYEHQ": -9.737374, "pEEfnRLjJKJcLhZRIHAEy": -9.737374, "pEINceyG": -9.737374, "pEM": -9.737374, "pEqcgM": -9.737374, "pEwRjrdgutuQxe": -9.737374, "pF": -9.737374, "pFW": -9.737374, "pFZdgpPOMEy": -9.737374, "pFrrtZwxX": -9.737374, "pFxeDBXVvzi": -9.737374, "pG": -9.737374, "pGE": -9.737374, "pGL": -9.737374, "pGRYad": -9.737374, "pGnXyGqOK": -9.737374, "pGqi": -9.737374, "pHBKsmcxKzIXipLK": -9.737374, "pHE": -9.737374, "pHHNvdzoZ": -9.737374, "pHKYo": -9.737374, "pHRfLGOu": -9.737374, "pHTmsM": -9.737374, "pHtyl": -9.737374, "pHu": -9.737374, "pI": -9.044227, "pIkfRA": -9.737374, "pIomJkIlEBhXs": -9.737374, "pIyZVBk": -9.737374, "pJ": -9.737374, "pJI": -9.737374, "pJRgC": -9.737374, "pJcsIMuCq": -9.737374, "pJeC/y/MO": -9.737374, "pKLtimFwWO": -9.737374, "pKPoXC": -9.737374, "pKUq": -9.737374, "pKwJN": -9.737374, "pL": -9.737374, "pLDSpV/SNxEhWt": -9.737374, "pLL": -9.737374, "pLMI": -9.737374, "pLbqwOVwolJLC": -9.737374, "pLeqTjYCbETx": -9.737374, "pM/": -9.737374, "pMdFsCbTuN": -9.737374, "pMjIbLzbNm": -9.737374, "pMlHDYzpKP": -9.737374, "pMyyVGwI/pNT": -9.737374, "pMzt": -9.737374, "pN": -9.737374, "pNN": -9.737374, "pNaDvqZvHE": -9.737374, "pNk": -9.737374, "pOE": -9.737374, "pOjRqcOv": -9.737374, "pPmq": -9.737374, "pPs": -9.737374, "pQ": -9.737374, "pQQuzwfBGceMyjp": -9.737374, "pQgO": -9.737374, "pRCvWCcs": -9.737374, "pRY": -9.737374, "pSB": -9.737374, "pSpg": -9.737374, "pTQx": -9.737374, "pTa": -9.737374, "pTlU": -9.737374, "pUMc": -9.737374, "pUYjXk": -9.737374, "pUijJ": -9.737374, "pUixSjBRFCEiiSk": -9.737374, "pUlwOiUFp": -9.737374, "pUyu": -9.737374, "pV": -9.737374, "pVHIbhzaRK": -9.737374, "pVRlgSTaxo": -9.737374, "pVgdD/OOc": -9.737374, "pVha": -9.737374, "pVlvx": -9.737374, "pW": -9.737374, "pWC": -9.737374, "pWEs": -9.737374, "pWaTfjUdEkcP": -9.737374, "pWp": -9.737374, "pWu": -9.737374, "pXEuU": -9.737374, "pXKZBZRqV": -9.737374, "pXwre": -9.737374, "pYBSKVa": -9.737374, "pYMAa": -9.737374, "pYisoP": -9.737374, "pYsFN": -9.737374, "pZ": -9.737374, "pZMM/": -9.737374, "pZSLVqQv": -9.737374, "pZa": -9.737374, "pZbE": -9.737374, "pa": -9.737374, "paDIzqIJ": -9.737374, "paOl": -9.737374, "paedILrYsbVamEljpO": -9.737374, "palyoHI": -9.737374, "pamUxIQVqg": -9.737374, "paxhSoTei": -9.737374, "pay": -9.737374, "pb": -9.044227, "pba": -9.737374, "pc": -8.351080, "pcZexEnyUsGlsM": -9.737374, "pci": -9.737374, "pd": -9.044227, "pdJNiYVXCkrxRqEaB": -9.737374, "pdRS": -9.737374, "pdbfMcwFIjrHiQ": -9.737374, "pdliRZPueBshiMk": -9.737374, "pe": -9.737374, "peX": -9.737374, "pexOFunReMtRU": -9.737374, "pf": -9.737374, "pfXNwTW": -9.737374, "pfx": -9.737374, "pg": -9.044227, "pgN": -9.737374, "pgdqoIZolvd": -9.737374, "pgntuBG": -9.737374, "phJY": -9.737374, "piAXFr/": -9.737374, "piTae": -9.737374, "pigXFjxSmN": -9.737374, "pilkM": -9.737374, "pioRy": -9.737374, "pipk": -9.737374, "pjAOqBO/Vw": -9.737374, "pjB": -9.737374, "pjIDMolm/yck": -9.737374, "pjJtfIV/": -9.737374, "pjRI": -9.737374, "pjbb": -9.737374, "pjc": -9.737374, "pjo": -9.737374, "pk": -9.044227, "pkGlhzsgxuLv": -9.737374, "pkKKjtfMtqul": -9.737374, "pkNoKAyy": -9.737374, "pkOUm/W": -9.737374, "pkR": -9.737374, "pkRfMzifkMuslFZMZeNuF": -9.737374, "pkVGluUFA": -9.737374, "pkokSRVDOgiT": -9.737374, "pkqyaXgs": -9.737374, "pkxN": -9.737374, "plAH/dHzvPlNxju": -9.737374, "plRS": -9.737374, "plrINbXkyGsRGVwlpJuP": -9.737374, "plsdSciuc": -9.737374, "pmMO": -9.737374, "pmYgWsh": -9.737374, "pmgdtk": -9.737374, "pn": -9.044227, "pnMhu/": -9.737374, "pnfn": -9.737374, "pnlJVh": -9.737374, "poB": -9.737374, "poCXhYZ/iNNibNgsbaoTFOesNsyJo": -9.737374, "poTPXhjcrSOl": -9.737374, "pocFedBkTshXqy": -9.737374, "povx": -9.737374, "pp": -9.737374, "ppCukwmrMq": -9.737374, "ppKDK": -9.737374, "ppLXier": -9.737374, "ppOlqj": -9.737374, "ppRnOEcl": -9.737374, "ppTtD": -9.737374, "ppYFLTm": -9.737374, "ppYKp": -9.737374, "pplrwtu": -9.737374, "ppx/yIz/": -9.737374, "pq": -9.737374, "pqPf": -9.737374, "pqTpneN": -9.737374, "pqatF": -9.737374, "pqhGJRnCgzlNLCS": -9.737374, "pqkStmQAuDUO": -9.737374, "pqkV": -9.737374, "pql/es": -9.737374, "pqs": -9.737374, "prc/CCKIC": -9.737374, "prtSS": -9.737374, "ps": -9.044227, "ps/": -9.737374, "pshx": -9.737374, "pszkpZp": -9.737374, "pt": -9.737374, "pt/": -9.737374, "ptUIh": -9.737374, "puK": -9.737374, "pur": -9.737374, "puz": -9.737374, "pvTPJaquMuT": -9.737374, "pvVhy": -9.737374, "pvuMv/GW": -9.737374, "pvxYrMTT": -9.737374, "pw": -9.044227, "pwD": -9.737374, "pwj/OExnD": -9.737374, "px": -9.044227, "px/g": -9.737374, "pxDGlLMKIZQjgZYYiGZ": -9.737374, "pxF": -9.737374, "pxRKOkxDEnaXrpDKu": -9.737374, "pxW": -9.737374, "pxjHuc": -9.737374, "pxllbs": -9.737374, "pxyV": -9.737374, "py": -9.737374, "pyFn": -9.737374, "pyL": -9.737374, "pz": -9.737374, "pzU": -9.737374, "q": -6.023802, "q/": -9.737374, "q/bwnBVJyGTIXesqIxgmVJ": -9.737374, "q/ioz/n": -9.737374, "q/jv/": -9.737374, "q/nkbK": -9.737374, "q/xhOlrM": -9.737374, "q/zZmwJzK": -9.737374, "qB": -9.044227, "qBJ": -9.737374, "qBW": -9.737374, "qBaU/JFo": -9.737374, "qBi": -9.044227, "qBnhsrT": -9.737374, "qBstE": -9.737374, "qC": -9.737374, "qCVpvkWySNfHG": -9.737374, "qCiKQiG": -9.737374, "qCsl": -9.737374, "qDDLsGG": -9.737374, "qDXIW": -9.737374, "qDXKd": -9.737374, "qDa": -9.737374, "qDogu": -9.737374, "qE": -8.638762, "qE/KSmqlErH": -9.737374, "qEX": -9.737374, "qFWx": -9.737374, "qFiSLSYJjSn": -9.737374, "qG": -9.737374, "qGF": -9.737374, "qGKcnUuoGfVbKMjA": -9.737374, "qGm": -9.737374, "qH": -9.737374, "qHPMQA": -9.737374, "qHlOT": -9.737374, "qI": -9.737374, "qIN/uxW": -9.737374, "qIlEnwWEg//jG": -9.737374, "qIpZCDrOC": -9.737374, "qIrKUfAEA": -9.737374, "qJDI": -9.737374, "qJKyqGwDFwEtbb": -9.737374, "qJPoMqdx": -9.737374, "qJQQZMp": -9.737374, "qJm": -9.737374, "qJrfbipP": -9.737374, "qJsbj": -9.737374, "qK": -9.737374, "qKRSo": -9.737374, "qKTyKQU": -9.737374, "qKdSuWBbRJxQkRlK": -9.737374, "qKt": -9.737374, "qL": -9.044227, "qLCEgDFgBKh": -9.737374, "qLDNFuP": -9.737374, "qLJtQ": -9.737374, "qLOqP": -9.737374, "qLYprTQIPneCryYFwSEYuYx": -9.737374, "qMSX/": -9.737374, "qMefg": -9.737374, "qMqxUOJdFTZjfHclBSUQlbCn/": -9.737374, "qMuUiiZUKJjmYlsyhOks": -9.737374, "qMvfxTkq": -9.737374, "qNWNRWRfVK": -9.737374, "qO": -9.737374, "qOj/sxV": -9.737374, "qOxMxbjAu": -9.737374, "qP/tNfxowLBtzWpCN": -9.737374, "qPFxOB": -9.737374, "qPagH": -9.737374, "qPhRa": -9.737374, "qQ/bCL": -9.737374, "qQFBKyNbYcrNOqMXYHoYQqPQvF": -9.737374, "qQHx": -9.737374, "qQTUwkDi": -9.737374, "qQTlkDXq": -9.737374, "qQVl": -9.737374, "qQpG": -9.737374, "qQqYci": -9.737374, "qQvahBBREn": -9.737374, "qRGiq": -9.737374, "qRU": -9.737374, "qRdANp": -9.737374, "qS": -9.737374, "qSEcZ": -9.737374, "qSM": -9.737374, "qSWzAl": -9.737374, "qSrL": -9.737374, "qT": -9.737374, "qT/x": -9.737374, "qTrruvjEGZYPnd": -9.737374, "qTsLlOawIguUEfPmE": -9.737374, "qU": -8.638762, "qUAuj": -9.737374, "qUCkNFMXUyOxsVEzYxgnYQLIDsFlg": -9.737374, "qUTgzccdh": -9.737374, "qUm/XwID": -9.737374, "qUzENBoZi": -9.737374, "qVEOfdgj": -9.737374, "qVKsOjxNDOJuB": -9.737374, "qVLe": -9.737374, "qVd": -9.737374, "qWFU/xA": -9.737374, "qX/": -9.737374, "qXEe": -9.737374, "qXS": -9.737374, "qXVNT": -9.737374, "qXjNWLPfq": -9.737374, "qXnCJDdbIuE": -9.737374, "qY": -9.737374, "qYB": -9.737374, "qYDUIlFW": -9.737374, "qYK": -9.737374, "qYfe": -9.737374, "qYnK": -9.737374, "qYooys": -9.737374, "qYtZ": -9.737374, "qYz": -9.737374, "qZbEtfCyA": -9.737374, "qZro": -9.737374, "qZs": -9.737374, "qa": -9.044227, "qaRhVj": -9.737374, "qaYYofdrNcKVsJLAtTXmfe": -9.737374, "qabls": -9.737374, "qakxUVW": -9.737374, "qayspoNWCFGHnhl": -9.737374, "qb": -9.737374, "qbJ": -9.737374, "qbvVGa": -9.737374, "qc": -9.044227, "qcSi": -9.737374, "qd": -9.737374, "qdG": -9.044227, "qdK": -9.737374, "qdn": -9.737374, "qdxd": -9.737374, "qeRSPSOazxOOCt": -9.737374, "qeng": -9.737374, "qer": -9.737374, "qf": -9.737374, "qf/Bx": -9.737374, "qg": -9.044227, "qg/j": -9.737374, "qgEmIZ": -9.737374, "qgbSJLeQuxqmxhO": -9.737374, "qglITpdT": -9.737374, "qgrSqDpl": -9.737374, "qhMO": -9.737374, "qhMiGQNQM": -9.737374, "qhORtN": -9.737374, "qhPjbXCCwMNp/ZTUXVdQwuw": -9.737374, "qhjO": -9.737374, "qhjcreBe": -9.737374, "qhlYS": -9.737374, "qhoXIyRrC": -9.737374, "qi": -9.044227, "qiOuRkcZHsGotVnUuXXEq/": -9.737374, "qiS": -9.737374, "qid": -9.737374, "qiskXIkWbG": -9.737374, "qistJ": -9.737374, "qiw": -9.737374, "qjEO": -9.737374, "qjlmfd": -9.737374, "qk": -9.044227, "qkOgPT": -9.737374, "qkz": -9.737374, "ql": -9.737374, "qlEgpah": -9.737374, "qltquO/m": -9.737374, "qlysS": -9.737374, "qmBOzRXTJrls": -9.737374, "qmTOtiurCVmczTiPJhKawTgk": -9.737374, "qmiIc": -9.737374, "qndcVjGth": -9.737374, "qnf": -9.737374, "qnsWGMzw": -9.737374, "qoPkTtuiWSVbINelE": -9.737374, "qoQjtgTbtrjMyjfdn": -9.737374, "qoRzOHvTohBNmufdM": -9.737374, "qoY/Xa/H": -9.737374, "qolMQ": -9.737374, "qoqdIKQjNnRaJteLijeklVGQL": -9.737374, "qovjud": -9.737374, "qp": -9.044227, "qpFKfe": -9.737374, "qpQq": -9.737374, "qprLjr": -9.737374, "qpshhgXGRfnUKZaLR": -9.737374, "qpwXfU": -9.737374, "qq": -9.737374, "qqeyH": -9.737374, "qqr/SSNkYgClLBRHQRNSQJPbbXEuZc": -9.737374, "qqvAlnYHTL": -9.737374, "qqwi": -9.737374, "qrNSxWSmn": -9.737374, "qrjmUnAmzg": -9.737374, "qrlzswHR": -9.737374, "qrnFnM": -9.737374, "qs/f": -9.737374, "qsMdj": -9.737374, "qsVJisLuz": -9.737374, "qsZ/uN": -9.737374, "qt": -9.737374, "qtMBOwDYtRA": -9.737374, "qtNtG": -9.737374, "qtSCf/f": -9.737374, "qtbKBPHG": -9.737374, "qud": -9.737374, "queNY": -9.737374, "quu": -9.737374, "quwuvktkkm": -9.737374, "quyR": -9.737374, "qv": -9.737374, "qvIoUMrGqoDn/": -9.737374, "qvYntSOCTKBozOTZoMPHS": -9.737374, "qvnfLa": -9.737374, "qvxtS": -9.737374, "qw": -9.044227, "qwGpRbXdxW": -9.737374, "qx": -9.044227, "qx/GL//yN/lv/r": -9.737374, "qxBOx": -9.737374, "qxPTVmsrolIZuZRJzD": -9.737374, "qxRUObKxnG": -9.737374, "qxZB": -9.737374, "qy": -9.737374, "qyPmRtrgZKGe": -9.737374, "qySIW": -9.737374, "qyUjJRgyZV": -9.737374, "qz": -9.737374, "qzdeW": -9.737374, "r": -5.976174, "r/": -9.044227, "r//U": -9.737374, "r/C": -9.737374, "r/ZK": -9.737374, "r/xx": -9.737374, "rA": -9.044227, "rAD": -9.737374, "rAEPmiW": -9.737374, "rANDlJ": -9.737374, "rAeT": -9.737374, "rAqqRkBwMtTAob": -9.737374, "rB": -9.737374, "rBBz": -9.737374, "rBEHmlINZ": -9.737374, "rBJHg": -9.737374, "rBRZk": -9.737374, "rBfmLqRw": -9.737374, "rBgjsLzuvYDVRhrcsai": -9.737374, "rBrbW": -9.737374, "rC": -9.737374, "rCKXfgtD": -9.737374, "rD": -9.737374, "rD/jg": -9.737374, "rDH": -9.737374, "rDvz": -9.737374, "rE": -9.044227, "rEQIvhXQBbm": -9.737374, "rESXuaiw": -9.737374, "rEUQ": -9.737374, "rEtd": -9.737374, "rEyXKGVZkBLEMVnCLzR": -9.737374, "rF": -9.737374, "rFOZN": -9.737374, "rFzca": -9.737374, "rGDnbys": -9.737374, "rGoxV/": -9.737374, "rH": -9.737374, "rH/": -9.737374, "rHCtnm": -9.737374, "rHUmUtxoOohCV": -9.737374, "rHcIPpYl": -9.737374, "rHj": -9.737374, "rHmYhBSByq": -9.737374, "rI": -9.737374, "rIVuTUZxTptKPxqhtHD": -9.737374, "rJMjgjlDnIlwhlW": -9.737374, "rJh": -9.737374, "rJhNlXirQwB": -9.737374, "rJhtDs": -9.737374, "rJj/": -9.737374, "rJpRiEdgtlEnvAR": -9.737374, "rJsq": -9.737374, "rLA": -9.737374, "rLHmjFOe": -9.737374, "rLPQa": -9.737374, "rLbiA": -9.737374, "rLtE": -9.737374, "rM": -9.737374, "rMMeggRZgBVj": -9.737374, "rMenK": -9.737374, "rMrJsjDmZU": -9.737374, "rNGNS": -9.737374, "rNTmYoZzTDNuYwcKJumF": -9.737374, "rNUzZ": -9.737374, "rNeYK": -9.737374, "rOEGM": -9.737374, "rOz": -9.737374, "rP/J": -9.737374, "rPP": -9.737374, "rQhQHPkVxn": -9.737374, "rR": -9.737374, "rRReo": -9.737374, "rRj/": -9.737374, "rRy": -9.737374, "rSFH": -9.737374, "rSHSYc": -9.737374, "rSSseHdX": -9.737374, "rSaPq": -9.737374, "rSx": -9.737374, "rT": -9.737374, "rTddgDjihXrddEHSvL": -9.737374, "rTeKpj": -9.737374, "rTlOo": -9.737374, "rTlbxFN": -9.737374, "rTmjd": -9.737374, "rTzTfWvEgjHWIiDgO": -9.737374, "rUKEaij": -9.737374, "rUWudch": -9.737374, "rUeg": -9.737374, "rUqYkEt": -9.737374, "rUvm": -9.737374, "rUvomGEelNFlvTRjv/Rl": -9.737374, "rVA": -9.737374, "rVJ": -9.737374, "rVOYQVHpd": -9.737374, "rVYzOTsMH": -9.737374, "rVZ": -9.737374, "rW": -9.044227, "rWPXYWJbSqf": -9.737374, "rXF": -9.737374, "rXWitXFj//Kv": -9.737374, "rXYq": -9.737374, "rXzD": -9.737374, "rY": -9.044227, "rYaSWZrx": -9.737374, "rYtxVeHBUjgUtUV": -9.737374, "rZYJAnVL": -9.737374, "ra": -9.044227, "raMmaO": -9.737374, "radiQ": -9.737374, "rbOFWVyJbJJUktuBytStEqXLNhHFqbrmroMk": -9.737374, "rbi": -9.737374, "rbtixvGkV": -9.737374, "rcDTg": -9.737374, "rcPXt": -9.737374, "rcifHyKF": -9.737374, "rcmibBgrl": -9.737374, "rd": -9.737374, "rdBTg/kRcIbcLxeqCBXQqHGz": -9.737374, "rdRkCUlCpxaQb": -9.737374, "rdTZK": -9.737374, "re": -9.044227, "reRGfDkaH": -9.737374, "refy": -9.737374, "rejsnbKWnLWJqr": -9.737374, "remqBZi": -9.737374, "rettvmgBWj": -9.737374, "rf": -8.638762, "rf/iE": -9.737374, "rfCsWVnD": -9.737374, "rfFBlALmGpBtQ": -9.737374, "rfb": -9.737374, "rfmjRAet": -9.737374, "rftUHQ": -9.737374, "rfuKtLGc": -9.737374, "rg": -8.351080, "rgI": -9.737374, "rgiHS": -9.737374, "rgnMVtNg": -9.737374, "rguwbg": -9.737374, "rh": -9.737374, "rhZchz": -9.737374, "rhh": -9.737374, "rhyE": -9.737374, "rhyajXmKokY": -9.737374, "riAMcHlhNlG": -9.737374, "riCNStXVOaMDamCfPk": -9.737374, "riiX": -9.737374, "rire": -9.737374, "rizY": -9.737374, "rk": -9.737374, "rkI": -9.737374, "rkfeBHx": -9.737374, "rkhCBW": -9.737374, "rkn/lnfw": -9.737374, "rkrbNO": -9.737374, "rkss": -9.737374, "rkyd/eWPOReNa": -9.737374, "rlVIGqUQKKUCJngWYQCBmKGivEm": -9.737374, "rlYOK": -9.737374, "rlnkF": -9.737374, "rlyviXvLwsPFONRMqYV": -9.737374, "rm": -9.737374, "rmjH": -9.737374, "rmsc": -9.737374, "rn": -9.737374, "rnFHoRcxjS": -9.737374, "rnJS": -9.737374, "rnT/LJn/": -9.737374, "rnZnevN": -9.737374, "rnfVzWTb": -9.737374, "rnjUZ": -9.737374, "rnoaNmAkWQ": -9.737374, "rnwJoXdCr": -9.737374, "rnxvsZgF": -9.737374, "rnzpfbMyUwb": -9.737374, "roXGQErAlzTt": -9.737374, "roXjwag": -9.737374, "rovj": -9.737374, "rp": -9.737374, "rprypDy": -9.737374, "rpx": -9.737374, "rq": -9.044227, "rqGdqc": -9.737374, "rqfFZS": -9.737374, "rqu/vFd": -9.737374, "rr/": -9.737374, "rrjNPHDNXJXN": -9.737374, "rry": -9.737374, "rsLLTj": -9.737374, "rsRDJKhM": -9.737374, "rsgjr": -9.737374, "rsmOKCSGwVBixDWC": -9.737374, "rsqB": -9.737374, "rsxSJocKs": -9.737374, "rtLJ": -9.737374, "rtMePP/rk/wd": -9.737374, "rtSVjKSbXUzeYuyNSgrRxuQ": -9.737374, "rtdDqSKS": -9.737374, "rtvTgx": -9.737374, "rtysLBh": -9.737374, "ruRuDiE": -9.737374, "ruTjAyIWczUWDa": -9.737374, "ruieqDWVe": -9.737374, "rupEPCPXMv": -9.737374, "rv": -9.737374, "rvA": -9.737374, "rvU": -9.737374, "rvnUb": -9.737374, "rvrFIXr": -9.737374, "rvw/Z": -9.737374, "rvws/F": -9.737374, "rw": -9.044227, "rwZ": -9.737374, "rwk": -9.737374, "rx": -9.737374, "rxHgg": -9.737374, "ryEhM": -9.737374, "rycnXQBhWjPYqrJiNTU": -9.737374, "rzIoejjZmNIprs/yh//tHefEDP": -9.737374, "rzgebl": -9.737374, "rzjB": -9.737374, "rzzm/Md": -9.737374, "s": -5.908733, "s/zee/oN/Fz/": -9.737374, "sA": -9.044227, "sALW": -9.737374, "sASKi": -9.737374, "sAgGUplEMTVJ": -9.737374, "sAozIky": -9.737374, "sBXxXzwdHOO": -9.737374, "sBuSc": -9.737374, "sC": -9.044227, "sCFz/ngK": -9.737374, "sCVG": -9.737374, "sCxm": -9.737374, "sDNGovfOqTmnZowmfGkK": -9.737374, "sE": -9.737374, "sE/QmLLCEx": -9.737374, "sEEWVaDppJwondjNjJRABLzA": -9.737374, "sEXzS/MuYT": -9.737374, "sEjtTA": -9.737374, "sEstg": -9.737374, "sFFbVvInIt": -9.737374, "sFSjLD": -9.737374, "sFe": -9.737374, "sFs": -9.737374, "sFsuMs": -9.737374, "sG": -9.737374, "sGCO": -9.737374, "sGSxggu": -9.737374, "sGbHPYllzFaMqefsRLpt": -9.737374, "sGiKnTJFDIWfcmohS": -9.737374, "sGkYBP": -9.737374, "sH": -9.737374, "sHLxdC": -9.737374, "sHNlEVNdfVcy": -9.737374, "sHQ": -9.737374, "sHu": -9.737374, "sI": -9.737374, "sIdW": -9.737374, "sIiIA": -9.737374, "sIsEJeDYFb": -9.737374, "sJBMCjXH": -9.737374, "sJVY/Y": -9.737374, "sJar/U": -9.737374, "sK": -9.737374, "sKH": -9.737374, "sKLF/DqcuXV": -9.737374, "sKSLnZk": -9.737374, "sKdu/uDuxfw": -9.737374, "sKquZR": -9.737374, "sL": -9.737374, "sLNXPxCmZ": -9.737374, "sLapqpYx": -9.737374, "sLkY": -9.737374, "sM": -9.044227, "sMgKYJLPWBtipzlTRporZGZ": -9.737374, "sMihVI": -9.737374, "sMm": -9.737374, "sN": -9.737374, "sNIMqrlitT": -9.737374, "sNM": -9.737374, "sNeq": -9.737374, "sO": -9.044227, "sOK": -9.737374, "sORz": -9.737374, "sOZeUESp": -9.737374, "sP": -9.737374, "sPKJrVBRLCvzzci": -9.737374, "sQ": -9.737374, "sQKk/UBpOJiyPV": -9.737374, "sR": -8.351080, "sRILXn/ksl": -9.737374, "sRskBRDgvuh": -9.737374, "sS": -9.737374, "sSOOLpmWdLr": -9.737374, "sSVk/o": -9.737374, "sSdws": -9.737374, "sStd": -9.737374, "sSuhTGmSS": -9.737374, "sT": -9.044227, "sTIYlRze": -9.737374, "sTM": -9.737374, "sUIg": -9.737374, "sUYphZBGIUVM": -9.737374, "sV": -9.737374, "sVL": -9.737374, "sVN": -9.737374, "sVaTTbjBc": -9.737374, "sVd": -9.737374, "sVdrQB/CIRs": -9.737374, "sVgVzqwDscLA": -9.737374, "sVyxRG": -9.737374, "sWI/n": -9.737374, "sWWjxmUxNZlwfLaHNiiWcdGkrkoJJ": -9.737374, "sWrJpFioPkXC": -9.737374, "sXOijeGAFJcZKcst": -9.737374, "sY": -9.737374, "sY/Uv": -9.737374, "sYE": -9.737374, "sYL": -9.737374, "sYYzm": -9.737374, "sYwcOLppy": -9.737374, "sZ": -9.044227, "sZU": -9.737374, "sZvSVRndcLMhb": -9.737374, "saH": -9.737374, "saR": -9.737374, "saYq": -9.737374, "sadGS": -9.737374, "sb": -8.638762, "sbbFzcQ": -9.737374, "sbfrWFDT": -9.737374, "sbgf": -9.737374, "sbtCYavlUgm": -9.737374, "sbz": -9.737374, "sc": -9.737374, "scan": -9.737374, "sd": -9.737374, "sddG": -9.737374, "sdmpH": -9.737374, "se": -9.044227, "seHSGHEwy": -9.737374, "seehAyTImrrpSHVcb": -9.737374, "serdLM": -9.737374, "sf": -9.737374, "sfUEtsk": -9.737374, "sfX": -9.737374, "sfvhHfpif": -9.737374, "sg/": -9.737374, "sh": -9.044227, "shGctGqjEtp": -9.737374, "shYn": -9.737374, "shaLGYm": -9.737374, "shgloyfbfoUdy": -9.737374, "shnxXPlr": -9.737374, "siZgu": -9.737374, "siaslYbYIEuPGUtVSuJcThwcLTy": -9.737374, "sibDHt": -9.737374, "sjDzkht": -9.737374, "sjNljCa": -9.737374, "sjtooVikOrRbuh": -9.737374, "sk": -9.044227, "skEfoksEa": -9.737374, "skI": -9.737374, "skjB": -9.737374, "skyKhZhvg/UYHhjyOsr": -9.737374, "sl/FV": -9.737374, "slGpxtvMu": -9.737374, "slMc/StV": -9.737374, "slW": -9.737374, "slZwTcHsX": -9.737374, "sliOMj": -9.737374, "slxeeXSIottNOgpPfGauA": -9.737374, "sm": -9.737374, "smEfTZHKzg": -9.737374, "smYAg": -9.737374, "smePM": -9.737374, "snCR": -9.737374, "snJLnpZUdeVSIZZS": -9.737374, "snLVZUyyWzMV": -9.737374, "snZJRmQ": -9.737374, "snk": -9.737374, "snr/bCI": -9.737374, "sof": -9.737374, "sp": -9.737374, "spTiur": -9.737374, "spXBqO": -9.737374, "spheDlrJinxBuL": -9.737374, "spnOkSCj": -9.737374, "spqQAy": -9.737374, "sq": -8.638762, "sqCKfJb": -9.737374, "sqECNQgZSCaxiqpBGvzCj/": -9.737374, "sqIPKBQixxsXzHFqwaSpTtUbyYE": -9.737374, "sqg": -9.737374, "sqtmovhdCxptxgmYTaDHiew": -9.737374, "srKZfDSKJSkB": -9.737374, "ss": -9.044227, "ssAbrrPsVldWPwPdFW": -9.737374, "ssVS": -9.737374, "ssoqLI": -9.737374, "ssug": -9.737374, "stLtpZw": -9.737374, "stP": -9.737374, "stXVXKEK": -9.737374, "stZEw": -9.737374, "stwp": -9.737374, "su": -9.737374, "subBUWNfEvWPiwSFx": -9.737374, "sucF": -9.737374, "sv": -9.737374, "svG": -9.737374, "svJE": -9.737374, "svURegNYuqAwvYozgrzi/ZG": -9.737374, "svYjEvKJyQ": -9.737374, "svaFQ": -9.737374, "sw": -9.737374, "sx": -9.737374, "sxRgHc": -9.737374, "sxYy": -9.737374, "sxaaJTJ": -9.737374, "sxc": -9.737374, "sy": -9.737374, "syE": -9.737374, "syNNuO": -9.737374, "syOKdjrYiV": -9.737374, "syjPvj": -9.737374, "symNv": -9.737374, "sz": -9.044227, "szUsdnpq": -9.737374, "szd": -9.737374, "szpOkHL": -9.737374, "szsAxaFY": -9.737374, "szy": -9.737374, "t": -5.953184, "t/": -8.638762, "t/GT": -9.737374, "t/jj/": -9.737374, "tAPqYqzbyf": -9.737374, "tAh": -9.737374, "tB": -9.737374, "tBEBjMRkHObNztFI": -9.737374, "tBXnRCaqm": -9.737374, "tC": -8.351080, "tCJ": -9.737374, "tCJyv/aq/EzDuh": -9.737374, "tD": -9.737374, "tDVdcggTmNOprCZ": -9.737374, "tDelrr": -9.737374, "tECKy": -9.737374, "tEK": -9.737374, "tEhVGitkAj": -9.737374, "tEuJH//p": -9.737374, "tEwE": -9.737374, "tF": -9.737374, "tFYUtFZuw": -9.737374, "tFd/xB": -9.737374, "tFk": -9.737374, "tFpovZkBYh": -9.737374, "tGc": -9.737374, "tGch": -9.737374, "tGhioR": -9.737374, "tGjVYqT": -9.737374, "tGt": -9.737374, "tGwz": -9.737374, "tH": -9.044227, "tHgfK": -9.737374, "tI": -9.737374, "tJctK": -9.737374, "tJkdNWqk": -9.737374, "tK/": -9.737374, "tKB": -9.737374, "tKIm": -9.737374, "tKTl": -9.737374, "tKVfqYI": -9.737374, "tKaTG": -9.737374, "tKiGjySJmZDrVVefZKYdFbpdgmp": -9.737374, "tL": -9.044227, "tLCi": -9.737374, "tLD": -9.737374, "tLDc": -9.737374, "tLOHerE": -9.737374, "tLQ": -9.737374, "tLbK": -9.737374, "tLg": -9.737374, "tLhsw": -9.737374, "tMMp": -9.737374, "tMO": -9.737374, "tMXYrLWGYadaXmlHQBhNbetEvSVVll": -9.737374, "tMiEqsi": -9.737374, "tNZZZIe": -9.737374, "tNdkEo": -9.737374, "tNoxhAz": -9.737374, "tNzzNZdocYbR": -9.737374, "tOAr": -9.737374, "tOiQtzjcKqVea": -9.737374, "tP": -9.044227, "tPtDiRrarB": -9.737374, "tQ": -9.737374, "tQi": -9.737374, "tQiCx": -9.737374, "tQnbkeXtzgEyErAmqSQ": -9.737374, "tRJLunV/yX/": -9.737374, "tRSefeZqPkZ": -9.737374, "tRTqQ/vlvH": -9.737374, "tRx": -9.737374, "tS": -9.737374, "tSZ": -9.737374, "tSaCLoZnAKYYOZm": -9.737374, "tScVZfErlynZuWtGqxL": -9.737374, "tT": -9.737374, "tTC": -9.737374, "tTbTNwryyozTq": -9.737374, "tTduXZNIDpk": -9.737374, "tTeS": -9.737374, "tTjgDDnXmWoQZSuBLGQWntda": -9.737374, "tU": -8.638762, "tUJm": -9.737374, "tUNRMf": -9.737374, "tUhWE": -9.737374, "tUiZ": -9.737374, "tV": -9.737374, "tVB": -9.737374, "tVoNqozIRMYofF": -9.737374, "tW": -9.044227, "tWBLPvh/nWhYEQxm": -9.737374, "tWIbPra": -9.737374, "tWKLmKk": -9.737374, "tWP": -9.737374, "tWYoi": -9.737374, "tWZnoxrDEwsht": -9.737374, "tXDMhftr": -9.737374, "tXNioYtWaEn": -9.737374, "tXVibtAhbKZFtN": -9.737374, "tXrOXLQxE/cYdoi": -9.737374, "tXv/mz": -9.737374, "tYFtOqjGB": -9.737374, "tYGp": -9.737374, "tYKT": -9.737374, "tYVyXKvuKy": -9.737374, "tYhE": -9.737374, "tYwolutNlKwUgfQaIPztog": -9.737374, "tYxOkQ": -9.737374, "tZ": -9.044227, "tZFXMssWgJlTKv": -9.737374, "tZNaGorHJ": -9.737374, "tZO/": -9.737374, "tZcbBaxFww/SxFKFNIGyAX": -9.737374, "ta": -9.737374, "taNuLEVnDNuVgoZWXmdy": -9.737374, "tb": -9.044227, "tbdSkwNicXFi": -9.737374, "tbisl": -9.737374, "tc": -9.044227, "tcXFOJS": -9.737374, "tcmtVe": -9.737374, "td": -9.737374, "tdSyaF": -9.737374, "tdV": -9.737374, "tddNUZ": -9.737374, "te": -9.737374, "teElY": -9.737374, "tePNZF": -9.737374, "tesUegNxe": -9.737374, "tf": -8.638762, "tfM": -9.737374, "tfQ": -9.737374, "tfwXf": -9.737374, "tfzt": -9.737374, "tgDnyTZGHpohOWoy": -9.737374, "tgPrnvnLd": -9.737374, "tgdalftAJWU": -9.737374, "th": -9.737374, "thBHaqD": -9.737374, "thD": -9.737374, "thtI": -9.737374, "thwd": -9.737374, "ti": -9.737374, "tifYzUWi": -9.737374, "timBEkyLZXBKbmkp": -9.737374, "tiu": -9.737374, "tixGnUx": -9.737374, "tj": -9.737374, "tjA": -9.737374, "tjMq": -9.737374, "tjbVTWnDyXxTwbK": -9.737374, "tjje": -9.737374, "tjsYJBELvZj": -9.737374, "tjt": -9.737374, "tkKuij": -9.737374, "tkrfFgOufGxbkMOC": -9.737374, "tkxMbwFzyVNuKUF": -9.737374, "tlLDxCQ": -9.737374, "tldeYKHg": -9.737374, "tmJ": -9.737374, "tmQs": -9.737374, "tmq": -9.737374, "tn": -8.638762, "tnh": -9.737374, "toD/F": -9.737374, "toQ": -9.737374, "toU": -9.737374, "tobbwXHALdU": -9.737374, "tom": -9.737374, "tp": -9.737374, "tpKeVMyYbJLrIF": -9.737374, "tpRuF": -9.737374, "tpmmmOQleXVu": -9.737374, "tq": -9.737374, "tqVTnCYvmkzO": -9.737374, "trSs": -9.737374, "trU": -9.737374, "trZTAzH": -9.737374, "trbn": -9.737374, "trc": -9.737374, "trl": -9.737374, "trmDitYGpi": -9.737374, "true": -9.737374, "ts": -9.737374, "tsluBSarjpZl": -9.737374, "tt": -9.737374, "tt/": -9.737374, "ttDVH": -9.737374, "ttGaSkEW": -9.737374, "ttLk/PgFP": -9.737374, "ttNsGk": -9.737374, "ttWWgTepxbhqxTSaMt": -9.737374, "ttseZkBjxO": -9.737374, "tuypwTfYNU": -9.737374, "tvB": -9.737374, "tvH": -9.737374, "tvT": -9.737374, "tvYKkmnmzktlXqAClh": -9.737374, "tvo": -9.737374, "tvpjifXJ": -9.737374, "tw": -9.737374, "twI": -9.737374, "twVTbrIW": -9.737374, "twVqnDA": -9.737374, "twpabXeSGVe": -9.737374, "txcvitPLOh": -9.737374, "txmCMSuBp": -9.737374, "txzIaARX": -9.737374, "tyG/fL": -9.737374, "tyJTRwS": -9.737374, "tyOMRaOxuPcB": -9.737374, "tyjAMYRSJ": -9.737374, "tz": -8.638762, "tzg": -9.737374, "tziu": -9.737374, "u": -7.657932, "u/O": -9.737374, "u/xiSMTY": -9.737374, "uAWjaDdOf": -9.737374, "uBOTU": -9.737374, "uBn/o//ld/yD/": -9.737374, "uBwnuMCNLp": -9.737374, "uDWjYim": -9.737374, "uEG": -9.737374, "uFbGeEC": -9.737374, "uFgeJjeeR": -9.737374, "uHGBNv": -9.737374, "uJ": -9.737374, "uL": -9.737374, "uLCZJSSYLcUo": -9.737374, "uM": -9.737374, "uMUBqToKHc": -9.737374, "uONTY": -9.737374, "uSjWmUZnerH": -9.737374, "uTrNBQG": -9.737374, "uUQHKl": -9.737374, "uVd": -9.737374, "uXOylu": -9.737374, "ubWoWmS": -9.737374, "ucHJW": -9.737374, "ufVSDOnD": -9.737374, "ufX": -9.737374, "ufj": -9.737374, "uio": -9.737374, "uip": -9.737374, "ujJRCc": -9.737374, "ujfx": -9.737374, "ul": -9.737374, "ulJKsJUzm": -9.737374, "ulkgk": -9.737374, "uo": -9.737374, "uqWTFygjthJuM": -9.737374, "urqJh": -9.737374, "utL": -9.737374, "uv": -9.737374, "uvtuRcFDETq": -9.737374, "uw": -9.737374, "uwsInFZIbTXNFJbjI": -9.737374, "uxJ": -9.737374, "v": -5.730041, "v/": -9.737374, "v/Jp/": -9.737374, "v/N": -9.737374, "v/WX": -9.737374, "v/pGbfD": -9.737374, "v/y": -9.737374, "v/z//F": -9.737374, "vA": -9.737374, "vAJjzE": -9.737374, "vAuK": -9.737374, "vAzfDhnq/YRB": -9.737374, "vBCJkVQV": -9.737374, "vBpvH": -9.737374, "vCTxKd": -9.737374, "vClbS": -9.737374, "vD": -9.737374, "vDAkV": -9.737374, "vDUBRx": -9.737374, "vDZlQ": -9.737374, "vDlAGrSgUs": -9.737374, "vDy": -9.737374, "vEDz": -9.737374, "vEh": -9.737374, "vEhwPfRnTbEyv": -9.737374, "vF": -9.044227, "vF/dYpVZVALYpViQwBoKd": -9.737374, "vFm": -9.737374, "vFwZco": -9.737374, "vG": -9.737374, "vGGqXO": -9.737374, "vGU": -9.737374, "vGywtn": -9.737374, "vHC": -9.737374, "vHFtoe": -9.737374, "vHI": -9.737374, "vHVWNW": -9.737374, "vHsnp": -9.737374, "vI": -9.737374, "vIT": -9.737374, "vIUiZjKE": -9.737374, "vJ": -8.638762, "vJ/aP": -9.737374, "vJXc": -9.737374, "vKFi": -9.737374, "vKrqMasF": -9.737374, "vL": -9.044227, "vL/u": -9.737374, "vLGOIps": -9.737374, "vLZtECgldDOWkqhk": -9.737374, "vLavYN/AZ": -9.737374, "vLuzufpHUifoVBHD": -9.737374, "vMCKINliXs/gNKeve": -9.737374, "vMOJpM": -9.737374, "vNntC": -9.737374, "vNrPwHc": -9.737374, "vNuIuAJ": -9.737374, "vO": -8.638762, "vOOlB": -9.737374, "vPFzuOo": -9.737374, "vPH": -9.737374, "vPdDvOnZp": -9.737374, "vQcepORMm": -9.737374, "vQk/VQrJdtTXQx": -9.737374, "vR": -9.044227, "vRC": -9.737374, "vRdTxpdtbXDzSyDxDMYqyjvjYK": -9.737374, "vRlAYLG": -9.737374, "vS": -9.737374, "vSaArjUuiXkBvfUJn": -9.737374, "vSaHFh": -9.737374, "vSaM": -9.737374, "vSrk": -9.737374, "vStItnWlQXRJSM": -9.737374, "vT": -9.044227, "vTFWQJU": -9.737374, "vTjCmk": -9.737374, "vTlVwy/": -9.737374, "vTpYKL/PknY": -9.737374, "vTzk": -9.737374, "vUDKKhsYhX": -9.737374, "vUXRPI": -9.737374, "vUetBFdKstFQyHV": -9.737374, "vV": -9.737374, "vWHKo": -9.737374, "vWirLFHUW": -9.737374, "vWlmipUT": -9.737374, "vWsgCMS": -9.737374, "vWtwzWNHw": -9.737374, "vX": -9.737374, "vX//z": -9.737374, "vXCi": -9.737374, "vXFbWsZfvADD": -9.737374, "vYCTn": -9.737374, "vYKaqq": -9.737374, "vYcskn": -9.737374, "vZA": -9.737374, "vZQo/hqVx/Pk": -9.737374, "vZpKFUotFJ": -9.737374, "vZv/jQf": -9.737374, "va": -9.737374, "vaW/Mpdia": -9.737374, "vam": -9.737374, "vaqUvAcMyFJhypiBqV": -9.737374, "vax": -9.737374, "vbGFyRrHQwwyLJAFMjFn": -9.737374, "vbZWBJ": -9.737374, "vbhuMEMho": -9.737374, "vbjIefYU": -9.737374, "vbnfpSrT/": -9.737374, "vc": -9.044227, "vcV": -9.737374, "vcmWd": -9.737374, "vcqshjj": -9.737374, "vdSQSkSSrUFZ": -9.737374, "vdwfP": -9.737374, "ve": -8.127936, "veIfeivJiuEwTNNQKdac": -9.737374, "vebi": -9.737374, "vedO/mot": -9.737374, "veg": -9.737374, "vf": -9.044227, "vf//WZL": -9.737374, "vfO/XuM/BT/": -9.737374, "vfQvasMOkne": -9.737374, "vfeWMAwsYJR": -9.737374, "vfh": -9.737374, "vfxSB": -9.737374, "vfy": -9.737374, "vfz/": -9.737374, "vhcpTmxX": -9.737374, "vhunXzTyzTX": -9.737374, "vhwojnkntMNV": -9.737374, "vi//": -9.737374, "viMNpJhnKZr": -9.737374, "viPnj": -9.737374, "viWKQZl": -9.737374, "viYIPsep": -9.737374, "viZcjtT": -9.737374, "vj": -9.044227, "vjDX/vP": -9.737374, "vjI": -9.737374, "vjMCXus": -9.737374, "vjYEI": -9.737374, "vjv": -9.737374, "vk/TO": -9.737374, "vkHQ": -9.737374, "vkmTHAVPAZNIWEODdrdBskU": -9.737374, "vl/kpWPKRb": -9.737374, "vlQj": -9.737374, "vlTP": -9.737374, "vm": -8.638762, "vmY/jtotnvNycuX/vPqfteX": -9.737374, "vmd": -9.737374, "vmn": -9.737374, "vmzioUBCZae": -9.737374, "vn": -9.737374, "vnIdxVZ/k": -9.737374, "vnKe": -9.737374, "vnR": -9.737374, "vndJrtjZCy": -9.737374, "vndLtz": -9.737374, "vnzFd/xZ": -9.737374, "vowS": -9.737374, "vp": -8.638762, "vpvu": -9.737374, "vqt": -9.737374, "vr": -9.737374, "vrD": -9.737374, "vrXfOMQaNZ": -9.737374, "vs": -9.737374, "vsTe": -9.737374, "vsWHM": -9.737374, "vskmGBlfGcmqvbbumbNc": -9.737374, "vstV": -9.737374, "vt": -9.737374, "vtJOxx": -9.737374, "vtWus": -9.737374, "vthwMvL": -9.737374, "vtiCUfBkY": -9.737374, "vu/": -9.737374, "vuBz": -9.737374, "vueiOOTk": -9.737374, "vujD": -9.737374, "vvMB": -9.737374, "vvRiCHITaYZbgK": -9.737374, "vvUeN": -9.737374, "vvUtH": -9.737374, "vvdRi": -9.737374, "vvfI": -9.737374, "vwrJGPsy": -9.737374, "vx/kq": -9.737374, "vxK": -9.737374, "vxXxa": -9.737374, "vxuVQjlGYOS": -9.737374, "vy": -8.638762, "vyDT": -9.737374, "vyNFvY": -9.737374, "vyePR": -9.737374, "vynEp": -9.737374, "vywFvM": -9.737374, "vzWKoyw": -9.737374, "vzeX": -9.737374, "vzhMcjwaTeWGpg": -9.737374, "vzwSHd": -9.737374, "w": -5.694323, "w/nMjovLweP": -9.737374, "wAA": -9.737374, "wApwUxtz": -9.737374, "wB": -9.737374, "wBIZVI": -9.737374, "wBZwwmSeny": -9.737374, "wBa": -9.737374, "wBdSbkIN": -9.737374, "wBicP": -9.737374, "wBmts": -9.737374, "wBrWxWb/rW": -9.737374, "wBvznVnfUCsykKxe": -9.737374, "wCLFnTUZK": -9.737374, "wChG": -9.737374, "wCl//h": -9.737374, "wDmh": -9.737374, "wDxu": -9.737374, "wEK": -9.737374, "wEM": -9.737374, "wFjzdnHtR": -9.737374, "wFu": -9.737374, "wG": -9.737374, "wGJIBjriw": -9.737374, "wGLxPJzna": -9.737374, "wGUImSsDUbT": -9.737374, "wGZzXM": -9.737374, "wGgeXIpvHmoK": -9.737374, "wGuUK/j": -9.737374, "wH/yu/A": -9.737374, "wHGR": -9.737374, "wHNvKslFUixoBgcI": -9.737374, "wHPpOSh/ygdNz": -9.737374, "wHpCUot": -9.737374, "wICaiTnGijFzE": -9.737374, "wJ": -9.737374, "wJLszVCUXtWAzClSZgy/Sel": -9.737374, "wJbLkzrNEmjak": -9.737374, "wJhxuvN": -9.737374, "wJoGj": -9.737374, "wJoQlrsGOzdWg": -9.737374, "wKZ": -9.737374, "wKqcx/J": -9.737374, "wKy": -9.737374, "wL": -9.737374, "wLA": -9.737374, "wLO": -9.737374, "wLVRB": -9.737374, "wLXj": -9.737374, "wM": -9.737374, "wMJ": -9.737374, "wMPvO": -9.737374, "wMfy": -9.737374, "wN": -9.044227, "wNINQ": -9.737374, "wNypZxGK/OLISbRdrd": -9.737374, "wO": -9.737374, "wOGWeOAZXRzgtcHVInErmWBJLGqwmkX": -9.737374, "wOGgtgImb": -9.737374, "wOPBx": -9.737374, "wOQ": -9.737374, "wPfBRYCiZfCTI": -9.737374, "wPqoKqtkboi": -9.737374, "wPtt": -9.737374, "wPwArNO": -9.737374, "wQ": -9.044227, "wQEv": -9.737374, "wQvxnmxm": -9.737374, "wR": -9.737374, "wR/": -9.737374, "wRDRWJhfvnDvi": -9.737374, "wRKYxKKwqh": -9.737374, "wRObliAqh": -9.737374, "wRQYawURN": -9.737374, "wRpj/": -9.737374, "wS": -8.638762, "wSgmzz": -9.737374, "wSjYmZxIcChdzXuzh": -9.737374, "wSnSh": -9.737374, "wSo": -9.737374, "wSqK": -9.737374, "wSzRfFkWbKai": -9.737374, "wTf/I/": -9.737374, "wToX": -9.737374, "wUtJLs": -9.737374, "wUx": -9.737374, "wUynpf": -9.737374, "wV/x": -9.737374, "wVHMggUdt": -9.737374, "wVHWx": -9.737374, "wVL": -9.737374, "wVNU": -9.737374, "wViTIuRSDYwZkY": -9.737374, "wVlmptvwSvdGWxcWKvsWRBa": -9.737374, "wVtiOWl": -9.737374, "wWA": -9.737374, "wWE": -9.737374, "wWEyFKE": -9.737374, "wWPuBU": -9.737374, "wWWi": -9.737374, "wWjP": -9.737374, "wWuoGX/uz": -9.737374, "wX": -9.737374, "wXKX": -9.737374, "wXXzrwJsz": -9.737374, "wXZmX/DS": -9.737374, "wXvhlE": -9.737374, "wY": -9.044227, "wYB": -9.737374, "wYQivNRW": -9.737374, "wYwb": -9.737374, "wZp": -9.737374, "wZrS": -9.737374, "wZvHohJDPgVNCBqo": -9.737374, "wZvLXx": -9.737374, "wa": -9.044227, "waAHdy": -9.737374, "waZAzL": -9.737374, "wacTBv": -9.737374, "wb": -9.737374, "wbFQdsSJGUM": -9.737374, "wbZ": -9.737374, "wbigr": -9.737374, "wbjnEewg": -9.737374, "wbkfj": -9.737374, "wbl": -9.737374, "wbrYzHlx/kX/wV/x": -9.737374, "wc": -9.044227, "wcOaJtpa": -9.737374, "wcTXCZw": -9.737374, "wcU": -9.737374, "wcYe": -9.737374, "wcc": -9.737374, "wcdbiirGPzrhJlBzsiICGujLS": -9.737374, "wckG": -9.737374, "wcqpEwfa": -9.737374, "wcuI": -9.737374, "wdJOeCnTCJmKqIzOQ": -9.737374, "wdK": -9.737374, "wdWHuXLHoXZS": -9.737374, "wda": -9.737374, "we": -9.737374, "weMpmq": -9.737374, "weYstF": -9.737374, "wenTO": -9.737374, "weymI": -9.737374, "wez": -9.737374, "wezgs/K": -9.737374, "wf": -9.737374, "wfPFqyCEcJZaeYpzWZJNlukHIBrbvGUPJsyb": -9.737374, "wfXqvPP": -9.737374, "wfbnC": -9.737374, "wfdGikWrg": -9.737374, "wg": -9.737374, "wg//lj": -9.737374, "wgRcQd": -9.737374, "whurP": -9.737374, "whva": -9.737374, "why": -9.737374, "wi/": -9.737374, "wieIFEyHM": -9.737374, "wik": -9.737374, "wivFEpYGpTdaGFEyxRZqngOp": -9.737374, "wivLHYt": -9.737374, "wiwmM": -9.737374, "wjB": -9.737374, "wjO": -9.737374, "wjehWFDuXHL": -9.737374, "wjfy": -9.737374, "wk": -9.737374, "wkQ": -9.737374, "wkZuNK": -9.737374, "wkdn": -9.737374, "wkoScXx": -9.737374, "wlFtSHFQt": -9.737374, "wljXfF/": -9.737374, "wlrCT": -9.737374, "wm": -8.351080, "wmNIUrg": -9.737374, "wmWnDF": -9.737374, "wmlcJwYmnWEndNnSEzRMt": -9.737374, "wmouuzUXN": -9.737374, "wmp": -9.737374, "wmpc": -9.737374, "wn": -9.737374, "wnI": -9.737374, "wnvOa/": -9.737374, "wo": -9.044227, "woFYSBIRALK": -9.737374, "wodYlgRsyvWSJn": -9.737374, "wpTUe": -9.737374, "wpaq": -9.737374, "wphc": -9.737374, "wpvNPCYC": -9.737374, "wq": -9.737374, "wqKuCmnNryc": -9.737374, "wqM": -9.737374, "wqS": -9.737374, "wqVBJlIAaKxaWfRFjCRlCEEQlyUDzERRqZe": -9.737374, "wqrQhMpCzDqoaQfQUFA": -9.737374, "wqw": -9.737374, "wr": -9.044227, "wr/PqdsFVYIpLWqnK": -9.737374, "wrHOMgR/O": -9.737374, "wrKbS": -9.737374, "wrnA": -9.737374, "wrucbgDDmnXkD": -9.737374, "ws/yy": -9.737374, "wsHdx": -9.737374, "wsK": -9.737374, "wsPe": -9.737374, "wsaE": -9.737374, "wso": -9.737374, "wsvvu": -9.737374, "wt/": -9.737374, "wtka": -9.737374, "wurUd": -9.737374, "wv//ZjT": -9.737374, "wvPljG": -9.737374, "wvXQtePVof": -9.737374, "wvhWrAE": -9.737374, "ww": -9.737374, "wwJ": -9.737374, "wwzzpqh": -9.737374, "wx": -9.044227, "wy": -9.737374, "wyIukuW": -9.737374, "wyULz": -9.737374, "wyc": -9.737374, "wyealOy": -9.737374, "wzHdj": -9.737374, "wzJCJ": -9.737374, "wzQl": -9.737374, "wznZhSrKxZ": -9.737374, "wzsQ": -9.737374, "wzt": -9.737374, "wzzRhh": -9.737374, "x": -5.908733, "x/": -9.044227, "x/Cp/": -9.737374, "x/DI": -9.737374, "x/NirIpbYdXJysXC": -9.737374, "x/zGaJPWb": -9.737374, "xA": -9.737374, "xAj": -9.737374, "xB": -9.737374, "xBUyLyB": -9.737374, "xBpju": -9.737374, "xCivfZBCOx": -9.737374, "xD": -9.737374, "xDJUUKbz": -9.737374, "xDLTM": -9.737374, "xDwcGS": -9.737374, "xELlZ": -9.737374, "xEMSX": -9.737374, "xFC": -9.737374, "xFmlASkIZqoEXv/SkwAE": -9.737374, "xG": -9.737374, "xGFjCRWay": -9.737374, "xGVxacD": -9.737374, "xGg": -9.737374, "xGtz": -9.737374, "xGy": -9.737374, "xHsro": -9.737374, "xI": -9.737374, "xIIIpAkmEQTFCgwXoJ": -9.737374, "xIeDpeFs": -9.737374, "xIlMAZGwrrk": -9.737374, "xIo": -9.737374, "xJ": -9.737374, "xJ//Vn": -9.737374, "xJVTErU": -9.737374, "xJbC/KEYzPrjA": -9.737374, "xK": -9.737374, "xKDpRM": -9.737374, "xKGUWtIvtW": -9.737374, "xKQ": -9.737374, "xKsZ": -9.737374, "xL": -9.044227, "xLFn": -9.737374, "xLSlWOH": -9.737374, "xLZ": -9.737374, "xLw": -9.737374, "xMKpukCff": -9.737374, "xMRjJYReo": -9.737374, "xNhHFBpsvsAb": -9.737374, "xNmuBZrOHVwgmiiZ": -9.737374, "xNr": -9.737374, "xNyZYoaF": -9.737374, "xOLelLV": -9.737374, "xOLg": -9.737374, "xON": -9.737374, "xOnoddmnB": -9.737374, "xOscRgntvnbgSX": -9.737374, "xPW": -9.737374, "xQ": -9.737374, "xQAAzf": -9.737374, "xQNvErj": -9.737374, "xQTSYM": -9.737374, "xQurwOsGWsRAKclTdYqsY": -9.737374, "xQxelLFia": -9.737374, "xRNYRchM": -9.737374, "xRlESnmCx": -9.737374, "xRowesNRrpMV": -9.737374, "xS": -9.737374, "xSUztDD": -9.737374, "xSWDa": -9.737374, "xShAqgtf": -9.737374, "xT//V": -9.737374, "xTFIEop//JDnEueVEJZiroAYiIAmlIJK": -9.737374, "xTMPrvkLX/": -9.737374, "xTlCZD": -9.737374, "xTqrzeuCC": -9.737374, "xUCMDcaA": -9.737374, "xUFaLmz": -9.737374, "xUUg": -9.737374, "xVHPrixEUI": -9.737374, "xVRC": -9.737374, "xVeltq": -9.737374, "xVw": -9.737374, "xVwqqvYW": -9.737374, "xW/": -9.737374, "xWVJHIDGNxhpZW": -9.737374, "xWZ/": -9.737374, "xWtBBeR": -9.737374, "xWzCRJa": -9.737374, "xWzX": -9.737374, "xX": -9.044227, "xXHB": -9.737374, "xYg": -9.737374, "xZOV": -9.737374, "xZQ": -9.737374, "xZb": -9.737374, "xZcNsdMKpSVQTNhRb": -9.737374, "xZdGFDnS": -9.737374, "xZqIBTidXDia": -9.737374, "xZsjdTe": -9.737374, "xZv": -9.737374, "xZzDKWd": -9.737374, "xa": -8.638762, "xaVwWnKNhFdTqLDNeD": -9.737374, "xacma": -9.737374, "xah": -9.737374, "xaq": -9.737374, "xbdGlyH": -9.737374, "xbk/rIYfPGmCqd": -9.737374, "xc": -9.737374, "xcFYDpcW": -9.737374, "xcKORuxnvVXQvHOrxMcA": -9.737374, "xcks": -9.737374, "xcmlsf": -9.737374, "xd": -9.737374, "xdu": -9.737374, "xf": -9.737374, "xfHfDH": -9.737374, "xfP": -9.737374, "xfSbpMnVr": -9.737374, "xfnas": -9.737374, "xgDMcNmWZvagzw": -9.737374, "xgGG": -9.737374, "xgNb": -9.737374, "xgVJhZYHSlR": -9.737374, "xgpV": -9.737374, "xgrXa": -9.737374, "xh": -9.737374, "xhi": -9.737374, "xhmYissAnzOSsNRdlrGUYXpQY": -9.737374, "xhwwS": -9.737374, "xiIj": -9.737374, "xikqSTNc": -9.737374, "xjdNdpbwzFUweFU": -9.737374, "xjm": -9.737374, "xjmn": -9.737374, "xkT": -9.737374, "xkcl": -9.737374, "xkmGoBYG": -9.737374, "xkvGAiOIlHG": -9.737374, "xl": -9.737374, "xlS": -9.737374, "xlTt": -9.737374, "xlVZSUIHXDdjbuhvLgH": -9.737374, "xlkHZovYuWR": -9.737374, "xm": -9.737374, "xmYj": -9.737374, "xmd": -9.737374, "xmj": -9.737374, "xmjrfqsLT": -9.737374, "xms": -9.737374, "xnYMJvcGr": -9.737374, "xog": -9.737374, "xord": -9.737374, "xpF": -9.737374, "xpIcyh": -9.737374, "xpv": -9.737374, "xpyWLwusPWO": -9.737374, "xqOz": -9.737374, "xqSfsCbJlbJGEDHRnWsV": -9.737374, "xqa": -9.737374, "xrJKPfeyn": -9.737374, "xrXff": -9.737374, "xrcZhQcLG": -9.737374, "xrmKCdi": -9.737374, "xruY": -9.737374, "xrxB": -9.737374, "xsWcizUKa/mOavpo": -9.737374, "xsx": -9.737374, "xt": -9.737374, "xtMHVjdHU": -9.737374, "xtMY": -9.737374, "xtd/": -9.737374, "xtlLCgmcAoxdEiH": -9.737374, "xttOOo": -9.737374, "xtvmdDzkD": -9.737374, "xtz": -9.737374, "xuBPa": -9.737374, "xujZuJ": -9.737374, "xuvp": -9.737374, "xv": -9.737374, "xvn": -9.737374, "xwCt": -9.737374, "xwKx": -9.737374, "xwPYw": -9.737374, "xwu": -9.737374, "xxXX": -9.737374, "xxhjYHgeOsisA": -9.737374, "xxsfTsZGppvlbhbpq": -9.737374, "xyNLvwOXIog": -9.737374, "xySMGUXPamuiWNNGqznIOVCKdIqp": -9.737374, "xz": -9.044227, "xzk": -9.737374, "y": -6.182026, "y/": -8.638762, "y//BD": -9.737374, "y//Lv/ENH": -9.737374, "y/XiJnxuXfv": -9.737374, "y/g": -9.737374, "yAmN": -9.737374, "yAvmQO": -9.737374, "yAwO": -9.737374, "yBWMU": -9.737374, "yBbk": -9.737374, "yBc": -9.737374, "yBgy": -9.737374, "yC": -9.044227, "yCYzAnHeGTVpEXC": -9.737374, "yCangI": -9.737374, "yCf": -9.737374, "yCoc": -9.737374, "yCxqF": -9.737374, "yDNPSgh": -9.737374, "yEAtg": -9.737374, "yERkOdGiU": -9.737374, "yETaX": -9.737374, "yF": -9.737374, "yFF": -9.737374, "yFP/": -9.737374, "yFkYE": -9.737374, "yFmVq": -9.737374, "yFmuBIj": -9.737374, "yG/j": -9.737374, "yGlvK": -9.737374, "yGwdzvSZXS": -9.737374, "yH": -9.737374, "yHHW": -9.737374, "yHSfLy": -9.737374, "yI": -9.737374, "yIde": -9.737374, "yIntnO": -9.737374, "yJ": -9.737374, "yJM": -9.737374, "yJOqSOFa": -9.737374, "yJS": -9.737374, "yK": -9.737374, "yKAr": -9.737374, "yKZZj": -9.737374, "yLQrqGiyGhKSqFUicekmw": -9.737374, "yLiMqY": -9.737374, "yLohyZnORu": -9.737374, "yM": -9.737374, "yMEHRjd": -9.737374, "yMY": -9.737374, "yMaXtj": -9.737374, "yMj": -9.737374, "yMlaC": -9.737374, "yNN/LwJ": -9.737374, "yNr": -9.737374, "yNwIKBSuz": -9.737374, "yO": -9.044227, "yOS": -9.737374, "yOYG": -9.737374, "yOhnvBb/sFrOD": -9.737374, "yP/": -9.737374, "yPfoX": -9.737374, "yQ": -9.044227, "yQJchpt": -9.737374, "yQRPrL": -9.737374, "yQoiA": -9.737374, "yR": -9.737374, "yRLsDPXG": -9.737374, "yRbDXcxb": -9.737374, "yRx": -9.737374, "ySG": -9.737374, "ySMhHgpulDd": -9.737374, "ySq": -9.737374, "yStvVUe": -9.737374, "yTTeD": -9.737374, "yTU": -9.737374, "yTvOW": -9.737374, "yU": -9.044227, "yUB": -9.737374, "yUMnvdC": -9.737374, "yUjwcwiBUOT": -9.737374, "yVHVkJ": -9.737374, "yVPpYDD": -9.737374, "yVeZuu": -9.737374, "yVuNzXh": -9.737374, "yVxgNfjwqLzqssuOnKyh": -9.737374, "yVy": -9.737374, "yW": -9.737374, "yWCaQRScYoMxMhnZuFM": -9.737374, "yWcmSW": -9.737374, "yWsahiqpxdwyGOYc": -9.737374, "yWvSQS": -9.737374, "yXE": -9.737374, "yXn": -9.737374, "yYHEcjq": -9.737374, "yYOxt": -9.737374, "yYQvDJl": -9.737374, "yYiy": -9.737374, "yYtKU/AiGJVeg": -9.737374, "yYwN": -9.737374, "yZJmAmsWTOd": -9.737374, "yZq": -9.737374, "yZs": -9.737374, "ya": -9.737374, "yaGSJ": -9.737374, "yaGc": -9.737374, "yaIJqqFyA": -9.737374, "yaW": -9.737374, "yaWYFaPruX": -9.737374, "yaxaRx": -9.737374, "yayBJdgO": -9.737374, "yazFLyR": -9.737374, "yb": -9.737374, "yb/gq": -9.737374, "ybDkfsA": -9.737374, "ybMn": -9.737374, "ybTDI": -9.737374, "ybl": -9.737374, "ybuE": -9.737374, "ycEgs": -9.737374, "ycOVsJktZzFaSfqG/": -9.737374, "ycOjppbnvMe": -9.737374, "ycS": -9.737374, "ychXvbBhtv": -9.737374, "ycoGxtKHWCgFMYZPTnCPV": -9.737374, "ydzqQCQKUTn": -9.737374, "ye": -9.737374, "yeIzO": -9.737374, "yegfGWfslLOQOxFDsJe": -9.737374, "yeqiITWZNgpq": -9.737374, "yf": -9.737374, "yfwNHrrmciXZzj": -9.737374, "yfyhP/U": -9.737374, "ygFpycygrsYoRmdRrMgY": -9.737374, "ygRcsJPQwAgLuBu": -9.737374, "ygc": -9.737374, "ygeX": -9.737374, "yh": -8.638762, "yhCuOizZ/U": -9.737374, "yhWNyBPPxlEVzz": -9.737374, "yhizwludvavhNLYeRBcW": -9.737374, "yhleyM": -9.737374, "yho": -9.737374, "yhr": -9.737374, "yi": -9.737374, "yiGbljTHKI": -9.737374, "yibTv": -9.737374, "yil/fW/my": -9.737374, "yjLCgLd": -9.737374, "ykYt": -9.737374, "ylFficjGHYNGpAb": -9.737374, "ylFqtr": -9.737374, "ylIPVEYmBe": -9.737374, "yltQpqDh": -9.737374, "ylwPDVhDa": -9.737374, "ylyEw": -9.737374, "ymXsxjQ": -9.737374, "ymqdqbh": -9.737374, "ymv": -9.737374, "yn": -9.044227, "yo": -9.737374, "yoFZ/pwhllYIkNaBSuJ": -9.737374, "yoX": -9.737374, "yoa": -9.737374, "yoyTkuwb": -9.737374, "yp": -9.044227, "yp/": -9.737374, "ypkqxVl": -9.737374, "ypmlwHu": -9.737374, "yq": -9.737374, "yqFqt": -9.737374, "yqGJq": -9.737374, "yqg": -9.737374, "yr": -9.737374, "yrHVpA": -9.737374, "yrPS": -9.737374, "yrgeUlnXJBlzDiJTEmZomGBpHZm": -9.737374, "ys": -9.044227, "ys/": -9.737374, "ysDbwmSTSNOYGofgZjNE": -9.737374, "ysU": -9.737374, "ysm": -9.737374, "yt": -9.044227, "yt/zz/M": -9.737374, "ytVqIAzuspa": -9.737374, "ytmOtJb": -9.737374, "ytr": -9.737374, "yu": -9.737374, "yuBCaC": -9.737374, "yuOOfP": -9.737374, "yuT/LVr": -9.737374, "yuVwzn": -9.737374, "yuqrcyQJ": -9.737374, "yuuuBZwV": -9.737374, "yuzfZhBsEBJ": -9.737374, "yvdKxVn": -9.737374, "yw": -9.737374, "ywRGD": -9.737374, "ywz/": -9.737374, "yx": -9.044227, "yxB": -9.737374, "yxcuKt": -9.737374, "yxyB": -9.737374, "yxyFrWiVTdHd": -9.737374, "yy": -9.737374, "yySMNpNU": -9.737374, "yyZfpfDW": -9.737374, "yykMLjg": -9.737374, "yyw": -9.737374, "yz": -9.737374, "yzMEw": -9.737374, "z": -5.626500, "z/": -9.737374, "z//": -9.737374, "z/CNX": -9.737374, "z/G": -9.737374, "z/OsXo": -9.737374, "z/jx": -9.737374, "z/lh//": -9.737374, "z/scfto/": -9.737374, "z/xbfc/vA": -9.737374, "zAvliyg": -9.737374, "zB": -9.737374, "zBZb": -9.737374, "zBfjSS": -9.737374, "zCA": -9.737374, "zCALoHPt": -9.737374, "zCCeaG": -9.737374, "zCvPLrBsvMT/": -9.737374, "zD": -9.737374, "zE": -9.044227, "zEwWKMGz": -9.737374, "zF": -9.737374, "zFRaUzz": -9.737374, "zG/Sq": -9.737374, "zGEJWgff": -9.737374, "zGFvA//d": -9.737374, "zGUOu": -9.737374, "zGYU": -9.737374, "zH": -9.737374, "zHIfMHUoQdghnKd": -9.737374, "zHRZYzq": -9.737374, "zHYcJY": -9.737374, "zHmJJBrSmA": -9.737374, "zIhd": -9.737374, "zIqbCuIZEvVu/Bq": -9.737374, "zJ": -9.044227, "zJwiUnPJp": -9.737374, "zKMWEz": -9.737374, "zKibQpbQU": -9.737374, "zKmWQEiVwTixu": -9.737374, "zKssObAxy": -9.737374, "zKunliAb": -9.737374, "zLIUnnh": -9.737374, "zLj": -9.737374, "zLnx": -9.737374, "zLrPFo": -9.737374, "zM": -9.737374, "zME": -9.737374, "zMmJg": -9.737374, "zNOlcR": -9.737374, "zNSOO": -9.737374, "zNX": -9.737374, "zNusnSTsnbqqlOhgkUv": -9.737374, "zNzwG/": -9.737374, "zOCu": -9.737374, "zOJuCApspzND": -9.737374, "zOY": -9.737374, "zOkgst": -9.737374, "zPJa/HpIZRr": -9.737374, "zPfcWHP/QhqorzefLP//Qv": -9.737374, "zPnrWuocxk": -9.737374, "zPvq": -9.737374, "zQ": -9.737374, "zQCZQbcIjlRXpeyYoG": -9.737374, "zQWuhXKurs": -9.737374, "zQlpQxGpuTKrSSrAtl": -9.737374, "zQoEJxbtiMuW": -9.737374, "zQqcHoqLCmlcIwyPKskPhUOVkiTy": -9.737374, "zRHfOAlhcWp": -9.737374, "zRVm": -9.737374, "zSHJAMKNEY": -9.737374, "zSLb": -9.737374, "zSOS": -9.737374, "zSR": -9.737374, "zSenk": -9.737374, "zSi": -9.737374, "zSvsqD": -9.737374, "zT": -9.737374, "zTV": -9.737374, "zTqFd": -9.737374, "zTvDD": -9.737374, "zUFMVxYDro": -9.737374, "zUNhnxmks": -9.737374, "zUSmbIrTX": -9.737374, "zUkdjM": -9.737374, "zVJQctEBjIEK": -9.737374, "zVJmYlR": -9.737374, "zVoiQguugmF": -9.737374, "zW": -9.737374, "zWI": -9.737374, "zWZVzKXsUKj/llb/": -9.737374, "zWbFRAdusdRG": -9.737374, "zX": -9.044227, "zXUD": -9.737374, "zXbCzlLjrPEtEKm": -9.737374, "zXe": -9.737374, "zXjxgQCuthKM": -9.737374, "zXko": -9.737374, "zY": -9.044227, "zYHNF": -9.737374, "zYRZUnbjlHmvZsrVcE": -9.737374, "zYZW": -9.737374, "zYotDBrrX": -9.737374, "zYyhEVMh": -9.737374, "zZ": -9.737374, "zZ/KGRhnwtOemKpFoW": -9.737374, "zZdKAVSJOe": -9.737374, "zZkljPFOR": -9.737374, "zZsut": -9.737374, "zZzcRKrIffDX": -9.737374, "zaPlYVX": -9.737374, "zaT": -9.737374, "zaU": -9.737374, "zaXiY": -9.737374, "zagoRDJEQXcrvyUEok": -9.737374, "zb": -9.737374, "zb/tZ": -9.737374, "zbP": -9.737374, "zbRx": -9.737374, "zbeXBqwF": -9.737374, "zbmWNE": -9.737374, "zc": -9.044227, "zcG": -9.737374, "zcIljr": -9.737374, "zd": -9.737374, "zdQbF": -9.737374, "zdw": -9.737374, "zdxqmbN": -9.737374, "ze": -9.044227, "zeA": -9.737374, "zeGzkcG": -9.737374, "zervEDa": -9.737374, "zew": -9.737374, "zf": -9.737374, "zfF": -9.737374, "zfZ": -9.737374, "zfzV": -9.737374, "zgHMbtrj": -9.737374, "zgRm": -9.737374, "zgkXhaz": -9.737374, "zgudYnAVjLKxuVCkEsltCD": -9.737374, "zhBBFAJyxvCCW": -9.737374, "zhKKV": -9.737374, "zhtyuXaXAMHyysRrgWXmY/lxk": -9.737374, "zhxz": -9.737374, "zi": -9.737374, "ziSpdpOZhdkrudHZg": -9.737374, "ziW": -9.737374, "zilm": -9.737374, "zit": -9.737374, "ziulW": -9.737374, "ziyXPK": -9.737374, "zj": -9.044227, "zjD": -9.737374, "zjSWFgjc": -9.737374, "zjVrWQzSk": -9.737374, "zjhsM": -9.737374, "zjw": -9.737374, "zkF": -9.737374, "zkMjpJ": -9.737374, "zkY": -9.737374, "zkcHGjjIvGLNUtRS": -9.737374, "zkhTjD": -9.737374, "zklluWhRxMo": -9.737374, "zkmR": -9.737374, "zkn": -9.737374, "zkrEP": -9.737374, "zksdVWInQuh/F": -9.737374, "zkw": -9.737374, "zkzSqlqSkD": -9.737374, "zl": -9.737374, "zlCfXA": -9.737374, "zlDVlTmJLORu": -9.737374, "zlT": -9.737374, "zlVjCK": -9.737374, "zlgRuEn": -9.737374, "zlrGlq": -9.737374, "zm": -9.737374, "zmRhxkW": -9.737374, "zmYOnktd": -9.737374, "zmYqWSkhfE": -9.737374, "zmjMnMM": -9.737374, "zmqPvvRmN": -9.737374, "zmsju": -9.737374, "znUFgYD": -9.737374, "znW": -9.737374, "znfukv": -9.737374, "znmZuW": -9.737374, "znnOycPZ": -9.737374, "znoPq/n": -9.737374, "znx//e/": -9.737374, "znzW": -9.737374, "zoHeKkbO": -9.737374, "zoX": -9.737374, "zoyxwLHAqYLlSK": -9.737374, "zpCMJli": -9.737374, "zpLsA": -9.737374, "zpUmvXxBcrjq": -9.737374, "zpWCmoCCVFCliD": -9.737374, "zpaC": -9.737374, "zpwWLKq": -9.737374, "zqSPkGnyfI/X": -9.737374, "zr": -9.737374, "zrOPWOH": -9.737374, "zrP": -9.737374, "zrXPKmN": -9.737374, "zrZf": -9.737374, "zrjbb": -9.737374, "zsDyomtLAovSRCmcu": -9.737374, "zsMTNubXChqqhP/": -9.737374, "zsT": -9.737374, "zsrV": -9.737374, "zsy": -9.737374, "zsylZAacgHNS": -9.737374, "ztUjPSdb": -9.737374, "ztkZCyMe": -9.737374, "ztmphJ": -9.737374, "ztu/": -9.737374, "ztzs": -9.737374, "zu": -9.737374, "zuLL": -9.737374, "zuWhgO": -9.737374, "zuXy": -9.737374, "zugwU": -9.737374, "zutNdp": -9.737374, "zv": -9.044227, "zveOG": -9.737374, "zveVO": -9.737374, "zvuxidfG": -9.737374, "zw/": -9.737374, "zwDzpWcJYxltaur": -9.737374, "zwHp": -9.737374, "zwViGdR": -9.737374, "zwXdWEgGPWAoJNRHR": -9.737374, "zwn": -9.737374, "zws": -9.737374, "zwsWCik": -9.737374, "zwumY": -9.737374, "zwz": -9.737374, "zx": -9.044227, "zxckse": -9.737374, "zxdGk": -9.737374, "zxeScgtkJ": -9.737374, "zxqk": -9.737374, "zxrLJmzM": -9.737374, "zy": -8.638762, "zyH": -9.737374, "zyX": -9.737374, "zz": -8.638762, "zz/": -9.737374, "zzE": -9.737374, "zza": -9.737374, "zzgFErJ": -9.737374, "zzgvBTiSnpkylkdaVbUzQdc": -9.737374, "zzpXtbkmL": -9.737374, "{": -7.657932, "}": -8.351080, }, "KRL": map[string]float64{ "(": -3.332205, ")": -3.332205, ",": -3.332205, ";": -3.332205, "<<": -3.332205, ">": -2.639057, "Hello": -3.332205, "author": -3.332205, "description": -3.332205, "hello": -3.332205, "meta": -3.332205, "name": -3.332205, "notify": -3.332205, "pageview": -3.332205, "rule": -3.332205, "ruleset": -3.332205, "sample": -3.332205, "select": -3.332205, "web": -3.332205, "when": -3.332205, "world": -3.332205, "{": -2.233592, "}": -2.233592, }, "KiCad": map[string]float64{ "#FLG": -8.601994, "#PWR": -7.685703, "$": -3.285100, "(": -2.088764, ")": -2.088764, "*.Cu": -8.601994, "*.Mask": -8.601994, "+": -7.685703, "-": -2.653306, ".LocalClearance": -6.096468, ".SolderMask": -5.315459, "/": -5.861154, ":": -5.593839, "A": -4.029863, "AA": -6.522552, "AAD": -9.295141, "AB": -6.587091, "ABB": -9.295141, "ABD": -9.295141, "ABF": -9.295141, "AB_COMMON": -9.988288, "AC": -6.250619, "ACA": -8.889676, "ACC": -9.295141, "ACE": -9.295141, "AD": -6.554301, "ADA": -9.295141, "ADC": -9.295141, "ADE": -9.295141, "AE": -6.554301, "AEE": -9.295141, "AF": -6.461928, "AHF": -8.889676, "ANT": -8.378850, "AR": -6.056463, "A_TOP": -9.988288, "A_WIPER": -9.988288, "AddNet": -6.204099, "AlpsRK": -9.988288, "At": -4.594661, "AuxiliaryAxisOrg": -9.988288, "B": -3.859238, "B.Adhes": -9.988288, "B.CrtYd": -9.988288, "B.Cu": -9.988288, "B.Fab": -9.988288, "B.Mask": -9.988288, "B.Paste": -9.988288, "B.SilkS": -9.988288, "BA": -7.155075, "BAL": -9.295141, "BATT": -8.196529, "BB": -7.215699, "BC": -7.908847, "BD": -6.992556, "BE": -7.097916, "BF": -7.043849, "BOARD": -9.988288, "B_TOP": -9.988288, "B_WIPER": -9.988288, "Back": -9.988288, "Bitmap": -9.988288, "BoardThickness": -9.988288, "C": -3.596371, "CA": -6.350702, "CAA": -9.295141, "CAD": -8.601994, "CADFB": -9.988288, "CAE": -9.295141, "CAEA": -9.988288, "CAEAF": -9.988288, "CAECB": -9.988288, "CAF": -9.295141, "CB": -6.852794, "CC": -6.692451, "CCCA": -9.988288, "CCE": -9.988288, "CCF": -9.988288, "CD": -6.852794, "CD_COMMON": -9.988288, "CE": -7.043849, "CEAA": -9.988288, "CEFF": -9.988288, "CF": -6.350702, "CFBE": -9.988288, "CFBF": -9.988288, "CFCB": -9.988288, "CFCBE": -9.988288, "CFDB": -9.988288, "CFE": -7.423339, "CFF": -7.349231, "CMS": -9.988288, "CNN": -5.423940, "CONN": -7.908847, "CONN_": -8.196529, "CRYSTAL": -9.988288, "CX": -9.988288, "CZONE_OUTLINE": -9.295141, "C_": -8.378850, "C_TOP": -9.988288, "C_WIPER": -9.988288, "Capacitors_SMD": -8.378850, "Capacitors_SMD.": -9.988288, "Capacitors_SMD/C_": -8.601994, "Clearance": -9.988288, "Cmts.User": -9.988288, "Comment": -7.503382, "Comp": -6.692451, "Connection": -7.423339, "Crystals_Oscillators_SMD": -9.988288, "D": -3.651462, "DA": -7.097916, "DAD": -9.988288, "DB": -7.423339, "DC": -6.943766, "DD": -7.155075, "DE": -7.155075, "DF": -7.097916, "DGND": -8.378850, "DRAWSEGMENT": -6.656084, "DS": -4.675082, "D_TOP": -9.988288, "D_WIPER": -9.988288, "Data": -9.988288, "Date": -8.889676, "De": -3.649694, "Default": -9.988288, "Desc": -9.988288, "Descr": -9.295141, "Di": -9.988288, "Dr": -4.599216, "DrawSegmWidth": -9.988288, "Dwgs.User": -9.988288, "E": -3.711645, "EA": -6.587091, "EB": -6.897246, "EC": -7.503382, "ED": -7.155075, "EDED": -9.988288, "EE": -6.897246, "EELAYER": -8.601994, "EESchema": -9.295141, "EF": -7.423339, "EFE": -8.378850, "END": -9.295141, "EQUIPOT": -6.204099, "Eco": -9.295141, "Edge.Cuts": -9.988288, "EdgeModWidth": -9.988288, "EdgeSegmWidth": -9.988288, "EnabledLayers": -9.988288, "EndBitmap": -9.295141, "EndComp": -6.810234, "EndDRAWSEGMENT": -6.656084, "EndData": -9.988288, "EndDescr": -9.295141, "EndEQUIPOT": -6.204099, "EndGENERAL": -9.988288, "EndMODULE": -6.056463, "EndNCLASS": -9.988288, "EndPAD": -4.599216, "EndSCHEMATC": -9.295141, "EndSETUP": -9.988288, "EndSHAPE": -9.988288, "EndSHEETDESCR": -9.988288, "EndSheet": -9.988288, "EndTEXTPCB": -6.730192, "EndTRACK": -9.988288, "EndZONE": -9.988288, "F": -4.113357, "F.Adhes": -9.988288, "F.CrtYd": -6.769412, "F.Cu": -4.585611, "F.Fab": -9.295141, "F.Mask": -5.522380, "F.Paste": -5.522380, "F.SilkS": -5.768780, "FA": -6.897246, "FB": -6.943766, "FC": -6.491781, "FCI": -8.889676, "FD": -6.992556, "FE": -7.043849, "FF": -7.349231, "FFFCFF": -9.988288, "FSM": -8.889676, "File": -9.295141, "Fri": -9.988288, "Front": -9.988288, "G": -7.791064, "GENERAL": -9.988288, "GHz": -9.295141, "GND": -6.810234, "GSG": -4.951336, "H": -5.434411, "HEADER": -7.791064, "HOLE": -8.601994, "I": -5.861154, "INCH": -9.988288, "INVERTED": -8.889676, "InternalUnit": -9.988288, "J": -7.590393, "JSMATR": -8.889676, "JUMPER": -9.988288, "Kw": -7.791064, "L": -6.491781, "LED": -8.378850, "LIBS": -5.783596, "Label": -7.155075, "Layer": -9.295141, "LayerCount": -9.988288, "Layers": -9.988288, "Le": -5.075633, "Li": -6.056463, "Line": -5.499652, "Links": -9.988288, "Ly": -9.988288, "MG": -9.295141, "MHZ": -8.889676, "MICROB": -8.889676, "MIL": -6.656084, "MODULE": -6.056463, "Margin": -9.988288, "MaskClearance": -9.988288, "MicroViaDrill": -9.988288, "MicroViaMinDrill": -9.988288, "MicroViaMinSize": -9.988288, "MicroViaSize": -9.988288, "MicroViasAllowed": -9.988288, "N": -3.940916, "NCLASS": -9.988288, "NRF": -8.601994, "Na": -6.181626, "Name": -9.988288, "Ndraw": -9.988288, "Ne": -4.599216, "Nmodule": -9.988288, "Nnets": -9.988288, "NoConn": -8.889676, "Normal": -6.730192, "Notes": -8.889676, "Ntrack": -9.988288, "Nzone": -9.988288, "O": -6.324727, "Oct": -9.988288, "Of": -9.988288, "Op": -6.056463, "P": -5.829405, "PAD": -4.599216, "PCBNEW": -9.988288, "POLYSCORNERS": -9.295141, "PWR_FLAG": -8.601994, "Pad": -9.295141, "PadDrill": -9.988288, "PadSize": -9.988288, "PasteClearanceRatio": -9.988288, "PcbPlotParams": -9.988288, "Pin_Header_Straight_": -9.988288, "Pin_Headers": -9.988288, "Pin_Headers/Pin_Header_Straight_": -9.988288, "Po": -3.259660, "Pos": -9.988288, "QFN": -8.889676, "R": -5.061034, "RK": -9.988288, "RV": -9.988288, "R_": -9.988288, "Resistors_SMD": -9.988288, "Resistors_SMD/R_": -9.988288, "Rev": -8.889676, "Ro": -9.988288, "S": -9.988288, "SETUP": -9.988288, "SHAPE": -9.988288, "SHEETDESCR": -9.988288, "SHORT": -7.791064, "SMA": -8.889676, "SMD": -4.876300, "SMD_Packages": -9.988288, "SMD_Packages/SMD": -9.988288, "SN": -9.988288, "SOT": -8.601994, "SPST": -8.889676, "STD": -5.980955, "SWCLK": -8.601994, "SWDIO": -8.601994, "Sc": -6.037044, "Scale": -9.988288, "Schematic": -9.295141, "Sh": -4.599216, "Sheet": -8.601994, "St": -6.204099, "T": -5.343897, "TESTPOINT": -7.280238, "TEXTPCB": -6.730192, "TRACK": -9.988288, "TXC": -8.889676, "Te": -6.730192, "Text": -6.992556, "TextModSize": -9.988288, "TextModWidth": -9.988288, "TextPcbSize": -9.988288, "TextPcbWidth": -9.988288, "Title": -8.889676, "TrackClearence": -9.988288, "TrackMinWidth": -9.988288, "TrackWidth": -9.295141, "TrackWidthList": -8.889676, "U": -6.656084, "USB": -8.889676, "Use": -9.988288, "V": -5.910751, "VD": -8.889676, "VD.": -9.988288, "VERTICAL": -8.889676, "VOL_DOWN": -9.295141, "VOL_UP": -9.295141, "V_MOT": -8.889676, "Version": -8.889676, "ViaDia": -9.988288, "ViaDrill": -9.295141, "ViaMinDrill": -9.988288, "ViaMinSize": -9.988288, "ViaSize": -9.988288, "ViaSizeList": -8.889676, "Volume": -9.988288, "WLCSP": -9.988288, "Wire": -4.806505, "X": -9.295141, "XTAL": -8.889676, "ZAux": -9.295141, "ZClearance": -9.295141, "ZCorner": -7.685703, "ZInfo": -9.295141, "ZLayer": -9.295141, "ZMinThickness": -9.295141, "ZONE": -9.988288, "ZOptions": -9.295141, "ZSmoothing": -9.295141, "ZoneClearence": -9.988288, "[": -9.295141, "]": -9.295141, "_": -9.988288, "_only": -9.988288, "adc": -9.295141, "add_net": -6.017996, "allowed": -8.601994, "analog_switches": -9.295141, "arc_segments": -8.889676, "area": -9.988288, "at": -5.004682, "atmel": -9.295141, "attr": -8.042378, "audio": -8.601994, "aux_axis_origin": -9.988288, "cache": -9.295141, "center": -9.295141, "chamfer": -8.889676, "chassis": -9.295141, "circle": -5.768780, "clearance": -8.378850, "cmos": -9.295141, "conn": -9.295141, "connect_pads": -8.889676, "contrib": -9.295141, "controller": -9.988288, "copperpour": -9.295141, "cypress": -9.295141, "dac": -9.295141, "date": -9.988288, "descr": -8.042378, "device": -9.295141, "digital": -9.295141, "display": -9.295141, "drawings": -9.988288, "drill": -8.601994, "drillshape": -9.295141, "dshapes/C_": -9.988288, "dsp": -9.295141, "edge": -8.889676, "edge_width": -9.988288, "effects": -6.810234, "encoding": -8.889676, "end": -4.840794, "endCZONE_OUTLINE": -9.988288, "endPOLYSCORNERS": -9.988288, "excludeedgelayer": -9.295141, "false": -6.943766, "fill": -8.889676, "filled_polygon": -9.988288, "font": -6.810234, "fp_circle": -9.295141, "fp_line": -5.861154, "fp_text": -6.810234, "from": -9.988288, "general": -9.988288, "ground": -9.295141, "hatch": -8.889676, "hide": -9.988288, "host": -9.988288, "hpglpendiameter": -9.295141, "hpglpennumber": -9.295141, "hpglpenoverlay": -9.295141, "hpglpenspeed": -9.295141, "intel": -9.295141, "interface": -9.295141, "jumper": -9.988288, "keepout": -9.295141, "kicad_pcb": -9.988288, "last_trace_width": -9.988288, "layer": -4.636430, "layers": -5.353559, "layerselection": -9.295141, "linear": -9.295141, "linewidth": -9.295141, "links": -9.988288, "memory": -9.295141, "mfk_alps": -9.988288, "mfk_connector": -9.988288, "mfk_interface": -9.988288, "microchip": -9.295141, "microcontrollers": -9.295141, "min_thickness": -8.889676, "mirror": -9.295141, "mod_edge_width": -9.988288, "mod_text_size": -9.988288, "mod_text_width": -9.988288, "mode": -9.295141, "model": -7.908847, "module": -7.503382, "modules": -9.988288, "motor": -9.988288, "motorola": -9.295141, "n": -8.889676, "nRF": -9.988288, "net": -4.450954, "net_class": -9.295141, "net_name": -8.889676, "nets": -9.988288, "no": -9.295141, "no_connects": -9.988288, "not_allowed": -9.295141, "opto": -9.295141, "output": -9.295141, "outputdirectory": -9.295141, "outputformat": -9.295141, "oval": -8.889676, "p": -9.295141, "pad": -5.363315, "pad_drill": -9.988288, "pad_size": -9.988288, "pad_to_mask_clearance": -9.988288, "padsonsilk": -9.295141, "page": -9.988288, "path": -7.503382, "pcb_text_size": -9.988288, "pcb_text_width": -9.988288, "pcbnew": -9.988288, "pcbplotparams": -9.295141, "pdfs/": -9.988288, "philips": -9.295141, "plotframeref": -9.295141, "plotinvisibletext": -9.295141, "plotothertext": -9.988288, "plotreference": -9.295141, "plotvalue": -9.295141, "polygon": -8.889676, "power": -8.889676, "psa": -9.295141, "pscolor": -9.988288, "psnegative": -9.295141, "pts": -8.601994, "radius": -8.889676, "rect": -6.554301, "reference": -7.503382, "regul": -9.295141, "relays": -9.988288, "rotate": -7.908847, "scale": -7.908847, "scaleselection": -9.295141, "segment": -5.306157, "segment_width": -9.988288, "ser": -9.295141, "setup": -9.988288, "signal": -8.601994, "siliconi": -9.295141, "size": -5.152006, "smd": -5.334328, "smoothing": -8.889676, "special": -9.295141, "start": -4.852490, "status": -8.378850, "subtractmaskfromsilk": -9.295141, "tags": -8.042378, "tedit": -7.503382, "temp": -9.988288, "texas": -9.295141, "thermal_bridge_width": -8.889676, "thermal_gap": -8.889676, "thickness": -6.769412, "thru_hole": -8.601994, "to": -9.988288, "trace_clearance": -9.988288, "trace_min": -9.988288, "trace_width": -9.295141, "tracks": -8.889676, "transistors": -9.295141, "true": -8.042378, "tstamp": -6.432940, "uViaDia": -9.988288, "uViaDrill": -9.988288, "ultimate": -9.988288, "useauxorigin": -9.295141, "usegerberextensions": -9.295141, "user": -7.097916, "utf": -8.889676, "uvia_dia": -9.295141, "uvia_drill": -8.889676, "uvia_min_drill": -9.988288, "uvia_min_size": -9.988288, "uvia_size": -9.988288, "uvias_allowed": -9.988288, "value": -7.503382, "valves": -9.295141, "version": -9.988288, "via_dia": -9.295141, "via_drill": -8.889676, "via_min_drill": -9.988288, "via_min_size": -9.988288, "via_size": -9.988288, "vias": -9.295141, "viasonmask": -9.295141, "visible_elements": -9.988288, "w_relay": -9.988288, "width": -4.840794, "wrl": -7.908847, "x": -7.503382, "xilinx": -9.295141, "xx": -9.295141, "xy": -3.609862, "xyz": -6.810234, "yes": -8.889676, "zone": -8.889676, "zone_": -9.988288, "zone_clearance": -9.988288, "zones": -9.988288, "~": -4.997856, }, "Kit": map[string]float64{ "/h": -2.302585, "<": -1.609438, "</p>": -2.302585, "</section>": -2.302585, "<p>": -2.302585, "<section>": -2.302585, ">": -1.609438, "h": -2.302585, }, "Kotlin": map[string]float64{ "(": -2.585255, ")": -2.585255, ",": -2.990720, ".lines": -5.293305, ":": -2.348866, "<EmailAddress>": -5.293305, "<PhoneNumber>": -5.293305, "<PostalAddress>": -5.293305, "<String,>": -4.600158, "=": -2.895410, ">": -4.600158, "?": -4.600158, "Contact": -5.293305, "Countries": -4.600158, "Country": -3.347395, "CountryID": -5.293305, "EmailAddress": -5.293305, "HashMap": -5.293305, "Int": -5.293305, "List": -4.194693, "Long": -5.293305, "Map": -4.600158, "PhoneNumber": -5.293305, "PostalAddress": -5.293305, "String": -3.347395, "TextFile": -5.293305, "USState": -5.293305, "[": -4.194693, "]": -4.194693, "addressbook": -5.293305, "addresses": -5.293305, "areaCode": -5.293305, "assert": -5.293305, "city": -5.293305, "class": -3.683867, "country": -4.194693, "countryTable": -4.600158, "emails": -5.293305, "for": -5.293305, "fun": -5.293305, "get": -4.600158, "host": -5.293305, "id": -4.600158, "if": -5.293305, "in": -5.293305, "line": -4.194693, "name": -4.600158, "null": -4.194693, "number": -5.293305, "object": -5.293305, "package": -5.293305, "phonenums": -5.293305, "private": -4.600158, "return": -5.293305, "state": -4.600158, "streetAddress": -5.293305, "stripWhiteSpace": -5.293305, "table": -3.683867, "true": -5.293305, "user": -5.293305, "val": -2.520716, "var": -5.293305, "xor": -5.293305, "zip": -5.293305, "{": -3.501545, "}": -3.501545, }, "LFE": map[string]float64{ "!": -6.793466, "#": -6.793466, "#Fun": -7.486613, "$": -6.793466, "'": -6.100319, "(": -2.111335, ")": -2.048534, "*": -5.694854, "*ops*": -7.486613, "*state*": -5.877175, "+": -6.793466, ",": -4.596242, "-": -2.901646, "../bin/lfe": -7.486613, "../ebin": -7.486613, "/": -7.486613, "//lfe.github.io/user": -7.486613, "//www.apache.org/licenses/LICENSE": -6.388001, ":": -3.990106, ";": -2.125321, "<": -6.793466, "<oubiwann@cogitat.io>": -6.793466, "=": -5.540703, ">": -5.289389, "A": -7.486613, "ANY": -6.388001, "Apache": -6.388001, "Artificial": -7.486613, "Author": -6.388001, "BASIS": -6.388001, "CONDITIONS": -6.388001, "Carp": -7.486613, "Code": -7.486613, "Comprehensions": -7.486613, "Comprehensions.": -7.486613, "Converted": -7.486613, "Copyright": -6.100319, "Define": -7.486613, "Demonstrating": -6.793466, "Duncan": -6.100319, "ETS": -7.486613, "Execute": -7.486613, "File": -6.100319, "First": -7.486613, "GPS": -7.486613, "General": -7.486613, "Here": -7.486613, "Initialise": -7.486613, "Intelligence": -7.486613, "It": -7.486613, "KIND": -6.388001, "LFE": -6.100319, "LFE.": -7.486613, "License": -5.001707, "License.": -5.694854, "Licensed": -6.388001, "List": -6.793466, "Load": -7.486613, "McGreggor": -6.100319, "Mnesia": -6.793466, "Mode": -7.486613, "Norvig": -7.486613, "Note": -7.486613, "Now": -7.486613, "OF": -6.388001, "OOP": -7.486613, "OR": -6.388001, "Paradigms": -7.486613, "Peter": -7.486613, "Problem": -7.486613, "Programming": -7.486613, "Purpose": -6.388001, "Query": -6.793466, "Robert": -6.388001, "See": -6.388001, "Set": -7.486613, "Solver": -7.486613, "Start": -7.486613, "The": -6.100319, "This": -6.793466, "To": -7.486613, "Unless": -6.388001, "Use": -7.486613, "Version": -6.388001, "Virding": -6.388001, "WARRANTIES": -6.388001, "WITHOUT": -6.388001, "When": -7.486613, "XXXX": -7.486613, "You": -6.388001, "[": -6.388001, "]": -6.388001, "a": -5.407172, "access": -7.486613, "access.": -7.486613, "achieve": -7.486613, "action": -6.388001, "add": -6.388001, "agreed": -6.388001, "all": -7.486613, "an": -5.877175, "and": -5.540703, "applicable": -6.388001, "at": -6.100319, "attributes": -7.486613, "basic": -7.486613, "battery": -7.486613, "below": -6.388001, "book": -7.486613, "but": -7.486613, "by": -6.100319, "by_place": -7.486613, "by_place_ms": -7.486613, "by_place_qlc": -6.793466, "c": -6.100319, "calculus": -7.486613, "call": -6.793466, "can": -7.486613, "car": -7.486613, "cd": -7.486613, "children": -5.184028, "church": -4.490881, "church.lfe": -7.486613, "class": -6.388001, "closures": -7.486613, "code": -6.793466, "communication": -6.793466, "compliance": -6.388001, "cond": -7.486613, "conditions.": -7.486613, "contains": -7.486613, "copy": -6.388001, "count": -5.540703, "create": -6.100319, "create_table": -7.486613, "current": -7.486613, "define": -7.486613, "defmodule": -6.793466, "defrecord": -7.486613, "defsyntax": -6.793466, "defun": -4.490881, "defvar": -6.793466, "del": -5.877175, "demo": -6.793466, "demonstrate": -7.486613, "demonstrated": -7.486613, "difference": -7.486613, "distance": -6.793466, "distributed": -5.694854, "do": -6.793466, "does": -7.486613, "drive": -7.486613, "e": -7.486613, "either": -6.388001, "emp": -7.486613, "erlang": -7.486613, "every": -7.486613, "example": -6.793466, "examples": -7.486613, "except": -6.388001, "existing": -7.486613, "export": -6.793466, "express": -6.388001, "f": -6.388001, "feet": -7.486613, "file": -5.694854, "fish": -5.694854, "five": -7.486613, "five/": -7.486613, "following": -6.793466, "for": -5.877175, "formatted": -7.486613, "four": -7.486613, "from": -6.793466, "fun": -7.486613, "funcall": -4.395571, "get": -4.442091, "getvar": -6.388001, "give": -7.486613, "global": -6.793466, "goals": -6.793466, "governing": -6.388001, "gps": -6.793466, "guide": -7.486613, "guide/recursion/": -7.486613, "hack": -7.486613, "has": -7.486613, "have": -6.388001, "here": -7.486613, "his": -7.486613, "how": -6.793466, "however": -7.486613, "html": -7.486613, "http": -6.100319, "id": -5.289389, "if": -7.486613, "implied.": -6.388001, "in": -5.184028, "info": -7.486613, "inheritance.": -7.486613, "installs": -7.486613, "instance": -6.793466, "int": -6.100319, "integer": -6.793466, "is": -5.877175, "isn": -7.486613, "isp": -7.486613, "j": -6.793466, "job": -6.388001, "lambda": -4.596242, "language": -6.388001, "law": -6.388001, "lc": -7.486613, "length": -7.486613, "let": -5.694854, "lfe_eval.": -7.486613, "limit": -6.100319, "limitations": -6.388001, "list": -4.921664, "macro": -7.486613, "macros": -7.486613, "make": -6.793466, "match": -5.877175, "match_object": -7.486613, "may": -5.694854, "memory": -7.486613, "method": -5.540703, "methods": -5.877175, "mnesia": -5.407172, "mnesia_demo": -7.486613, "mnesia_demo.lfe": -7.486613, "mommy": -6.388001, "money": -6.388001, "move": -6.100319, "n": -6.100319, "name": -5.407172, "naughty": -7.486613, "necessary.": -7.486613, "new": -6.793466, "not": -5.877175, "numeral": -5.407172, "numerals": -7.486613, "object": -4.714025, "object.lfe": -7.486613, "objects": -6.793466, "obtain": -6.388001, "of": -5.184028, "ok": -7.486613, "on": -6.100319, "one": -7.486613, "only": -7.486613, "op": -5.407172, "or": -5.694854, "other": -7.486613, "p": -6.793466, "pa": -7.486613, "pattern": -7.486613, "people": -7.486613, "permissions": -6.388001, "person": -5.407172, "phone": -7.486613, "place": -5.540703, "preconds": -6.100319, "put": -7.486613, "q": -6.793466, "qlc": -6.793466, "records": -7.486613, "reproduce": -7.486613, "required": -6.388001, "s": -4.542174, "schema.": -7.486613, "school": -6.793466, "section": -7.486613, "select": -7.486613, "self": -5.694854, "set": -7.486613, "setvar": -6.793466, "shop": -5.694854, "shows": -6.793466, "simple": -6.100319, "slurp": -6.793466, "software": -6.388001, "solved": -7.486613, "some": -6.793466, "son": -6.793466, "spec": -7.486613, "species": -5.540703, "specific": -6.388001, "specifications": -7.486613, "start": -7.486613, "state": -6.100319, "strictly": -7.486613, "successor": -6.388001, "successor/": -7.486613, "swam": -7.486613, "system": -7.486613, "table": -6.793466, "table.": -7.486613, "tables.": -7.486613, "telephone": -7.486613, "that": -7.486613, "the": -3.903094, "this": -6.388001, "those": -7.486613, "three": -7.486613, "to": -5.184028, "together": -7.486613, "transaction": -6.793466, "tuple": -7.486613, "two": -7.486613, "under": -5.289389, "union": -7.486613, "update": -7.486613, "usage": -7.486613, "use": -5.694854, "used": -7.486613, "user": -7.486613, "using": -7.486613, "v": -6.388001, "val": -6.793466, "variable": -6.793466, "variables": -7.486613, "verb": -6.793466, "version": -7.486613, "very": -7.486613, "was": -7.486613, "we": -7.486613, "when": -7.486613, "which": -7.486613, "will": -7.486613, "with": -5.407172, "works": -7.486613, "writing": -6.388001, "x": -5.001707, "you": -6.388001, "zero": -6.793466, }, "LOLCODE": map[string]float64{ "!": -7.258060, "'": -7.951207, "(": -6.564913, ")": -6.564913, "+": -7.951207, ",": -4.454700, "-": -5.871766, ".": -7.951207, "...": -5.871766, "//github.com/LoganKelly/LOLTracer": -7.951207, ":": -6.341769, "=": -7.258060, "?": -5.117994, "A": -2.628197, "AN": -3.172084, "Add": -7.951207, "Attenuate": -7.951207, "Author": -7.951207, "BIGGR": -6.341769, "BOTH": -5.006768, "BTW": -4.454700, "BTWsphere_positions_": -7.951207, "BUKKIT": -5.466301, "Bitshift": -7.951207, "Bitwise": -7.951207, "C": -7.951207, "Calculate": -7.951207, "Camera": -6.564913, "Cast": -7.951207, "Convert": -7.951207, "Converts": -7.951207, "DIFF": -5.553312, "DIFFRINT": -6.564913, "Depth": -7.951207, "EITHER": -7.258060, "Equivalent": -7.951207, "FAIL": -3.824073, "FOUND": -5.553312, "For": -7.951207, "GTFO": -6.005297, "Generate": -7.258060, "Github": -7.951207, "HAI": -7.258060, "HAS": -2.730851, "HOW": -5.753983, "Header": -7.951207, "However": -7.951207, "I": -3.397330, "IF": -5.753983, "IM": -4.583911, "IN": -5.386258, "IS": -7.258060, "ITZ": -2.736271, "IZ": -3.890764, "Issue": -7.951207, "It": -7.951207, "KTHXBYE": -7.951207, "Kelly": -7.951207, "LIEK": -6.564913, "LOLCODE": -7.951207, "LOOP": -5.466301, "Length": -7.951207, "Logan": -7.951207, "MKAY": -4.019382, "MOD": -7.258060, "N": -7.951207, "NO": -6.341769, "NOW": -7.258060, "NUMBR": -7.258060, "Newton": -7.951207, "No": -7.258060, "Normalize": -7.951207, "O": -5.060835, "OBTW": -5.753983, "OF": -4.059387, "OIC": -5.117994, "OUTTA": -5.243157, "P": -7.951207, "PPM": -7.258060, "PRODUKT": -5.466301, "Printable": -7.951207, "QUOSHUNT": -7.951207, "R": -4.101060, "RLY": -4.424847, "Raises": -7.951207, "Ray": -7.951207, "Return": -7.951207, "SAEM": -5.006768, "SAY": -5.753983, "SMALLR": -7.951207, "SMOOSH": -7.951207, "SO": -5.753983, "SRS": -3.366240, "SUM": -5.243157, "See": -7.951207, "TIL": -6.159448, "TLDR": -5.753983, "The": -6.341769, "This": -6.852595, "U": -5.753983, "UNICODE.": -7.951207, "UPPIN": -6.159448, "Unfortunately": -7.951207, "VISIBLE": -6.852595, "Vector": -4.190007, "View": -7.951207, "WAI": -6.341769, "WIN": -5.060835, "YA": -5.117994, "YARN": -7.258060, "YARN.": -7.951207, "YR": -2.981394, "Z": -4.122566, "a": -4.815713, "a_rand": -7.258060, "accessed": -7.951207, "accumulation": -7.951207, "accurate": -7.951207, "addin": -5.648622, "algebra": -7.951207, "all": -7.951207, "also": -7.951207, "an": -7.951207, "and": -6.159448, "apply": -7.951207, "as": -7.258060, "attempt": -7.951207, "b": -5.312150, "b_rand": -7.258060, "base": -5.648622, "based": -7.951207, "be": -6.564913, "below.": -7.951207, "between": -7.951207, "binary": -6.005297, "binary.": -7.951207, "binary_first_num": -6.852595, "binary_num": -5.648622, "binary_second_num": -7.951207, "binary_string": -7.258060, "binary_to_string": -7.951207, "binary_value": -7.951207, "bit": -7.258060, "bit_shift_leftin": -7.951207, "bitwise_andin": -7.951207, "blur": -7.951207, "bouncing": -7.951207, "bukkit": -7.951207, "but": -7.951207, "by": -6.159448, "c": -6.159448, "calls": -7.951207, "ceil_h": -6.852595, "ceil_h_x": -7.258060, "ceil_h_y": -7.951207, "ceilin": -7.951207, "character": -7.951207, "class": -7.951207, "color": -5.386258, "color_choice": -7.258060, "common": -7.951207, "component": -7.951207, "compressed": -7.951207, "constructin": -6.341769, "cross_productin": -7.258060, "d": -6.852595, "decimal_num": -6.159448, "decimal_to_binary": -6.852595, "decimal_to_binary.": -6.852595, "declare": -7.951207, "delta": -7.951207, "deltas": -7.951207, "didn": -7.951207, "diffuse": -7.951207, "digits": -7.951207, "digits.": -7.951207, "direction": -5.466301, "direction_right": -6.564913, "direction_t": -7.258060, "direction_up": -6.564913, "dot_productin": -7.951207, "downward": -7.951207, "equal": -7.258060, "equivalent": -7.951207, "exponent": -7.258060, "exponent.": -7.951207, "eye": -7.951207, "final_binary": -6.341769, "final_length": -6.852595, "first_binary": -6.852595, "first_length": -6.852595, "first_num": -7.258060, "flags": -7.951207, "floor": -7.951207, "for": -6.341769, "format": -6.564913, "found": -7.951207, "from": -7.951207, "function.": -6.852595, "functionality": -7.951207, "g": -6.159448, "global": -7.951207, "goes": -7.951207, "going": -7.951207, "h": -6.564913, "had": -7.951207, "has": -7.258060, "he": -7.951207, "hex_string": -7.951207, "hexadecimal": -7.951207, "hit": -7.951207, "hit.": -7.951207, "https": -7.951207, "i": -4.517220, "i_m": -7.951207, "if": -7.951207, "in": -5.753983, "info": -7.951207, "is": -6.159448, "it": -6.852595, "its": -7.951207, "j": -7.951207, "l": -7.951207, "larger": -7.951207, "left": -7.951207, "length": -5.178618, "lengthin": -7.258060, "linear": -7.951207, "logan.kelly@gmail.com": -7.951207, "m": -6.341769, "manner.": -7.951207, "max_length": -7.258060, "max_x": -6.564913, "max_y": -6.852595, "must": -6.852595, "n": -6.852595, "no": -7.951207, "normalizin": -6.341769, "note": -7.951207, "num": -5.871766, "num_bits": -7.951207, "num_bits.": -7.951207, "num_loop": -5.871766, "number": -5.553312, "numbers": -7.951207, "numbers.": -7.951207, "of": -5.871766, "offset": -7.951207, "on": -7.951207, "only": -7.951207, "operations": -7.258060, "origin": -6.852595, "originally": -7.951207, "out": -7.951207, "p": -6.564913, "performed": -7.951207, "pixel_color": -6.341769, "pos_index": -5.060835, "positions": -7.951207, "pow": -7.951207, "power": -7.951207, "power_of": -7.258060, "prev": -7.258060, "produce": -7.951207, "produced": -7.951207, "provided": -6.852595, "provides": -7.951207, "quickly": -7.951207, "r": -6.852595, "rand_max": -7.951207, "rand_onein": -6.564913, "randin": -7.951207, "randin.": -7.951207, "random": -7.951207, "ray": -6.852595, "ray_loop": -7.258060, "rays": -6.564913, "recursive_color": -6.564913, "result": -5.117994, "results": -7.951207, "retain": -7.951207, "return": -7.951207, "returned": -6.852595, "right": -7.951207, "s": -6.852595, "sample_color": -6.564913, "samplin": -7.258060, "sampling": -7.951207, "scalin": -5.178618, "scope": -7.951207, "second_binary": -7.258060, "second_length": -7.951207, "second_num": -7.258060, "shifted_binary_num": -7.258060, "sky": -7.951207, "slot": -7.951207, "slots": -7.951207, "slow": -7.951207, "so": -7.951207, "solution.": -7.951207, "specular": -7.951207, "sphere": -6.564913, "sphere_color": -6.341769, "sphere_positions": -5.648622, "sphere_positions_": -3.376496, "sphere_positions_line": -7.951207, "square": -7.951207, "square_rootin": -7.951207, "stochastic": -7.951207, "store": -7.951207, "string": -7.951207, "string_reverse": -7.258060, "surface.": -7.951207, "t": -6.564913, "t_a": -6.564913, "t_b": -6.564913, "tenable": -7.951207, "than": -7.951207, "that": -7.951207, "the": -4.860165, "this": -7.951207, "to": -5.312150, "to_stringin": -7.951207, "too": -7.951207, "two": -7.951207, "unshifted_index": -7.951207, "up": -7.951207, "upon": -7.951207, "upward": -7.951207, "us": -7.951207, "used": -6.852595, "value": -7.951207, "vec_result": -7.951207, "vector": -6.005297, "vector_one": -5.060835, "vector_two": -5.753983, "vectors.": -7.951207, "version": -7.258060, "view": -7.951207, "viewpoint": -7.258060, "was": -6.564913, "were": -7.951207, "where": -7.258060, "which": -7.258060, "will": -7.951207, "with": -7.258060, "would": -7.951207, "write": -7.951207, "write_color": -5.753983, "x": -4.906685, "x_loop": -7.258060, "y": -4.773153, "y_loop": -7.258060, "z": -5.006768, "z_component": -7.951207, }, "LSL": map[string]float64{ "(": -2.426199, ")": -2.426199, "+": -4.677491, ",": -3.173413, "-": -5.370638, ";": -2.003342, "<": -5.370638, "=": -2.480266, "AGENT_LIST_REGION": -5.370638, "EOF": -4.677491, "Key": -5.370638, "MASK_NEXT": -5.370638, "NULL_KEY": -5.370638, "PERM_ALL": -5.370638, "PI_BY_TWO": -4.677491, "PUBLIC_CHANNEL": -3.984344, "TEXTURE_DEFAULT": -4.677491, "[": -5.370638, "\\": -4.272026, "]": -5.370638, "agentsInRegion": -4.272026, "default": -3.984344, "event": -4.677491, "for": -5.370638, "index": -3.984344, "inputAsKey": -4.677491, "inputAsString": -4.677491, "integer": -3.291196, "key": -4.272026, "list": -5.370638, "llGetAgentList": -5.370638, "llGetListLength": -5.370638, "llGetOwner": -5.370638, "llList": -5.370638, "llRegionSayTo": -5.370638, "llSay": -5.370638, "llSetInventoryPermMask": -5.370638, "llWhisper": -4.677491, "numOfAgents": -4.677491, "num_detected": -4.677491, "other": -4.272026, "return": -5.370638, "someIntHex": -4.677491, "someIntMath": -4.677491, "someIntNormal": -4.677491, "someKey": -4.272026, "someKeyTexture": -4.677491, "someString": -4.677491, "someStringSpecial": -4.677491, "some_user_defined_function_without_return_type": -4.677491, "state": -3.984344, "state_entry": -4.677491, "string": -3.761200, "touch_end": -5.370638, "touch_start": -5.370638, "user_defined_function_returning_a_string": -4.677491, "{": -3.173413, "}": -3.173413, }, "Lasso": map[string]float64{ "!": -5.249127, "#": -8.978829, "#_exclude": -10.077441, "#_field": -8.978829, "#_fields": -6.522093, "#_keyfield": -8.468003, "#_record": -10.077441, "#_records": -9.384294, "#_return": -10.077441, "#_temp": -9.384294, "#anyChar": -9.384294, "#base": -8.691146, "#cache_name": -5.800775, "#character": -8.468003, "#charlist": -8.285681, "#cryptvalue": -7.774856, "#data": -7.438384, "#delimit": -7.774856, "#e": -7.512492, "#endslash": -7.997999, "#eol": -7.997999, "#escapes": -9.384294, "#expires": -8.691146, "#field_name": -7.187069, "#field_names": -7.438384, "#fieldname": -6.819344, "#fields": -9.384294, "#host": -8.468003, "#ibytes": -6.745236, "#id": -8.978829, "#index": -6.611705, "#indexmatches": -7.592534, "#inlinename": -7.774856, "#input": -9.384294, "#item": -7.774856, "#key": -6.899387, "#keyvalue": -8.285681, "#lock": -7.592534, "#maxage": -8.691146, "#method": -9.384294, "#newoptions": -7.774856, "#numericValue": -8.691146, "#obytes": -7.592534, "#options": -7.997999, "#output": -5.423481, "#params": -9.384294, "#pr": -9.384294, "#querytimer": -8.691146, "#record_array": -9.384294, "#recorddata": -8.691146, "#recordindex": -5.983096, "#records_array": -9.384294, "#request": -9.384294, "#rest": -10.077441, "#result": -10.077441, "#seed": -6.493922, "#session": -7.774856, "#sql": -6.339771, "#t": -9.384294, "#table": -9.384294, "#table_names": -9.384294, "#tags": -9.384294, "#temp": -6.248799, "#timer": -8.285681, "#type": -6.819344, "#types": -8.285681, "#types_mapping": -9.384294, "#unescapes": -9.384294, "#user": -7.774856, "#value": -5.966567, "$": -7.774856, "%": -7.997999, "&": -6.781604, "&&": -5.611533, "(": -2.651487, ")": -2.657461, "**/": -10.077441, "+": -4.210973, ",": -3.579159, "-": -1.942973, ".": -7.997999, "...": -10.077441, "..onCreate": -10.077441, "/": -7.997999, "/*": -9.384294, "//": -6.899387, "//#################################################################": -8.691146, "//............................................................................": -9.384294, "//Replace": -10.077441, "//bassistance.de/jquery": -9.384294, "//fail": -8.691146, "//fail_if": -8.285681, "/Database_TableNames": -9.384294, "/Define_Tag": -8.131531, "/Define_Type": -9.384294, "/If": -6.781604, "/Iterate": -8.468003, "/Loop": -10.077441, "/Protect": -9.384294, "/While": -8.691146, "/define_tag": -5.289949, "/define_type": -7.592534, "/if": -5.315267, "/inline": -6.899387, "/iterate": -7.438384, "/loop": -9.384294, "/records": -9.384294, "/while": -7.997999, "0": -9.384294, "01": -8.691146, "02": -8.691146, "03": -9.384294, "04": -7.997999, "05": -8.691146, "06": -9.384294, "07": -8.285681, "09": -7.774856, "1": -9.384294, "10": -9.384294, "11": -7.997999, "12": -7.997999, "14": -8.691146, "15": -9.384294, "2007": -8.131531, "2008": -8.285681, "2009": -7.438384, "2010": -8.691146, "2011": -8.691146, "2012": -8.468003, "23": -8.691146, "24": -9.384294, "28": -8.285681, "5": -8.691146, "6": -9.384294, "8": -8.285681, "9": -9.384294, ":": -3.188868, ";": -2.762888, "<": -6.388561, "<![CDATA[>": -9.384294, "</LassoNativeType>": -8.285681, "</fieldset>": -9.384294, "<?LassoScript>": -7.880216, "<LassoNativeType>": -8.285681, "<br>": -7.997999, "<div>": -9.384294, "<http://json-rpc.org/>": -10.077441, "<http://tagSwap.net/IDcrypt>": -9.384294, "<input>": -9.384294, "=": -2.820438, ">": -2.921264, "?": -5.386093, "@": -7.774856, "@#_fields": -10.077441, "@#_output": -10.077441, "@#field_names": -9.384294, "@#ibytes": -8.131531, "@#output": -7.997999, "@#result": -10.077441, "@#table_names": -9.384294, "@#temp": -10.077441, "A": -8.691146, "Add": -7.592534, "Added": -5.887786, "Adjusted": -9.384294, "All": -8.691146, "Also": -9.384294, "Append": -10.077441, "Array": -7.880216, "Authentication": -9.384294, "Autogenerates": -9.384294, "Avoid": -9.384294, "BOM_UTF": -10.077441, "Base": -9.384294, "BeginsWith": -9.384294, "Bits": -9.384294, "Boolean": -10.077441, "Bytes": -10.077441, "CHANGE": -7.997999, "Cache": -9.384294, "Changed": -7.592534, "Changes": -9.384294, "Client": -9.384294, "Contains": -8.691146, "Copyfield": -9.384294, "Copyright": -10.077441, "Corrected": -7.304852, "Correction": -9.384294, "Could": -9.384294, "Created": -9.384294, "Custom": -8.285681, "DOCTYPE": -9.384294, "Database_TableNameItem": -9.384294, "Database_TableNames": -9.384294, "Database_TableNames../Database_TableNames": -9.384294, "Date": -9.384294, "Debug": -8.691146, "Decimal": -10.077441, "Decode_Hex": -10.077441, "Decode_JSON": -9.384294, "Decoding": -10.077441, "Defaults": -8.285681, "Define_Tag": -8.131531, "Define_Type": -9.384294, "Delete": -9.384294, "Deserialize": -10.077441, "Done": -9.384294, "Either": -8.285681, "Else": -6.522093, "Encode_Hex": -10.077441, "Encode_JSON": -7.512492, "Encoding": -10.077441, "Encrypt_Blowfish": -9.384294, "EndPosition": -9.384294, "EndsWith": -9.384294, "Error_Code": -10.077441, "Error_Msg": -10.077441, "ExcludeField": -10.077441, "ExportString": -9.384294, "Fail_If": -10.077441, "Failed": -9.384294, "False": -7.880216, "Field_Names": -10.077441, "FileMaker": -7.774856, "Find": -7.774856, "FindPosition": -10.077441, "First": -7.512492, "Fix": -8.691146, "For": -9.384294, "ForEach": -9.384294, "Form": -8.691146, "Format": -8.468003, "Found_Count": -10.077441, "Get": -9.384294, "GetRange": -10.077441, "HHmmss": -10.077441, "HHmmssZ": -10.077441, "If": -6.388561, "Implemented": -8.691146, "Import": -9.384294, "ImportString": -9.384294, "Improved": -7.997999, "In": -9.384294, "Inc": -10.077441, "Include_URL": -9.384294, "Insert": -8.691146, "Integer": -8.978829, "Internal": -8.691146, "IsA": -6.819344, "Isa": -10.077441, "Iterate": -8.468003, "JC": -8.285681, "JOIN": -9.384294, "JOINs": -9.384294, "JS": -4.840999, "JSON": -10.077441, "KeyField_Name": -10.077441, "Keyfield": -7.997999, "Keyvalue": -8.285681, "Knop": -8.285681, "Knop.": -9.384294, "L": -8.691146, "LIMIT": -9.384294, "Lasso": -7.187069, "LassoSoft": -10.077441, "Lasso_TagExists": -8.285681, "Lasso_UniqueID": -9.384294, "Length": -10.077441, "Lewis": -9.384294, "Local": -6.270778, "Local_Defined": -8.285681, "Lockfield": -8.691146, "Looking": -9.384294, "Loop": -10.077441, "Loop_Abort": -9.384294, "Loop_Count": -8.468003, "Loop_abort": -10.077441, "Map": -8.468003, "Match_RegExp": -10.077441, "Minor": -9.384294, "More": -9.384294, "Moved": -8.691146, "Must": -9.384294, "MySQL": -8.285681, "NOTES": -7.997999, "Namespace": -8.978829, "No": -8.691146, "NoNative": -8.691146, "Now": -9.384294, "Null": -9.384294, "Object": -10.077441, "Only": -9.384294, "Option": -9.384294, "Optional": -7.997999, "Options": -7.997999, "Overrides": -9.384294, "PadLeading": -10.077441, "Parameters": -7.997999, "Params": -7.997999, "Piercy": -9.384294, "Position": -9.384294, "Possibly": -9.384294, "PostParams": -9.384294, "Previously": -9.384294, "Protect": -9.384294, "Q": -8.691146, "Raw": -9.384294, "Record": -8.691146, "Records_Array": -10.077441, "Remove": -9.384294, "Removed": -8.691146, "Replace": -7.133002, "ReplaceOnlyOne": -9.384294, "Required": -8.285681, "Return": -6.986398, "ReturnField": -10.077441, "Returns": -7.774856, "Review": -9.384294, "Ric": -9.384294, "SP": -7.592534, "SQL": -7.997999, "Safari": -9.384294, "Second": -8.131531, "Seed": -9.384294, "Serialize": -10.077441, "SetPosition": -10.077441, "Shortcut": -9.384294, "Size": -8.978829, "Specify": -9.384294, "StartPosition": -9.384294, "Steve": -9.384294, "String": -8.468003, "String_IsAlphaNumeric": -9.384294, "String_IsNumeric": -10.077441, "String_Remove": -9.384294, "Supports": -8.691146, "Syntax": -9.384294, "T": -8.468003, "Temporarily": -9.384294, "Thanks": -9.384294, "That": -9.384294, "The": -7.774856, "This": -8.691146, "Thread_RWLock": -8.285681, "True": -9.384294, "Unsupported": -9.384294, "Update": -9.384294, "Updates": -8.691146, "Use": -8.285681, "UseNative": -8.285681, "Used": -9.384294, "Useful": -9.384294, "User": -9.384294, "Username": -9.384294, "Uses": -9.384294, "Valid_Date": -9.384294, "While": -8.691146, "Z": -10.077441, "[": -7.592534, "\\": -5.150187, "]": -7.592534, "__html_reply__": -8.285681, "__lassoservice_ip__": -9.384294, "_date_msec": -8.691146, "_debug_trace": -8.691146, "_fields": -9.384294, "_global_": -9.384294, "_knop_data": -9.384294, "_search": -9.384294, "_sql": -8.691146, "_unknowntag": -8.691146, "`": -7.438384, "a": -5.828946, "able": -7.774856, "accept": -9.384294, "accessed": -9.384294, "action": -7.592534, "action_params": -8.285681, "action_statement": -7.774856, "actionpath": -8.691146, "actual": -9.384294, "add": -7.438384, "added": -7.187069, "addfield": -7.592534, "adding": -7.997999, "additional": -9.384294, "addrecord": -9.384294, "adjusted": -9.384294, "adjustment": -9.384294, "adjustments": -9.384294, "affectedrecord_keyvalue": -8.691146, "after": -8.691146, "afterscript": -9.384294, "all": -7.774856, "already": -8.285681, "also": -7.592534, "amount": -9.384294, "an": -7.997999, "and": -5.983096, "another": -8.691146, "any": -7.592534, "appear": -9.384294, "are": -7.774856, "around": -8.285681, "array": -5.966567, "array.": -9.384294, "as": -6.676243, "asString": -8.978829, "asstring": -8.691146, "at": -7.592534, "authentication": -9.384294, "auto": -8.691146, "autocreated": -8.285681, "automatic": -9.384294, "automatically": -8.691146, "available": -8.691146, "avoid": -9.384294, "b": -9.384294, "bLIMIT": -9.384294, "backticks": -8.691146, "backward": -9.384294, "backwards": -9.384294, "base": -9.384294, "be": -6.248799, "been": -8.285681, "begin": -8.691146, "beginning": -9.384294, "behavior": -8.285681, "behavior.": -9.384294, "being": -9.384294, "better": -9.384294, "between": -9.384294, "bit": -9.384294, "bits": -7.187069, "boilerplate": -9.384294, "bom_utf": -10.077441, "boolean": -10.077441, "both": -8.691146, "br": -8.691146, "broken": -9.384294, "buffer": -9.384294, "bug": -9.384294, "bugfixed": -9.384294, "built": -9.384294, "but": -7.997999, "button": -8.691146, "button_apply": -9.384294, "buttons": -9.384294, "buttontemplate": -9.384294, "by": -6.819344, "bytes": -7.880216, "cache_name": -9.384294, "cached": -9.384294, "called": -8.691146, "can": -7.304852, "cancel": -9.384294, "cannot": -9.384294, "capturesearchvars": -8.285681, "case": -9.384294, "cause": -9.384294, "change": -9.384294, "changed": -8.285681, "checkbox": -7.997999, "checkboxes": -9.384294, "checkdirty": -9.384294, "class": -8.691146, "clean": -9.384294, "clear": -8.691146, "clearing": -8.691146, "clicked": -9.384294, "client": -8.691146, "close": -9.384294, "closes": -9.384294, "closing": -9.384294, "code": -8.691146, "codes": -8.285681, "column": -9.384294, "common": -9.384294, "comparsions": -9.384294, "compatibility": -7.997999, "condition": -9.384294, "conflicts": -9.384294, "confusion...": -9.384294, "connected": -9.384294, "consistent": -9.384294, "construction": -9.384294, "consume_array": -9.384294, "consume_object": -9.384294, "consume_string": -9.384294, "consume_token": -10.077441, "contain": -9.384294, "contains": -9.384294, "content_body": -7.997999, "conversion": -9.384294, "copy": -7.081709, "copyfield": -9.384294, "copying": -9.384294, "corrected": -8.691146, "corrections": -9.384294, "correctly": -9.384294, "corresponding": -9.384294, "could": -9.384294, "count": -8.691146, "create": -9.384294, "creates": -9.384294, "creating": -8.285681, "css": -8.691146, "ctype": -8.691146, "current": -8.691146, "current_record": -8.691146, "custom": -9.384294, "custom_language": -9.384294, "custom_string": -9.384294, "d": -9.384294, "data": -8.285681, "database": -6.165418, "database.": -8.691146, "databaserows_map": -9.384294, "databases": -9.384294, "databases.": -9.384294, "datasource_name": -8.285681, "datasources": -9.384294, "datasources.": -9.384294, "date": -7.187069, "db": -8.285681, "db_connect": -6.745236, "dbfield": -9.384294, "dbfields": -9.384294, "debug": -8.691146, "debug_trace": -6.493922, "decimal": -8.691146, "decrypt_blowfish": -9.384294, "default": -7.997999, "defaults": -9.384294, "define": -7.081709, "define_tag": -5.179601, "define_type": -6.745236, "defined": -8.691146, "delete": -7.774856, "delimit": -8.691146, "depending": -8.691146, "deprecated.": -9.384294, "description": -5.720732, "different": -9.384294, "dirty": -9.384294, "disable": -8.691146, "disabled": -9.384294, "display": -8.691146, "div": -9.384294, "do": -9.384294, "doctype": -8.691146, "doctype_xhtml": -8.285681, "documentation": -9.384294, "doesn": -9.384294, "don": -9.384294, "done": -9.384294, "duh": -9.384294, "dummy": -9.384294, "duplicate": -8.691146, "duration": -8.691146, "e": -7.512492, "eachPair": -10.077441, "either": -7.997999, "else": -5.950306, "empty": -8.691146, "en": -8.285681, "enabled": -9.384294, "encode_html": -8.691146, "encode_sql": -9.384294, "encrypt_blowfish": -9.384294, "end": -9.384294, "endscript": -9.384294, "endslash": -8.691146, "entersubmitblock": -9.384294, "entire": -9.384294, "entries": -9.384294, "eol": -9.384294, "eq": -8.285681, "error": -6.493922, "error_code": -5.670722, "error_data": -8.285681, "error_lang": -7.774856, "error_lang_custom": -9.384294, "error_msg": -6.293251, "errorcodes": -9.384294, "errors": -8.285681, "errors_error_data": -9.384294, "even": -9.384294, "example": -8.691146, "except": -9.384294, "exception": -8.691146, "exclude": -8.691146, "execute": -9.384294, "executed": -9.384294, "exist": -8.691146, "existing": -9.384294, "export": -7.592534, "expressions": -9.384294, "fail_if": -8.691146, "failed": -7.997999, "false": -6.858565, "faster": -8.691146, "few": -9.384294, "field": -5.950306, "field.": -9.384294, "field_name": -7.997999, "field_names": -6.986398, "field_names_map": -8.691146, "fieldname": -9.384294, "fields": -7.592534, "fields.": -8.691146, "fieldset": -7.997999, "fieldsets": -8.691146, "file": -9.384294, "filled": -9.384294, "find": -5.828946, "findposition": -8.285681, "finds": -9.384294, "fingerprint": -9.384294, "first": -7.304852, "fixed": -8.691146, "flag": -7.774856, "focus": -8.285681, "for": -5.341242, "foreach": -10.077441, "foreachpair": -10.077441, "form": -6.676243, "form.": -9.384294, "formaction": -8.691146, "format": -8.131531, "formating": -9.384294, "formmode": -9.384294, "forms": -8.285681, "found": -6.899387, "found_count": -6.899387, "foundrows": -9.384294, "framework": -8.285681, "from": -6.819344, "fulltext": -8.691146, "generated": -8.691146, "generating": -8.691146, "get": -6.339771, "getbutton": -8.691146, "getrecord": -9.384294, "getvalue": -9.384294, "give": -9.384294, "given": -9.384294, "global": -6.388561, "gmt": -9.384294, "grabbing": -9.384294, "grow": -9.384294, "hand": -9.384294, "handle": -9.384294, "handler": -9.384294, "handling": -7.438384, "has": -7.997999, "have": -8.691146, "help": -8.691146, "here": -9.384294, "hidden": -9.384294, "hint": -9.384294, "host": -7.369391, "html": -7.774856, "http": -8.978829, "ibytes": -8.691146, "id": -7.369391, "identify": -9.384294, "if": -5.114596, "ignorecase": -7.438384, "ignored": -8.285681, "import": -8.285681, "improved": -9.384294, "in": -6.107149, "in.": -9.384294, "include": -9.384294, "index": -8.691146, "inheritance": -8.691146, "init": -8.691146, "inline": -6.986398, "inline_": -8.691146, "inlinename": -6.339771, "input": -8.285681, "insert": -5.857933, "inserted": -9.384294, "insertfrom": -9.384294, "instance": -7.997999, "instance.": -9.384294, "instance_unique": -7.997999, "instance_varname": -8.285681, "instead": -7.304852, "integer": -6.522093, "interact": -8.285681, "internally": -9.384294, "invalid": -9.384294, "is": -6.052089, "is.": -8.691146, "isa": -6.819344, "isfilemaker": -7.187069, "isknoptype": -9.384294, "it": -6.745236, "it.": -9.384294, "iterate": -7.438384, "iterator": -9.384294, "itself": -9.384294, "javascripts": -8.691146, "join": -8.468003, "jquery": -9.384294, "json": -10.077441, "json_consume_array": -8.978829, "json_consume_object": -9.384294, "json_consume_string": -8.978829, "json_consume_token": -9.384294, "json_deserialize": -10.077441, "json_literal": -10.077441, "json_object": -9.384294, "json_rpccall": -10.077441, "json_serialize": -7.187069, "just": -8.691146, "keeplock": -9.384294, "key": -9.384294, "keyfield": -5.800775, "keyfield_value": -7.438384, "keyparamname": -9.384294, "keys": -9.384294, "keyvalue": -5.492473, "keyvalue.": -8.691146, "keyvalue_temp": -9.384294, "keywords": -9.384294, "knop": -8.691146, "knop_": -7.187069, "knop_base": -7.304852, "knop_cache": -9.384294, "knop_cachedelete": -9.384294, "knop_cachefetch": -8.691146, "knop_cachestore": -8.691146, "knop_databaserow": -8.691146, "knop_databaserows": -9.384294, "knop_debug": -8.691146, "knop_form": -9.384294, "knop_foundrows": -8.691146, "knop_knoptype": -9.384294, "knop_lang": -9.384294, "knop_stripbackticks": -9.384294, "knop_timer": -7.774856, "knop_unique": -9.384294, "knoptype": -9.384294, "known.": -8.691146, "label": -8.691146, "labels": -8.285681, "language": -9.384294, "lasso_currentaction": -8.691146, "lasso_tagexists": -7.774856, "last": -9.384294, "left": -9.384294, "legend": -7.997999, "legend.": -9.384294, "length": -7.997999, "less": -9.384294, "let": -9.384294, "like": -9.384294, "linebreak": -9.384294, "little": -9.384294, "load": -9.384294, "loadfields": -8.285681, "loading": -8.691146, "local": -4.901291, "local_defined": -6.165418, "localized": -9.384294, "lock": -6.745236, "lock_expires": -8.691146, "lock_seed": -8.691146, "lock_timestamp": -9.384294, "lock_user": -9.384294, "locked": -8.285681, "lockfield": -7.304852, "locking": -7.774856, "locks": -9.384294, "lockvalue": -6.676243, "lockvalue_decrypted": -9.384294, "lockvalue_encrypted": -7.997999, "look": -9.384294, "loop": -9.384294, "loop_count": -7.997999, "lower": -9.384294, "made": -9.384294, "make": -7.997999, "makedirty": -9.384294, "manually": -9.384294, "map": -6.339771, "marker": -8.978829, "matches": -8.978829, "math_min": -9.384294, "math_random": -9.384294, "maxage": -9.384294, "maxrecords": -7.592534, "maxrecords_value": -7.997999, "may": -9.384294, "member": -7.304852, "message": -9.384294, "messaged": -8.691146, "messages": -9.384294, "method": -8.978829, "millisecond": -9.384294, "missing": -7.997999, "mode": -9.384294, "more": -8.285681, "most": -8.285681, "moved": -9.384294, "moving": -9.384294, "ms": -7.774856, "mt_": -8.691146, "multiple": -7.997999, "must": -7.997999, "n": -6.088457, "name": -6.676243, "name.": -9.384294, "names": -8.285681, "names.": -9.384294, "namespace": -6.165418, "nd": -9.384294, "needed": -8.691146, "needed.": -8.691146, "needs": -9.384294, "nested": -9.384294, "never": -9.384294, "new": -7.592534, "next": -9.384294, "no": -7.774856, "noautoparams": -9.384294, "normal": -9.384294, "not": -6.206240, "nothing": -9.384294, "now": -6.819344, "nowarning": -9.384294, "null": -6.145615, "object": -7.304852, "object.": -8.691146, "objects": -8.691146, "obytes": -9.384294, "of": -5.918558, "on": -7.774856, "onCreate": -10.077441, "onassign": -9.384294, "once.": -9.384294, "onconvert": -9.384294, "oncreate": -6.819344, "one": -9.384294, "one.": -9.384294, "ones": -9.384294, "onfocus": -9.384294, "only": -8.691146, "op": -8.691146, "open": -9.384294, "opening": -9.384294, "option": -8.691146, "optional": -5.433050, "optionally": -9.384294, "optiongroup": -9.384294, "options": -8.691146, "or": -6.899387, "org": -10.077441, "original": -9.384294, "other": -8.691146, "output": -7.187069, "override": -9.384294, "page": -7.592534, "page.": -9.384294, "pair": -7.438384, "parameter": -7.774856, "parameters": -7.997999, "params": -7.244228, "parent": -8.468003, "partially": -9.384294, "pass": -9.384294, "passing": -9.384294, "password": -7.438384, "path": -8.285681, "path.": -9.384294, "per": -9.384294, "perform": -9.384294, "performed.": -9.384294, "performing": -9.384294, "periods": -9.384294, "periods.": -9.384294, "physical": -9.384294, "plain": -9.384294, "plugin": -8.691146, "plugins/jquery": -9.384294, "populate": -9.384294, "populated": -9.384294, "populates": -9.384294, "post": -9.384294, "pr": -10.077441, "pre": -8.691146, "precision": -9.384294, "presence": -9.384294, "present": -8.691146, "preserves": -9.384294, "prevent": -9.384294, "previously": -8.691146, "priority": -7.592534, "problems": -9.384294, "process": -8.285681, "processed.": -9.384294, "properly": -8.285681, "properties": -8.691146, "properties.": -9.384294, "proprietary": -9.384294, "prototype": -7.774856, "public": -10.077441, "query": -7.997999, "querytime": -7.997999, "querytimer": -8.691146, "quicksearch": -9.384294, "radio": -7.997999, "radios": -9.384294, "random": -9.384294, "read": -10.077441, "readlock": -9.384294, "readunlock": -9.384294, "real": -8.691146, "record": -6.551080, "record.": -7.774856, "record_array": -8.691146, "recorddata": -7.997999, "recordid": -9.384294, "recordid_value": -9.384294, "recordindex": -8.691146, "records": -7.438384, "records_array": -8.285681, "records_array.": -9.384294, "rederform": -9.384294, "referenc": -9.384294, "reference": -8.285681, "references": -9.384294, "regexp": -10.077441, "registered": -9.384294, "reliably.": -9.384294, "remove": -8.691146, "removeLeading": -9.384294, "removeall": -9.384294, "removed": -8.691146, "removedotbackticks": -9.384294, "removeleading": -9.384294, "removetrailing": -7.997999, "rendered": -9.384294, "renderfooter": -9.384294, "renderform": -6.745236, "renderhtml": -7.997999, "rendering": -9.384294, "renders": -9.384294, "replace": -7.774856, "reporting": -8.691146, "require": -10.077441, "required": -6.227293, "requires": -9.384294, "reset": -9.384294, "response_filepath": -7.997999, "response_localpath": -7.997999, "restore": -9.384294, "result": -9.384294, "resultset_count": -9.384294, "resultset_count_map": -9.384294, "resultvar": -9.384294, "return": -5.142967, "returned": -8.691146, "returned.": -9.384294, "returning": -9.384294, "returns": -8.285681, "right": -8.691146, "root": -9.384294, "s": -8.285681, "safe": -9.384294, "same": -7.997999, "save": -9.384294, "saverecord": -8.691146, "saving.": -9.384294, "say": -9.384294, "scratch": -9.384294, "scripts": -9.384294, "search": -6.899387, "searchfields": -9.384294, "searchparams": -8.285681, "searchresultvars": -9.384294, "searchs": -9.384294, "second": -7.997999, "seed": -8.691146, "select": -7.880216, "selects": -9.384294, "self": -3.854865, "separate": -9.384294, "serialization_reader": -10.077441, "serialize": -10.077441, "series": -9.384294, "server": -9.384294, "server_name": -8.285681, "session": -8.691146, "session...": -9.384294, "session_addvar": -8.691146, "session_id": -8.285681, "set": -7.592534, "setformat": -8.691146, "settable": -9.384294, "shortcut": -9.384294, "should": -9.384294, "show": -8.691146, "shown_count": -8.691146, "shown_first": -8.285681, "shown_last": -8.691146, "side": -8.285681, "since": -9.384294, "single": -9.384294, "site": -9.384294, "size": -6.088457, "skiprecords": -7.592534, "skiprecords_value": -7.997999, "so": -7.438384, "some": -9.384294, "sometimes": -9.384294, "spaces": -9.384294, "special": -8.691146, "specific": -7.997999, "specified": -6.611705, "specified.": -8.691146, "specify": -8.285681, "specifying": -8.285681, "split": -9.384294, "sql": -6.676243, "standard": -9.384294, "starting": -9.384294, "statement": -9.384294, "statement.": -9.384294, "stays": -9.384294, "still": -9.384294, "storage": -9.384294, "stored": -8.691146, "string": -5.670722, "string_IsNumeric": -10.077441, "string_findregexp": -7.774856, "string_replaceregexp": -7.997999, "strings": -8.691146, "stripbackticks": -9.384294, "style": -7.997999, "submit": -9.384294, "submitBlock": -9.384294, "submitting": -9.384294, "substring": -8.691146, "suited": -9.384294, "support": -7.592534, "supported": -9.384294, "surrounds": -9.384294, "syntax": -9.384294, "t": -9.384294, "table": -6.551080, "table_realname": -6.986398, "tables": -9.384294, "tag": -7.304852, "tag_name": -6.293251, "tags": -7.438384, "tagtime": -6.745236, "tagtime_tagname": -7.304852, "take": -9.384294, "temp": -8.691146, "template": -7.997999, "text": -8.691146, "textarea": -8.285681, "than": -8.691146, "that": -6.745236, "the": -5.164786, "then": -9.384294, "there": -9.384294, "these": -9.384294, "this": -7.774856, "through": -9.384294, "time": -8.285681, "timer": -7.187069, "timestamp": -8.691146, "timestamp.": -9.384294, "timestampfield": -9.384294, "timestampvalue": -9.384294, "to": -5.040488, "took": -9.384294, "touched": -9.384294, "trace": -7.774856, "trait": -10.077441, "trait_forEach": -10.077441, "trait_json_serialize": -9.384294, "transparently": -9.384294, "true": -7.369391, "type": -5.872748, "types": -7.774856, "typo": -9.384294, "unescape": -10.077441, "unique": -9.384294, "unknowntag": -9.384294, "unless": -8.691146, "unsaved": -9.384294, "unsavedwarning": -9.384294, "until": -9.384294, "up": -9.384294, "update": -7.997999, "updated": -9.384294, "updatefields": -8.285681, "updatefields.": -8.691146, "upload": -9.384294, "uploads": -9.384294, "upper": -9.384294, "url": -9.384294, "use": -8.285681, "used": -7.438384, "used.": -8.691146, "user": -5.983096, "username": -7.592534, "uses": -9.384294, "using": -7.774856, "valid": -8.691146, "validate": -8.285681, "validation": -7.187069, "validation/": -9.384294, "value": -6.676243, "value.": -9.384294, "values": -7.997999, "var": -6.676243, "variable": -9.384294, "variable.": -9.384294, "variables": -9.384294, "varname": -8.285681, "vars": -9.384294, "version": -7.774856, "warnings": -9.384294, "was": -7.774856, "well": -9.384294, "what": -9.384294, "when": -6.676243, "where": -9.384294, "which": -9.384294, "while": -7.774856, "whitespace": -9.384294, "who": -9.384294, "will": -6.899387, "with": -6.034390, "within": -9.384294, "without": -8.691146, "work": -7.997999, "works": -9.384294, "would": -9.384294, "wrap": -9.384294, "writelock": -8.691146, "writeunlock": -8.691146, "xhtml": -6.986398, "xhtmlparam": -9.384294, "xml": -10.077441, "you": -8.691146, "yyyyMMdd": -9.384294, "zeros": -9.384294, "{": -7.187069, "|": -6.858565, "||": -6.710145, "}": -7.244228, "\ufeff": -9.384294, }, "Latte": map[string]float64{ "!": -7.583756, "#": -5.974318, "#content": -6.890609, "#head": -7.583756, "#navbar": -7.583756, "#scripts": -6.890609, "$": -2.949027, "&": -5.504315, "&&": -6.197462, "(": -4.405702, ")": -4.405702, "*": -4.448262, "**": -7.583756, "*new": -7.583756, "+": -7.583756, ",": -4.000237, "-": -3.201730, ".": -6.890609, ".l": -7.583756, ".push": -7.583756, ".q": -6.890609, "/block": -6.197462, "/cache": -6.890609, "/define": -7.583756, "/foreach": -6.890609, "/form": -7.583756, "/h": -5.974318, "/if": -4.693385, "/ifset": -6.485144, "/sep": -7.583756, "0": -7.583756, "1": -7.583756, "2": -7.583756, "9": -7.583756, ":": -4.182559, ";": -4.811168, "<": -5.281171, "<!--[if>": -7.583756, "<!DOCTYPE>": -7.583756, "<![endif]-->": -7.583756, "</a>": -5.281171, "</b>": -7.583756, "</body>": -7.583756, "</button>": -7.583756, "</div>": -4.944699, "</footer>": -7.583756, "</head>": -7.583756, "</html>": -7.583756, "</i>": -5.504315, "</p>": -5.974318, "</script>": -5.791997, "</span>": -4.944699, "</table>": -6.890609, "</td>": -5.386532, "</title>": -7.583756, "</tr>": -6.197462, "<a>": -5.281171, "<b>": -7.583756, "<body>": -7.583756, "<br>": -7.583756, "<button>": -7.583756, "<div>": -4.944699, "<footer>": -7.583756, "<head>": -7.583756, "<html>": -7.583756, "<i>": -5.504315, "<img>": -6.890609, "<link>": -6.890609, "<meta>": -5.791997, "<p>": -5.974318, "<script>": -5.791997, "<span>": -4.944699, "<table>": -6.890609, "<td>": -5.386532, "<title>": -7.583756, "<tr>": -6.197462, "=": -2.502352, ">": -2.453858, "@param": -6.485144, "Academy": -7.583756, "All": -7.583756, "Although": -7.583756, "Amara": -7.583756, "Approve": -6.890609, "Date": -7.583756, "Diffing": -7.583756, "Edit": -7.583756, "English": -7.583756, "Filed": -7.583756, "First": -7.583756, "IE": -6.890609, "Khan": -7.583756, "Mark": -6.890609, "Only": -7.583756, "Revision": -6.890609, "Seems": -7.583756, "Translation": -7.583756, "UNSET": -7.583756, "Video": -7.583756, "[": -5.504315, "]": -5.386532, "_flash.latte": -7.583756, "_navbar.latte": -7.583756, "a": -6.197462, "a.async": -7.583756, "a.src": -7.583756, "add": -7.583756, "alert": -6.890609, "already": -7.583756, "amaraId": -7.583756, "and": -7.583756, "approved": -6.197462, "are": -7.583756, "arguments": -7.583756, "array": -7.583756, "as": -5.791997, "author": -4.492714, "authorId": -6.890609, "base": -7.583756, "basePath": -7.583756, "been": -6.890609, "block": -5.504315, "bottom": -7.583756, "btn": -5.791997, "by": -6.890609, "cache": -6.890609, "canonical": -7.583756, "canonicalTimeTranslated": -6.890609, "categories": -7.583756, "category": -7.583756, "charset": -7.583756, "class": -3.523313, "class=": -5.504315, "col": -7.583756, "colspan": -6.890609, "comment": -6.485144, "commentForm": -7.583756, "comments": -7.583756, "comparison.": -7.583756, "complete": -7.583756, "condensed": -7.583756, "content": -5.791997, "content=": -5.974318, "context": -7.583756, "count": -7.583756, "data": -5.281171, "default": -5.791997, "define": -7.583756, "description": -7.583756, "diff": -7.583756, "diffs": -6.890609, "document": -7.583756, "document.documentElement.className": -7.583756, "done": -5.386532, "done/": -6.890609, "down": -6.890609, "edit": -7.583756, "editButton": -6.485144, "editor": -5.637846, "ellipsis": -7.583756, "else": -5.791997, "elseif": -5.974318, "empty": -7.583756, "equiv": -7.583756, "estimatedTimeTranslated": -7.583756, "expires": -7.583756, "fa": -5.504315, "flash": -6.197462, "flashes": -6.890609, "for": -7.583756, "foreach": -5.791997, "form": -7.583756, "function": -6.890609, "g": -6.890609, "ga": -6.890609, "getRevisionsIn": -7.583756, "h": -5.791997, "has": -6.890609, "height": -6.890609, "history": -7.583756, "how": -7.583756, "href": -5.098850, "href=": -6.890609, "html": -7.583756, "http": -7.583756, "i": -5.386532, "icon": -7.583756, "id": -6.197462, "if": -4.405702, "ifset": -5.974318, "ignore": -7.583756, "implode": -7.583756, "include": -5.018807, "incomplete": -5.637846, "index": -7.583756, "info": -7.583756, "initial": -7.583756, "inner": -6.890609, "input": -6.890609, "is": -7.583756, "isset": -6.485144, "joined": -6.197462, "k": -6.890609, "kaButton": -6.197462, "khanovaskola.cz": -7.583756, "ksid": -6.890609, "language": -6.890609, "left": -7.583756, "line": -7.583756, "link": -7.583756, "list": -6.890609, "loggedIn": -6.485144, "lt": -7.583756, "m": -6.485144, "m.parentNode.insertBefore": -7.583756, "marked": -7.583756, "md": -7.583756, "mdash": -6.890609, "media": -7.583756, "media=": -7.583756, "messages": -7.583756, "n": -4.251552, "name": -5.018807, "nbsp": -7.583756, "new": -4.149769, "newer": -7.583756, "no": -7.583756, "noescape": -6.485144, "not": -7.583756, "number": -6.197462, "o": -5.637846, "of": -6.485144, "offset": -7.583756, "old": -5.637846, "older": -7.583756, "on": -5.791997, "optional": -7.583756, "out": -6.890609, "outOf": -5.386532, "page": -7.583756, "path": -7.583756, "placeholder": -7.583756, "placement": -6.197462, "plus": -7.583756, "postfix": -6.485144, "published": -7.583756, "publishedAt": -6.890609, "r": -5.637846, "rel": -6.890609, "report": -7.583756, "rev": -5.974318, "revId": -7.583756, "revision": -4.588024, "revisions": -6.890609, "robots": -6.485144, "s": -7.583756, "s.createElement": -7.583756, "s.getElementsByTagName": -7.583756, "save": -7.583756, "scale": -7.583756, "secondsToTime": -7.583756, "sep": -7.583756, "set": -6.890609, "share": -7.583756, "siteId": -6.890609, "siteRevision": -7.583756, "sort": -7.583756, "square": -7.583756, "src": -5.791997, "status": -7.583756, "string": -6.890609, "subtitles": -6.890609, "success": -6.890609, "syntax": -7.583756, "table": -7.583756, "tell": -7.583756, "template": -7.583756, "text": -5.974318, "textChange": -7.583756, "the": -7.583756, "there": -7.583756, "thinsp": -5.974318, "this": -7.583756, "threshold": -5.974318, "thumbs": -6.485144, "time": -5.637846, "timeAgo": -6.485144, "timeChange": -6.890609, "timeTranslated": -6.890609, "title": -5.504315, "title=": -6.485144, "to": -6.890609, "toggle": -5.974318, "tooltip": -7.583756, "translated": -6.485144, "trim": -7.583756, "under": -7.583756, "up": -7.583756, "update": -7.583756, "user": -6.197462, "var": -5.386532, "vars": -7.583756, "video": -5.637846, "warning": -7.583756, "web": -7.583756, "width": -6.890609, "window": -7.583756, "{": -2.649282, "|": -4.693385, "||": -6.485144, "}": -2.642114, "~": -7.583756, "š": -6.890609, "›": -7.583756, }, "Lean": map[string]float64{ "(": -2.733974, ")": -2.733974, "*": -3.427121, "*b": -6.230481, "*c": -5.537334, "*d": -6.230481, "+": -4.621044, ",": -2.446292, "-": -5.131869, "...": -5.314191, ".basic": -6.923629, "/": -5.131869, ":": -2.796494, "=": -2.916295, "@equiv_path": -6.923629, "@is_hprop.elim": -6.923629, "A": -3.556333, "A.": -6.923629, "All": -6.923629, "Apache": -6.923629, "Authors": -6.923629, "Avigad": -6.923629, "B": -5.825016, "B.": -6.923629, "C": -6.923629, "Copyright": -6.923629, "Corporation.": -6.923629, "General": -6.923629, "H": -4.358679, "H_assoc": -4.844187, "H_comm": -5.825016, "Jeremy": -6.923629, "LICENSE.": -6.923629, "Leonardo": -6.923629, "Microsoft": -6.923629, "Module": -6.923629, "Moura": -6.923629, "Released": -6.923629, "Type": -5.825016, "Type.": -5.537334, "[": -6.923629, "]": -6.923629, "_": -6.923629, "`": -5.537334, "a": -2.898277, "a*": -4.977718, "a*b": -5.314191, "a*c": -5.537334, "a.": -5.825016, "a_": -5.537334, "algebra.binary": -6.923629, "apply": -3.832586, "as": -6.923629, "assert": -6.230481, "assoc": -6.923629, "associative": -5.825016, "attribute": -6.923629, "b": -3.210057, "b*": -5.825016, "b*a": -6.923629, "b*c": -5.314191, "b.": -6.230481, "begin": -5.825016, "binary": -5.825016, "c": -3.832586, "c*b": -6.923629, "c*d": -5.825016, "calc": -5.825016, "category": -6.230481, "category.": -6.923629, "category.mk": -6.923629, "commutative": -6.230481, "context": -6.230481, "d": -6.923629, "de": -6.923629, "definition": -4.090415, "described": -6.923629, "end": -4.726404, "eq": -6.923629, "eq.ops": -6.923629, "equiv": -6.923629, "equiv.mk": -5.825016, "exact": -4.977718, "f": -4.726404, "fapply": -5.131869, "file": -6.923629, "function": -6.923629, "funext.path_pi": -5.825016, "helper": -6.923629, "idp": -5.825016, "import": -6.230481, "in": -6.923629, "infixl": -6.230481, "instance": -6.923629, "intro": -5.314191, "intros": -4.215578, "inv": -6.230481, "inv_op_cancel_left": -6.923629, "inv_op_cancel_right": -6.923629, "is_equiv.adjointify": -6.230481, "is_hset": -5.537334, "is_iso": -6.923629, "is_iso.rec_on": -6.230481, "is_trunc_is_hprop": -6.923629, "iso": -6.230481, "iso_of_path": -6.923629, "isomorphic.rec_on": -5.825016, "l": -4.151040, "left_cancelative": -6.923629, "left_comm": -6.923629, "left_distributive": -6.923629, "left_identity": -6.923629, "left_inverse": -6.923629, "license": -6.923629, "local": -5.314191, "logic.eq": -6.923629, "morphism": -6.923629, "namespace": -5.825016, "notation": -5.537334, "of": -6.923629, "one": -6.230481, "op": -5.537334, "op_inv_cancel_left": -6.923629, "op_inv_cancel_right": -6.923629, "open": -5.825016, "operations.": -6.923629, "p": -5.314191, "pi": -6.923629, "precategory": -5.825016, "precategory.": -6.230481, "precategory.mk.": -6.923629, "precategory.set_precategory": -6.923629, "precategory.set_precategory.": -6.923629, "properties": -6.923629, "reserved.": -6.923629, "retr": -6.923629, "right_cancelative": -6.923629, "right_comm": -6.923629, "right_distributive": -6.923629, "right_identity": -6.923629, "right_inverse": -6.923629, "rights": -6.923629, "sect": -6.923629, "section": -6.923629, "set_category": -6.923629, "set_category_equiv_iso": -6.230481, "set_precategory": -6.923629, "sigma": -6.923629, "sigma.ops": -6.923629, "sigma.path": -6.923629, "sorry": -5.537334, "take": -6.230481, "the": -6.923629, "theorem": -5.825016, "trunc": -6.923629, "trunc_pi": -6.923629, "truncation": -6.923629, "types.pi": -6.923629, "ua": -6.230481, "under": -6.923629, "universe": -6.230481, "variable": -4.525733, "variables": -6.923629, "x": -4.977718, "{": -4.284571, "}": -4.284571, "¹": -4.977718, "Σ": -5.537334, "λ": -5.825016, "⁻": -4.977718, "₁": -6.230481, "₂": -6.230481, "→": -4.438722, "∀": -4.151040, "≃": -6.923629, "≅": -6.923629, "▹": -6.230481, }, "Less": map[string]float64{ "#": -3.871201, "%": -3.871201, "(": -3.871201, ")": -3.871201, ",": -3.871201, "-": -2.772589, ".border": -3.871201, ".content": -3.871201, "/": -3.178054, ":": -1.925291, ";": -1.925291, "@blue": -2.484907, "@margin": -2.772589, "bbfce": -3.871201, "border": -3.178054, "color": -2.772589, "darken": -3.871201, "margin": -3.871201, "navigation": -3.871201, "padding": -3.871201, "px": -3.871201, "{": -3.178054, "}": -3.178054, }, "Lex": map[string]float64{ "!": -5.562987, "\"": -7.172425, "#define": -4.127902, "#else": -6.479277, "#endif": -6.073812, "#if": -6.479277, "#ifdef": -7.172425, "#include": -5.380665, "$": -6.479277, "%": -6.479277, "&": -4.975200, "&&": -6.073812, "(": -2.289623, ")": -2.274585, "*": -4.975200, "**": -7.172425, "*/": -7.172425, "*buf": -7.172425, "*end": -7.172425, "*fh": -6.479277, "*lval": -7.172425, "*s": -7.172425, "*stack_state": -7.172425, "*str": -6.479277, "*t": -7.172425, "*zend_ini_scanner_get_filename": -7.172425, "+": -4.533367, ",": -3.458853, "-": -4.227986, ".": -7.172425, ":": -6.479277, ";": -2.672615, "<": -6.479277, "<!*>": -7.172425, "<*>": -7.172425, "<,>": -7.172425, "<INITIAL,ST_RAW>": -7.172425, "<INITIAL,ST_VALUE,ST_RAW>": -7.172425, "<INITIAL,ST_VALUE>": -6.479277, "<INITIAL>": -5.226514, "<ST_DOUBLE_QUOTES,ST_SECTION_VALUE,ST_VALUE,ST_OFFSET>": -7.172425, "<ST_DOUBLE_QUOTES>": -6.479277, "<ST_OFFSET>": -7.172425, "<ST_RAW>": -6.479277, "<ST_SECTION_RAW,ST_SECTION_VALUE>": -7.172425, "<ST_SECTION_RAW>": -7.172425, "<ST_SECTION_VALUE,ST_OFFSET>": -7.172425, "<ST_SECTION_VALUE,ST_VALUE,ST_OFFSET>": -5.786130, "<ST_VALUE,ST_RAW>": -6.479277, "<ST_VALUE,ST_SECTION_VALUE,ST_OFFSET>": -7.172425, "<ST_VALUE>": -6.073812, "<ST_VARNAME>": -6.479277, "<errno.h>": -7.172425, "<helly@php.net>": -7.172425, "<jani@php.net>": -7.172425, "<nlopess@php.net>": -7.172425, "<scottmac@php.net>": -7.172425, "<zeev@zend.com>": -7.172425, "<zend_ini_parser.h>": -7.172425, "=": -3.221181, ">": -5.786130, "?": -6.073812, "ANY_CHAR": -6.479277, "BEGIN": -5.380665, "BOOL_FALSE": -7.172425, "BOOL_TRUE": -7.172425, "CONSTANT": -7.172425, "Comments": -7.172425, "DNUM": -7.172425, "DOLLAR_CURLY": -7.172425, "EAT_LEADING_WHITESPACE": -5.786130, "EAT_TRAILING_WHITESPACE": -6.073812, "EAT_TRAILING_WHITESPACE_EX": -6.073812, "END_OF_LINE": -6.479277, "E_WARNING": -7.172425, "FAILURE": -5.226514, "INITIAL": -5.562987, "INI_SCNG": -7.172425, "IS_STRING": -7.172425, "LABEL": -5.786130, "LITERAL_DOLLAR": -7.172425, "LNUM": -7.172425, "NEWLINE": -6.479277, "NULL": -6.073812, "NUMBER": -7.172425, "RAW_VALUE_CHARS": -7.172425, "RETURN_TOKEN": -5.226514, "SCNG": -3.914328, "SINGLE_QUOTED_CHARS": -7.172425, "STATE": -6.479277, "ST_OFFSET": -7.172425, "ST_RAW": -7.172425, "ST_SECTION_RAW": -7.172425, "ST_SECTION_VALUE": -7.172425, "ST_VALUE": -7.172425, "ST_VARNAME": -7.172425, "SUCCESS": -6.073812, "TABS_AND_SPACES": -5.092983, "TC_DOLLAR_CURLY": -7.172425, "TC_LABEL": -7.172425, "TC_OFFSET": -7.172425, "TC_RAW": -7.172425, "TC_SECTION": -7.172425, "TC_VARNAME": -7.172425, "TSRMLS_C": -6.479277, "TSRMLS_CC": -4.687518, "TSRMLS_D": -5.786130, "TSRMLS_DC": -5.562987, "WHITESPACE": -7.172425, "YYCTYPE": -7.172425, "YYCURSOR": -5.380665, "YYFILL": -7.172425, "YYGETCONDITION": -6.073812, "YYLIMIT": -6.073812, "YYMARKER": -7.172425, "YYMAXFILL": -7.172425, "YYSETCONDITION": -5.786130, "YYSTATE": -7.172425, "Z": -7.172425, "ZEND_API": -6.479277, "ZEND_INI_SCANNER_NORMAL": -7.172425, "ZEND_INI_SCANNER_RAW": -6.073812, "ZEND_MMAP_AHEAD": -7.172425, "ZTS": -7.172425, "Z_": -7.172425, "Z_STRLEN_P": -6.479277, "Z_STRVAL_P": -6.479277, "Z_TYPE_P": -7.172425, "[": -4.127902, "\\": -3.483545, "]": -4.127902, "^": -5.786130, "_": -7.172425, "_yy_push_state": -6.479277, "a": -6.479277, "are": -7.172425, "break": -7.172425, "buf": -6.479277, "ch": -6.073812, "char": -5.092983, "char*": -6.479277, "d": -7.172425, "deprecated": -7.172425, "do": -7.172425, "else": -5.786130, "end": -6.479277, "fh": -5.226514, "filename": -6.073812, "free": -7.172425, "if": -4.687518, "in": -7.172425, "ini_filename": -5.226514, "ini_lval": -7.172425, "ini_scanner_globals": -7.172425, "ini_scanner_globals_id": -7.172425, "init_ini_scanner": -6.073812, "int": -4.607475, "len": -4.869839, "line": -7.172425, "lineno": -5.562987, "lval": -6.073812, "n": -6.073812, "name": -7.172425, "new_state": -6.479277, "on": -7.172425, "quote_type": -7.172425, "r": -7.172425, "register": -7.172425, "return": -4.176692, "retval": -5.786130, "s": -5.380665, "scanner_mode": -4.774529, "shutdown_ini_scanner": -7.172425, "size": -6.073812, "size_t": -7.172425, "sizeof": -7.172425, "stack_state": -7.172425, "starting": -7.172425, "state": -6.479277, "state_and_tsrm": -7.172425, "state_stack": -5.786130, "static": -5.786130, "str": -5.092983, "strlen": -6.479277, "t": -5.562987, "ts_rsrc_id": -7.172425, "type": -6.479277, "unsigned": -6.073812, "void": -5.380665, "while": -5.786130, "with": -7.172425, "x": -6.073812, "yy_cursor": -7.172425, "yy_in": -7.172425, "yy_leng": -7.172425, "yy_limit": -7.172425, "yy_marker": -7.172425, "yy_pop_state": -6.479277, "yy_push_state": -5.226514, "yy_scan_buffer": -6.479277, "yy_start": -7.172425, "yy_state": -6.479277, "yy_text": -5.786130, "yyc##name": -7.172425, "yyc##state_and_tsrm": -7.172425, "yyleng": -4.339211, "yyless": -7.172425, "yytext": -4.464374, "zA": -6.479277, "zend_error": -7.172425, "zend_file_handle": -6.479277, "zend_file_handle_dtor": -7.172425, "zend_ini_copy_value": -6.073812, "zend_ini_escape_string": -7.172425, "zend_ini_open_file_for_scanning": -7.172425, "zend_ini_prepare_string_for_scanning": -7.172425, "zend_ini_scanner_get_filename": -7.172425, "zend_ini_scanner_get_lineno": -7.172425, "zend_ini_scanner_globals": -7.172425, "zend_stack_destroy": -7.172425, "zend_stack_init": -7.172425, "zend_stack_push": -7.172425, "zend_stack_top": -7.172425, "zend_stream_fixup": -7.172425, "zend_strndup": -6.479277, "zval": -7.172425, "{": -3.045290, "|": -4.607475, "||": -5.562987, "}": -3.045290, "~": -7.172425, }, "Limbo": map[string]float64{ "!": -5.365976, "(": -2.593387, ")": -2.593387, ",": -3.351073, "-": -3.063391, ":": -2.593387, ";": -2.345551, "<": -4.672829, "<stdin>": -6.059123, "=": -3.168751, ">": -3.114684, "ATOMICIO": -6.059123, "Cat": -5.365976, "Context": -5.365976, "Draw": -5.365976, "FD": -5.365976, "Lock": -5.365976, "OREAD": -6.059123, "PATH": -5.365976, "Semaphore": -3.979682, "Semaphore.new": -6.059123, "Semaphore.obtain": -6.059123, "Semaphore.release": -6.059123, "Sys": -3.979682, "[": -5.365976, "]": -5.365976, "adt": -6.059123, "args": -3.861899, "argv": -6.059123, "array": -6.059123, "buf": -4.672829, "byte": -6.059123, "c": -6.059123, "cat": -4.960511, "chan": -5.365976, "con": -6.059123, "ctxt": -6.059123, "else": -6.059123, "fd": -4.449685, "fildes": -4.449685, "file": -4.113213, "fn": -4.449685, "for": -6.059123, "fprint": -4.960511, "hd": -6.059123, "if": -4.449685, "implement": -5.365976, "include": -4.672829, "init": -4.672829, "int": -5.365976, "l": -4.672829, "l.c": -4.960511, "len": -6.059123, "list": -5.365976, "load": -6.059123, "module": -5.365976, "n": -4.672829, "new": -6.059123, "nil": -4.113213, "obtain": -6.059123, "of": -4.449685, "open": -6.059123, "raise": -4.960511, "read": -6.059123, "ref": -3.661228, "release": -6.059123, "return": -6.059123, "self": -4.672829, "stdout": -4.960511, "string": -4.960511, "sys": -3.420066, "tl": -5.365976, "while": -6.059123, "write": -6.059123, "{": -3.420066, "}": -3.420066, }, "Linker Script": map[string]float64{ "!": -6.317165, "#": -7.010312, "#define": -4.813087, "#else": -5.400874, "#endif": -4.237723, "#if": -5.624018, "#ifdef": -4.525405, "#include": -4.930870, "#undef": -5.911700, "&&": -6.317165, "(": -2.158282, ")": -2.166125, "*": -3.609114, "+": -5.218552, ",": -4.612417, "-": -3.832258, ".": -2.883177, ".MIPS.options": -7.010312, ".altinstr_replacement": -5.911700, ".altinstructions": -5.911700, ".apicdrivers": -5.911700, ".brk": -6.317165, ".brk_reservation": -7.010312, ".bss": -5.064402, ".bss..page_aligned": -7.010312, ".comment": -7.010312, ".data": -5.218552, ".data..percpu": -7.010312, ".data_nosave": -6.317165, ".eh_frame": -7.010312, ".exit.data": -6.317165, ".exit.text": -6.317165, ".fixup": -7.010312, ".gnu.warning": -7.010312, ".image": -7.010312, ".init.begin": -6.317165, ".init.end": -6.317165, ".iommu_table": -5.911700, ".note": -7.010312, ".options": -7.010312, ".parainstructions": -5.911700, ".pdr": -7.010312, ".reginfo": -7.010312, ".rodata": -7.010312, ".smp_locks": -5.911700, ".text": -5.218552, ".vvar": -6.317165, ".vvar_": -7.010312, ".x": -5.218552, "/DISCARD/": -6.317165, ":": -3.454964, ";": -2.706247, "<": -5.624018, "<asm-generic/vmlinux.lds.h>": -7.010312, "<asm/asm-offsets.h>": -7.010312, "<asm/boot.h>": -7.010312, "<asm/cache.h>": -7.010312, "<asm/kexec.h>": -7.010312, "<asm/page_types.h>": -7.010312, "<asm/thread_info.h>": -7.010312, "<asm/vvar.h>": -7.010312, "<mj@atrey.karlin.mff.cuni.cz>": -7.010312, "<sam@ravnborg.org>": -7.010312, "<wuzhanjing@gmail.com>": -6.317165, "=": -2.706247, "ADDR": -4.119940, "ALIGN": -4.065873, "ASSERT": -5.400874, "AT": -4.119940, "CACHELINE_ALIGNED_DATA": -7.010312, "CONFIG_DEBUG_RODATA": -6.317165, "CONFIG_KEXEC": -7.010312, "CONFIG_OUTPUT_FORMAT": -5.911700, "CONFIG_PHYSICAL_START": -7.010312, "CONFIG_SMP": -5.624018, "CONFIG_X": -4.525405, "CONSTRUCTORS": -6.317165, "DATA_DATA": -7.010312, "DISCARDS": -7.010312, "DWARF_DEBUG": -7.010312, "EMIT_VVAR": -6.317165, "ENTRY": -5.624018, "ENTRY_TEXT": -7.010312, "EXCEPTION_TABLE": -7.010312, "EXIT_DATA": -7.010312, "EXIT_TEXT": -7.010312, "FLAGS": -5.400874, "HEAD_TEXT": -7.010312, "HPAGE_SIZE": -6.317165, "INIT_DATA_SECTION": -7.010312, "INIT_PER_CPU": -5.911700, "INIT_TASK_DATA": -7.010312, "INIT_TEXT_SECTION": -7.010312, "INTERNODE_CACHE_BYTES": -5.911700, "IRQENTRY_TEXT": -7.010312, "KERNEL_IMAGE_SIZE": -6.317165, "KEXEC_CONTROL_CODE_MAX_SIZE": -7.010312, "KPROBES_TEXT": -7.010312, "L": -7.010312, "LOAD_OFFSET": -3.832258, "LOAD_PHYSICAL_ADDR": -7.010312, "LOCK_TEXT": -7.010312, "NOSAVE_DATA": -6.317165, "NOTES": -7.010312, "OUTPUT_ARCH": -5.911700, "OUTPUT_FORMAT": -6.317165, "PAGE_ALIGNED_DATA": -7.010312, "PAGE_SIZE": -4.302262, "PERCPU_SECTION": -7.010312, "PERCPU_VADDR": -7.010312, "PHDRS": -7.010312, "PT_LOAD": -5.624018, "PT_NOTE": -7.010312, "READ_MOSTLY_DATA": -7.010312, "RO_DATA": -7.010312, "SCHED_TEXT": -7.010312, "SECTIONS": -5.911700, "SIZEOF": -7.010312, "STABS_DEBUG": -7.010312, "TEXT_TEXT": -7.010312, "THREAD_SIZE": -7.010312, "X": -5.218552, "\\": -5.400874, "_": -4.612417, "_ALIGN_DEBUG_RODATA_BEGIN": -5.911700, "_ALIGN_DEBUG_RODATA_END": -5.911700, "_CACHE_BYTES": -7.010312, "_INTEL_MID": -7.010312, "__PAGE_OFFSET": -7.010312, "__START_KERNEL": -7.010312, "__START_KERNEL_map": -7.010312, "__VVAR_KERNEL_LDS": -6.317165, "__alt_instructions": -7.010312, "__alt_instructions_end": -7.010312, "__apicdrivers": -7.010312, "__apicdrivers_end": -7.010312, "__brk_base": -7.010312, "__brk_limit": -7.010312, "__bss_start": -7.010312, "__bss_stop": -7.010312, "__end_rodata_hpage_align": -7.010312, "__image_begin": -7.010312, "__image_end": -7.010312, "__init_begin": -7.010312, "__init_end": -7.010312, "__iommu_table": -7.010312, "__iommu_table_end": -7.010312, "__parainstructions": -7.010312, "__parainstructions_end": -7.010312, "__per_cpu_load": -7.010312, "__smp_locks": -7.010312, "__smp_locks_end": -7.010312, "__vvar_beginning_hack": -5.911700, "__vvar_page": -6.317165, "__x": -5.624018, "_cpu_dev.init": -5.911700, "_cpu_dev_end": -7.010312, "_cpu_dev_start": -7.010312, "_edata": -6.317165, "_end": -5.624018, "_etext": -7.010312, "_intel_mid_dev.init": -5.911700, "_intel_mid_dev_end": -7.010312, "_intel_mid_dev_start": -7.010312, "_sdata": -7.010312, "_stext": -7.010312, "_text": -6.317165, "data": -5.911700, "defined": -5.064402, "elf": -7.010312, "gdt_page": -7.010312, "i": -5.624018, "init": -6.317165, "init_per_cpu__##x": -7.010312, "irq_stack_union": -6.317165, "jiffies": -6.317165, "jiffies_": -6.317165, "kexec_control_code_size": -7.010312, "mips": -7.010312, "name": -7.010312, "note": -6.317165, "offset": -6.317165, "percpu": -6.317165, "phys_startup_": -5.624018, "start": -6.317165, "startup_": -6.317165, "text": -5.624018, "x": -5.911700, "{": -3.609114, "||": -7.010312, "}": -3.609114, }, "Linux Kernel Module": map[string]float64{ "-": -1.297816, "/data/israel/edison/poky/meta": -1.990963, "/driver_bcm": -1.990963, "crypto/md": -4.731803, "edison/recipes": -1.990963, "fs/mbcache.ko": -5.424950, "fs/mbcache.o": -5.424950, "kernel/bcm": -1.990963, "ko": -5.424950, "o": -4.326338, "p.o": -5.424950, "x.ko": -5.424950, "x/aiutils.o": -5.424950, "x/bcm": -5.424950, "x/bcmevent.o": -5.424950, "x/bcmsdh.o": -5.424950, "x/bcmsdh_linux.o": -5.424950, "x/bcmsdh_sdmmc.o": -5.424950, "x/bcmsdh_sdmmc_linux.o": -5.424950, "x/bcmutils.o": -5.424950, "x/bcmwifi_channels.o": -5.424950, "x/dhd_cdc.o": -5.424950, "x/dhd_cfg": -5.424950, "x/dhd_common.o": -5.424950, "x/dhd_custom_gpio.o": -5.424950, "x/dhd_ip.o": -5.424950, "x/dhd_linux.o": -5.424950, "x/dhd_linux_platdev.o": -5.424950, "x/dhd_linux_sched.o": -5.424950, "x/dhd_linux_wq.o": -5.424950, "x/dhd_pno.o": -5.424950, "x/dhd_sdio.o": -5.424950, "x/dhd_wlfc.o": -5.424950, "x/hndpmu.o": -5.424950, "x/linux_osl.o": -5.424950, "x/sbutils.o": -5.424950, "x/siutils.o": -5.424950, "x/wl_android.o": -5.424950, "x/wl_cfg": -5.424950, "x/wl_cfg_btcoex.o": -5.424950, "x/wl_cfgp": -5.424950, "x/wl_linux_mon.o": -5.424950, "x/wldev_common.o": -5.424950, }, "Liquid": map[string]float64{ "!": -5.592230, "(": -6.690842, ")": -6.690842, ",": -5.592230, "-": -5.592230, ".": -5.592230, "/": -4.292947, "/h": -4.899083, "0": -6.690842, "1": -6.690842, "200": -5.997695, ":": -4.388257, ";": -5.997695, "<": -4.205936, "<!DOCTYPE>": -6.690842, "</a>": -4.493618, "</body>": -6.690842, "</div>": -3.555348, "</form>": -6.690842, "</head>": -6.690842, "</html>": -6.690842, "</li>": -5.081404, "</option>": -6.690842, "</p>": -6.690842, "</script>": -6.690842, "</select>": -6.690842, "</small>": -6.690842, "</span>": -6.690842, "</title>": -6.690842, "</ul>": -5.081404, "<a>": -4.493618, "<body>": -6.690842, "<br>": -5.997695, "<div>": -3.555348, "<form>": -6.690842, "<head>": -6.690842, "<hr>": -5.592230, "<html>": -6.690842, "<img>": -5.304548, "<input>": -6.690842, "<li>": -5.081404, "<meta>": -6.690842, "<option>": -6.690842, "<p>": -6.690842, "<script>": -6.690842, "<select>": -6.690842, "<small>": -6.690842, "<span>": -6.690842, "<title>": -6.690842, "<ul>": -5.081404, "=": -2.236495, ">": -2.456736, "All": -6.690842, "Cart": -5.592230, "Close": -6.690842, "Commerce": -6.690842, "DTD": -5.997695, "E": -6.690842, "EN": -6.690842, "Home": -6.690842, "Hosted": -6.690842, "Mini": -5.997695, "PUBLIC": -5.997695, "Powered": -6.690842, "Shopify": -6.690842, "Skip": -6.690842, "TR": -6.690842, "There": -6.690842, "Transitional": -6.690842, "Type": -6.690842, "Vendor": -6.690842, "View": -6.690842, "W3C": -6.690842, "We": -6.690842, "XHTML": -6.690842, "Your": -6.690842, "action": -6.690842, "addtocart": -6.690842, "alt": -5.997695, "alt=": -5.997695, "are": -5.997695, "arrow2": -6.690842, "asset_url": -5.304548, "by": -6.690842, "cart": -4.899083, "cart.item_count": -5.081404, "cart.total_price": -5.997695, "charset=": -6.690842, "class": -4.051785, "class=": -5.081404, "content": -6.690842, "content=": -6.690842, "content_for_header": -6.690842, "content_for_layout": -6.690842, "dtd": -6.690842, "en": -6.690842, "equiv": -6.690842, "escape": -5.997695, "false": -6.690842, "featured_image": -6.690842, "gif": -5.997695, "global_asset_url": -5.081404, "h": -4.899083, "have": -6.690842, "highlight_active_tag": -6.690842, "href": -4.493618, "html": -6.690842, "http": -5.997695, "id": -3.323546, "id=": -5.592230, "image": -5.304548, "in": -5.592230, "is": -5.997695, "item": -5.081404, "item_count": -5.592230, "items": -6.690842, "lang": -5.592230, "lang=": -6.690842, "large": -5.997695, "link.title": -5.997695, "link.url": -5.997695, "link_to": -5.997695, "link_to_add_tag": -6.690842, "link_to_tag": -6.690842, "link_to_type": -6.690842, "link_to_vendor": -6.690842, "medium": -6.690842, "method": -6.690842, "method=": -6.690842, "minicart": -6.690842, "money": -5.304548, "name": -5.997695, "name=": -5.997695, "navigation.": -6.690842, "onMouseout": -5.997695, "onMouseout=": -5.997695, "onMouseover": -5.997695, "onMouseover=": -5.997695, "onclick": -6.690842, "onclick=": -6.690842, "org": -6.690842, "page_title": -6.690842, "pluralize": -5.081404, "prices": -6.690842, "product": -6.690842, "product.description": -6.690842, "product.price_min": -6.690842, "product.title": -6.690842, "product.type": -6.690842, "product.vendor": -6.690842, "product_img_url": -5.081404, "products": -6.690842, "quantity": -6.690842, "rel": -5.997695, "rel=": -5.997695, "return": -6.690842, "script_tag": -5.081404, "shop.currency": -6.690842, "shop.name": -5.997695, "shopify_asset_url": -6.690842, "small": -6.690842, "src": -5.081404, "src=": -5.997695, "style": -5.081404, "style=": -6.690842, "stylesheet_tag": -5.592230, "subtotal": -6.690842, "tag": -5.592230, "textile": -6.690842, "thumb": -6.690842, "title": -5.081404, "title=": -5.592230, "to": -5.997695, "transitional": -6.690842, "type": -5.997695, "value": -5.997695, "value=": -6.690842, "variant": -5.997695, "variant.price": -6.690842, "variant.title": -6.690842, "w3": -6.690842, "wonderful": -6.690842, "www": -6.690842, "x": -6.690842, "xhtml1": -5.997695, "xml": -5.997695, "xmlns": -6.690842, "your": -5.592230, "{": -2.236495, "|": -3.289645, "}": -2.531959, }, "Literate Agda": map[string]float64{ "(": -2.803360, ")": -2.803360, ",": -6.386879, "-": -3.553666, ".": -4.440969, ".n": -6.386879, ":": -3.391147, "=": -4.084294, "Data.Nat": -6.386879, "DeclareUnicodeCharacter": -5.288267, "DefineVerbatimEnvironment": -6.386879, "EasyCategory": -5.288267, "Nat": -6.386879, "NatCat": -6.386879, "Relation.Binary.PropositionalEquality": -6.386879, "Set": -5.693732, "Verbatim": -6.386879, "[": -5.693732, "\\": -3.251385, "]": -5.693732, "_": -4.595120, "amssymb": -6.386879, "article": -6.386879, "assoc": -5.693732, "autofe": -6.386879, "babel": -6.386879, "bbm": -6.386879, "begin": -5.693732, "code": -5.288267, "cong": -6.386879, "document": -5.693732, "documentclass": -6.386879, "end": -5.693732, "english": -6.386879, "ensuremath": -5.288267, "equiv": -6.386879, "fancyvrb": -6.386879, "greek": -6.386879, "id": -4.189655, "import": -5.693732, "inhabitant": -5.000585, "inputenc": -6.386879, "m": -4.595120, "module": -5.288267, "n": -3.747822, "obj": -5.000585, "open": -5.693732, "overline": -6.386879, "r": -3.128783, "refl": -4.595120, "s": -3.019583, "same": -4.777441, "single": -5.000585, "suc": -4.595120, "t": -4.595120, "trans": -4.777441, "ucs": -6.386879, "ulcorner": -6.386879, "urcorner": -6.386879, "usepackage": -4.440969, "utf": -6.386879, "w": -5.000585, "where": -5.693732, "x": -2.831531, "y": -3.054675, "z": -3.496508, "zero": -6.386879, "{": -2.831531, "}": -2.831531, "ʳ": -5.693732, "ˡ": -5.693732, "λ": -6.386879, "₁": -5.288267, "ℕ": -5.693732, "→": -3.614291, "∀": -4.440969, "∘": -3.678829, "≡": -4.777441, "≤": -3.054675, "⟶": -3.988984, }, "Literate CoffeeScript": map[string]float64{ "'": -5.765191, "(": -4.155753, ")": -3.973432, "**Block**": -5.765191, "**Scope**": -5.072044, ",": -2.820752, "-": -4.155753, ".concat": -5.765191, ".push": -5.765191, ".type": -5.765191, ":": -3.685750, "=": -3.819281, ">": -4.666579, "@expressions": -5.765191, "@method": -5.765191, "@parent": -5.072044, "@parent.add": -5.765191, "@positions": -4.378897, "@root": -5.765191, "@shared": -5.765191, "@variables": -4.666579, "@variables.push": -5.765191, "Adds": -5.765191, "As": -5.765191, "CoffeeScript.": -5.765191, "Each": -5.765191, "Import": -5.765191, "In": -5.765191, "Initialize": -5.765191, "Object": -5.765191, "Return": -5.765191, "Scope": -5.765191, "Scope.root": -5.765191, "The": -5.072044, "When": -5.765191, "[": -4.378897, "]": -4.378897, "_": -4.666579, "`": -3.973432, "a": -3.685750, "about": -5.765191, "add": -5.765191, "an": -5.765191, "and": -4.155753, "are": -4.666579, "as": -4.666579, "assignedVariables": -5.765191, "assignments": -5.765191, "at": -5.765191, "be": -5.072044, "belongs": -5.072044, "bodies.": -5.765191, "called": -5.765191, "chain": -5.765191, "class": -5.072044, "code": -5.765191, "constructor": -5.765191, "create": -5.765191, "current": -5.765191, "declare": -5.765191, "declared": -5.072044, "else": -5.072044, "enclosing": -5.765191, "existing": -5.765191, "exports.Scope": -5.765191, "extend": -5.765191, "external": -5.765191, "file.": -5.765191, "find": -5.765191, "for": -4.666579, "function": -5.072044, "generate": -5.765191, "given": -5.765191, "has": -5.765191, "hasOwnProperty.call": -5.765191, "helpers": -5.765191, "if": -5.072044, "immediate": -4.666579, "in": -5.072044, "is": -4.666579, "it": -4.378897, "its": -4.666579, "know": -5.765191, "knows": -5.765191, "last": -5.765191, "level": -5.765191, "lexical": -5.765191, "list": -5.765191, "lookups": -5.765191, "made": -5.765191, "method": -5.765191, "name": -3.685750, "need": -5.072044, "nested": -5.765191, "new": -5.072044, "node": -5.765191, "not": -5.765191, "null": -5.765191, "object": -5.765191, "of": -4.378897, "one.": -5.765191, "or": -5.765191, "overrides": -5.765191, "param": -5.765191, "parent": -5.072044, "plan": -5.765191, "realVars": -5.765191, "realVars.sort": -5.765191, "reference": -4.666579, "regulates": -5.765191, "require": -5.765191, "return": -5.765191, "root": -5.765191, "same": -5.765191, "scope": -5.072044, "scope.": -5.072044, "scopes": -5.765191, "scopes.": -5.765191, "scoping": -5.765191, "shape": -5.765191, "shared": -5.765191, "should": -5.765191, "super": -5.765191, "supposed": -5.765191, "tempVars": -5.765191, "tempVars.sort": -5.765191, "that": -5.072044, "the": -3.280284, "then": -5.765191, "this": -4.666579, "to": -3.685750, "to.": -5.765191, "top": -5.072044, "tree": -5.765191, "type": -4.155753, "unless": -5.765191, "up": -5.765191, "use.": -5.765191, "v": -5.765191, "v.name": -5.765191, "v.type.assigned": -5.765191, "var": -4.378897, "variable": -5.765191, "variables": -4.666579, "way": -5.765191, "we": -4.378897, "well": -5.765191, "when": -5.765191, "where": -5.765191, "which": -4.666579, "with": -4.666579, "within": -5.072044, "you": -5.072044, "{": -4.378897, "}": -4.378897, }, "LiveScript": map[string]float64{ "$": -5.159055, "(": -2.856470, ")": -2.856470, "*": -4.465908, "+": -5.159055, ",": -3.772761, "-": -2.068013, "/": -5.159055, "//g": -5.159055, "//regexp": -5.159055, "/regexp": -5.159055, "<->": -5.159055, "=": -3.079614, ">": -2.214616, "?": -5.159055, "Anc": -5.159055, "Class": -5.159055, "[": -4.465908, "\\": -5.159055, "]": -4.465908, "_": -4.465908, "a": -3.079614, "and": -4.060443, "args": -5.159055, "b": -4.060443, "c": -4.465908, "callback": -3.549617, "class": -5.159055, "const": -5.159055, "copy": -5.159055, "d": -4.060443, "dashes": -5.159055, "data": -4.465908, "e": -4.465908, "error": -2.961831, "est": -5.159055, "extends": -5.159055, "file": -4.060443, "filter": -5.159055, "fold": -5.159055, "from": -5.159055, "identifiers": -5.159055, "if": -4.060443, "km": -5.159055, "map": -5.159055, "ms": -5.159055, "or": -4.465908, "read": -5.159055, "return": -4.060443, "strings": -5.159055, "til": -5.159055, "to": -4.465908, "underscores_i": -5.159055, "var": -5.159055, "write": -5.159055, "|": -4.060443, "~": -2.961831, }, "Logos": map[string]float64{ "%": -1.845827, "(": -2.474435, ")": -2.474435, "-": -3.455265, ":": -3.860730, ";": -2.474435, "ABC": -3.860730, "B": -4.553877, "DEF": -4.553877, "NSObject": -4.553877, "OptionalCondition": -4.553877, "OptionalHooks": -3.860730, "RuntimeAccessibleClass": -4.553877, "[": -3.860730, "]": -3.860730, "a": -4.553877, "alloc": -4.553877, "b": -4.553877, "c": -4.553877, "ctor": -4.553877, "end": -3.167583, "group": -4.553877, "hook": -3.860730, "id": -3.860730, "if": -4.553877, "init": -3.455265, "log": -4.553877, "nil": -3.860730, "orig": -3.860730, "release": -4.553877, "retain": -4.553877, "return": -3.860730, "self": -4.553877, "subclass": -4.553877, "void": -4.553877, "{": -3.167583, "}": -3.167583, }, "Logtalk": map[string]float64{ "(": -1.832581, ")": -1.832581, ",": -2.525729, "-": -2.120264, ".": -2.525729, ":": -2.120264, "end_object.": -3.218876, "hello_world": -3.218876, "initialization": -3.218876, "nl": -2.525729, "object": -3.218876, "write": -3.218876, }, "LookML": map[string]float64{ "$": -4.734735, "(": -4.917057, ")": -4.917057, ",": -2.942976, "-": -3.194290, ".body": -6.526495, ".created_at": -6.526495, ".headline_id": -6.526495, ".id": -6.526495, ".updated_at": -6.526495, ".user_id": -6.526495, ":": -1.621220, "ALL": -6.526495, "EVEN": -6.526495, "HTML": -6.526495, "Liquid": -6.526495, "N": -4.580585, "ON": -6.526495, "SQL": -4.223910, "TABLE": -4.734735, "WHERE": -6.526495, "[": -3.693282, "]": -3.693282, "a": -5.833348, "access_filter_fields": -6.526495, "alias": -6.526495, "alpha_sort": -6.526495, "always_filter": -6.526495, "always_join": -6.526495, "approximate": -6.526495, "approximate_threshold": -6.526495, "body": -6.526495, "bypass_suggest_restrictions": -6.526495, "can_filter": -6.526495, "cancel_grouping_fields": -6.526495, "case_sensitive": -5.427883, "classic": -6.526495, "clause": -6.526495, "column": -6.526495, "column_name": -4.917057, "comments": -6.526495, "condition": -5.427883, "conditionally_filter": -6.526495, "connection": -6.526495, "connection_name": -6.526495, "convert_tz": -6.526495, "count": -5.833348, "created": -6.526495, "cross": -6.526495, "datatype": -6.526495, "date": -5.427883, "datetime": -6.526495, "default_value": -6.526495, "define": -6.526495, "derived_table": -6.526495, "description": -5.833348, "desired_format_name": -6.526495, "desired_url": -6.526495, "detail": -5.833348, "detail*": -6.526495, "dimension": -4.917057, "dimension_field_type": -6.526495, "dimension_group": -5.427883, "dimension_name": -4.917057, "direction": -6.526495, "distribution": -6.526495, "distribution_style": -6.526495, "drill_fields": -6.526495, "elements": -6.526495, "entities": -6.526495, "epoch": -6.526495, "explore": -6.526495, "explore_name": -6.526495, "expression": -4.917057, "false": -3.753906, "fanout_on": -6.526495, "field": -6.526495, "field_name": -4.917057, "field_or_set": -4.223910, "fields": -5.140200, "filename_or_pattern": -6.526495, "filter": -6.526495, "filters": -6.526495, "foreign_key": -6.526495, "format_name": -6.526495, "friday": -6.526495, "from": -5.833348, "full_outer": -6.526495, "full_suggestions": -6.526495, "fully_scoped_field": -5.140200, "generate": -5.427883, "group_label": -6.526495, "headline_id": -6.526495, "headlines.id": -6.526495, "headlines.name": -6.526495, "hidden": -5.140200, "hours": -5.140200, "html": -6.526495, "icon_url": -6.526495, "id": -5.833348, "include": -6.526495, "indexes": -6.526495, "inner": -6.526495, "int": -5.427883, "integer": -6.526495, "interval": -6.526495, "join": -6.526495, "joins": -6.526495, "label": -5.140200, "latitude": -6.526495, "left_outer": -6.526495, "links": -6.526495, "list_field": -6.526495, "longitude": -6.526495, "many_to_many": -6.526495, "many_to_one": -6.526495, "map_layer": -6.526495, "measure": -5.833348, "measure_field_type": -6.526495, "minutes": -5.140200, "monday": -6.526495, "month": -5.833348, "name": -6.526495, "name_of_map_layer": -6.526495, "old_field_name": -5.833348, "one_to_many": -6.526495, "one_to_one": -6.526495, "order_by_field": -6.526495, "persist_for": -5.427883, "primary_key": -5.833348, "query": -5.833348, "relational": -6.526495, "relationship": -6.526495, "repeated": -6.526495, "repeated_record_name": -6.526495, "required_fields": -6.526495, "required_joins": -6.526495, "row": -6.526495, "saturday": -6.526495, "seconds": -5.140200, "set_name": -6.526495, "sets": -5.833348, "skip_drill_filter": -6.526495, "sortkeys": -6.526495, "sql": -4.447053, "sql_always_where": -6.526495, "sql_case": -6.526495, "sql_distinct_key": -6.526495, "sql_latitude": -6.526495, "sql_longitude": -6.526495, "sql_on": -6.526495, "sql_table_name": -5.427883, "sql_trigger_value": -6.526495, "style": -6.526495, "suggest_dimension": -6.526495, "suggest_explore": -6.526495, "suggest_persist_for": -6.526495, "suggestable": -6.526495, "suggestions": -5.833348, "sunday": -6.526495, "symmetric_aggregates": -6.526495, "table_name": -5.427883, "template": -6.526495, "the": -6.526495, "thursday": -6.526495, "tiers": -6.526495, "time": -5.140200, "timeframe": -5.833348, "timeframes": -5.427883, "timestamp": -6.526495, "to": -5.140200, "true": -3.582056, "tuesday": -6.526495, "type": -4.329270, "unless": -6.526495, "updated": -6.526495, "url": -6.526495, "url_of_an_ico_file": -6.526495, "user_id": -6.526495, "users.id": -6.526495, "using": -6.526495, "value": -5.427883, "value_format": -5.833348, "value_format_name": -6.526495, "value_formats": -6.526495, "view": -5.427883, "view_label": -5.833348, "view_name": -4.223910, "wednesday": -6.526495, "week": -5.833348, "week_start_day": -6.526495, "yyyymmdd": -6.526495, "{": -4.734735, "|": -2.655294, "}": -4.734735, "…": -3.753906, }, "LoomScript": map[string]float64{ "!": -6.620073, "%": -6.620073, "&&": -6.620073, "(": -2.594722, ")": -2.594722, "*": -5.521461, "+": -4.317488, ",": -4.055124, "-": -4.540632, "...everything": -6.620073, ".toString": -6.620073, "/": -5.010635, ":": -2.577022, ";": -2.276268, "<": -5.926926, "<Number>": -6.620073, "<String,>": -5.926926, "<String>": -6.620073, "=": -2.748872, ">": -4.674163, "?": -6.620073, "A": -4.828314, "Application": -5.926926, "B": -5.010635, "Boolean": -5.010635, "C": -5.926926, "CONST": -6.620073, "Dictionary.": -5.926926, "Enumeration": -6.620073, "Function": -6.620073, "HelloWorld": -6.620073, "I": -5.926926, "Math.floor": -6.620073, "Math.random": -5.521461, "Number": -4.222178, "Object": -5.521461, "P": -5.233779, "SimpleLabel": -5.233779, "StageScaleMode.LETTERBOX": -6.620073, "String": -4.135167, "SyntaxExercise": -6.620073, "ToCompute": -5.926926, "Vector.": -5.926926, "[": -5.926926, "]": -5.926926, "_a": -5.233779, "_d": -5.521461, "a": -4.055124, "a.x": -6.620073, "a.y": -6.620073, "as": -5.926926, "b": -4.674163, "b.x": -6.620073, "b.y": -6.620073, "baz": -6.620073, "break": -5.521461, "case": -5.926926, "cast": -6.620073, "castable": -5.926926, "cat": -6.620073, "centeredMessage": -5.926926, "class": -5.010635, "classVar": -6.620073, "const": -6.620073, "continue": -6.620073, "d": -5.233779, "d.display.StageScaleMode": -6.620073, "d.ui.SimpleLabel": -6.620073, "default": -6.620073, "defaultValue": -6.620073, "delegate": -6.620073, "do": -6.620073, "e": -6.620073, "each": -6.620073, "else": -5.926926, "enum": -6.620073, "extends": -5.233779, "f": -5.521461, "false": -6.620073, "final": -6.620073, "flip": -6.620073, "foo": -6.620073, "for": -5.233779, "function": -4.222178, "get": -5.926926, "i": -4.317488, "if": -5.521461, "implements": -6.620073, "import": -5.233779, "in": -5.521461, "instanced": -6.620073, "instanceof": -6.620073, "interface": -6.620073, "is": -6.620073, "key": -5.233779, "label": -6.620073, "label.center": -6.620073, "label.height": -6.620073, "label.text": -6.620073, "label.x": -6.620073, "label.y": -6.620073, "life": -6.620073, "loom": -5.926926, "loom.Application": -5.926926, "msg": -5.926926, "n": -4.828314, "new": -5.926926, "nil": -6.620073, "null": -5.926926, "o": -6.620073, "operator": -6.620073, "override": -5.926926, "package": -5.926926, "private": -4.540632, "public": -3.912023, "return": -5.233779, "run": -5.926926, "s": -5.010635, "set": -6.620073, "simpleLabel": -5.926926, "stage.addChild": -6.620073, "stage.scaleMode": -6.620073, "stage.stageHeight": -6.620073, "stage.stageWidth": -6.620073, "static": -5.926926, "struct": -6.620073, "switch": -6.620073, "this.getFullTypeName": -6.620073, "trace": -4.055124, "true": -5.926926, "universe": -6.620073, "v": -5.233779, "value": -5.926926, "var": -3.154337, "variousFlow": -6.620073, "variousOps": -6.620073, "variousTypes": -6.620073, "void": -4.674163, "while": -5.926926, "x": -6.620073, "y": -6.620073, "{": -3.361977, "|": -6.620073, "}": -3.361977, }, "Lua": map[string]float64{ "!": -6.501290, "#": -6.501290, "#self.bytebuffer": -6.501290, "(": -2.550046, ")": -2.569464, "*": -5.808142, "+": -5.808142, ",": -2.458238, "-": -5.808142, "..": -4.555380, "/usr/bin/lua": -6.501290, ":": -3.035554, "=": -2.281782, "FileListParser": -4.891852, "FileModder": -4.198705, "HelloCounter": -5.114995, "ONE_DAY": -5.808142, "ONE_HOUR": -5.402677, "SHEBANG#!lua": -6.501290, "[": -4.103394, "]": -4.198705, "_": -5.808142, "_bang": -5.808142, "_float": -4.891852, "_list": -4.891852, "_symbol": -6.501290, "atoms": -5.402677, "common": -6.501290, "common.make_loader": -6.501290, "d": -4.304065, "do": -4.421848, "else": -6.501290, "elseif": -5.808142, "end": -3.243193, "f": -4.016383, "false": -6.501290, "fastcgi": -6.501290, "fastcgi.run": -6.501290, "filename": -6.501290, "for": -4.421848, "function": -3.728701, "i": -4.198705, "if": -5.808142, "in": -5.808142, "in_": -3.936340, "initialize": -5.402677, "insertpoint": -5.808142, "ipairs": -5.808142, "isolated": -6.501290, "launcher": -6.501290, "local": -3.728701, "math.random": -4.421848, "new": -5.402677, "nil": -6.501290, "outlet": -4.198705, "outname": -5.402677, "patbuffer": -5.402677, "pcall": -6.501290, "pd.Class": -5.402677, "pd.post": -6.501290, "period": -6.501290, "plen": -5.808142, "randlimit": -5.114995, "register": -5.402677, "reload": -6.501290, "require": -5.402677, "return": -5.402677, "s": -5.402677, "schunksize": -5.808142, "sel": -5.402677, "self": -4.198705, "self.batchlimit": -5.402677, "self.buflength": -4.555380, "self.bytebuffer": -4.421848, "self.extension": -5.402677, "self.filedata": -5.114995, "self.glitchpoint": -4.709530, "self.glitchtype": -4.891852, "self.inlets": -5.402677, "self.num": -4.891852, "self.outlets": -5.402677, "self.randrepeat": -5.114995, "self.randtoggle": -5.402677, "sloc": -5.402677, "splicebuffer": -5.402677, "table.insert": -5.114995, "table.remove": -6.501290, "then": -5.114995, "true": -5.114995, "ttl": -6.501290, "v": -5.114995, "vars": -6.501290, "wsapi_loader": -5.808142, "{": -3.610918, "}": -3.610918, }, "M": map[string]float64{ "!": -5.401323, "\"": -10.610809, "#": -7.971751, "#I": -10.610809, "$": -3.034711, "%": -4.790726, "&": -7.352712, "'": -8.413584, "(": -2.656788, ")": -2.655384, "*": -8.045859, "**": -8.819049, "**************************": -10.610809, "**lv*sb": -10.610809, "**n": -10.610809, "*c": -10.610809, "*i": -9.512197, "*lv": -9.917662, "*n": -10.610809, "*w/": -9.512197, "*x": -10.610809, "+": -5.230911, ",": -2.323784, "-": -2.881953, ".": -3.683251, ".*": -10.610809, "..": -7.314972, "...": -8.819049, "....S": -10.610809, "...D": -10.610809, "...F": -10.610809, "...S": -9.001371, "..E": -10.610809, "..F": -9.917662, "..I": -9.917662, "..S": -8.664899, ".D": -10.610809, ".DD": -9.224514, ".F": -9.917662, ".I": -9.224514, ".PXAERR": -9.512197, ".Q": -10.610809, ".S": -8.531367, ".a": -10.610809, ".appList": -10.610809, ".array": -10.610809, ".attrValues": -10.610809, ".attributes": -9.512197, ".b": -10.610809, ".boxUsage": -7.519766, ".buff": -9.512197, ".byref": -9.917662, ".c": -9.917662, ".ctx": -9.917662, ".d": -10.610809, ".digest": -10.610809, ".err": -10.610809, ".erroffset": -10.610809, ".erropt": -9.224514, ".errorArray": -9.512197, ".exists": -10.610809, ".filesArray": -10.610809, ".i": -8.819049, ".info": -10.610809, ".isstring": -9.917662, ".j": -9.917662, ".jsTextArray": -10.610809, ".list": -9.917662, ".m": -8.212914, ".match": -9.224514, ".metaData": -10.610809, ".methods": -10.610809, ".msg": -10.610809, ".n": -7.391933, ".name": -9.917662, ".nvArray": -10.610809, ".offset": -10.610809, ".options": -9.917662, ".ovector": -9.224514, ".p": -10.610809, ".pageList": -10.610809, ".pattern": -9.512197, ".props": -9.512197, ".rc": -10.610809, ".recordArray": -10.610809, ".ref": -7.519766, ".requestArray": -9.512197, ".requestId": -8.664899, ".rm": -10.610809, ".round": -9.917662, ".s": -9.001371, ".selected": -10.610809, ".selectedValueArray": -9.512197, ".serverArray": -10.610809, ".sessionArray": -9.512197, ".start": -10.610809, ".startTime": -9.001371, ".subject": -9.224514, ".tagList": -10.610809, ".textarea": -10.610809, ".value": -10.610809, "/": -8.212914, "//": -10.610809, "//en.wikipedia.org/wiki/MD": -10.610809, "//en.wikipedia.org/wiki/Polish_code_pages": -10.610809, "//pcre.org/": -10.610809, "//regex.info/": -10.610809, "//www.apache.org/licenses/LICENSE": -10.610809, "//www.mgateway.com": -9.224514, "//www.openssl.org/docs/crypto/EVP_DigestInit.html": -10.610809, "/Xy/g": -9.512197, "/etc/init.d/xinetd": -10.610809, "/etc/services": -10.610809, "/etc/xinetd.d/mwire": -10.610809, "/gallons": -10.610809, "/mg": -9.917662, "/opt/gtm": -10.610809, "/tcp": -10.610809, "/usr/local/gtm/zmwire": -10.610809, "0": -8.308224, "0123456789ABCDEF": -10.610809, "0123456789abcdef": -9.917662, "1": -7.391933, "1000": -10.610809, "1AN": -9.917662, "1N": -9.917662, "2": -7.971751, "25": -10.610809, "3": -9.001371, "32": -10.610809, "4": -9.917662, "5000": -10.610809, "7": -10.610809, "9": -10.610809, ":": -4.540071, ";": -3.203491, "<": -7.666370, "<-->": -9.512197, "</Attribute>": -9.512197, "</BoxUsage>": -9.917662, "</Code>": -10.610809, "</DomainMetadataResult>": -10.610809, "</DomainName>": -10.610809, "</Error>": -10.610809, "</Errors>": -10.610809, "</GetAttributesResult>": -10.610809, "</GetTokenResult>": -10.610809, "</Item>": -9.917662, "</ItemName>": -10.610809, "</ListDomainsResult>": -10.610809, "</Message>": -10.610809, "</Name>": -9.001371, "</NextToken>": -9.917662, "</QueryResult>": -10.610809, "</QueryWithAttributesResult>": -10.610809, "</RequestID>": -10.610809, "</RequestId>": -10.610809, "</Response>": -10.610809, "</ResponseMetadata>": -10.610809, "</SelectResult>": -10.610809, "</Value>": -9.512197, "</option>": -10.610809, "<?xml>": -9.512197, "<Attribute>": -9.512197, "<BoxUsage>": -9.917662, "<Code>": -10.610809, "<DomainMetadataResult>": -9.917662, "<DomainName>": -10.610809, "<Error>": -10.610809, "<Errors>": -10.610809, "<GetAttributesResult>": -9.917662, "<GetTokenResult>": -10.610809, "<Item>": -9.917662, "<ItemName>": -10.610809, "<ListDomainsResult>": -9.917662, "<Message>": -10.610809, "<Name>": -9.001371, "<NextToken>": -9.917662, "<QueryResult>": -9.917662, "<QueryWithAttributesResult>": -9.917662, "<RequestID>": -10.610809, "<RequestId>": -10.610809, "<Response>": -10.610809, "<ResponseMetadata>": -10.610809, "<SelectResult>": -9.917662, "<Value>": -9.512197, "<\\d+>": -9.917662, "<all>": -10.610809, "<aogonek>": -10.610809, "<b)>": -9.512197, "<data>": -9.512197, "<first>": -8.308224, "<high>": -10.610809, "<http://www.gnu.org/licenses/>": -8.212914, "<keys>": -9.224514, "<last)>": -10.610809, "<laurent.parenteau@gmail.com>": -9.917662, "<ml>": -10.610809, "<option>": -10.610809, "<piotr.koper@gmail.com>": -8.531367, "<red>": -10.610809, "<ref>": -9.917662, "<second>": -8.413584, "<set>": -10.610809, "<targetValue>": -9.917662, "<value>": -10.610809, "=": -2.551216, ">": -7.114301, "?": -7.902759, "@": -8.308224, "@#": -10.610809, "@EGR@": -9.224514, "@EGRF": -9.224514, "@FGR": -10.610809, "@FGR@": -8.819049, "@G": -9.512197, "@POVARR@": -8.819049, "@PXADATA@": -8.531367, "@name": -9.001371, "@ref": -9.917662, "@x": -9.224514, "A": -7.971751, "A.AN": -10.610809, "ABOVE.": -10.610809, "ACCESSION": -10.610809, "ACCOUNT": -10.610809, "ALIST": -10.610809, "ALREADY": -10.610809, "AM": -10.610809, "AN": -10.610809, "AND": -9.512197, "ANOTHER": -10.610809, "ANY": -8.125902, "API": -8.531367, "APIs": -9.917662, "ARRAY": -9.917662, "ASCII": -9.917662, "ASK": -9.512197, "ASKDIR": -9.917662, "ASKFILE": -9.512197, "AT": -10.610809, "AUPNVPOV": -9.917662, "AUPNVPRV": -9.917662, "AUPNVSIT": -10.610809, "AWSAcessKeyId": -10.610809, "Account": -9.917662, "Accounts": -10.610809, "Action": -9.917662, "Add": -10.610809, "AdministratorAccessKeyId": -10.610809, "AdministratorSecretKey": -10.610809, "AdminstratorAccessKeyId": -10.610809, "AdminstratorSecretKey": -10.610809, "Affero": -7.114301, "All": -9.224514, "Also": -10.610809, "Alternatively": -10.610809, "Always": -10.610809, "Amazon": -10.610809, "Any": -10.610809, "Anyway": -10.610809, "Apache": -10.610809, "Apr": -10.610809, "Ask": -10.610809, "At": -9.001371, "AttributeName.": -9.917662, "Aug": -10.610809, "BADCHAR": -10.610809, "BASIS": -10.610809, "BAT": -8.531367, "BILL": -8.212914, "BLD": -9.917662, "BROWSE": -10.610809, "BUILDER": -10.610809, "BUILDING": -10.610809, "Build": -8.819049, "By": -10.610809, "C": -7.352712, "CALLED": -10.610809, "CARE": -10.610809, "CASE": -10.610809, "CGIEVAR": -10.610809, "CHAR": -10.610809, "CHECK": -9.224514, "CHSET": -10.610809, "CISC/JH/RM": -10.610809, "CLOSED.": -10.610809, "COMP": -8.819049, "COMPILE": -9.917662, "CONDITIONS": -10.610809, "CONNECTION": -10.610809, "CONT": -10.610809, "COPY": -10.610809, "COPYGBL": -9.512197, "COUNT": -9.917662, "CPU": -10.610809, "CREATES": -10.610809, "CRLF": -9.917662, "Cache": -8.819049, "CacheTempBuffer": -9.917662, "CacheTempEWD": -8.212914, "Caller": -10.610809, "Cannot": -10.610809, "Change": -9.917662, "Check": -10.610809, "Command": -10.610809, "Comment": -10.610809, "Comments": -10.610809, "Compile": -9.917662, "Configuration": -9.917662, "Copy": -9.917662, "Copyright": -8.212914, "Count": -10.610809, "D": -5.874610, "DA": -9.224514, "DATA": -9.917662, "DATE": -10.610809, "DB": -9.001371, "DD": -7.615077, "DDCR": -9.512197, "DEBT": -8.308224, "DECR": -10.610809, "DECRBY": -10.610809, "DEQUEUE": -10.610809, "DETAILS": -10.610809, "DETS": -8.664899, "DEVICE": -10.610809, "DFN": -10.610809, "DH": -10.610809, "DIALOG": -9.224514, "DIC": -8.819049, "DILFD": -9.917662, "DIQ": -9.224514, "DIR": -8.664899, "DIROUT": -10.610809, "DIRUT": -10.610809, "DIR_": -10.610809, "DIS": -10.610809, "DISV": -9.917662, "DOESN": -10.610809, "DPTNOFZK": -9.917662, "DPTNOFZY": -9.917662, "DR": -9.224514, "DRIVING": -10.610809, "DT": -9.224514, "DTC": -10.610809, "DTIME": -10.610809, "DTOUT": -9.917662, "DUOUT": -10.610809, "DUZ": -9.512197, "DX": -9.917662, "DXS": -10.610809, "D_": -8.125902, "Daemon": -9.917662, "DataBallet": -9.224514, "DataBallet.": -9.224514, "Date": -9.917662, "Debian": -9.917662, "Decode": -9.917662, "Decoded": -10.610809, "Developer": -9.512197, "Developments": -9.224514, "Digest": -9.917662, "Directive": -10.610809, "Domain": -9.917662, "DomainName": -9.917662, "Download": -9.917662, "E": -7.566286, "ECODE": -9.917662, "EGR": -9.001371, "EGRF": -9.001371, "EN": -9.512197, "ENCOUNTER": -9.917662, "END": -10.610809, "ENTITY": -9.512197, "ENTRY": -9.512197, "EP": -9.224514, "ERR": -9.917662, "ERROR": -9.917662, "ERRORS": -9.224514, "ERRRET": -9.917662, "ESW": -10.610809, "EV": -8.819049, "EVP_DigestInit": -10.610809, "EXIT": -10.610809, "EXTERNAL": -9.512197, "Edit": -10.610809, "Email": -9.224514, "Emulation": -10.610809, "Enabling": -10.610809, "Encoded": -10.610809, "Enforced": -10.610809, "Enterprise": -9.512197, "Equal": -10.610809, "Error": -9.512197, "Escape": -9.917662, "Example": -10.610809, "Examples": -9.224514, "Exception": -9.512197, "Execute": -10.610809, "Experimental": -10.610809, "Extension": -8.413584, "Extensions": -9.917662, "Extract": -10.610809, "F": -6.947247, "FD": -9.224514, "FGR": -7.615077, "FIELD": -9.224514, "FIELDONE": -9.917662, "FIELDSUB": -9.917662, "FIELDTAG": -9.512197, "FIELDVAL": -9.917662, "FILE": -6.760661, "FILENAME": -9.512197, "FITNESS": -8.212914, "FLAT.": -10.610809, "FOLLOW": -10.610809, "FOLLOWUP": -10.610809, "FOR": -7.902759, "FROM": -9.001371, "FUNC": -10.610809, "FUNCTION": -10.610809, "Fibonacci": -10.610809, "Fidelity": -9.917662, "Field": -10.610809, "File": -9.917662, "FileMan": -9.917662, "Filename": -10.610809, "Find": -10.610809, "For": -9.512197, "Form": -10.610809, "Foundation": -8.212914, "Free": -8.212914, "Fri": -10.610809, "FromStr": -8.531367, "Functions": -9.917662, "G": -6.849609, "GENERAL": -9.917662, "GENERATOR": -10.610809, "GET": -9.917662, "GLOBAL": -10.610809, "GMR": -8.819049, "GMRD": -8.819049, "GMRGA": -8.045859, "GMRGADD": -9.224514, "GMRGB": -8.413584, "GMRGCSW": -9.917662, "GMRGD": -8.664899, "GMRGE": -8.212914, "GMRGF": -9.512197, "GMRGI": -8.819049, "GMRGNAR": -8.531367, "GMRGPAR_": -9.917662, "GMRGPDA": -8.413584, "GMRGPDT": -9.917662, "GMRGPLVL": -8.819049, "GMRGPNB": -9.917662, "GMRGRUT": -9.224514, "GMRGSPC": -9.512197, "GMRGSSW": -9.512197, "GMRGST": -8.819049, "GMRGSTAT": -8.531367, "GNU": -7.114301, "GT": -9.512197, "GT.M": -7.176822, "GT.M.": -10.610809, "GTM": -8.125902, "General": -7.114301, "Generator": -10.610809, "Get": -9.224514, "Global": -8.664899, "H": -9.917662, "HCIOFO/FT": -10.610809, "HDR": -9.917662, "HELO": -10.610809, "HERE": -10.610809, "HEX": -10.610809, "HTML": -10.610809, "Handle": -10.610809, "Handler": -10.610809, "Handling": -9.917662, "I": -6.110999, "ICD": -9.917662, "IEN": -10.610809, "IF": -8.212914, "IHS/ANMC/MWR": -10.610809, "IN": -9.224514, "INCR": -10.610809, "INCRBY": -10.610809, "INTERNAL": -9.917662, "INVOBJ": -10.610809, "IO": -7.278604, "IP": -10.610809, "IS": -9.512197, "ISA/KWP": -10.610809, "ISC@ALTOONA": -10.610809, "ISL/JVS": -10.610809, "ISO": -9.224514, "IT": -10.610809, "If": -7.902759, "Implementation": -10.610809, "In": -10.610809, "InText": -8.531367, "Inc.": -9.917662, "Information": -9.917662, "Initial": -9.917662, "Initialise": -9.512197, "Install": -9.512197, "Instructions": -10.610809, "Internet": -10.610809, "Invalid": -8.413584, "It": -9.917662, "Item": -10.610809, "J": -6.973223, "JR": -10.610809, "JSONAccess": -10.610809, "JSONName": -9.917662, "JSONToSessionObject": -9.917662, "Jan": -10.610809, "Javascript": -10.610809, "July": -10.610809, "Just": -10.610809, "K": -9.001371, "KEY": -6.973223, "KILL": -9.917662, "KIND": -10.610809, "Keith": -10.610809, "Keyword": -10.610809, "Koper": -8.664899, "L": -9.512197, "LABEL": -10.610809, "LANG": -9.224514, "LC_*": -10.610809, "LC_CTYPE": -10.610809, "LIST": -9.512197, "LL": -10.610809, "LPXAK": -9.224514, "Laurent": -9.917662, "License": -6.739608, "License.": -9.917662, "Licensed": -10.610809, "Limits": -10.610809, "Locale": -9.001371, "Lookup": -10.610809, "Low": -10.610809, "Ltd": -9.224514, "Lynch": -10.610809, "M": -6.999891, "M/DB": -10.610809, "M/Gateway": -9.224514, "M/Wire": -9.917662, "MAKE": -10.610809, "MANAGER": -10.610809, "MATCH_LIMIT": -10.610809, "MATCH_LIMIT_RECURSION": -10.610809, "MD": -8.819049, "MDB": -6.451926, "MDBAPI": -10.610809, "MDBConfig": -9.512197, "MDBMCache": -9.001371, "MDBMumps": -9.512197, "MDBSession": -10.610809, "MDBUAF": -9.917662, "MDBX": -9.512197, "MENU.": -10.610809, "MERCHANTABILITY": -8.212914, "MERGEFROM": -10.610809, "MGWSI": -9.512197, "MSG": -9.224514, "MULTIGET": -10.610809, "MUMPS": -10.610809, "Manual.": -10.610809, "Mar": -10.610809, "Match": -9.224514, "Match.": -10.610809, "MaxNumberOfItems": -9.917662, "More": -10.610809, "Mumps": -10.610809, "Mumtris": -9.512197, "N": -7.055461, "N.N": -8.531367, "NA": -9.224514, "NAM": -10.610809, "NAME": -9.917662, "NAME*": -10.610809, "NARRATIVE": -10.610809, "NDX": -8.664899, "NEW": -9.512197, "NEXTSUBSCRIPT": -10.610809, "NODE": -9.001371, "NOMATCH": -9.917662, "NOT": -9.917662, "NOTES": -10.610809, "NOTICE": -10.610809, "NOTIFICATION": -10.610809, "NOTIFICATIONS": -10.610809, "NOVSIT": -10.610809, "NOW": -10.610809, "NextToken": -9.512197, "No": -9.512197, "Non": -9.917662, "Normally": -10.610809, "Not": -10.610809, "Note": -9.917662, "Notes": -10.610809, "Nov": -10.610809, "O": -7.209611, "OF": -9.917662, "OK": -8.413584, "ONE": -9.917662, "ONLY": -10.610809, "OPEN": -10.610809, "OR": -9.917662, "ORDX": -7.971751, "ORDXP": -9.512197, "OUT": -9.917662, "Object": -10.610809, "Objects": -10.610809, "On": -10.610809, "OpenSSL": -9.512197, "Order": -10.610809, "Other": -10.610809, "P": -6.036098, "PA/RGY": -10.610809, "PARTICULAR": -8.212914, "PASSED": -9.224514, "PATIENT": -9.001371, "PCE": -9.512197, "PCE.": -10.610809, "PCRE": -7.475315, "PCRE.": -10.610809, "PFSS": -9.917662, "PKG": -10.610809, "POINT": -10.610809, "PONG": -10.610809, "POSIX": -10.610809, "POVARR": -10.610809, "POVPRM": -10.610809, "PRCA": -7.971751, "PRCAAPR": -9.224514, "PRCAATR": -10.610809, "PRCADB": -9.001371, "PRCADB_": -10.610809, "PRCATY": -9.917662, "PRI": -9.512197, "PRIMFND": -8.664899, "PRINTOUT.": -10.610809, "PRIORITY": -10.610809, "PRNDD": -10.610809, "PRNENTRY": -10.610809, "PRNFILE": -10.610809, "PROBLEM": -10.610809, "PROCEDURE": -10.610809, "PROFILE": -10.610809, "PROVDRST": -10.610809, "PROVIDER": -10.610809, "PRV": -10.610809, "PRVDR": -10.610809, "PRVIEN": -7.971751, "PRVPRIM": -9.917662, "PURPOSE.": -8.212914, "PXACCNT": -9.917662, "PXADATA": -8.664899, "PXADEC": -10.610809, "PXADI": -9.224514, "PXAERR": -8.664899, "PXAERRF": -9.512197, "PXAERROR": -10.610809, "PXAI": -10.610809, "PXAICPTV": -10.610809, "PXAIVST": -10.610809, "PXAIVSTV": -10.610809, "PXAK": -7.615077, "PXANOT": -9.512197, "PXAPIUTL": -9.917662, "PXAPKG": -8.413584, "PXAPREDT": -9.917662, "PXAPROB": -7.902759, "PXASOURC": -8.308224, "PXASUB": -9.917662, "PXAUSER": -8.819049, "PXAVISIT": -8.531367, "PXELAP": -10.610809, "PXKERROR": -9.917662, "Parenteau": -9.917662, "Pattern": -10.610809, "Per": -10.610809, "Perl": -9.512197, "Piece": -10.610809, "Piotr": -8.664899, "Please": -9.917662, "Polish": -10.610809, "Polish.": -10.610809, "Populate": -10.610809, "Preserve": -10.610809, "Primary": -9.512197, "Print": -9.512197, "Process": -10.610809, "Product": -9.917662, "Programmer": -10.610809, "Protocol": -10.610809, "Provider": -10.610809, "PuTTY": -10.610809, "Public": -7.114301, "Q": -6.067514, "QUEUE": -10.610809, "QUEUED.": -10.610809, "QUIT": -4.547024, "Query": -10.610809, "QueryExpression": -9.917662, "QueryWithAttributes": -10.610809, "R": -9.917662, "RCD": -10.610809, "RCFN": -10.610809, "RCY": -9.001371, "REASON": -8.413584, "RESJOB": -10.610809, "RFC": -10.610809, "RHS": -10.610809, "ROOT": -10.610809, "RTN": -10.610809, "RTSLOC": -9.001371, "Ranking": -10.610809, "Receivable": -10.610809, "Reference": -9.917662, "References": -10.610809, "Reigate": -9.224514, "Reliable": -10.610809, "Replace": -10.610809, "Resize": -10.610809, "Restart": -10.610809, "Return": -10.610809, "Returned": -10.610809, "Returns": -9.917662, "Right": -10.610809, "Root": -9.917662, "Run": -10.610809, "S": -5.593529, "S.": -10.610809, "SAVEFILE": -9.917662, "SAVES": -10.610809, "SCREEN": -9.917662, "SEL": -10.610809, "SELECTED": -9.917662, "SELECTING": -10.610809, "SEND": -10.610809, "SERVICE": -10.610809, "SET": -9.512197, "SET.": -10.610809, "SETECODE": -9.917662, "SETJSONSTRING": -10.610809, "SETPASSWORD": -9.917662, "SETVARS": -9.917662, "SLASH": -9.917662, "SNT": -10.610809, "SOR": -10.610809, "SORT": -9.512197, "SOURCE": -9.917662, "SSN": -9.917662, "START": -10.610809, "STAT": -8.308224, "STATUS": -9.917662, "STOP": -10.610809, "STORE": -9.512197, "STORETXT": -10.610809, "SUBFILE": -9.001371, "SUBS": -9.512197, "SUBSCRIPT": -9.001371, "Save": -10.610809, "Secondary": -9.917662, "Security": -10.610809, "See": -7.902759, "Select": -9.917662, "SelectExpression": -10.610809, "Serves": -10.610809, "Services": -9.917662, "Set": -9.917662, "Setup": -10.610809, "Simple": -9.512197, "SimpleDB": -10.610809, "Software": -8.212914, "Some": -10.610809, "Sort": -10.610809, "Startup": -10.610809, "Stop": -10.610809, "Stuff": -10.610809, "Subscript": -9.917662, "Support": -10.610809, "Surrey": -9.224514, "Systems": -10.610809, "T": -8.413584, "TASKMAN": -10.610809, "TEST": -7.352712, "TEXT": -9.001371, "THIS": -9.512197, "TMP": -7.352712, "TMPSOURC": -10.610809, "TO": -8.819049, "TODO": -8.308224, "TR": -9.917662, "TRAN": -9.001371, "TYPE": -8.125902, "TYPE_": -8.664899, "TYPEs": -10.610809, "Tag": -10.610809, "Tags": -9.917662, "Test": -10.610809, "Text": -10.610809, "That": -10.610809, "Thats": -10.610809, "The": -7.777595, "These": -10.610809, "They": -10.610809, "This": -7.314972, "Those": -10.610809, "Title": -10.610809, "To": -9.917662, "ToStr": -9.224514, "Trap": -10.610809, "Try": -9.917662, "Tutorial": -10.610809, "U": -6.348129, "U*": -10.610809, "U16392": -10.610809, "UK.": -9.224514, "UNICODE": -10.610809, "UPPER": -10.610809, "URL": -9.917662, "UTF": -7.838220, "Unescape": -10.610809, "Unix": -10.610809, "Unless": -10.610809, "Use": -9.917662, "V": -8.212914, "VA": -9.917662, "VALM": -10.610809, "VALQUIET": -9.917662, "VALUE": -9.001371, "VARIABLES": -10.610809, "VHA": -10.610809, "VISIT": -9.512197, "VPTR": -10.610809, "VSIT": -10.610809, "VST": -9.917662, "V_": -10.610809, "Validate": -9.917662, "Version": -10.610809, "W": -7.475315, "WANT": -10.610809, "WARNING": -9.917662, "WARNINGS": -9.917662, "WARRANTIES": -10.610809, "WARRANTY": -8.212914, "WASH": -10.610809, "WHICH": -10.610809, "WITH": -10.610809, "WITHOUT": -8.125902, "WLD": -10.610809, "WOMEN": -10.610809, "WP": -9.917662, "WV": -8.664899, "WVA": -9.917662, "WVACC": -10.610809, "WVB": -9.224514, "WVBEGDT": -9.917662, "WVBRNOT": -9.224514, "WVC": -9.224514, "WVCHRT": -10.610809, "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": -10.610809, "WVDATE": -8.531367, "WVDFN": -9.001371, "WVE": -9.917662, "WVENDDT": -9.512197, "WVIEN": -8.045859, "WVLOOP": -10.610809, "WVNAME": -9.512197, "WVPOP": -10.610809, "WVPRIO": -9.001371, "WVSTAT": -10.610809, "WVUTL": -9.224514, "WVXREF": -10.610809, "Web": -9.512197, "WebLink": -10.610809, "Wed": -10.610809, "When": -9.512197, "Word": -10.610809, "Write": -8.413584, "X": -7.519766, "XC": -10.610809, "Xy": -8.819049, "Y": -7.278604, "Y_": -9.512197, "You": -8.045859, "Z": -10.610809, "ZCHSET": -9.917662, "ZDIOUT": -10.610809, "ZLINK": -10.610809, "[": -6.191968, "\\": -7.278604, "]": -7.666370, "^": -4.163503, "_": -5.510942, "_EGR": -10.610809, "_FILE": -9.224514, "_F_": -10.610809, "_GMRGADD": -10.610809, "_GMRGB": -9.917662, "_GMRGD": -10.610809, "_GMRGE": -10.610809, "_GMRGRM": -9.917662, "_GMRGSPC_": -9.512197, "_GMRGSSW_": -10.610809, "_IO_": -10.610809, "_NAME_": -10.610809, "_PRCATY_": -10.610809, "_P_": -10.610809, "_S": -10.610809, "_STAT": -10.610809, "_STAT_": -10.610809, "_TRAN": -10.610809, "_TYPE": -10.610809, "_ToStr_": -10.610809, "__": -9.917662, "____": -10.610809, "_action": -10.610809, "_action_": -9.917662, "_appName": -10.610809, "_arrRef_": -10.610809, "_by_": -9.917662, "_c_p": -10.610809, "_codeValueEsc_": -10.610809, "_count": -10.610809, "_count_crlf": -9.917662, "_crlf": -7.278604, "_crlf_": -10.610809, "_crlf_arrString_crlf": -10.610809, "_crlf_data_crlf": -9.512197, "_crlf_gloRef_crlf": -9.917662, "_crlf_json_crlf": -9.224514, "_crlf_response_crlf": -9.224514, "_crlf_subs_crlf": -10.610809, "_data": -9.512197, "_data_": -9.917662, "_data_crlf": -9.001371, "_db": -10.610809, "_db_": -10.610809, "_dir": -10.610809, "_error_": -10.610809, "_error_crlf": -10.610809, "_exists_": -9.917662, "_func": -9.917662, "_glo": -10.610809, "_gloRef": -9.512197, "_gloRef_": -7.971751, "_globalName": -8.664899, "_i": -10.610809, "_i_": -9.001371, "_input_": -10.610809, "_j_": -10.610809, "_m_": -10.610809, "_name": -9.917662, "_name_": -9.224514, "_nextPage": -10.610809, "_no": -10.610809, "_p": -9.917662, "_password": -10.610809, "_pid": -10.610809, "_pid_": -10.610809, "_propertyName": -9.917662, "_propertyName_": -10.610809, "_propertyValue_": -10.610809, "_props": -10.610809, "_quot_quot_": -10.610809, "_rec_crlf": -10.610809, "_response": -9.001371, "_response_": -8.413584, "_s_": -9.917662, "_sessid_": -9.917662, "_subs": -9.917662, "_subs_": -9.001371, "_token_": -10.610809, "_user": -10.610809, "_user_": -10.610809, "_username_": -10.610809, "_value": -9.917662, "_value_": -9.512197, "_x": -10.610809, "a": -5.606862, "a#": -10.610809, "a*": -10.610809, "a=": -8.531367, "aa": -7.838220, "aaa": -9.224514, "abc": -10.610809, "above": -9.917662, "above.": -10.610809, "access": -8.664899, "account": -10.610809, "action": -7.902759, "actually": -10.610809, "add": -9.001371, "add/edit/delete": -10.610809, "addCSPServerScript": -9.917662, "addImmediateOneOffTask": -9.917662, "addJavascriptFunction": -9.917662, "addRefCol": -9.917662, "addToResultSet": -9.917662, "addToSelected": -9.917662, "addToSession": -9.917662, "addUser": -9.917662, "addUsername": -10.610809, "adding": -10.610809, "addition": -10.610809, "additional": -9.917662, "address": -10.610809, "admin": -10.610809, "advantage": -10.610809, "after": -9.001371, "again": -9.917662, "agreed": -10.610809, "ajaxErrorRedirect": -9.917662, "alg": -9.512197, "algorithm": -10.610809, "algorithms": -10.610809, "alias": -9.917662, "all": -8.308224, "allocated": -10.610809, "allowJSONAccess": -9.917662, "allowed": -9.224514, "allows": -10.610809, "alone": -10.610809, "along": -8.212914, "alphabet": -9.917662, "alphabetic": -10.610809, "already": -10.610809, "also": -9.001371, "always": -9.917662, "am": -10.610809, "amount": -10.610809, "an": -7.838220, "and": -6.533271, "and/or": -8.212914, "ansi": -10.610809, "any": -7.838220, "api": -10.610809, "app": -7.902759, "appList": -10.610809, "appName": -9.224514, "append": -10.610809, "appendToList": -9.224514, "applicable": -10.610809, "application": -9.917662, "applicationRootPath": -9.917662, "approximate": -10.610809, "apt": -10.610809, "are": -7.720437, "argument": -10.610809, "arguments": -10.610809, "arr": -9.917662, "arrString": -8.819049, "arrString_": -10.610809, "arrString_comma_": -10.610809, "array": -7.475315, "arrayName": -7.027290, "arraySize": -9.917662, "arrayToJSON": -10.610809, "arrays": -10.610809, "as": -7.475315, "ascii": -10.610809, "ascii=": -10.610809, "assigned": -9.917662, "associated": -10.610809, "at": -7.666370, "atTop": -9.917662, "attr": -10.610809, "attrName": -7.971751, "attrName=": -9.917662, "attrNo": -8.413584, "attrValue": -9.917662, "attrValues": -10.610809, "attribId": -7.027290, "attribute": -7.971751, "attributeList": -9.224514, "attributeList=": -8.819049, "attributes": -7.114301, "attributes=": -10.610809, "attributesJSON": -10.610809, "auth": -9.917662, "authNeeded": -8.819049, "authenticate": -10.610809, "autoTranslate": -9.917662, "availability": -10.610809, "available": -9.512197, "avoid": -10.610809, "ax": -9.917662, "ay": -9.917662, "b": -6.436422, "b#": -10.610809, "b*": -9.224514, "b64": -9.224514, "b64=": -9.917662, "b64Decode": -10.610809, "b64Encode": -10.610809, "b=": -8.819049, "back": -8.664899, "backref": -9.001371, "bad": -9.917662, "base": -8.819049, "based": -10.610809, "be": -7.027290, "been": -9.001371, "before": -9.917662, "begin": -7.432755, "begin=": -9.917662, "beginner": -10.610809, "being": -10.610809, "below": -10.610809, "best": -9.917662, "between": -10.610809, "bit": -9.001371, "blank": -10.610809, "block": -10.610809, "bodies": -10.610809, "boffset": -8.664899, "boffset=": -10.610809, "book": -10.610809, "books": -10.610809, "boolean": -10.610809, "bottom": -9.917662, "boxUsage": -7.777595, "buf": -9.224514, "buf_c": -10.610809, "buff": -8.045859, "bug": -9.917662, "build": -10.610809, "buildDate": -10.610809, "buildItemNameIndex": -9.917662, "built": -10.610809, "but": -7.720437, "bx": -9.917662, "by": -6.897237, "byref": -10.610809, "bytes": -10.610809, "c": -5.492815, "c#": -10.610809, "c=": -8.125902, "called": -8.308224, "called.": -10.610809, "caller": -9.917662, "caller.": -10.610809, "calling": -10.610809, "callout": -10.610809, "calls": -10.610809, "can": -7.615077, "cannot": -10.610809, "capture": -9.512197, "captured": -9.001371, "car": -7.971751, "case": -8.664899, "cases": -10.610809, "cccc": -9.917662, "cgi": -10.610809, "change": -8.819049, "changeApp": -10.610809, "changed": -9.917662, "char": -9.224514, "character": -9.001371, "characters": -8.664899, "chars": -9.224514, "chars.": -10.610809, "checkboxValue": -9.917662, "checked.": -10.610809, "childOID": -9.512197, "choice": -10.610809, "chown": -10.610809, "circuit": -9.917662, "cite": -10.610809, "class": -9.917662, "classExport": -9.917662, "className": -9.917662, "clause": -9.917662, "clear": -8.664899, "clearAllSelected": -10.610809, "clearArray": -9.917662, "clearList": -9.917662, "clearSchemaFormErrors": -10.610809, "clearSelected": -9.917662, "clearSessionArray": -10.610809, "clearSessionByPrefix": -9.512197, "clearTextArea": -9.512197, "clearURLNVP": -10.610809, "cleardown": -9.917662, "cleared.": -10.610809, "close": -10.610809, "closeSession": -9.917662, "code": -6.973223, "code.": -10.610809, "codeValue": -8.413584, "codeValueEsc": -8.664899, "codes": -9.917662, "comma": -7.777595, "command": -8.045859, "commands": -10.610809, "comment": -9.224514, "comments": -9.224514, "common": -10.610809, "compatible": -10.610809, "compilation": -9.917662, "compile": -8.413584, "compileAll": -9.917662, "compilePage": -9.917662, "compiled": -10.610809, "complete": -10.610809, "completely": -9.512197, "compliance": -10.610809, "comprehensive": -10.610809, "compute": -9.917662, "computeoptimist": -10.610809, "computepesimist": -10.610809, "computes": -10.610809, "condition": -9.512197, "conditions": -9.917662, "conf": -9.917662, "config": -9.001371, "configFile": -8.819049, "configFile=": -10.610809, "configFileNotExists": -9.917662, "configuration": -10.610809, "configure": -10.610809, "configureWebLink": -10.610809, "considered": -10.610809, "considering": -10.610809, "consistent": -10.610809, "cont.": -10.610809, "contact": -9.917662, "containing": -10.610809, "contains": -9.224514, "contents": -10.610809, "context": -9.512197, "context.": -10.610809, "context=": -9.224514, "contrasted": -9.917662, "contrasting": -10.610809, "controlled": -10.610809, "conversion": -10.610809, "convertDateToSeconds": -10.610809, "convertSubstringToLowerCase": -10.610809, "convertToJSON": -10.610809, "coordinate": -10.610809, "copy": -7.902759, "copyObjectToSession": -9.917662, "copyResultSetToSession": -9.917662, "copySessionToSymbolTable": -9.917662, "copyToLIST": -10.610809, "copyToSELECTED": -10.610809, "copyToWLDSymbolTable": -9.917662, "copyURLNVPsToSession": -10.610809, "correct": -10.610809, "corrected": -10.610809, "could": -10.610809, "count": -7.666370, "countDomains": -9.917662, "create": -9.224514, "createAdministrator": -10.610809, "createDirectory": -9.917662, "createDomain": -10.610809, "createJSPCommand": -9.917662, "createLanguageList": -10.610809, "createPHPCommand": -9.917662, "createResponse": -9.224514, "createResponseStringToSign": -10.610809, "createTextArea": -9.917662, "crlf": -8.819049, "crlfs": -10.610809, "cross": -10.610809, "cspURL": -9.917662, "ctx": -9.224514, "cursor": -10.610809, "cx": -9.917662, "cy": -9.917662, "d": -4.402219, "dangerous": -10.610809, "data": -6.718989, "data.": -10.610809, "dataStatus": -9.917662, "dataType": -9.224514, "database": -10.610809, "date": -8.308224, "dateTime": -10.610809, "date_": -10.610809, "day": -9.224514, "day_": -10.610809, "db": -8.413584, "db_": -10.610809, "dd": -10.610809, "debugging": -10.610809, "decDate": -9.917662, "decode": -10.610809, "decodeBase": -10.610809, "decodeBase64": -10.610809, "decodeDataType": -9.917662, "decoded": -9.512197, "decoded_": -10.610809, "decr": -10.610809, "decrby": -10.610809, "deeper": -10.610809, "default": -8.413584, "defaults": -10.610809, "define": -9.512197, "defined": -9.512197, "definition": -9.917662, "defs": -10.610809, "del": -9.224514, "delays": -10.610809, "delete": -9.917662, "deleteAllErrorLogs": -10.610809, "deleteDomain": -9.917662, "deleteErrorLog": -10.610809, "deleteFile": -9.917662, "deleteFromSession": -9.512197, "deleteFromSessionObject": -10.610809, "deleteSession": -9.917662, "deleteSessionArrayValue": -9.917662, "deleteSessionObject": -10.610809, "deliver": -10.610809, "depending": -9.917662, "depends": -10.610809, "depth": -10.610809, "description": -10.610809, "details": -8.531367, "details.": -8.125902, "determine": -9.917662, "dev": -10.610809, "device": -9.512197, "dh": -10.610809, "dh/": -9.512197, "diagnosis": -10.610809, "different": -9.512197, "digest": -7.666370, "digest.final": -9.917662, "digest.init": -9.512197, "digest.update": -9.917662, "dir": -10.610809, "dir=": -9.512197, "direct": -9.512197, "direction": -10.610809, "directly": -10.610809, "directory": -10.610809, "directoryExists": -9.917662, "disableEwdMgr": -10.610809, "disableWLDAccess": -10.610809, "disallowJSONAccess": -10.610809, "discover": -10.610809, "displayOptions": -9.917662, "displayed": -10.610809, "distributed": -8.045859, "division.": -10.610809, "dn": -9.224514, "dnx": -9.512197, "do": -7.838220, "docName": -7.971751, "docOID": -8.819049, "documented": -10.610809, "does": -10.610809, "doesn": -10.610809, "dojo": -10.610809, "domain": -10.610809, "domainId": -6.621825, "domainList": -9.512197, "domainMetadata": -10.610809, "domainName": -6.973223, "domainName=": -9.001371, "domains": -10.610809, "don": -10.610809, "done.": -9.917662, "dotted": -10.610809, "doubleQuotes": -10.610809, "dpkg": -10.610809, "draw": -9.917662, "dropped": -10.610809, "dss": -10.610809, "due": -10.610809, "dumpDOM": -9.917662, "dw": -10.610809, "dw/": -9.512197, "dynamic": -10.610809, "e": -5.142749, "e.g.": -9.917662, "each": -10.610809, "ec": -7.615077, "edit": -10.610809, "edited": -10.610809, "editing": -9.917662, "eg": -9.512197, "either": -8.045859, "elemId": -9.512197, "element": -10.610809, "elements": -9.512197, "else": -8.664899, "empty": -8.819049, "enable": -10.610809, "enableEwdMgr": -10.610809, "enableWLDAccess": -10.610809, "encode": -10.610809, "encodeBase": -10.610809, "encodeBase64": -10.610809, "encodeDataType": -9.917662, "encoded": -8.531367, "encoded_": -9.917662, "encoded_c": -10.610809, "end": -6.873139, "end=": -9.001371, "endOfPage": -9.917662, "ended": -10.610809, "endsWith": -10.610809, "enforcedlimit": -9.917662, "engine": -10.610809, "engineering": -10.610809, "ensure": -10.610809, "entering": -10.610809, "entries": -9.512197, "entry": -8.531367, "environment": -8.664899, "envlocale": -9.917662, "err": -9.224514, "erroffset": -9.512197, "erropt": -9.001371, "error": -6.228782, "error=": -8.664899, "errorArray": -9.224514, "errorMessage": -10.610809, "errorResponse": -8.413584, "errors": -8.819049, "errors.": -10.610809, "esc": -9.917662, "esc=": -9.224514, "escape": -8.819049, "escapeQuotes": -10.610809, "escaped": -10.610809, "escaping": -10.610809, "especially": -10.610809, "et": -9.001371, "etc": -10.610809, "evaluation": -10.610809, "even": -8.045859, "event": -9.917662, "ever": -10.610809, "ewdDemo": -8.531367, "ewd_selected": -10.610809, "ex": -9.224514, "exact": -10.610809, "example": -8.819049, "examples": -9.224514, "except": -10.610809, "exception": -7.720437, "exception.": -9.917662, "exceptions": -9.917662, "exec": -9.224514, "executable": -10.610809, "executeCode": -9.917662, "executeError": -9.917662, "executeSelect": -9.917662, "executed": -10.610809, "execution": -9.917662, "exercise": -10.610809, "existing": -9.917662, "exists": -8.212914, "existsInSession": -9.917662, "existsInSessionArray": -9.917662, "exit": -9.224514, "expected": -9.512197, "expected.": -10.610809, "explanatory": -9.917662, "export": -9.917662, "exportAllCustomTags": -9.917662, "exportCustomTags": -9.917662, "exportToGTM": -10.610809, "expr": -9.224514, "expr=": -9.001371, "express": -10.610809, "expressions": -10.610809, "extcErr": -10.610809, "extension": -9.001371, "external": -10.610809, "extraneous": -10.610809, "f": -5.901279, "f*n": -10.610809, "factorial": -9.512197, "fail.": -10.610809, "failed": -10.610809, "fall": -9.917662, "false": -8.819049, "feel": -9.917662, "field": -7.838220, "fieldName": -6.046461, "fieldValue": -8.212914, "fieldValue=": -9.512197, "fields": -10.610809, "file": -7.838220, "file.": -9.917662, "fileExists": -9.917662, "fileInfo": -9.917662, "fileName": -9.001371, "filePath": -9.917662, "fileSize": -9.917662, "filename": -9.917662, "filepath": -8.308224, "files": -9.001371, "filesArray": -10.610809, "fill": -9.512197, "final": -10.610809, "finished": -10.610809, "first": -8.308224, "fl": -9.917662, "flag": -10.610809, "flrc": -9.224514, "fn": -9.917662, "fn=": -10.610809, "followed": -10.610809, "foobar": -9.917662, "for": -6.320349, "force": -10.610809, "form": -10.610809, "formal": -10.610809, "format": -8.531367, "found": -8.531367, "frame": -10.610809, "frames": -10.610809, "free": -7.971751, "frees": -10.610809, "from": -7.519766, "fullName": -9.512197, "fullinfo": -10.610809, "fun.": -10.610809, "func": -9.001371, "function": -8.819049, "functionName": -8.819049, "functions": -9.224514, "g": -4.724705, "gallons": -9.224514, "game": -10.610809, "general": -10.610809, "get": -9.001371, "getApplicationRootPath": -9.917662, "getApplications": -9.917662, "getAttrValue": -9.917662, "getAttributeId": -9.917662, "getAttributeValueId": -9.512197, "getAttributes": -9.917662, "getCheckboxValues": -10.610809, "getCookieValue": -10.610809, "getDataTypeErrors": -10.610809, "getDate": -10.610809, "getDefaultFormat": -9.917662, "getDefaultMultiLingual": -9.917662, "getDefaultTechnology": -9.917662, "getDelim": -9.917662, "getDomainId": -9.512197, "getFirstChild": -10.610809, "getGloRef": -8.664899, "getGlobal": -10.610809, "getGlobalList": -9.512197, "getGlobals": -10.610809, "getHiddenValue": -10.610809, "getHomePage": -9.917662, "getIP": -9.917662, "getItemId": -9.917662, "getJSON": -9.917662, "getJSScriptsPath": -9.917662, "getJSScriptsPathMode": -9.917662, "getJSScriptsRootPath": -9.917662, "getJavascriptFunctionBody": -9.917662, "getLanguage": -10.610809, "getMultipleSelectValues": -10.610809, "getNextChild": -10.610809, "getNextSibling": -10.610809, "getNormalAttributeValue": -9.512197, "getNormalisedAttributeValue": -10.610809, "getObjDetails": -10.610809, "getOutputRootPath": -9.917662, "getPRESSED": -10.610809, "getPREVPAGE": -9.917662, "getPages": -9.917662, "getPassword": -10.610809, "getPasswordValue": -9.512197, "getPhraseIndex": -10.610809, "getRadioValue": -9.917662, "getRequestValue": -10.610809, "getResultSetValue": -9.917662, "getRootURL": -9.512197, "getSchemaFormErrors": -9.917662, "getSelectValue": -9.001371, "getServerValue": -10.610809, "getSessid": -10.610809, "getSessionArray": -10.610809, "getSessionArrayErr": -10.610809, "getSessionArrayValue": -9.917662, "getSessionObject": -10.610809, "getSessionValue": -8.212914, "getSessionValues": -10.610809, "getSessionValuesByPrefixErr": -10.610809, "getTagByNameAndAttr": -9.917662, "getTagOID": -9.917662, "getTextValue": -9.001371, "getTokenExpiry": -10.610809, "getTraceMode": -10.610809, "getVersion": -10.610809, "given": -9.917662, "glo": -6.873139, "gloName": -8.531367, "gloRef": -6.334143, "gloRef_": -9.512197, "global": -8.045859, "globalName": -7.777595, "governing": -10.610809, "gr": -9.917662, "graphic": -9.512197, "group": -9.917662, "grouped": -9.917662, "groups": -9.512197, "gstore": -9.512197, "gt": -10.610809, "gtm": -10.610809, "gtm_chset": -10.610809, "gtm_icu_version": -10.610809, "h": -6.999891, "h/": -9.512197, "h_": -9.917662, "halt": -9.512197, "handle": -10.610809, "handled": -9.917662, "handler": -7.971751, "handlers.": -9.917662, "handling": -9.917662, "harddrop": -9.917662, "has": -8.045859, "hash": -10.610809, "hashing": -10.610809, "hasn": -9.917662, "have": -7.519766, "hd": -9.224514, "hdate": -8.664899, "hdate#": -10.610809, "hello": -9.917662, "help": -10.610809, "here": -9.512197, "hex": -8.413584, "hex=": -9.512197, "hexDecode": -10.610809, "hexToDecimal": -10.610809, "hl": -9.917662, "holding": -10.610809, "homePage": -9.917662, "hope": -8.212914, "host": -9.917662, "htmlOutputEncode": -9.917662, "http": -8.212914, "hyphen": -10.610809, "i": -4.258179, "i*": -8.664899, "i.e.": -9.512197, "i=": -8.664899, "id": -7.114301, "identifier": -10.610809, "if": -6.678983, "if2": -9.917662, "ignore": -7.971751, "ilen": -9.917662, "ilen=": -9.917662, "image": -9.917662, "image.": -9.917662, "implicit": -10.610809, "implied": -8.212914, "implied.": -10.610809, "import": -10.610809, "importCustomTags": -9.917662, "in": -6.241361, "inAttr": -9.917662, "inAttr=": -9.917662, "inOID": -9.917662, "inProc": -9.917662, "inValue": -9.512197, "inValue=": -9.917662, "incorrectly": -10.610809, "incr": -10.610809, "incrby": -10.610809, "increment": -8.531367, "indentation": -10.610809, "index": -8.045859, "indexLength": -8.308224, "indexValue": -8.413584, "indexed": -9.917662, "indexing": -10.610809, "inetDate": -10.610809, "inetTime": -10.610809, "info": -9.917662, "information": -10.610809, "init": -8.819049, "initial": -10.610809, "initialValue": -9.917662, "initialisationResponse": -10.610809, "initialise": -9.224514, "initialiseCheckbox": -9.512197, "initialiseSession": -10.610809, "input": -6.362314, "input_crlf": -10.610809, "inputr": -7.902759, "insensitive": -8.819049, "install": -9.001371, "installMDBM": -9.917662, "installMDBX": -10.610809, "installed": -10.610809, "instanceName": -10.610809, "instantiateJSPVar": -9.917662, "integer": -10.610809, "integers": -10.610809, "interface": -10.610809, "internal": -9.512197, "into": -10.610809, "invalid": -8.413584, "invoked": -9.917662, "io": -9.512197, "io=": -10.610809, "is": -6.156462, "isCSP": -9.917662, "isCheckboxOn": -10.610809, "isExtJS": -10.610809, "isLiteral": -9.917662, "isMultipleSelectOn": -10.610809, "isNextPageTokenValid": -9.917662, "isRadionOn": -10.610809, "isSSOValid": -9.917662, "isSelectOn": -10.610809, "isSelected": -9.512197, "isSelectedErr": -10.610809, "isTemp": -8.212914, "isTokenExpired": -10.610809, "isolocale": -9.917662, "isstring": -9.224514, "it": -6.698786, "it.": -9.917662, "item": -9.917662, "itemExists": -10.610809, "itemId": -6.849609, "itemId=": -9.917662, "itemList": -8.413584, "itemName": -7.838220, "itemNamex": -9.224514, "itemNo": -8.212914, "itemNo=": -8.531367, "itemStack": -8.531367, "itemValue": -8.664899, "itemValuex": -9.512197, "items": -10.610809, "itemsAndAttrs": -9.917662, "its": -10.610809, "itself": -10.610809, "j": -6.406116, "j=": -10.610809, "javascriptFunctionExists": -9.917662, "job": -10.610809, "jobbed": -10.610809, "joined": -9.917662, "joke.": -10.610809, "jsText": -9.917662, "jsTextArray": -10.610809, "json": -7.519766, "jsonString": -9.224514, "json_": -10.610809, "json_comma_": -10.610809, "k": -5.766622, "key": -7.720437, "key=": -9.224514, "keyId": -5.966418, "kill": -10.610809, "known": -9.512197, "known.": -10.610809, "l": -6.168158, "l=": -10.610809, "label": -8.664899, "labels": -9.512197, "language": -8.819049, "last": -9.224514, "lastWord": -10.610809, "lastWord=": -10.610809, "later": -8.212914, "law": -10.610809, "lc": -9.512197, "lcString": -9.917662, "lcString=": -10.610809, "lead": -9.917662, "left": -9.917662, "legal": -10.610809, "len": -8.413584, "length": -8.413584, "letter": -10.610809, "level": -9.224514, "libcrypto": -10.610809, "libicu": -9.224514, "library": -10.610809, "licensed": -10.610809, "like": -9.512197, "limit": -8.531367, "limit=": -9.224514, "limitations": -10.610809, "limits": -8.819049, "line": -7.314972, "line=": -9.001371, "lineNo": -7.666370, "linkToParentSession": -9.917662, "list": -7.720437, "list=": -10.610809, "listDOMsByPrefix": -9.917662, "listDomains": -10.610809, "listName": -8.308224, "listing": -10.610809, "loadErrorSymbols": -9.917662, "local": -10.610809, "locale": -7.902759, "locales": -9.917662, "localization": -10.610809, "located": -10.610809, "location": -8.413584, "lock": -9.917662, "log": -9.917662, "logger": -7.971751, "login": -10.610809, "logine": -10.610809, "long": -9.917662, "longrun": -9.512197, "look": -10.610809, "lookup/create": -10.610809, "loop": -8.664899, "lower": -10.610809, "lowerCase": -9.917662, "lv": -9.512197, "lv*": -10.610809, "lvns": -10.610809, "m": -6.873139, "m_apache": -10.610809, "main": -9.917662, "makeString": -10.610809, "making": -10.610809, "mandatory": -10.610809, "manual": -9.917662, "marker": -10.610809, "match": -7.243513, "matchCase": -9.917662, "matched": -9.512197, "matches": -8.664899, "matching": -9.512197, "matrix": -10.610809, "maxLines": -9.224514, "maxNoOfDomains": -9.917662, "maxNoOfItems": -9.512197, "maximize": -10.610809, "may": -9.512197, "md": -9.512197, "mdbKey": -9.917662, "me": -9.917662, "meaning": -10.610809, "means": -10.610809, "mechanism.": -9.917662, "memory": -10.610809, "mergeArrayFromSession": -9.917662, "mergeArrayToSession": -9.917662, "mergeArrayToSessionObject": -9.917662, "mergeFromSelected": -9.512197, "mergeFromSession": -10.610809, "mergeGlobalFromSession": -9.917662, "mergeGlobalToSession": -9.917662, "mergeListToSession": -9.917662, "mergeRecordArrayToResultSet": -9.917662, "mergeTextAreaFromRequest": -10.610809, "mergeToSelected": -9.917662, "mergeToSession": -10.610809, "mergefrom": -10.610809, "mess": -9.512197, "message": -8.531367, "metaData": -10.610809, "meth": -10.610809, "method": -8.664899, "methodString": -9.917662, "methods": -9.917662, "might": -10.610809, "miles": -9.224514, "miles/": -10.610809, "miles/gallons": -10.610809, "mlimit": -8.212914, "mm": -10.610809, "mode": -7.777595, "modes": -10.610809, "modified.": -10.610809, "modify": -8.212914, "modulo": -10.610809, "moment": -10.610809, "monitor": -10.610809, "monitoroutput": -10.610809, "more": -8.045859, "most": -10.610809, "msg": -8.819049, "msg_": -10.610809, "multiGet": -10.610809, "multilingual": -9.224514, "multiple": -9.512197, "mumtris.": -10.610809, "must": -8.413584, "mwire": -7.971751, "mwireDate": -9.917662, "mwireLogger": -9.512197, "mwireVersion": -9.224514, "mx": -9.224514, "my": -9.001371, "myexception": -8.819049, "myexception1": -10.610809, "myexception2": -10.610809, "myglobal": -8.125902, "mytrap": -9.917662, "mytrap1": -9.917662, "n": -5.190274, "n#": -9.512197, "name": -5.627202, "name.": -10.610809, "name/value": -9.917662, "name=": -10.610809, "name_c": -10.610809, "named": -8.308224, "namedonly": -9.917662, "names": -9.917662, "namespace": -8.819049, "nametable": -9.224514, "namex": -8.531367, "native": -10.610809, "nb": -8.531367, "nbb": -10.610809, "ne": -9.917662, "needed": -10.610809, "needs": -10.610809, "neither": -9.917662, "never": -9.224514, "new": -8.125902, "newList": -9.512197, "newString": -8.819049, "newString=": -10.610809, "newString_c": -10.610809, "newUsername": -9.001371, "newUsername_": -10.610809, "newline": -10.610809, "newpath": -9.917662, "newrole": -9.224514, "next": -10.610809, "nextPage": -10.610809, "nextSubscript": -10.610809, "nextToken": -8.664899, "nl": -10.610809, "nnvp": -10.610809, "nnvp=": -10.610809, "no": -6.406116, "no=": -7.902759, "noOfDomains": -8.125902, "node": -9.001371, "nodeOID": -7.971751, "nodes": -10.610809, "nohandler": -9.001371, "nolocale": -9.917662, "non": -9.917662, "nor": -9.917662, "normaliseTextValue": -10.610809, "not": -6.921929, "notContains": -10.610809, "notEndsWith": -10.610809, "notStartsWith": -10.610809, "nothing": -10.610809, "now": -10.610809, "np": -7.475315, "np=": -9.917662, "ns": -9.917662, "nsp": -8.413584, "null": -9.917662, "nullify": -10.610809, "num": -9.917662, "num=": -9.917662, "number": -8.125902, "number=": -10.610809, "numeric": -9.512197, "nvArray": -9.917662, "nvp": -10.610809, "nvp=": -9.917662, "o": -6.849609, "obj": -8.531367, "obj_": -10.610809, "object": -9.224514, "objectGlobalToJSON": -9.917662, "objectName": -7.055461, "objectName_": -9.917662, "obtain": -9.917662, "obtaining": -10.610809, "occur": -10.610809, "occurred": -10.610809, "occurrences": -10.610809, "occurs": -10.610809, "octet": -9.224514, "octets": -9.917662, "of": -6.067514, "offset": -8.045859, "ok": -8.045859, "okay": -10.610809, "old": -10.610809, "on": -7.720437, "one": -8.819049, "only": -8.664899, "only.": -10.610809, "open": -10.610809, "openDOM": -10.610809, "option": -8.125902, "optional": -7.902759, "optionally": -9.512197, "options": -7.902759, "or": -6.678983, "or=": -9.917662, "order": -8.308224, "orderBy": -9.917662, "orderBy=": -8.819049, "oref": -9.224514, "originally": -10.610809, "other": -9.917662, "others": -10.610809, "out": -9.512197, "output": -6.421154, "outputPath": -9.224514, "ovecsize": -9.224514, "ovector": -7.902759, "over": -9.917662, "own": -9.512197, "p": -5.712969, "p#f": -10.610809, "p1": -9.224514, "p1=": -8.819049, "page": -8.125902, "pageList": -10.610809, "pair": -10.610809, "pairs": -9.917662, "param": -8.125902, "paramName": -8.531367, "paramValue": -9.001371, "parameter": -10.610809, "parameters": -10.610809, "params": -10.610809, "parentOID": -9.001371, "parentheses": -10.610809, "parenthesis": -9.917662, "parseJSON": -9.224514, "parseJSONArray": -9.512197, "parseJSONObject": -10.610809, "parseMethod": -10.610809, "parseSelect": -9.917662, "part": -9.512197, "parts": -10.610809, "pass": -7.314972, "passed": -9.001371, "passed.": -10.610809, "password": -8.531367, "passwords": -10.610809, "path": -7.519766, "paths": -9.917662, "pattern": -8.125902, "patterns": -9.917662, "payments": -10.610809, "pcre": -6.467674, "pcre.compile": -10.610809, "pcre.config": -10.610809, "pcre.exec": -9.917662, "pcre.free": -10.610809, "pcre.fullinfo": -10.610809, "pcre.m": -10.610809, "pcre.nametable": -10.610809, "pcre.ovecsize": -10.610809, "pcre.ovector": -10.610809, "pcre.stackusage": -10.610809, "pcre.version": -10.610809, "pcre_exec": -9.001371, "pcre_maketables": -9.917662, "pcreexample.m": -10.610809, "pcreexamples": -7.084448, "pcreexamples.m": -9.917662, "per": -10.610809, "perform": -10.610809, "period": -10.610809, "perl": -8.819049, "permissions": -9.917662, "pid": -7.027290, "piece": -9.917662, "pieces": -9.917662, "pkoper": -9.917662, "place": -8.413584, "please": -10.610809, "point": -9.917662, "pointer": -9.224514, "pointers": -10.610809, "pop": -10.610809, "port": -9.224514, "pos": -7.145073, "pos=": -9.512197, "positioning.": -10.610809, "possible": -9.001371, "post": -9.001371, "post2": -10.610809, "postconditional": -9.001371, "postconditionals": -10.610809, "prePageScript": -9.917662, "prefix": -7.902759, "prepared": -9.512197, "present": -10.610809, "prevent": -10.610809, "preview": -9.512197, "primary": -10.610809, "print": -8.531367, "probably": -10.610809, "problem.": -10.610809, "procedure": -10.610809, "process": -9.512197, "processed": -10.610809, "processing": -9.512197, "program": -7.666370, "program.": -8.413584, "prompt": -9.917662, "prop": -8.819049, "properly": -10.610809, "propertyName": -8.531367, "propertyValue": -8.308224, "props": -7.971751, "protect": -8.308224, "provide": -10.610809, "provider": -10.610809, "providing": -10.610809, "published": -8.212914, "purposely": -8.819049, "putAttributes": -9.917662, "q": -5.065631, "q=": -10.610809, "queryExpression": -8.413584, "queryExpression=": -8.045859, "queryIndex": -10.610809, "questions": -9.917662, "quit": -7.084448, "quot": -9.224514, "quote": -9.224514, "quoted": -9.512197, "r": -6.320349, "raise": -9.224514, "raised": -9.917662, "rc": -10.610809, "re": -8.125902, "read": -9.917662, "readChars": -10.610809, "readonly": -10.610809, "rec": -8.212914, "received": -8.212914, "reclimit": -8.308224, "recompiled": -10.610809, "reconfigure": -10.610809, "record": -8.413584, "recordArray": -10.610809, "records": -9.001371, "recursion": -9.917662, "recursion.": -10.610809, "redistribute": -8.212914, "redraw": -9.512197, "ref": -7.084448, "ref_": -9.512197, "ref_subs_": -9.917662, "reference": -10.610809, "reference.": -9.917662, "references": -9.917662, "refs": -9.224514, "regular": -10.610809, "rel": -9.512197, "rel=": -9.224514, "related.": -10.610809, "release": -9.917662, "releaseLock": -9.917662, "relink": -10.610809, "remove": -9.224514, "removeAttribute": -9.917662, "removeAttributeNS": -9.917662, "removeCR": -10.610809, "removeChild": -9.917662, "removeControlChars": -10.610809, "removeDOMsByPrefix": -9.917662, "removeFromDOM": -8.531367, "removeFromSelected": -9.917662, "removeInstanceDocument": -10.610809, "removeIntermediateNode": -9.512197, "removeIntermediateNodeeXtc": -10.610809, "removeQuotes": -10.610809, "renameFile": -9.917662, "replace": -7.145073, "replaceAll": -7.209611, "replaceJavascriptFunctionBody": -9.917662, "report": -10.610809, "requestArray": -9.224514, "requestId": -7.615077, "requestId=": -9.512197, "required": -9.224514, "requires": -10.610809, "reserved.": -9.224514, "reset": -10.610809, "resp": -9.917662, "response": -6.621825, "response_": -10.610809, "restart": -9.512197, "result": -9.512197, "resultSetName": -9.917662, "results.": -10.610809, "return": -8.819049, "returned": -10.610809, "returns": -8.664899, "reverse": -10.610809, "rewrite": -10.610809, "rights": -9.224514, "ripemd": -10.610809, "rltKey": -9.917662, "rm": -10.610809, "rob": -10.610809, "rol": -10.610809, "role": -9.224514, "role=": -10.610809, "rotate": -9.917662, "rotateVersion": -9.917662, "rotateVersions": -10.610809, "rou": -10.610809, "round": -10.610809, "routine": -8.413584, "routine.": -10.610809, "routines": -9.001371, "rtweed@mgateway.com": -9.224514, "rule": -10.610809, "run": -9.917662, "runSelect": -10.610809, "runSelect.": -10.610809, "runTransaction": -10.610809, "running": -10.610809, "runs": -9.917662, "s": -3.631664, "s.": -10.610809, "s/": -9.512197, "s=": -10.610809, "s_": -10.610809, "safe": -9.917662, "safechar": -9.512197, "same": -10.610809, "saveJSON": -9.917662, "saveSession": -9.917662, "saveSymbolTable": -10.610809, "sc": -9.512197, "scope": -10.610809, "score": -9.917662, "screen": -10.610809, "second": -10.610809, "secret": -8.664899, "secret=": -9.224514, "secretKey": -10.610809, "see": -7.432755, "select": -9.512197, "selectExpression": -9.001371, "selectExpression=": -7.971751, "selected": -8.212914, "selected=": -9.512197, "selectedValueArray": -9.512197, "semicolon": -10.610809, "semicolons": -10.610809, "sequence": -10.610809, "series": -9.917662, "server": -10.610809, "serverArray": -10.610809, "service": -10.610809, "sessid": -4.979597, "session": -9.917662, "sessionArray": -9.001371, "sessionArrayValueExists": -9.917662, "sessionName": -6.973223, "sessionNameExists": -10.610809, "sessionObjectToJSON": -9.917662, "set": -5.901279, "setApplicationRootPath": -9.917662, "setCheckboxOff": -10.610809, "setCheckboxOn": -9.224514, "setCheckboxValues": -10.610809, "setHiddenValue": -10.610809, "setHomePage": -9.917662, "setJSON": -10.610809, "setJSONPage": -9.917662, "setJSONValue": -9.917662, "setJSScriptsPathMode": -9.917662, "setJSScriptsRootPath": -9.917662, "setMultipleSelectOn": -9.917662, "setMultipleSelectValues": -10.610809, "setNVArray": -9.917662, "setNamespace": -10.610809, "setOutputRootPath": -9.917662, "setPassword": -10.610809, "setRadioOn": -9.512197, "setRedirect": -10.610809, "setRootURL": -9.917662, "setSchemaFormErrors": -10.610809, "setSelectValue": -10.610809, "setSessionArray": -10.610809, "setSessionObject": -9.512197, "setSessionValue": -8.212914, "setTextValue": -9.001371, "setURLNVP": -10.610809, "setWLDSymbol": -10.610809, "setWarning": -9.917662, "setpassword": -10.610809, "setting": -9.224514, "setup": -9.224514, "sha": -9.001371, "shining": -10.610809, "short": -9.917662, "shortFieldValue": -8.413584, "shortrun": -9.917662, "should": -7.777595, "signatureMethod": -9.917662, "signatureVersion": -9.512197, "silently": -9.917662, "simple": -9.917662, "simplified": -10.610809, "simply": -10.610809, "single": -9.512197, "situation": -10.610809, "size": -9.512197, "skip": -10.610809, "skipped": -10.610809, "slash": -10.610809, "small": -10.610809, "smaller": -9.512197, "so": -9.224514, "software": -8.125902, "some": -10.610809, "source": -8.819049, "space": -10.610809, "space.": -10.610809, "spaces": -9.512197, "special": -8.819049, "specific": -9.224514, "specification.": -10.610809, "specified": -9.224514, "sqrx": -9.512197, "sso": -9.917662, "st": -9.001371, "st_": -10.610809, "stack": -8.531367, "stackusage": -9.224514, "start": -7.777595, "startSession": -9.917662, "startTime": -7.243513, "startoffset": -9.512197, "starts": -9.512197, "startsWith": -10.610809, "startup": -10.610809, "statement": -9.512197, "statements": -9.917662, "status": -9.917662, "step": -9.512197, "stop": -6.739608, "stop=": -9.001371, "store": -9.512197, "stored": -10.610809, "str": -9.512197, "str=": -9.512197, "string": -6.293321, "string=": -8.664899, "stringToSign": -9.917662, "string_spaces": -10.610809, "stringified": -9.917662, "strings": -10.610809, "stripSpaces": -9.001371, "stripTrailingSpaces": -10.610809, "strx": -9.917662, "student": -7.971751, "style": -9.917662, "sub": -9.917662, "subString": -9.917662, "subString=": -10.610809, "subfile": -10.610809, "subject": -7.666370, "submitted": -10.610809, "subroutine": -10.610809, "subs": -6.241361, "subs_": -9.512197, "subs_comma_": -10.610809, "subscript": -8.308224, "subscripts": -8.819049, "subst": -9.224514, "substitute": -9.512197, "substitution": -10.610809, "substring": -9.917662, "such": -9.917662, "sudo": -10.610809, "sum": -7.902759, "sum=": -10.610809, "sumx": -9.512197, "sumxy": -9.001371, "support": -9.224514, "suppressBoxUsage": -10.610809, "system": -10.610809, "systems": -9.512197, "t": -7.838220, "tab": -10.610809, "tag": -9.224514, "tagList": -10.610809, "tagName": -9.224514, "tags": -10.610809, "take": -9.917662, "taking": -10.610809, "targetValue": -7.971751, "technology": -6.973223, "tempText": -9.512197, "tempTo": -9.224514, "templatePageName": -9.917662, "term": -9.001371, "terminal": -9.917662, "terminated": -9.917662, "terminating": -9.917662, "terms": -8.212914, "test": -9.224514, "testField": -9.224514, "testValue": -10.610809, "tested": -10.610809, "testing": -10.610809, "tetris": -10.610809, "text": -7.391933, "textArray": -9.917662, "textValue": -8.819049, "textValueEsc": -8.664899, "textarea": -9.917662, "textid": -10.610809, "than": -9.224514, "that": -7.666370, "the": -5.101420, "then": -9.917662, "there": -9.917662, "these": -10.610809, "this": -7.391933, "thisWord": -9.512197, "thisWord=": -9.917662, "though": -10.610809, "through": -10.610809, "tilde": -10.610809, "time": -8.045859, "timeout": -9.917662, "tip": -10.610809, "tips": -10.610809, "tlen": -9.917662, "tlen=": -9.917662, "to": -6.451926, "to1": -10.610809, "to1=": -10.610809, "toPage": -10.610809, "todrop": -9.917662, "token": -8.045859, "tokeniseURL": -9.917662, "too": -10.610809, "tot": -9.917662, "tr": -7.432755, "trace": -7.027290, "traceModeOff": -10.610809, "traceModeOn": -10.610809, "trademark": -9.917662, "trailing": -10.610809, "translationMode": -10.610809, "trap": -7.838220, "tree": -10.610809, "triangle": -10.610809, "tries": -10.610809, "true": -10.610809, "try": -9.224514, "two": -10.610809, "type": -8.413584, "typex": -10.610809, "u": -9.224514, "umps": -10.610809, "unEscape": -9.917662, "uncommon": -10.610809, "undefined": -10.610809, "under": -7.971751, "underscore": -10.610809, "unescName": -9.001371, "unexpected": -10.610809, "uniqueId": -10.610809, "unknown": -10.610809, "unless": -10.610809, "unmatched": -10.610809, "unreserved": -10.610809, "up": -10.610809, "update": -10.610809, "updates": -10.610809, "uppercase": -10.610809, "url": -9.917662, "urlDecode": -9.512197, "urlEscape": -10.610809, "urlNo": -9.512197, "usable": -10.610809, "usage": -9.512197, "use": -9.001371, "used": -8.531367, "used.": -9.917662, "useful": -8.212914, "user": -7.084448, "userKeyId": -8.819049, "userSecretKey": -8.819049, "userType": -9.224514, "username": -8.531367, "uses": -10.610809, "using": -9.001371, "usr": -9.917662, "usually": -10.610809, "utf": -10.610809, "utfConvert": -10.610809, "utflocale": -9.917662, "utilities": -10.610809, "v": -9.917662, "val": -9.001371, "valid": -9.917662, "value": -5.937980, "value=": -9.917662, "valueErr": -10.610809, "valueId": -7.838220, "valueNo": -8.819049, "valued": -9.917662, "values": -8.819049, "valuex": -8.045859, "var": -9.917662, "variable": -8.212914, "variables": -9.512197, "ver": -8.664899, "verbose": -9.917662, "version": -7.838220, "version.": -8.212914, "very": -9.917662, "via": -9.917662, "visit": -9.512197, "visit.": -10.610809, "vno": -9.917662, "w": -5.593529, "w*": -10.610809, "want": -10.610809, "warning": -10.610809, "warningMessage": -9.512197, "warnings": -10.610809, "warranty": -8.212914, "was": -8.819049, "wasn": -10.610809, "way": -10.610809, "we": -9.917662, "webserver": -9.917662, "well": -9.917662, "were": -10.610809, "what": -9.917662, "when": -8.045859, "where": -8.819049, "which": -9.001371, "while": -9.224514, "whitespace": -9.917662, "whose": -9.917662, "why": -10.610809, "wide": -10.610809, "will": -7.352712, "window": -10.610809, "with": -6.718989, "within": -9.512197, "without": -8.212914, "wldAppName": -10.610809, "wldName": -10.610809, "wldSessid": -10.610809, "word": -9.001371, "working": -10.610809, "works": -10.610809, "world": -9.917662, "would": -9.917662, "wrapper.": -10.610809, "write": -6.391301, "writeLine": -8.664899, "writing": -8.819049, "written": -9.512197, "x": -5.647964, "x*x": -10.610809, "x*y": -10.610809, "x=": -10.610809, "x_": -9.917662, "x_comma_": -10.610809, "xinetd": -9.917662, "xor": -9.224514, "xvalue": -8.664899, "xvalue=": -9.917662, "xxx/mdb/test.mgwsi": -10.610809, "y": -7.777595, "you": -7.777595, "your": -7.838220, "yy": -10.610809, "z": -10.610809, "zascii": -10.610809, "zbitand": -10.610809, "zc": -9.917662, "zch": -8.664899, "zchar": -10.610809, "zchset": -9.917662, "zcvt": -8.125902, "zdir": -9.917662, "ze": -8.308224, "zero": -10.610809, "zewd": -7.114301, "zewdAPI": -6.421154, "zewdCompiler": -6.133472, "zewdDOM": -8.819049, "zewdDemo": -10.610809, "zewdError": -9.001371, "zewdForm": -10.610809, "zewdGTMRuntime": -10.610809, "zewdMgr": -10.610809, "zewdMgrAjax": -10.610809, "zewdPHP": -8.531367, "zewdScheduler": -10.610809, "zewdSession": -6.621825, "zewdTrace": -9.512197, "zewdWLD": -10.610809, "zextract": -9.512197, "zg": -9.512197, "zint": -10.610809, "zl": -8.531367, "zl_": -9.512197, "zlength": -9.512197, "zmwire": -6.897237, "zmwireDaemon": -9.917662, "zs": -9.917662, "zsh": -10.610809, "zsy": -9.917662, "zt": -6.376702, "ztrnlnm": -9.917662, "zv": -8.125902, "zwr": -7.777595, "zwrite": -10.610809, "zzname": -10.610809, "zzv": -8.664899, "{": -8.819049, "|": -5.535635, "||": -10.610809, "}": -8.819049, "~": -8.531367, "™": -9.917662, }, "M4": map[string]float64{ "(": -2.646175, ")": -2.751535, ",": -3.562466, "-": -4.948760, "//en.wikipedia.org/wiki/M": -4.948760, ":": -4.948760, "</HTML>": -4.948760, "<HTML>": -4.948760, "Conclusion": -4.948760, "First": -4.948760, "H": -3.339322, "M": -4.948760, "Note": -4.948760, "One": -4.948760, "Second": -4.948760, "Section": -4.255613, "The": -4.948760, "Took": -4.948760, "_": -4.948760, "_COUNT": -4.255613, "`": -3.339322, "an": -4.948760, "another": -4.948760, "appearing": -4.948760, "around": -4.948760, "be": -4.255613, "being": -4.255613, "blank": -4.948760, "call.": -4.948760, "can": -4.948760, "causes": -4.255613, "comments": -4.948760, "computer_language": -4.948760, "define": -4.255613, "discard": -4.948760, "discarded": -4.255613, "divert": -3.339322, "dnl": -2.550865, "even": -4.948760, "expanded": -4.948760, "from": -4.255613, "has": -4.948760, "https": -4.948760, "in": -4.948760, "invalid": -4.948760, "is": -4.255613, "keywords": -4.948760, "line": -4.948760, "lines": -4.948760, "m": -4.948760, "macro": -4.255613, "manipulated": -4.948760, "meaning": -4.948760, "multiple": -4.948760, "of": -4.255613, "output": -4.255613, "output.": -4.255613, "preventing": -4.948760, "pushed": -4.948760, "queue": -4.948760, "queues": -4.255613, "quotes": -4.948760, "rest": -4.948760, "such": -4.948760, "t": -4.948760, "text": -4.948760, "that": -3.850148, "the": -3.339322, "thus": -4.948760, "to": -3.850148, "undivert": -4.948760, "until": -4.948760, "unwanted": -4.948760, "while": -4.948760, "with": -4.255613, "within": -4.948760, }, "M4Sugar": map[string]float64{ "!": -5.036953, "$": -3.687026, "'": -6.982863, "(": -2.461074, ")": -2.472003, "*": -6.982863, "*cygwin*": -6.982863, "*mingw*": -6.982863, ",": -2.564022, "-": -3.804809, ".*/": -6.982863, "/": -6.982863, "/data": -6.982863, "/winstaller.nsi": -6.982863, ":": -5.191103, "<allegro.h>": -6.982863, "<divided.mind@gmail.com>": -6.982863, "<hk_classes@knoda.org>": -6.982863, "<http://www.gnu.org/licenses/>": -6.982863, "<matteo@member.fsf.org>": -6.982863, "<rafael@laboissiere.net>": -6.982863, "<ruby.h>": -6.982863, "<sebastian-huber@web.de>": -6.982863, "=": -3.650658, "AC_ARG_ENABLE": -5.884250, "AC_CANONICAL_HOST": -6.982863, "AC_CHECK_HEADER": -6.982863, "AC_CHECK_HEADERS": -6.982863, "AC_CHECK_PROG": -6.982863, "AC_CONFIG_AUX_DIR": -6.982863, "AC_CONFIG_FILES": -6.982863, "AC_CONFIG_HEADERS": -6.982863, "AC_CONFIG_MACRO_DIR": -6.982863, "AC_CONFIG_SRCDIR": -6.982863, "AC_C_INLINE": -6.982863, "AC_DEFINE": -6.982863, "AC_HEADER_STDBOOL": -6.982863, "AC_INIT": -6.982863, "AC_MSG_ERROR": -6.289716, "AC_OUTPUT": -6.982863, "AC_PREREQ": -6.982863, "AC_PROG_CC": -6.982863, "AC_PROG_LIBTOOL": -6.982863, "AC_SUBST": -6.289716, "ALLEGRO_DEBUG_LIBS": -6.982863, "ALLEGRO_LIB": -6.289716, "ALLEGRO_LIBS": -5.884250, "ALLEGRO_RELEASE_LIBS": -6.982863, "AM_CONDITIONAL": -5.884250, "AM_INIT_AUTOMAKE": -6.982863, "AS_CASE": -6.982863, "AS_HELP_STRING": -5.884250, "AS_IF": -5.373425, "Allegro": -6.982863, "Builds": -6.982863, "CFLAGS": -6.982863, "Check": -6.982863, "DATADIR_NAME": -5.884250, "DO": -6.982863, "Define": -6.982863, "GARDEN": -6.982863, "HAVE_FREEDESKTOP": -6.982863, "If": -6.289716, "In": -6.982863, "LIBS": -6.982863, "LT_PROG_RC": -6.982863, "List": -6.982863, "Makefile": -6.982863, "NOT": -6.982863, "Normally": -6.982863, "PACKAGER": -6.982863, "USE": -6.982863, "Unable": -6.982863, "WANT_FREEDESKTOP": -6.982863, "WINDOWS_VERSION": -6.289716, "Wall": -6.982863, "What": -6.982863, "Whether": -6.982863, "Windows": -6.982863, "You": -6.982863, "[": -2.055609, "\\": -5.884250, "]": -2.055609, "^": -6.982863, "_FOREACH": -6.982863, "_GET": -6.982863, "_LIST_": -5.596568, "_LIST_NAME": -3.987130, "_argn": -6.982863, "_car": -6.982863, "_cdr": -6.982863, "_define": -4.343805, "_do": -5.191103, "_dquote": -5.596568, "_dquote_elt": -6.982863, "_escape": -6.289716, "_expand": -6.982863, "_foreach": -6.289716, "_if": -6.982863, "_ifndef": -6.289716, "_list_add": -6.982863, "_list_contains": -6.982863, "_list_contents": -5.373425, "_list_declare": -6.982863, "_list_nth": -6.289716, "_list_pop_back": -6.982863, "_list_pop_front": -6.289716, "_popdef": -5.596568, "_pushdef": -5.596568, "_quote": -6.289716, "_reverse": -6.289716, "_unquote": -5.596568, "`": -5.884250, "a": -5.884250, "allegro": -6.982863, "allegro.h": -6.982863, "already": -6.982863, "applicable.": -6.982863, "are": -6.982863, "aux": -6.982863, "blank": -6.982863, "break": -6.982863, "bubla@users.sourceforge.net": -6.982863, "build": -6.982863, "building": -6.982863, "but": -6.982863, "case": -6.982863, "check": -6.982863, "contains": -6.982863, "data.": -6.982863, "data/Makefile": -6.982863, "database": -6.982863, "datadir": -5.596568, "datafiles": -6.982863, "debug": -5.884250, "default": -6.982863, "desktop": -5.884250, "distro": -6.982863, "dnl": -4.785638, "do": -6.982863, "docs/garden.doxyfile": -6.982863, "does": -6.982863, "don": -6.982863, "done": -6.982863, "dont": -6.982863, "enable": -5.596568, "enable_debug": -6.982863, "file": -6.289716, "find": -6.982863, "first": -6.982863, "for": -5.884250, "game": -6.289716, "garden": -6.289716, "garden.desktop": -6.289716, "handy": -6.982863, "have": -6.982863, "have_allegro": -5.884250, "have_freedesktop": -6.982863, "host": -6.982863, "if": -5.191103, "in": -6.982863, "install": -5.596568, "installed": -6.982863, "installing": -6.289716, "instance": -6.982863, "is": -6.289716, "it": -5.596568, "item": -5.884250, "l": -6.982863, "ldflag": -6.289716, "lib": -6.982863, "library": -6.289716, "like": -6.982863, "m": -2.793208, "makes": -6.289716, "name": -6.982863, "no": -6.982863, "not": -6.982863, "now": -6.982863, "of": -6.982863, "official": -6.982863, "one": -6.982863, "or": -6.289716, "out": -6.982863, "path": -6.982863, "pkgs/w": -6.982863, "play": -6.289716, "programming": -6.982863, "pwd": -6.982863, "repositories": -6.982863, "resources/Makefile": -6.982863, "s/.*": -6.982863, "sense": -6.289716, "specification": -6.982863, "src/Makefile": -6.982863, "src/configure.h": -6.982863, "src/input.h": -6.982863, "string.h": -6.982863, "sys/stat.h": -6.982863, "system": -6.982863, "test": -4.903421, "that": -6.982863, "the": -5.191103, "this": -6.982863, "to": -4.903421, "try_link_allegro": -6.982863, "unix": -6.982863, "update": -6.982863, "use": -5.596568, "useful": -6.982863, "version": -6.982863, "want": -5.596568, "when": -6.289716, "whether": -6.982863, "windows_version": -6.982863, "without": -6.289716, "www.allegro.cc": -6.982863, "yes": -6.982863, "you": -5.191103, "your": -6.289716, "|": -6.982863, }, "MAXScript": map[string]float64{ "!": -6.018593, "#": -5.325446, "#RightClick": -6.018593, "#curve": -4.919981, "#smooth": -4.919981, "(": -2.840539, ")": -2.840539, "*": -5.325446, "+": -4.409155, ",": -4.226834, "-": -3.074154, "/": -4.919981, "1999": -6.018593, ":": -4.072683, "</svg>": -6.018593, "<polygon>": -6.018593, "<svg>": -6.018593, "=": -2.305021, ">": -5.325446, "CalculateVolumeAndCentreOfMass": -6.018593, "Centre": -4.409155, "Cross": -6.018593, "Dot": -6.018593, "Execute": -6.018593, "Face": -6.018593, "Face.x": -6.018593, "Face.y": -6.018593, "Face.z": -6.018593, "FreeSpline": -6.018593, "Geometryclass": -6.018593, "MoveToSurface": -6.018593, "Volume": -4.409155, "[": -5.325446, "]": -5.325446, "abs": -6.018593, "addKnot": -4.919981, "addNewSpline": -6.018593, "category": -5.325446, "close": -6.018593, "dV": -4.919981, "delete": -5.325446, "distance": -6.018593, "do": -4.919981, "draw_new_line": -5.325446, "else": -4.919981, "end": -3.939152, "execute": -6.018593, "false": -6.018593, "fill": -6.018593, "filter": -6.018593, "find_intersection": -5.325446, "fn": -4.409155, "for": -5.325446, "format": -5.325446, "g_filter": -5.325446, "getFace": -6.018593, "getVert": -4.919981, "get_mouse_pos": -5.325446, "http": -6.018593, "i": -4.409155, "i.pos": -6.018593, "if": -3.939152, "in": -6.018593, "int_point": -5.325446, "int_point.pos": -6.018593, "intersectRay": -6.018593, "isEnabled": -6.018593, "isValidNode": -6.018593, "local": -3.379536, "loop": -6.018593, "macroscript": -5.325446, "message": -6.018593, "mouseMoveCallback": -6.018593, "n": -6.018593, "new_spline": -3.453644, "new_spline.pos": -6.018593, "nodeMaxZ": -4.919981, "node_to_z": -6.018593, "node_to_z.pos": -6.018593, "numFaces": -5.325446, "o": -5.325446, "obj": -5.325446, "old_pen_pos": -3.716008, "old_pos": -4.409155, "on": -4.632299, "org": -6.018593, "pen_pos": -4.409155, "pickObject": -6.018593, "pickPoint": -5.325446, "q": -5.325446, "querybox": -6.018593, "ray": -6.018593, "return": -6.018593, "script": -5.325446, "second_knot_set": -4.632299, "select": -5.325446, "selection": -6.018593, "selection.count": -6.018593, "setKnotPoint": -6.018593, "snapshotasmesh": -6.018593, "splineShape": -6.018593, "stroke": -5.325446, "superclassof": -6.018593, "t": -6.018593, "target_mesh": -4.919981, "testRay": -5.325446, "testRay.pos.z": -6.018593, "theMesh": -4.226834, "theMesh.numfaces": -6.018593, "theSVGfile": -5.325446, "then": -4.072683, "title": -6.018593, "to": -4.919981, "tooltip": -6.018593, "true": -6.018593, "tstyle": -6.018593, "txmlns": -6.018593, "undefined": -5.325446, "undo": -4.632299, "updateShape": -6.018593, "updateshape": -6.018593, "v1": -5.325446, "v2": -5.325446, "v3": -5.325446, "vert": -3.620698, "w3": -6.018593, "width": -6.018593, "www": -6.018593, "x": -4.919981, "xlink": -5.325446, "y": -4.919981, "z_node": -5.325446, "z_node.max.z": -6.018593, }, "MQL4": map[string]float64{ "#property": -5.767539, "&": -5.767539, "(": -4.381245, ")": -4.381245, "+": -4.133409, ",": -3.282633, "-": -0.655552, "//": -3.155633, "//Stop": -7.846981, "//Take": -7.846981, "//opensource.org/licenses/MIT": -6.748369, ":": -5.544396, ";": -5.138931, "=": -5.901071, "A": -6.055222, "ACTION": -6.748369, "AN": -6.748369, "AND": -6.748369, "ANY": -6.055222, "ARISING": -6.748369, "AUTHORS": -6.748369, "Andrey": -6.748369, "Ask": -7.153834, "BE": -6.748369, "BUT": -6.748369, "Bears": -7.846981, "Bid": -7.846981, "CLAIM": -6.748369, "CONNECTION": -6.748369, "CONTRACT": -6.748369, "COPYRIGHT": -6.748369, "CSomeObject": -6.748369, "Copyright": -6.748369, "Custom": -7.846981, "DAMAGES": -6.748369, "DEALINGS": -6.748369, "Digits": -7.153834, "EVENT": -6.748369, "EXPRESS": -6.748369, "FITNESS": -6.748369, "FOR": -6.055222, "FROM": -6.748369, "GetName": -7.846981, "HOLDERS": -6.748369, "IMPLIED": -6.748369, "IN": -5.362074, "INCLUDING": -6.748369, "IS": -6.748369, "KIND": -6.748369, "LIABILITY": -6.748369, "LIABLE": -6.748369, "LIMITED": -6.748369, "License": -6.055222, "Loss": -7.846981, "MERCHANTABILITY": -6.748369, "MIT": -5.362074, "MODE_STOPLEVEL": -7.846981, "MarketInfo": -7.846981, "NO": -6.748369, "NONINFRINGEMENT.": -6.748369, "NOT": -6.748369, "NormalizeDouble": -7.153834, "OF": -5.362074, "OP_BUY": -7.846981, "OR": -4.802459, "OTHER": -6.055222, "OTHERWISE": -6.748369, "OUT": -6.748369, "OnCalculate": -7.846981, "OnInit": -7.846981, "OnStart": -7.846981, "OrderSend": -7.846981, "Osorgin": -6.748369, "PARTICULAR": -6.748369, "PROVIDED": -6.748369, "PURPOSE": -6.748369, "Period": -7.846981, "Permission": -6.748369, "Power": -7.846981, "Print": -6.748369, "Profit": -7.846981, "SHALL": -6.748369, "SOFTWARE": -6.055222, "SOFTWARE.": -6.748369, "Script": -7.846981, "SetName": -7.846981, "Software": -5.649756, "Software.": -6.748369, "SomeFunction": -7.846981, "StopLoss": -7.846981, "StopLoss*Point": -7.846981, "Symbol": -6.748369, "THE": -4.956609, "TO": -6.748369, "TORT": -6.748369, "TakeProfit": -7.846981, "TakeProfit*Point": -7.846981, "The": -6.055222, "USE": -6.748369, "WARRANTIES": -6.748369, "WARRANTY": -6.748369, "WHETHER": -6.748369, "WITH": -6.748369, "WITHOUT": -6.748369, "[": -5.767539, "]": -5.767539, "a": -6.748369, "above": -6.748369, "all": -6.748369, "and": -5.649756, "and/or": -6.748369, "any": -6.748369, "associated": -6.748369, "at": -6.748369, "available": -6.748369, "be": -6.748369, "bool": -7.846981, "charge": -6.748369, "class": -7.846981, "close": -7.846981, "clrNONE": -7.846981, "conditions": -6.748369, "const": -5.544396, "copies": -6.055222, "copy": -5.649756, "copyright": -6.748369, "datetime": -7.846981, "deal": -6.748369, "distribute": -6.748369, "do": -6.748369, "documentation": -6.748369, "double": -5.901071, "files": -6.748369, "following": -6.748369, "free": -6.748369, "function": -7.153834, "furnished": -6.748369, "granted": -6.748369, "header": -7.846981, "hereby": -6.748369, "high": -7.846981, "https": -6.748369, "iBars": -7.846981, "in": -6.055222, "included": -6.748369, "including": -6.748369, "indicator": -7.153834, "indicator_chart_window": -7.846981, "indicator_plots": -7.846981, "initialization": -7.846981, "input": -7.153834, "int": -5.544396, "is": -5.649756, "limitation": -6.748369, "long": -7.153834, "low": -7.846981, "m_someproperty": -6.460687, "merge": -6.748369, "minstoplevel": -7.153834, "modify": -6.748369, "n": -7.153834, "notice": -6.055222, "obtaining": -6.748369, "of": -5.138931, "open": -7.846981, "or": -6.748369, "permission": -6.748369, "permit": -6.748369, "person": -6.748369, "persons": -6.748369, "portions": -6.748369, "prev_calculated": -7.846981, "private": -7.846981, "program": -7.846981, "protected": -7.846981, "public": -7.846981, "publish": -6.748369, "rates_total": -7.153834, "restriction": -6.748369, "result": -7.153834, "return": -6.748369, "rights": -6.748369, "sample.mq": -7.153834, "sample.mqh": -7.846981, "script": -7.846981, "script_show_inputs": -7.846981, "sell": -6.748369, "shall": -6.748369, "sl": -7.153834, "so": -6.748369, "software": -6.748369, "spread": -7.846981, "start": -7.846981, "strict": -6.748369, "subject": -6.748369, "sublicense": -6.748369, "substantial": -6.748369, "the": -4.668927, "this": -6.055222, "tick_volume": -7.846981, "time": -7.846981, "to": -4.802459, "tp": -7.153834, "true": -7.846981, "use": -6.748369, "version": -7.153834, "void": -6.055222, "volume": -7.846981, "whom": -6.748369, "without": -6.055222, "{": -5.649756, "|": -2.711183, "}": -5.649756, "~": -7.846981, }, "MQL5": map[string]float64{ "!": -7.022344, "#endif": -8.756945, "#ifdef": -8.756945, "#include": -7.290608, "#property": -8.246119, "&": -6.488261, "&&": -7.909647, "(": -3.876671, ")": -3.879206, "*CacheCode": -9.855557, "*CapNames": -9.855557, "*Caps": -9.855557, "*Code": -9.855557, "*Get": -9.162410, "*LookupCachedAndUpdate": -9.855557, "*Match": -8.063798, "*Matches": -8.246119, "*ReplRef": -9.855557, "*Run": -9.855557, "*RunnerRef": -9.855557, "*cached": -9.855557, "*capnames": -9.855557, "*caps": -9.855557, "*code": -9.855557, "*current": -8.756945, "*en": -9.855557, "*m_capnames": -9.162410, "*m_caps": -9.162410, "*m_code": -9.162410, "*m_obj": -9.162410, "*m_replref": -9.855557, "*m_runnerref": -9.162410, "*m_tree": -9.855557, "*match": -9.855557, "*newcached": -9.855557, "*obj": -9.162410, "*regex": -8.756945, "*repl": -9.162410, "*run": -9.855557, "*runner": -9.162410, "*tree": -9.855557, "+": -4.044416, ",": -3.977821, "-": -0.561611, ".": -7.370650, ".Code": -9.855557, ".Get": -9.162410, ".Key": -9.162410, ".NET": -9.162410, ".Net": -9.855557, ".ReplRef": -9.855557, ".RunRegex": -9.162410, ".RunnerRef": -8.756945, "//": -3.679690, "//github.com/Microsoft/referencesource": -9.855557, "//opensource.org/licenses/MIT": -8.756945, "//www.mql": -9.855557, "0": -7.082968, "1": -7.776115, ":": -5.389649, ";": -4.330104, "<": -9.162410, "<ArraySize(m_capslist))>": -9.855557, "<CachedCodeEntry*>": -8.063798, "<Internal\\Generic\\Dictionary.mqh>": -9.855557, "<Internal\\Generic\\LinkedList.mqh>": -9.855557, "<Internal\\TimeSpan\\TimeSpan.mqh>": -9.855557, "<None>": -9.855557, "<Trade\\Trade.mqh>": -9.855557, "<int,int>": -8.469263, "<m_capsize)>": -9.162410, "<matchTimeout>": -9.855557, "<max;>": -9.855557, "<string,int>": -8.246119, "=": -4.749612, ">": -8.063798, "?": -7.552972, "A": -7.909647, "ACTION": -8.756945, "AN": -8.756945, "AND": -8.756945, "ANY": -8.063798, "APIs": -9.855557, "APIs.": -9.855557, "ARISING": -8.756945, "AUTHORS": -8.756945, "Add": -9.855557, "Also": -9.855557, "Andrey": -9.162410, "Argument": -6.911118, "ArrayCopy": -8.756945, "ArrayResize": -9.162410, "BE": -8.756945, "BUT": -8.756945, "Balancing": -9.855557, "Bars": -9.855557, "CLAIM": -8.756945, "CONNECTION": -8.756945, "CONTRACT": -8.756945, "COPYRIGHT": -8.756945, "CTrade": -9.855557, "CachedCodeEntry": -7.658332, "Callback": -9.855557, "CapSize": -9.855557, "CheckPointer": -6.859825, "ClearCache": -9.855557, "Conditional": -9.855557, "Constructor": -9.855557, "ContainsKey": -9.162410, "Copyright": -8.756945, "Corp.": -9.855557, "Count": -9.855557, "Creates": -9.162410, "Custom": -9.162410, "DAMAGES": -8.756945, "DEALINGS": -8.756945, "Debug": -8.469263, "DefaultMatchTimeout": -6.488261, "DefaultMatchTimeout_ConfigKeyName": -9.162410, "Delete": -9.855557, "Destructor": -8.756945, "Dictionary": -7.658332, "DictionaryEnumerator": -9.855557, "Digits": -9.162410, "ECMAScript": -9.162410, "EVENT": -8.756945, "EXPRESS": -8.756945, "Expression": -8.246119, "FITNESS": -8.756945, "FOR": -8.063798, "FROM": -8.756945, "FallbackDefaultMatchTimeout": -8.756945, "Find": -9.855557, "Forum": -9.855557, "Framework": -8.756945, "FromMilliseconds": -9.855557, "General": -9.855557, "Get": -8.246119, "GetCapList": -9.855557, "GetGroupNumbers": -9.855557, "GetPointer": -7.457662, "Gets": -7.552972, "Given": -9.855557, "GroupNumberFromName": -9.855557, "HOLDERS": -8.756945, "IComparable": -9.855557, "IEnumerator": -9.855557, "IMPLIED": -8.756945, "IN": -7.370650, "INCLUDING": -8.756945, "INIT_SUCCEEDED": -9.855557, "IS": -8.756945, "If": -9.855557, "IgnoreCase": -9.855557, "InfiniteMatchTimeout": -8.756945, "InitDefaultMatchTimeout": -9.162410, "Initialize": -8.246119, "Initialize.": -9.855557, "InitializeReferences": -8.756945, "InitializeReferences.": -9.855557, "Initializes": -9.162410, "Int": -9.855557, "IntegerToString": -9.162410, "Internal": -8.756945, "IsMatch": -7.022344, "KIND": -8.756945, "Key": -9.855557, "L": -9.855557, "LIABILITY": -8.756945, "LIABLE": -8.756945, "LIMITED": -8.756945, "Language": -9.855557, "Lazy": -9.855557, "Library": -8.469263, "License": -8.063798, "LinkedList": -9.162410, "LinkedListNode": -8.756945, "MERCHANTABILITY": -8.756945, "MIT": -7.370650, "MQL": -8.756945, "Match": -6.117887, "MatchCollection": -7.290608, "MatchEvaluator": -7.370650, "Matches": -6.965185, "Matching": -8.469263, "MaxOptionShift": -8.756945, "MaxValue": -9.855557, "MaximumMatchTimeout": -8.756945, "MetaQuotes": -9.162410, "Multiline": -9.855557, "NNULL": -9.855557, "NO": -8.756945, "NONINFRINGEMENT.": -8.756945, "NOT": -8.756945, "NULL": -5.093383, "Nonbacktracking": -9.855557, "None": -7.290608, "NormalizeDouble": -9.162410, "Note": -9.855557, "O": -9.855557, "OF": -7.370650, "OR": -6.811035, "OTHER": -8.063798, "OTHERWISE": -8.756945, "OUT": -8.756945, "On": -9.855557, "OnCalculate": -9.855557, "OnInit": -9.855557, "OnStart": -9.855557, "Only": -9.855557, "Original": -9.855557, "Osorgin": -9.162410, "PARTICULAR": -8.756945, "POINTER_DYNAMIC": -6.859825, "PROVIDED": -8.756945, "PURPOSE": -8.756945, "ParseReplacement": -9.855557, "Pattern": -9.855557, "Permission": -8.756945, "Positive": -9.855557, "Print": -6.005409, "Probably": -9.855557, "Purpose": -9.162410, "RegEx": -9.855557, "Regex": -5.963737, "RegexCode": -8.469263, "RegexInterpreter": -9.855557, "RegexMatch": -8.063798, "RegexOptions": -6.488261, "RegexParser": -9.855557, "RegexReplacement": -7.457662, "RegexReplacement.": -9.162410, "RegexRunner": -8.063798, "RegexRunner.": -9.162410, "RegexTree": -9.162410, "Regular": -8.246119, "Replace": -6.094357, "ReplacementReference": -7.552972, "ReplacementReference*m_replref": -9.855557, "Replaces": -6.677503, "Represents": -9.855557, "Returns": -7.370650, "Right": -9.855557, "RightToLeft": -9.855557, "Run": -7.909647, "RunnerReference": -7.457662, "SHALL": -8.756945, "SOFTWARE": -8.063798, "SOFTWARE.": -8.756945, "SYMBOL_ASK": -9.855557, "SYMBOL_BID": -9.855557, "SYMBOL_TRADE_STOPS_LEVEL": -9.855557, "Script": -9.855557, "Searches": -7.082968, "Set": -8.246119, "Software": -7.552972, "Software.": -8.756945, "Specifies": -9.855557, "Split": -6.720063, "Splits": -7.370650, "StopLoss": -9.855557, "StopLoss*Point": -9.855557, "StringLen": -6.559720, "Symbol": -8.246119, "SymbolInfoDouble": -9.162410, "SymbolInfoInteger": -9.855557, "THE": -6.965185, "TO": -8.756945, "TORT": -8.756945, "TakeProfit": -9.855557, "TakeProfit*Point": -9.855557, "The": -7.776115, "TimeSpan": -6.597460, "True": -8.756945, "USE": -8.756945, "UseOptionC": -9.855557, "UseOptionInvariant": -9.855557, "UseOptionInvariant.": -9.855557, "UseOptionR": -6.811035, "Used": -8.756945, "ValidateMatchTimeout": -9.855557, "WARRANTIES": -8.756945, "WARRANTY": -8.756945, "WHETHER": -8.756945, "WITH": -8.756945, "WITHOUT": -8.756945, "You": -9.855557, "[": -6.859825, "]": -6.859825, "_DEBUG": -8.756945, "__FILE__": -9.162410, "__FUNCTION__": -9.162410, "a": -5.984356, "above": -8.756945, "algorithms": -9.855557, "all": -6.166678, "allow": -9.855557, "an": -7.909647, "and": -6.636681, "and/or": -8.756945, "any": -8.469263, "are": -9.855557, "array": -8.756945, "as": -7.082968, "ask": -8.756945, "associated": -8.756945, "at": -6.191995, "attempt": -9.855557, "automatically": -9.855557, "available": -8.756945, "bars": -9.162410, "based": -9.855557, "be": -8.469263, "before": -9.855557, "beginning": -7.370650, "between": -9.855557, "bid": -9.162410, "bool": -6.597460, "bugs": -9.855557, "but": -9.855557, "by": -7.147507, "byte": -9.855557, "cache": -8.469263, "cache.": -9.162410, "cached": -9.855557, "called": -7.370650, "can": -9.855557, "capabilities": -9.855557, "caplist.": -9.855557, "capnames": -9.855557, "capnames.": -9.855557, "caps": -9.855557, "caps.": -9.855557, "capsize": -9.162410, "capsize.": -9.855557, "capslist": -9.162410, "capture": -9.855557, "captured": -9.855557, "ch": -9.855557, "ch=": -9.855557, "character": -6.764515, "charge": -8.756945, "class": -7.370650, "class.": -9.162410, "close": -9.855557, "code": -8.469263, "code.": -9.855557, "codes": -9.855557, "com": -9.855557, "com.": -9.855557, "compiled": -8.756945, "compiles": -9.162410, "completeness": -9.855557, "computational": -9.855557, "conditions": -8.756945, "const": -4.452880, "constructor": -9.855557, "contact": -9.855557, "contains": -9.855557, "convert": -9.855557, "coordinators.": -9.855557, "copies": -8.063798, "copy": -7.658332, "copyright": -8.756945, "count": -6.677503, "current": -7.457662, "current.Next": -8.756945, "current.Value": -7.776115, "datetime": -9.855557, "deal": -8.756945, "debugging": -9.855557, "decimal": -9.855557, "default": -9.855557, "defined": -7.082968, "definitions": -9.855557, "delete": -6.720063, "deleteCode": -8.756945, "deleteRepl": -8.756945, "deleteRun": -8.756945, "destructor": -9.855557, "developers": -9.855557, "differences": -9.855557, "distribute": -8.756945, "do": -8.756945, "documentation": -8.756945, "double": -7.776115, "e": -9.855557, "else": -8.469263, "en": -9.855557, "en.Current": -8.469263, "en.MoveNext": -9.855557, "enabled.": -9.855557, "equivalent": -9.855557, "error": -9.855557, "evaluation": -9.855557, "evaluator": -6.720063, "exclusive": -9.855557, "explicit": -9.855557, "explicitly.": -9.855557, "expression": -7.457662, "expression.": -8.756945, "expressions": -9.855557, "extract": -9.855557, "factories.": -9.855557, "false": -7.290608, "file": -9.855557, "files": -8.756945, "find": -9.855557, "first": -6.965185, "following": -8.756945, "for": -6.597460, "found": -9.855557, "free": -8.756945, "from": -9.162410, "fromCache": -8.246119, "function": -8.469263, "functional": -9.855557, "furnished": -8.756945, "get": -9.855557, "grab": -9.855557, "granted": -8.756945, "group": -8.063798, "groups": -8.756945, "has": -9.855557, "hashtable": -9.855557, "have": -9.855557, "hereby": -8.756945, "high": -9.855557, "how": -9.855557, "https": -8.246119, "i": -7.290608, "i=": -8.756945, "if": -5.220828, "immutable": -9.855557, "implemented": -9.855557, "in": -4.231540, "include": -9.855557, "included": -8.756945, "including": -8.756945, "indicator": -8.756945, "indicator_chart_window": -9.855557, "indicator_plots": -9.855557, "initialization": -9.855557, "input": -8.469263, "instance": -8.756945, "instantiating": -9.855557, "int": -5.681170, "is": -7.022344, "it": -8.756945, "iteration": -9.855557, "iteratively": -7.552972, "its": -9.855557, "key": -7.909647, "key.": -9.855557, "known": -9.855557, "left": -9.855557, "length": -7.457662, "like": -9.855557, "limitation": -8.756945, "little": -9.855557, "long": -8.469263, "look": -9.855557, "lookbehind": -9.855557, "looks": -9.855557, "low": -9.855557, "m_cacheSize": -8.469263, "m_capnames": -7.658332, "m_caps": -7.370650, "m_capsize": -8.063798, "m_capslist": -7.909647, "m_code": -7.658332, "m_internalMatchTimeout": -9.162410, "m_key": -8.756945, "m_livecode": -9.162410, "m_livecode.AddFirst": -8.756945, "m_livecode.Count": -9.855557, "m_livecode.First": -8.756945, "m_livecode.GetEnumerator": -9.855557, "m_livecode.Remove": -9.162410, "m_livecode.RemoveLast": -9.855557, "m_obj": -7.776115, "m_pattern": -9.855557, "m_refsInitialized": -7.658332, "m_refsInitialized=": -9.855557, "m_replref": -7.147507, "m_replref.Get": -8.756945, "m_replref.Set": -9.855557, "m_roptions": -8.246119, "m_runnerref": -7.290608, "m_runnerref.Get": -8.756945, "m_runnerref.Set": -9.855557, "m_tree": -9.162410, "maps": -9.855557, "match": -8.246119, "match.Dump": -9.855557, "matchTimeout": -6.389821, "matches": -7.216500, "matching": -8.756945, "max": -9.162410, "max=": -9.855557, "merge": -8.756945, "method": -9.855557, "methods": -9.855557, "modified": -8.469263, "modify": -8.246119, "more": -7.082968, "name": -7.457662, "names": -9.162410, "needed": -9.855557, "negative": -9.855557, "new": -6.965185, "newcached": -8.756945, "no": -9.855557, "not": -9.162410, "notice": -8.063798, "notifying": -9.855557, "nubmered": -9.855557, "number": -8.756945, "numerous": -7.552972, "obj": -9.162410, "object": -8.063798, "object.": -8.756945, "objects": -9.855557, "obtaining": -8.756945, "occurrences": -6.272038, "of": -5.728423, "on": -9.162410, "one": -6.965185, "open": -9.855557, "option": -8.063798, "options": -5.650864, "or": -6.859825, "original": -9.855557, "out": -9.855557, "out.": -9.855557, "parameter": -8.063798, "parameter.": -8.063798, "parameters.": -8.063798, "parsed": -9.855557, "patten": -9.855557, "patten.": -9.855557, "pattern": -4.892712, "pattern.": -9.162410, "permission": -8.756945, "permit": -8.756945, "person": -8.756945, "persons": -8.756945, "please": -9.855557, "portions": -8.756945, "position": -6.764515, "position.": -9.162410, "precise": -8.063798, "prev_calculated": -9.162410, "previouly": -9.162410, "previous": -7.370650, "previously": -9.162410, "prevlen": -8.756945, "private": -8.063798, "program": -9.855557, "project": -9.162410, "protected": -8.246119, "public": -7.552972, "publish": -8.756945, "quantifiers": -9.855557, "quick": -8.756945, "range": -9.855557, "rates_total": -8.469263, "recent": -7.370650, "recognized": -9.855557, "reference": -8.246119, "reference.": -9.855557, "regex": -7.022344, "regex.IsMatch": -9.855557, "regex.Match": -9.855557, "regex.Matches": -9.855557, "regex.Replace": -9.162410, "regex.Split": -9.855557, "regular": -7.147507, "repl": -7.658332, "repl.Pattern": -9.855557, "repl.Replace": -9.855557, "repl=": -9.855557, "replacement": -6.217971, "replref.": -9.855557, "report": -9.855557, "represents": -9.855557, "restriction": -8.756945, "result": -5.366921, "result=": -8.246119, "retrun": -9.855557, "return": -4.598062, "returns": -8.063798, "rights": -8.756945, "run": -8.063798, "runner": -7.552972, "runner.Scan": -9.855557, "runnerref.": -9.855557, "runtime": -9.855557, "sample.mq": -9.162410, "script": -9.855557, "script_show_inputs": -9.855557, "sell": -8.756945, "set.": -9.162410, "shall": -8.756945, "should": -9.855557, "single": -9.855557, "sl": -9.162410, "so": -8.756945, "software": -8.756945, "sources": -9.855557, "specified": -8.469263, "specifies": -9.855557, "spread": -9.855557, "start": -9.855557, "startat": -6.359049, "starting": -6.597460, "static": -5.830205, "stoplevel": -9.162410, "string": -4.461929, "string.": -8.063798, "subexpressions": -9.855557, "subject": -8.756945, "sublicense": -8.756945, "substantial": -8.756945, "successful": -7.552972, "supplied": -7.290608, "text": -7.370650, "that": -7.776115, "the": -4.435022, "this": -7.022344, "this.m_internalMatchTimeout": -9.855557, "this.m_roptions": -9.855557, "threadsafe": -9.855557, "tick_volume": -9.855557, "time": -8.756945, "timeout": -8.756945, "times": -8.063798, "times.": -8.246119, "to": -6.421570, "tp": -9.162410, "trade": -9.855557, "trade.Buy": -9.855557, "true": -6.911118, "typedef": -9.855557, "until": -9.855557, "unusual": -9.855557, "up": -9.855557, "use": -8.469263, "useCache": -8.756945, "used": -9.162410, "ushort": -9.855557, "using": -8.063798, "value": -9.162410, "version": -9.162410, "void": -6.811035, "volume": -9.855557, "wants": -9.855557, "was": -7.370650, "way.": -9.855557, "we": -9.855557, "weak": -9.162410, "week": -9.855557, "while": -9.855557, "whom": -8.756945, "will": -9.855557, "with": -6.166678, "without": -7.457662, "worker": -9.162410, "www.mql": -9.855557, "you": -9.855557, "{": -4.972755, "|": -3.744090, "||": -8.469263, "}": -4.972755, "~": -8.246119, }, "MTML": map[string]float64{ "$": -2.607309, "<$mt:CategoryLabel>": -5.379897, "<$mt:Var>": -2.671847, "</a>": -5.379897, "</div>": -5.379897, "</mt:Categories>": -5.379897, "</mt:For>": -4.686750, "</mt:If>": -5.379897, "</mt:SetVarBlock>": -5.379897, "</mt:SetVarTemplate>": -5.379897, "</mt:Unless>": -5.379897, "<a>": -5.379897, "<div>": -5.379897, "<mt:Categories>": -5.379897, "<mt:Else>": -5.379897, "<mt:For>": -4.686750, "<mt:If>": -5.379897, "<mt:SetVarBlock>": -5.379897, "<mt:SetVarTemplate>": -5.379897, "<mt:Unless>": -5.379897, "=": -1.372564, ">": -2.201844, "class": -5.379897, "from": -4.686750, "function": -5.379897, "function=": -5.379897, "gt": -4.686750, "gt=": -4.686750, "href": -5.379897, "name": -2.435458, "name=": -5.379897, "op": -3.300456, "op=": -3.300456, "remove_html": -5.379897, "setvar": -3.182673, "setvar=": -3.182673, "to": -4.686750, "to=": -4.686750, "value": -3.182673, "value=": -3.182673, }, "MUF": map[string]float64{ "!": -4.842037, "#": -5.630495, "#grey": -7.239933, "#ignore": -7.239933, "#third": -7.239933, "$": -4.104438, "%": -6.141320, "'": -7.239933, "(": -3.005826, ")": -3.368732, "*": -5.630495, "+": -7.239933, ",": -5.042708, "-": -2.452441, ".": -6.141320, ".controls": -6.546785, ".end": -7.239933, ".format": -6.546785, ".match_controlled": -7.239933, ".no": -7.239933, ".split": -7.239933, ".strip": -7.239933, ".tell": -5.448173, ".yes": -7.239933, ":": -3.981836, ";": -4.295494, "<message>": -6.141320, "<name>": -5.853638, "<names>": -6.546785, "<natmeox@neologasm.org>": -7.239933, "=": -6.546785, "?": -4.104438, "@": -3.944096, "@program": -7.239933, "A": -5.630495, "CobaltBlue": -7.239933, "Copyright": -6.546785, "D": -7.239933, "Fuzzball": -7.239933, "Get": -6.546785, "Hello": -6.546785, "Here": -7.239933, "Lie": -7.239933, "MEOW": -7.239933, "Meow": -7.239933, "Monsters.": -7.239933, "N": -7.239933, "Natasha": -6.546785, "Natasha@HLM": -7.239933, "Only": -7.239933, "STRparse": -7.239933, "STRsplit": -7.239933, "Say": -7.239933, "Say.": -7.239933, "Snunkmeox": -7.239933, "Snunkmeox.": -7.239933, "Speaks": -7.239933, "Try": -7.239933, "Use": -6.141320, "User": -7.239933, "Weiran": -6.546785, "Z": -6.546785, "Za": -6.141320, "[": -4.600875, "\\": -4.674983, "]": -4.842037, "_": -5.630495, "a": -6.546785, "ad": -7.239933, "addr": -6.141320, "all": -7.239933, "and": -5.853638, "are": -6.546785, "arrMsg": -7.239933, "array_make": -6.546785, "array_notify": -7.239933, "array_vals": -7.239933, "atoi": -5.853638, "author": -7.239933, "b": -5.448173, "boolCommas": -6.546785, "boolSplitOK": -7.239933, "by": -7.239933, "can": -6.141320, "check": -4.061879, "cmd": -6.546785, "colon": -5.853638, "color": -7.239933, "command": -7.239933, "contents": -6.546785, "d": -4.295494, "dbcmp": -6.546785, "dbref": -6.141320, "def": -5.160491, "define": -7.239933, "desc": -6.141320, "dict": -7.239933, "do": -5.448173, "drop": -6.141320, "dup": -3.389785, "dupn": -7.239933, "else": -4.104438, "enddef": -7.239933, "err": -4.244200, "exec": -4.674983, "execstr": -7.239933, "execute": -7.239933, "exit": -4.531882, "exits": -6.546785, "fail": -6.141320, "first": -7.239933, "flag": -7.239933, "fmtstring": -5.630495, "for": -6.141320, "getFirstVerb": -6.546785, "getQuotes": -6.546785, "getThirdVerb": -6.546785, "getlink": -6.141320, "getlockstr": -7.239933, "getpropstr": -5.630495, "grey": -6.546785, "handle": -7.239933, "help": -6.546785, "hoc": -7.239933, "how": -6.546785, "i": -7.239933, "if": -3.348112, "ignore": -7.239933, "in": -6.546785, "include": -5.630495, "information.": -7.239933, "instead": -7.239933, "instr": -5.294022, "intN": -7.239933, "intostr": -7.239933, "is": -6.546785, "islocked": -6.546785, "islocked_always": -7.239933, "it": -7.239933, "lib/ignore": -7.239933, "lib/match": -6.546785, "lib/strings": -6.546785, "license": -7.239933, "link": -7.239933, "linked": -7.239933, "linkto": -6.141320, "location": -7.239933, "lockstr": -7.239933, "loop": -5.853638, "lquo": -5.853638, "lvar": -5.294022, "main": -7.239933, "match": -6.141320, "me": -4.755026, "meow": -6.546785, "meows": -7.239933, "missing": -5.160491, "msg": -5.630495, "mtype": -7.239933, "mtypestr": -7.239933, "name": -6.546785, "next": -5.630495, "normal": -7.239933, "not": -3.684585, "note": -7.239933, "notify": -7.239933, "number": -7.239933, "obj": -5.630495, "object": -7.239933, "odrop": -6.141320, "of": -7.239933, "ofail": -6.141320, "off": -7.239933, "ok": -6.141320, "or": -6.141320, "osucc": -6.141320, "others": -7.239933, "over": -4.842037, "overb": -5.042708, "own": -7.239933, "owner": -6.546785, "person": -6.141320, "pick": -5.448173, "player": -7.239933, "pop": -3.838735, "program": -6.546785, "prop_color": -7.239933, "prop_meow": -7.239933, "prop_overb": -6.546785, "prop_quotes": -6.546785, "prop_split": -6.546785, "prop_third": -6.546785, "prop_verb": -6.546785, "randomWord": -7.239933, "recognize": -7.239933, "replaced": -7.239933, "room.": -7.239933, "rot": -7.239933, "rotate": -7.239933, "rquo": -5.630495, "rtn": -5.448173, "s": -6.141320, "say": -5.630495, "say.muf": -6.546785, "says": -6.546785, "see": -6.546785, "smatch": -6.546785, "something": -7.239933, "split": -5.853638, "splitsay": -6.141320, "starting": -7.239933, "str": -3.411291, "strFormat": -6.546785, "strLquo": -5.294022, "strMsg": -4.842037, "strOsay": -7.239933, "strOverb": -6.546785, "strQuotes": -7.239933, "strRquo": -5.042708, "strVerb": -5.160491, "strX": -6.546785, "strY": -6.546785, "strZ": -6.546785, "str_program": -7.239933, "strcat": -3.684585, "strcut": -7.239933, "string": -6.141320, "stringcmp": -6.141320, "stringpfx": -7.239933, "strip": -6.141320, "strncmp": -5.630495, "subst": -6.546785, "succ": -6.141320, "supplied": -7.239933, "swap": -4.244200, "t": -7.239933, "that": -7.239933, "the": -5.294022, "then": -3.478732, "there": -7.239933, "thing": -7.239933, "third": -6.141320, "to": -5.448173, "tolower": -7.239933, "turn": -7.239933, "ungrey": -7.239933, "unignore": -7.239933, "unmeow": -7.239933, "unparseobj": -5.630495, "unthird": -7.239933, "using": -7.239933, "var": -5.448173, "verb": -5.160491, "verb.": -6.546785, "version": -7.239933, "warnstr": -7.239933, "welcomes": -6.546785, "with": -6.141320, "words": -7.239933, "you": -6.546785, "your": -7.239933, "z": -5.853638, "z_": -7.239933, "{": -7.239933, "}": -6.546785, }, "Makefile": map[string]float64{ "!": -5.799699, "#": -8.102284, "##": -6.715989, "#CPPFLAGS": -6.715989, "#ZLIBINC": -8.102284, "#ZLIBLIB": -8.102284, "$": -2.282201, "%": -6.310524, "&": -5.617377, "&&": -6.156373, "(": -2.659866, ")": -2.659866, "*": -7.409136, "*.": -8.102284, "*.c": -8.102284, "*.err": -8.102284, "*.o": -8.102284, "*.obj": -8.102284, "*.woff": -8.102284, "*o": -8.102284, "+": -4.059232, ",": -5.157845, "-": -2.655546, ".": -5.463226, "../zlib": -7.409136, "./pngtestd": -8.102284, "./pngtesti": -8.102284, ".BEGIN": -8.102284, ".CURDIR": -5.799699, ".DEFAULT": -7.409136, ".EXTENSIONS": -7.409136, ".FLAGS": -8.102284, ".MAKEFLAGS": -8.102284, ".OBJDIR": -7.409136, ".PATH": -8.102284, ".PHONY": -8.102284, ".TARGETS": -8.102284, ".WAIT": -8.102284, ".a": -8.102284, ".c": -7.409136, ".c.obj": -8.102284, ".else": -8.102284, ".endif": -6.715989, ".h": -4.210463, ".if": -6.715989, ".include": -6.156373, ".lib": -8.102284, ".map": -7.409136, ".obj": -7.409136, ".so": -8.102284, ".so.": -8.102284, ".svg": -8.102284, ".sym": -7.003671, ".symbolic": -6.492846, ".tmp": -8.102284, ".ttf": -7.003671, ".woff": -7.003671, ".zip": -8.102284, "/": -4.059232, "/*.php": -6.715989, "/*.svg": -8.102284, "/..": -7.003671, "/../../../": -8.102284, "/../../../../..": -8.102284, "/../../lib": -7.409136, "/../Makefile.boot": -7.409136, "/../version": -8.102284, "//W": -8.102284, "/arch": -8.102284, "/arch/": -8.102284, "/bin": -8.102284, "/bin/rm": -8.102284, "/conf/newvers_stand.sh": -8.102284, "/conf/stand.ldscript": -8.102284, "/dev/null": -7.003671, "/fo": -7.409136, "/fonts/file": -8.102284, "/include": -7.409136, "/lib": -7.003671, "/lib/libsa": -7.409136, "/man": -8.102284, "/n/": -8.102284, "/otexanl": -8.102284, "/s": -8.102284, "/stand": -8.102284, "/usr/bin/make": -8.102284, "/usr/local": -8.102284, "/usr/local/include": -8.102284, "/usr/local/lib": -8.102284, "/usr/mdec": -8.102284, "/w": -8.102284, "/zq": -8.102284, ":": -3.707834, ";": -4.364614, "<": -6.492846, "<!DOCTYPE[^>": -8.102284, "<\\/g>": -7.409136, "<\\?xml.*?\\?>": -8.102284, "<bsd.klinks.mk>": -8.102284, "<bsd.own.mk>": -8.102284, "<bsd.prog.mk>": -8.102284, "<david.turner@freetype.org>": -8.102284, "<file.o>": -8.102284, "<g>": -8.102284, "<g\\s*>": -8.102284, "<robert.wilhelm@freetype.org>": -8.102284, "<werner.lemberg@freetype.org>": -8.102284, "=": -2.931800, ">": -3.487163, "?": -5.269070, "@": -5.704388, "@./create": -8.102284, "@echo": -4.341084, "@for": -6.715989, "@gmake": -8.102284, "@ln": -8.102284, "@mv": -7.409136, "@perl": -7.409136, "@rm": -7.409136, "@unzip": -8.102284, "@which": -8.102284, "ACTIVE_CC": -8.102284, "AFLAGS": -8.102284, "AFLAGS.biosboot.S": -8.102284, "ANNOUNCE": -8.102284, "ARCH": -6.492846, "AR_RC": -8.102284, "ATOM_FILE_ICONS": -7.409136, "Alhadis/FileIcons": -8.102284, "BINDIR": -8.102284, "BINMODE": -8.102284, "BINPATH": -6.492846, "C/": -8.102284, "CC": -6.156373, "CCFLAGS": -7.003671, "CFLAGS": -6.310524, "CHANGES": -8.102284, "CLEANFILES": -8.102284, "CONFIG_KVM": -8.102284, "COPTS": -7.409136, "CP": -8.102284, "CPPFLAGS": -5.011241, "CPUFLAGS": -7.409136, "DBOOTPASSWD": -8.102284, "DBOOT_MSG_COM": -8.102284, "DCONSADDR": -8.102284, "DCONSOLE_KEYMAP": -8.102284, "DCONSPEED": -8.102284, "DDEBUG_MEMSIZE": -8.102284, "DDIRECT_SERIAL": -8.102284, "DEFS": -7.409136, "DEPIA_HACK": -8.102284, "DHEAP_LIMIT": -8.102284, "DHEAP_START": -8.102284, "DI": -8.102284, "DIR": -8.102284, "DL": -7.409136, "DLIBSA_ENABLE_LS_OP": -8.102284, "DLIBSA_PRINTF_LONGLONG_SUPPORT": -8.102284, "DOCS": -7.409136, "DPASS_BIOSGEOM": -8.102284, "DPASS_MEMMAP": -8.102284, "DST": -8.102284, "DSTANDALONE": -8.102284, "DSUPPORT_CD": -8.102284, "DSUPPORT_DOSFS": -8.102284, "DSUPPORT_EXT": -8.102284, "DSUPPORT_MINIXFS": -8.102284, "DSUPPORT_PS": -8.102284, "DSUPPORT_SERIAL": -8.102284, "DSUPPORT_USTARFS": -8.102284, "D_STANDALONE": -8.102284, "Did": -8.102284, "ENTRY": -7.409136, "ERROR_NO_PKG": -8.102284, "EXTRACFLAGS": -8.102284, "FLAGS": -8.102284, "FT_MAKE": -7.003671, "FT_MAKEFILE": -7.003671, "GREETINGS": -7.003671, "HOST_SH": -8.102284, "I": -5.269070, "I.": -7.409136, "IB": -8.102284, "IFS": -8.102284, "INCLUDES": -7.003671, "INCPATH": -8.102284, "INSTALL": -8.102284, "Iarch": -8.102284, "Iextend": -8.102284, "J": -8.102284, "KERNLIB": -8.102284, "KERNMISCMAKEFLAGS": -8.102284, "KERN_AS": -7.409136, "KINFO": -8.102284, "KLINK_MACHINE": -8.102284, "KNOWNBUG": -8.102284, "L": -6.715989, "L.": -8.102284, "LDFLAGS": -6.492846, "LDSCRIPT": -7.409136, "LIBC": -8.102284, "LIBCRT": -8.102284, "LIBCRTBEGIN": -8.102284, "LIBCRTEND": -8.102284, "LIBCRTI": -8.102284, "LIBI": -7.003671, "LIBKERN": -7.409136, "LIBKERN_ARCH": -8.102284, "LIBLIST": -6.715989, "LIBNAME": -6.156373, "LIBPATH": -8.102284, "LIBSA": -7.003671, "LIBSO": -7.409136, "LIBSOMAJ": -7.003671, "LIBSOREL": -8.102284, "LIBZ": -7.409136, "LIB_FILES": -8.102284, "LICENSE": -8.102284, "LN_SF": -8.102284, "MACHINE": -8.102284, "MACHINE_ARCH": -8.102284, "MANPATH": -8.102284, "MKDIR_P": -8.102284, "Makefile.wat": -8.102284, "Map": -8.102284, "N": -7.409136, "NAME": -8.102284, "NEWVERSWHAT": -7.409136, "NOMACHINE": -8.102284, "NOMAN": -8.102284, "O": -7.409136, "OBJCOPY": -8.102284, "OBJS": -7.409136, "OBJS_M": -6.715989, "OBJS_S": -8.102284, "OBJS_X": -7.003671, "OBJ_S": -6.715989, "OLDSO": -8.102284, "Os": -8.102284, "PHP_DIR": -4.151040, "PHP_LIB": -4.231083, "PIE_AFLAGS": -8.102284, "PIE_CFLAGS": -8.102284, "PIE_LDFLAGS": -8.102284, "PNGMAJ": -7.409136, "PORT": -7.409136, "PORT_OBJS": -7.409136, "PROG": -5.905059, "R": -8.102284, "RANLIB": -8.102284, "README": -8.102284, "REAL_VIRT": -8.102284, "RELEASE": -8.102284, "RELOC": -8.102284, "RM_F": -7.409136, "S": -5.799699, "S/arch/i": -7.409136, "SALIB": -8.102284, "SAMISCCPPFLAGS": -7.409136, "SAMISCMAKEFLAGS": -6.715989, "SA_AS": -8.102284, "SA_INCLUDE_NET": -8.102284, "SA_USE_CREAD": -8.102284, "SHEBANG#!make": -8.102284, "SOURCES": -7.003671, "SRCS": -7.409136, "SRC_M": -7.409136, "SRC_S": -7.003671, "SRC_X": -8.102284, "STRIPFLAG": -8.102284, "T": -8.102284, "TODO": -8.102284, "TTFILE": -7.409136, "TTFILE_OBJ": -7.409136, "TTMEMORY": -7.409136, "TTMEMORY_OBJ": -7.409136, "TTMUTEX": -7.409136, "TTMUTEX_OBJ": -7.409136, "Testing": -8.102284, "Ttext": -7.409136, "V": -8.102284, "VERSIONFILE": -7.003671, "Wall": -8.102284, "Werror": -8.102284, "Wl": -6.310524, "Wmissing": -8.102284, "Wno": -8.102284, "Wstrict": -8.102284, "X": -8.102284, "Y": -8.102284, "ZLIB": -8.102284, "ZLIBINC": -7.409136, "ZLIBLIB": -6.715989, "Z_AS": -8.102284, "[": -6.156373, "\\": -3.636376, "]": -6.492846, "^": -6.492846, "_MKTARGET_LINK": -8.102284, "_STAND_DIR": -7.409136, "__stand_makefile_inc": -7.409136, "_compress": -7.409136, "_start": -8.102284, "`": -5.106551, "a": -8.102284, "abbrev": -8.102284, "all": -6.310524, "all_targets": -8.102284, "ar": -7.409136, "arch": -8.102284, "arch/mips/Kbuild.platforms": -8.102284, "architecture": -8.102284, "as": -8.102284, "bar/baz.h": -7.409136, "bar/foo.c": -8.102284, "bar/foo.o": -8.102284, "bb": -7.409136, "belf": -8.102284, "binary": -7.003671, "biosboot.S": -8.102284, "bonjour": -8.102284, "boot": -7.409136, "boot_params.bp_consaddr": -8.102284, "boot_params.bp_consdev": -8.102284, "boot_params.bp_conspeed": -8.102284, "boot_params.bp_keymap": -8.102284, "boot_start": -8.102284, "c": -6.715989, "cachebust": -8.102284, "call": -7.409136, "cc": -8.102284, "ccflags": -8.102284, "cflags": -7.409136, "ch": -8.102284, "charmap": -6.492846, "charmap.md": -8.102284, "chmod": -8.102284, "clean": -6.715989, "cleandir": -7.409136, "cleanlibdir": -7.409136, "commit": -8.102284, "conf.c": -8.102284, "config": -5.799699, "cp": -8.102284, "cref": -8.102284, "cut": -8.102284, "d": -8.102284, "dd": -8.102284, "debug": -8.102284, "defined": -7.409136, "depend": -8.102284, "devopen.c": -8.102284, "dist": -8.102284, "distclean": -7.409136, "do": -6.715989, "dobredan": -8.102284, "done": -6.715989, "dy": -8.102284, "dynamic": -8.102284, "e": -6.715989, "echo": -5.011241, "elf": -8.102284, "elf_i": -8.102284, "endif": -8.102284, "erase": -7.003671, "exec.c": -8.102284, "exec_prefix": -7.003671, "exit": -7.003671, "extend": -4.966789, "f": -5.394233, "f.o": -7.409136, "factorial.cpp": -7.409136, "factorial.o": -7.003671, "ffreestanding": -8.102284, "file": -7.409136, "fno": -8.102284, "folder": -5.617377, "font": -5.211912, "for": -8.102284, "freetype.c": -8.102284, "freetype.obj": -8.102284, "ftxcmap.c": -8.102284, "ftxcmap.obj": -8.102284, "ftxgasp.c": -8.102284, "ftxgasp.obj": -8.102284, "ftxgdef.c": -8.102284, "ftxgdef.obj": -8.102284, "ftxgpos.c": -8.102284, "ftxgpos.obj": -8.102284, "ftxgsub.c": -8.102284, "ftxgsub.obj": -8.102284, "ftxkern.c": -8.102284, "ftxkern.obj": -8.102284, "ftxopen.c": -8.102284, "ftxopen.obj": -8.102284, "ftxpost.c": -8.102284, "ftxpost.obj": -8.102284, "ftxsbit.c": -8.102284, "ftxsbit.obj": -8.102284, "ftxwidth.c": -8.102284, "ftxwidth.obj": -8.102284, "g": -6.715989, "gday": -8.102284, "generate": -7.409136, "git": -8.102284, "gmake": -8.102284, "greet.": -7.409136, "h": -7.409136, "hash": -8.102284, "hello": -6.492846, "hello.cpp": -7.409136, "hello.o": -7.003671, "hoi": -8.102284, "hola": -8.102284, "i": -6.022842, "icomoon.json": -8.102284, "icon": -6.310524, "icons": -7.409136, "if": -8.102284, "ifdef": -8.102284, "in": -6.310524, "include": -8.102284, "index": -7.409136, "input": -8.102284, "installed": -7.409136, "integrated": -8.102284, "kaixo": -8.102284, "kernel/": -8.102284, "kernlibdir": -8.102284, "konnichiwa": -8.102284, "kvm/": -8.102284, "l": -8.102284, "last": -8.102284, "ldflags": -7.409136, "lib": -7.409136, "libdep": -8.102284, "libpng": -7.409136, "libpng.a": -8.102284, "libpng.pc": -8.102284, "libpng.so": -8.102284, "library": -6.492846, "libttf.lib": -6.492846, "link": -7.003671, "lint": -8.102284, "lm": -8.102284, "ln": -7.409136, "log": -8.102284, "lpng": -8.102284, "ls": -6.492846, "lz": -8.102284, "m": -7.003671, "machine": -7.003671, "main.cpp": -7.409136, "main.o": -7.003671, "make": -6.156373, "map.pl": -8.102284, "march": -8.102284, "mean": -8.102284, "mk": -7.409136, "mkdir": -8.102284, "mm/": -8.102284, "mno": -7.003671, "mtune": -8.102284, "n": -8.102284, "namaste": -8.102284, "name": -5.106551, "need": -6.715989, "net/": -8.102284, "new": -8.102284, "nihao": -8.102284, "no": -7.003671, "nostdinc": -8.102284, "nostdlib": -8.102284, "o": -6.715989, "obj": -6.156373, "objcopy": -8.102284, "objects": -6.156373, "oifs": -8.102284, "ola": -8.102284, "oneline": -8.102284, "os": -7.409136, "output": -8.102284, "php": -5.617377, "pi": -7.409136, "platform": -7.409136, "png.h": -5.329695, "png.o": -8.102284, "png.pic.o": -8.102284, "pngconf.h": -5.329695, "pngdebug.h": -5.394233, "pngerror.o": -8.102284, "pngerror.pic.o": -8.102284, "pngget.o": -8.102284, "pngget.pic.o": -8.102284, "pnginfo.h": -5.394233, "pnglibconf.h": -5.269070, "pngmem.o": -8.102284, "pngmem.pic.o": -8.102284, "pngout.png": -8.102284, "pngpread.o": -8.102284, "pngpread.pic.o": -8.102284, "pngpriv.h": -5.394233, "pngread.o": -8.102284, "pngread.pic.o": -8.102284, "pngrio.o": -8.102284, "pngrio.pic.o": -8.102284, "pngrtran.o": -8.102284, "pngrtran.pic.o": -8.102284, "pngrutil.o": -8.102284, "pngrutil.pic.o": -8.102284, "pngset.o": -8.102284, "pngset.pic.o": -8.102284, "pngstruct.h": -5.394233, "pngtest": -7.409136, "pngtest.c": -7.409136, "pngtest.o": -8.102284, "pngtest.png": -7.409136, "pngtestd": -8.102284, "pngtesti": -7.409136, "pngtrans.o": -8.102284, "pngtrans.pic.o": -8.102284, "pngwio.o": -8.102284, "pngwio.pic.o": -8.102284, "pngwrite.o": -8.102284, "pngwrite.pic.o": -8.102284, "pngwtran.o": -8.102284, "pngwtran.pic.o": -8.102284, "pngwutil.o": -8.102284, "pngwutil.pic.o": -8.102284, "pointer": -8.102284, "prefix": -6.715989, "printer": -8.102284, "protector": -8.102284, "prototypes": -7.409136, "q": -8.102284, "qd": -8.102284, "r": -8.102284, "rc": -8.102284, "rcs": -8.102284, "relink": -8.102284, "repo": -7.409136, "rest": -8.102284, "rf": -6.492846, "rm": -7.003671, "s": -7.409136, "sadep": -8.102284, "salaam": -8.102284, "salibdir": -8.102284, "scripts/*": -8.102284, "sed": -7.409136, "shared": -8.102284, "shell": -8.102284, "sign": -8.102284, "size": -7.003671, "sse": -7.003671, "stack": -8.102284, "static": -8.102284, "stem": -8.102284, "subdir": -8.102284, "subst": -8.102284, "svg": -7.003671, "symbol": -8.102284, "tag": -8.102284, "test": -7.003671, "text": -8.102284, "this": -8.102284, "tmp": -7.003671, "tmp/fonts": -8.102284, "tmp/selection.json": -8.102284, "ttapi.c": -8.102284, "ttapi.obj": -8.102284, "ttcache.c": -8.102284, "ttcache.obj": -8.102284, "ttcalc.c": -8.102284, "ttcalc.obj": -8.102284, "ttcmap.c": -8.102284, "ttcmap.obj": -8.102284, "ttextend.c": -8.102284, "ttextend.obj": -8.102284, "ttfile.c": -8.102284, "ttfile.obj": -8.102284, "ttgload.c": -8.102284, "ttgload.obj": -8.102284, "ttinterp.c": -8.102284, "ttinterp.obj": -8.102284, "ttload.c": -8.102284, "ttload.obj": -8.102284, "ttmemory.c": -8.102284, "ttmemory.obj": -8.102284, "ttmutex.c": -8.102284, "ttmutex.obj": -8.102284, "ttobjs.c": -8.102284, "ttobjs.obj": -8.102284, "ttraster.c": -8.102284, "ttraster.obj": -8.102284, "unpack": -7.409136, "v": -8.102284, "var": -7.409136, "vers.c": -7.003671, "w": -8.102284, "wcc": -8.102284, "wildcard": -7.409136, "wlib": -8.102284, "wmake": -8.102284, "woff": -7.409136, "writelock": -8.102284, "wtouch": -8.102284, "x": -7.409136, "y": -6.156373, "yes": -8.102284, "you": -8.102284, "{": -4.094950, "|": -6.022842, "||": -7.003671, "}": -4.094950, }, "Markdown": map[string]float64{ "#": -6.144186, "'": -6.144186, "(": -3.310972, ")": -3.310972, "*": -3.841601, "**Markdown**": -6.144186, "+": -6.144186, ",": -3.371597, "-": -3.946961, ".": -6.144186, "/": -5.045573, "//kb.textmate.org/bundle_styleguide": -6.144186, "//kb.textmate.org/commit_styleguide": -6.144186, "//kb.textmate.org/writing_bug_reports": -6.144186, "//miles": -6.144186, "/PI": -6.144186, ":": -4.198275, ";": -3.505128, "<string,object>": -6.144186, "=": -3.253814, "@long": -5.451038, "Acos": -6.144186, "After": -6.144186, "An": -6.144186, "Bug": -6.144186, "Bundle": -6.144186, "C": -5.451038, "Commit": -6.144186, "Console": -6.144186, "Cos": -5.045573, "Created": -5.451038, "Description": -6.144186, "Due": -6.144186, "Enumerations": -6.144186, "For": -6.144186, "If": -6.144186, "In": -6.144186, "Latitude": -5.451038, "Location": -4.352426, "Longitude": -5.451038, "Math.PI": -6.144186, "MilesBetween": -5.451038, "PI": -4.757891, "Permission": -6.144186, "Reports": -6.144186, "Sin": -5.451038, "Some": -6.144186, "Styleguide": -5.451038, "System.Math": -5.451038, "Task": -6.144186, "Tender": -6.144186, "TextMate": -6.144186, "This": -6.144186, "Writing": -6.144186, "Xamarin": -6.144186, "You": -6.144186, "[": -5.045573, "]": -5.045573, "_This_": -6.144186, "_before": -5.045573, "`": -2.925310, "a": -4.534748, "accompanied": -6.144186, "accompanying": -6.144186, "added": -6.144186, "an": -5.045573, "and": -4.352426, "any": -6.144186, "apples": -6.144186, "are": -6.144186, "as": -5.451038, "atitude": -5.451038, "automatically": -6.144186, "base": -6.144186, "be": -6.144186, "becomes": -6.144186, "below": -6.144186, "bundle": -6.144186, "bundles": -6.144186, "buy": -5.451038, "by": -5.451038, "can": -6.144186, "certain": -6.144186, "changes_": -6.144186, "claim": -6.144186, "class": -5.451038, "classes": -6.144186, "contain": -6.144186, "copy": -6.144186, "created": -6.144186, "csharp": -5.045573, "directory": -6.144186, "dist": -4.352426, "dist*": -5.451038, "distribute": -6.144186, "double": -3.841601, "eg.": -6.144186, "example": -6.144186, "examples": -6.144186, "exception": -6.144186, "exists": -6.144186, "express": -6.144186, "extension": -6.144186, "fall": -6.144186, "file": -5.451038, "files": -5.045573, "following": -6.144186, "for": -5.045573, "from": -6.144186, "functions.": -6.144186, "going": -6.144186, "granted.": -6.144186, "holders": -6.144186, "html": -6.144186, "http": -5.045573, "implied": -6.144186, "in": -4.757891, "information": -6.144186, "install": -6.144186, "installation": -6.144186, "is": -4.534748, "issue_": -6.144186, "it": -6.144186, "its": -6.144186, "lat": -5.451038, "lettuce": -6.144186, "license": -5.045573, "license.txt": -6.144186, "loc": -4.352426, "made": -6.144186, "make": -6.144186, "members": -6.144186, "modify": -6.144186, "name": -5.045573, "new": -5.451038, "no": -6.144186, "not": -6.144186, "of": -4.534748, "on": -6.144186, "ongitude": -5.451038, "opening": -6.144186, "or": -5.045573, "original": -6.144186, "otherwise": -6.144186, "own": -6.144186, "platforms": -6.144186, "preferences": -6.144186, "primarily": -6.144186, "provided": -6.144186, "public": -4.534748, "pull": -6.144186, "purpose.": -6.144186, "readable": -6.144186, "readme.": -6.144186, "repetition": -6.144186, "report": -6.144186, "repository": -6.144186, "request_": -6.144186, "return": -6.144186, "rlat": -4.352426, "rtheta": -5.451038, "same": -6.144186, "see": -6.144186, "sell": -6.144186, "send": -6.144186, "similar.": -6.144186, "single": -6.144186, "software": -5.451038, "specified": -6.144186, "statement": -6.144186, "static": -4.534748, "such": -6.144186, "suffix": -6.144186, "suitability": -6.144186, "tab.": -6.144186, "text": -6.144186, "the": -4.198275, "their": -6.144186, "theta": -5.451038, "this": -5.045573, "tidy": -5.451038, "to": -4.757891, "txt": -6.144186, "type": -6.144186, "under": -6.144186, "updated": -6.144186, "use": -6.144186, "using": -5.451038, "values": -6.144186, "warranty": -6.144186, "was": -6.144186, "where": -6.144186, "which": -6.144186, "will": -6.144186, "with": -5.045573, "without": -6.144186, "you": -5.045573, "you.": -6.144186, "{": -4.534748, "}": -4.534748, "—": -5.045573, "“": -5.045573, "”": -5.045573, }, "Marko": map[string]float64{ "!": -4.560870, "#": -5.659482, "$": -3.867723, "(": -2.951432, ")": -2.886893, "+": -3.713572, ",": -3.713572, "-": -3.867723, ".count": -5.659482, ".example": -5.659482, ".value": -5.659482, "/h": -5.659482, ":": -3.462258, ";": -3.020425, "<": -4.966335, "</button>": -5.659482, "</div>": -3.867723, "</for>": -5.659482, "</label>": -5.659482, "</li>": -5.659482, "</ul>": -5.659482, "<button.example-button>": -5.659482, "<div.color>": -5.659482, "<div.count>": -5.659482, "<div.inputs>": -5.659482, "<div.rgb-sliders>": -5.659482, "<div>": -4.966335, "<for(i,>": -5.659482, "<input>": -5.659482, "<label>": -5.659482, "<li>": -5.659482, "<ul>": -5.659482, "=": -2.951432, ">": -3.261587, "Click": -5.659482, "Hello": -5.659482, "No": -5.659482, "[": -4.273188, "]": -4.273188, "backgroundColor": -5.659482, "button": -5.659482, "c": -5.659482, "class": -4.966335, "click": -5.659482, "color": -3.020425, "colors": -3.713572, "colors.length": -5.659482, "colors.map": -5.659482, "component": -5.659482, "component.getStyleColor": -5.659482, "const": -4.966335, "constructor": -5.659482, "count": -5.659482, "defaultColor": -4.966335, "else": -5.659482, "em": -4.560870, "font": -4.966335, "for": -4.560870, "getStyleColor": -4.966335, "h": -5.659482, "i": -5.659482, "if": -5.659482, "in": -4.273188, "increment": -5.659482, "input": -4.560870, "input.color": -5.659482, "key": -4.966335, "key=": -5.659482, "max": -5.659482, "max=": -5.659482, "me": -5.659482, "name": -4.966335, "on": -4.560870, "onInput": -5.659482, "padding": -5.659482, "parseInt": -5.659482, "return": -4.966335, "size": -4.966335, "state.color": -5.659482, "state.count": -5.659482, "static": -4.966335, "style": -4.560870, "this.getEl": -5.659482, "this.state": -4.966335, "this.state.color": -5.659482, "this.state.color.join": -5.659482, "this.state.count": -5.659482, "type": -5.659482, "updateColor": -4.966335, "value": -5.659482, "value=": -5.659482, "var": -4.966335, "{": -2.715043, "||": -5.659482, "}": -2.715043, }, "Mask": map[string]float64{ "(": -3.486355, ")": -3.486355, ",": -4.584967, "-": -3.486355, ".account": -4.584967, ".count": -4.584967, ".date": -4.584967, ".logo": -4.584967, ".name": -4.584967, ".view": -4.584967, ":": -3.198673, ";": -3.486355, "=": -2.505526, ">": -2.187072, "@model": -4.584967, "@next": -4.584967, "a": -4.584967, "alt": -4.584967, "animation": -4.584967, "bazCompo": -4.584967, "button": -4.584967, "countdownComponent": -4.584967, "currentUser": -4.584967, "data": -4.584967, "dualbind": -4.584967, "footer": -4.584967, "for": -4.584967, "h": -3.891820, "header": -4.584967, "href": -4.584967, "id": -4.584967, "if": -4.584967, "img": -4.584967, "index": -4.584967, "input": -4.584967, "li.user": -4.584967, "logo": -4.584967, "of": -4.584967, "signal": -4.584967, "slot": -4.584967, "src": -4.584967, "text": -4.584967, "type": -4.584967, "ul": -4.584967, "user": -4.584967, "users": -4.584967, "value": -4.584967, "x": -3.891820, "{": -2.282382, "}": -2.282382, }, "Mathematica": map[string]float64{ "!": -7.815611, "#": -6.899320, "##": -8.103293, "$": -5.590987, "&": -6.562848, "&&": -7.122463, "(": -5.906068, ")": -5.943808, "*": -5.705397, "+": -2.977346, ",": -2.457846, "-": -3.960158, "..": -7.255995, "...": -9.201905, "/": -5.705397, "/.": -5.736169, "//XhoivPZJK": -9.201905, "/@": -6.804010, "/AWrmp": -9.201905, "/BSJOZMb": -9.201905, "/CkSK": -9.201905, "/DHldaqlhkNs": -9.201905, "/DkZ": -9.201905, "/Ejup/ozw": -9.201905, "/F": -9.201905, "/GiniKqB/h": -9.201905, "/H": -9.201905, "/HlzcILlq": -9.201905, "/HmTThsE": -9.201905, "/IE": -9.201905, "/Iyz": -9.201905, "/JO": -9.201905, "/JkwQ": -9.201905, "/JzM": -9.201905, "/KrjzcKq": -9.201905, "/L": -9.201905, "/LCzoSdcPLdz": -9.201905, "/M": -9.201905, "/MciuNovxfhX": -9.201905, "/N": -9.201905, "/NWVTyEL": -9.201905, "/NY": -9.201905, "/O": -9.201905, "/OFGM": -9.201905, "/OfgD/N": -9.201905, "/OhiEwYxXMO": -9.201905, "/PK": -9.201905, "/QELo": -9.201905, "/QerYQtnxxJ": -9.201905, "/QgEEKhmxZb": -9.201905, "/ROBnFy": -9.201905, "/Rv": -9.201905, "/SxIk/": -9.201905, "/Uc": -9.201905, "/UjKvseuR": -9.201905, "/UoGyU": -9.201905, "/V": -9.201905, "/Va": -9.201905, "/Vpb": -9.201905, "/VyDT": -9.201905, "/WATTKeL": -9.201905, "/WP": -9.201905, "/Xmjd": -9.201905, "/Ya": -9.201905, "/a": -9.201905, "/aX": -9.201905, "/bXdFw": -9.201905, "/beWIu/SPLQ": -9.201905, "/bvWaf": -9.201905, "/cISGUELFLRrpuL": -9.201905, "/eGXjXn": -9.201905, "/eJ": -9.201905, "/fVr": -9.201905, "/fgp": -9.201905, "/fhYPTHKzpcgxy": -9.201905, "/gkaQjn": -9.201905, "/hH": -9.201905, "/hYS": -9.201905, "/ilsgkf/hp": -9.201905, "/irwquxHxCE": -9.201905, "/j": -9.201905, "/jSlCj": -9.201905, "/mWT": -9.201905, "/mwpl": -9.201905, "/n": -9.201905, "/nTF": -9.201905, "/ncn": -9.201905, "/npJPNCWYd/fCIXc": -9.201905, "/nut": -9.201905, "/nvagP": -9.201905, "/oH": -9.201905, "/r": -9.201905, "/rJ": -9.201905, "/rydBO": -9.201905, "/sIWwN/": -9.201905, "/sbq": -9.201905, "/tFI": -9.201905, "/v": -9.201905, "/vR": -9.201905, "/vW": -9.201905, "/vZhIA": -9.201905, "/vfefip": -9.201905, "/vu": -9.201905, "/wSXvZk": -9.201905, "/xDPyh/xScWfiAtNFHxlyI": -9.201905, "/xRVb": -9.201905, "/zY": -9.201905, "/zcJn": -9.201905, "/zn": -9.201905, "/zoUEaufnH": -9.201905, "/zsRGLkNTyubvihGntFpeEbuwoa": -9.201905, ":": -3.960158, ";": -4.139310, "<": -9.201905, "<\\>": -9.201905, "=": -3.939215, ">": -3.949631, "@@": -8.103293, "@@@": -8.508758, "A": -7.004680, "A/": -8.508758, "A/CJTdaIC": -9.201905, "A/IMQg": -9.201905, "A/tVzo": -9.201905, "ABbvRstNF": -9.201905, "ACRWlXD/akCe": -9.201905, "ADflqp": -9.201905, "AH": -9.201905, "AHC": -9.201905, "AHuS": -9.201905, "AKv": -9.201905, "AL": -9.201905, "ALTmmbcX": -9.201905, "AM": -9.201905, "ANfKN": -9.201905, "AOnwUc": -9.201905, "APMB": -9.201905, "APk": -9.201905, "APz": -9.201905, "AUd": -9.201905, "AV": -9.201905, "AW/TRjmrj": -9.201905, "AY/spQ/hOrUwWyvkyR": -9.201905, "AbsoluteThickness": -8.103293, "Ac": -9.201905, "Ac/KdXBvfmRrN/bz": -9.201905, "Ac/r": -9.201905, "AcfvSMy": -9.201905, "Ad": -9.201905, "Aei": -9.201905, "Afje": -9.201905, "AjHf": -9.201905, "All": -9.201905, "AllElementQ": -7.815611, "AllQ": -7.815611, "AllowScriptLevelChange": -8.508758, "Amz": -9.201905, "And": -7.122463, "AnfftzlUjzzq": -9.201905, "Antxh": -9.201905, "AnunnTvSkEQnoWcOfEqAhR": -9.201905, "AnyElementQ": -7.122463, "AnyNonzeroQ": -7.815611, "AnyPossiblyNonzeroQ": -7.815611, "AnyQ": -7.410145, "AoNcFvBi": -9.201905, "ApTs": -9.201905, "AppearanceElements": -9.201905, "AppendTo": -8.508758, "Aps": -9.201905, "AsYKvlpMTFNlhNRV": -9.201905, "AspectRatio": -9.201905, "AstronomicalData": -9.201905, "Asu": -9.201905, "Asynchronous": -9.201905, "AtsLH//QthS": -9.201905, "Automatic": -7.004680, "AvCzX": -9.201905, "AvhHqYdzidL": -9.201905, "AvuTN": -9.201905, "Ax": -9.201905, "Axes": -9.201905, "AxesLabel": -9.201905, "AxesOrigin": -9.201905, "Az": -9.201905, "AzcvXOF": -9.201905, "AznWRrxZDc": -9.201905, "AzqJZAtqCIUtArNlOAmdCLwV": -9.201905, "B": -6.066411, "B/": -9.201905, "B/vuy": -9.201905, "BA": -9.201905, "BBXmJp": -9.201905, "BCpmH": -9.201905, "BEqYuO": -9.201905, "BGGryK": -9.201905, "BGZlC": -9.201905, "BGyvOSLjj": -9.201905, "BIa": -9.201905, "BJwasIz": -9.201905, "BLlf": -9.201905, "BNhzR": -9.201905, "BNwdeyrMSZcib": -9.201905, "BP": -9.201905, "BPxeiuXOelUWGx": -9.201905, "BR": -8.508758, "BSly": -9.201905, "BVd": -9.201905, "BXnpa": -9.201905, "BZh": -9.201905, "BZvJF": -9.201905, "Baseline": -9.201905, "BaselinePosition": -8.508758, "BbNwN": -9.201905, "Bby": -9.201905, "Bcv": -9.201905, "Begin": -7.592467, "BeginPackage": -8.103293, "BeginTestSection": -9.201905, "Bevdr": -9.201905, "Bf": -9.201905, "BgAr": -9.201905, "BhrJCFhy": -9.201905, "BinaryFormat": -7.410145, "BinaryRead": -8.508758, "BinaryReadList": -8.103293, "Binomial": -8.508758, "Bj": -9.201905, "Bjn/FX": -9.201905, "BkZoUYO": -9.201905, "Bl": -9.201905, "BlWHxx": -9.201905, "Blank": -8.508758, "Block": -8.508758, "Bloy": -9.201905, "BmOf/PlsgwyPC": -9.201905, "BmyDDcP": -9.201905, "BnCZ": -9.201905, "BnLxuDiL": -9.201905, "BnyrdAz": -9.201905, "BoxData": -6.257466, "Break": -9.201905, "Brs": -9.201905, "BtHM": -9.201905, "BtQO": -9.201905, "Bu": -9.201905, "BubZaKkU": -9.201905, "BujlS": -9.201905, "BuytoGocC": -9.201905, "Bv//bx": -9.201905, "BvWczJS": -9.201905, "By": -9.201905, "By/xvpUrG/aFbr": -9.201905, "Bz": -9.201905, "C": -6.636956, "C/g/F": -9.201905, "CB": -9.201905, "CCXIot": -9.201905, "CD": -8.508758, "CDDbf": -9.201905, "CDRvaiuhSGH": -9.201905, "CDnePCkq": -9.201905, "CF": -9.201905, "CG": -8.103293, "CGa": -9.201905, "CHzqJmJzBfqdHbBl": -9.201905, "CJcAYZuxE": -9.201905, "CLNYw": -9.201905, "CN/x": -9.201905, "CNN": -9.201905, "CNVScPHK": -9.201905, "CPI": -9.201905, "CPSJcGtzR/": -9.201905, "CPiyi": -9.201905, "CQ": -8.508758, "CQlCcFGwrY": -9.201905, "CRG/": -9.201905, "CS": -9.201905, "CScPmwTfD": -9.201905, "CSddeF": -9.201905, "CSxOW": -9.201905, "CSy": -9.201905, "CVwxf": -9.201905, "CWzDQUZcJPT": -9.201905, "CX": -9.201905, "CXTSgL": -9.201905, "CXlJ": -9.201905, "CXoPw": -9.201905, "CY": -9.201905, "CZ": -9.201905, "CalculateUtilities": -7.592467, "CapForm": -9.201905, "Cb": -9.201905, "Cba": -9.201905, "Ccy": -9.201905, "Cell": -5.869700, "CellChangeTimes": -6.636956, "CellContext": -7.592467, "CellGroupData": -7.122463, "Center": -9.201905, "Cf": -9.201905, "CfD": -9.201905, "CfsuaUgchgPD": -9.201905, "Ch": -9.201905, "ChUXbrVgEM": -9.201905, "Check": -8.508758, "Ci": -8.508758, "Ck": -9.201905, "CkadHfzj": -9.201905, "Cl": -9.201905, "ClidEsJTcokio": -9.201905, "Close": -7.410145, "Cm": -9.201905, "CoYcm": -9.201905, "ColumnsEqual": -8.508758, "CompilationTarget": -8.103293, "Compile": -8.508758, "ComplexInfinity": -9.201905, "CompressedData": -7.004680, "Cos": -8.508758, "Cq/": -9.201905, "CqGTmJjI": -9.201905, "Creator": -9.201905, "CruoFqPurh": -9.201905, "Crw": -9.201905, "CtzKzZ": -9.201905, "Cu/R": -9.201905, "CuQ": -9.201905, "Cv": -9.201905, "CveDsWufNqydanTjtgSDuHgEGK": -9.201905, "CwkhWc": -9.201905, "Cx": -9.201905, "CzDIDyv": -9.201905, "CzJCSRrUhkb": -9.201905, "CzW": -9.201905, "D": -5.906068, "D/": -9.201905, "DAv": -9.201905, "DCKofLqdF": -9.201905, "DCP/GwWsDjOAL": -9.201905, "DCb": -9.201905, "DD/gXBLYhPu/": -9.201905, "DE": -9.201905, "DELObzamwSLvMm": -9.201905, "DEUFpOpoq": -9.201905, "DEgYU": -9.201905, "DF": -9.201905, "DFC": -9.201905, "DFK": -9.201905, "DFb/dt": -9.201905, "DFy": -9.201905, "DGSpLOA": -9.201905, "DGbtPODPCb": -9.201905, "DHh/oJLP": -9.201905, "DI": -9.201905, "DI/ceXeK": -9.201905, "DJIYHSt": -9.201905, "DJJUEqrtDWsx": -9.201905, "DKzNcP": -9.201905, "DL": -9.201905, "DNIWXKV": -9.201905, "DNlXtMFlOiNNd": -9.201905, "DO": -9.201905, "DP": -9.201905, "DPgM": -9.201905, "DQThOyDIxAf": -9.201905, "DSQ": -9.201905, "DZDB/St": -9.201905, "DaVXYle": -9.201905, "DaXhgLyPCBl": -9.201905, "Dashing": -9.201905, "DbA": -9.201905, "DcN/ZXfI": -9.201905, "DcTjZ": -9.201905, "DdTDnEWSWQ": -9.201905, "Ddqr": -9.201905, "DdscnE": -9.201905, "Ddstzo": -9.201905, "Description": -9.201905, "Developer": -8.103293, "Df": -9.201905, "DfjOUuHMnhk": -9.201905, "Dfmk": -9.201905, "DfoM": -9.201905, "Dg": -9.201905, "Dh": -9.201905, "Dhkqu": -9.201905, "Di": -9.201905, "Directive": -7.592467, "Divisors": -9.201905, "Dk": -9.201905, "Dnc": -9.201905, "Do": -9.201905, "Dot": -8.508758, "Dpk": -9.201905, "DrPy": -9.201905, "DuV": -9.201905, "Duew": -9.201905, "Duw": -9.201905, "DvGxgYVqhPuY": -9.201905, "DvNySQ/Y": -9.201905, "Dvm/G": -9.201905, "Dw": -9.201905, "DweLPnZv": -9.201905, "Dx": -9.201905, "DxwdPKKI": -9.201905, "Dynamic": -9.201905, "DynamicBox": -9.201905, "DynamicModule": -9.201905, "DynamicModuleBox": -9.201905, "DzM": -9.201905, "DztD": -9.201905, "E": -6.804010, "E/": -8.508758, "E/RLd": -9.201905, "E/e": -9.201905, "E/rGD": -9.201905, "EBT": -9.201905, "ECd/PPcScb/": -9.201905, "ED": -9.201905, "ED/dfxCl": -9.201905, "EE": -9.201905, "EEyrOURpJemifNbseFNKnxvlph": -9.201905, "EF": -9.201905, "EFEUK": -9.201905, "EJlut": -9.201905, "EKnx": -9.201905, "EMnqFiCcskhSaFj": -9.201905, "EQm": -9.201905, "ETPtp": -9.201905, "ETYzppJ": -9.201905, "ETkGSbr": -9.201905, "ETybnHWO": -9.201905, "EV": -9.201905, "EVtDb/GrL": -9.201905, "EWzhPjyp": -9.201905, "EZp": -9.201905, "Earth": -8.508758, "EbZc": -9.201905, "EbsAc": -9.201905, "Ec": -9.201905, "Eci": -9.201905, "Ed": -9.201905, "EdgeForm": -8.508758, "Edv": -9.201905, "Ee": -9.201905, "EfdE": -9.201905, "Efr": -9.201905, "Eg/Ca": -9.201905, "EiXrcZ": -9.201905, "EivJY": -9.201905, "EjcB/": -9.201905, "EjjltUWoLhu": -9.201905, "EjlC": -9.201905, "EkbDhlOJ": -9.201905, "El": -9.201905, "ElNQvwPg": -9.201905, "ElZpcDPT": -9.201905, "EnJBE": -9.201905, "EnJFcfE": -9.201905, "End": -7.592467, "EndPackage": -8.103293, "EndTestSection": -9.201905, "EnyjMizA": -9.201905, "Epilog": -9.201905, "Eqwt/R": -9.201905, "Eqyk": -9.201905, "EtfeJ/hSIHBEq": -9.201905, "Eti/SUPwzi/cbzlH": -9.201905, "Eu": -9.201905, "EuO": -9.201905, "EvhXSyIUfBTSeo": -9.201905, "Evj": -9.201905, "Ew": -9.201905, "EwnTmFetkxUe": -9.201905, "ExTps": -9.201905, "ExZ": -9.201905, "ExpusE/UCUoB": -9.201905, "Extensions": -9.201905, "Ez/bgahPnQ": -9.201905, "EzZpjJiLRfw": -9.201905, "EzzfeELV": -9.201905, "F": -8.508758, "F/": -9.201905, "FAecNhCc": -9.201905, "FDncIkIjojJ": -9.201905, "FE": -9.201905, "FJxew": -9.201905, "FRfNrLkbN": -9.201905, "FUY": -9.201905, "FY": -9.201905, "Failed": -8.103293, "False": -5.983029, "FbEyH": -9.201905, "FileExistsQ": -9.201905, "Flatten": -8.508758, "Floor": -9.201905, "Fold": -7.410145, "FontFamily": -9.201905, "FontSize": -9.201905, "FormBox": -7.815611, "FromCharacterCode": -9.201905, "FrontEndVersion": -9.201905, "Function": -9.201905, "FvTjFi/OqqfC": -9.201905, "G": -6.157382, "G/": -9.201905, "G/kl": -9.201905, "G/u": -9.201905, "GAKrLWh": -9.201905, "GB": -9.201905, "GCNo": -9.201905, "GFBfXsW": -9.201905, "GG/": -9.201905, "GH": -8.508758, "GHC": -9.201905, "GHa": -9.201905, "GHtHbvC": -9.201905, "GIPofLVixboYPz": -9.201905, "GJy/b": -9.201905, "GK": -9.201905, "GKSrWmfgDeyboLn": -9.201905, "GKisJfoM/T": -9.201905, "GL": -8.103293, "GO": -9.201905, "GOQty": -9.201905, "GOspp/UiewU": -9.201905, "GOtVfapuGyw": -9.201905, "GP": -9.201905, "GPYj": -9.201905, "GPsj": -9.201905, "GQPxz": -9.201905, "GRVy": -9.201905, "GSenyg": -9.201905, "GTjxouY/": -9.201905, "GV": -9.201905, "GVDRPDyeY": -9.201905, "GW": -8.508758, "GXhmj/hY/PnLU": -9.201905, "GXpvoLNZUh//k": -9.201905, "GY": -9.201905, "GY/LPqoF": -9.201905, "GZT/T": -9.201905, "GZWqp": -9.201905, "GZl": -9.201905, "GasWRX": -9.201905, "Gbl": -9.201905, "GbmmL": -9.201905, "GcZkb": -9.201905, "GcyKQu": -9.201905, "Ge": -8.508758, "GeWw": -9.201905, "Get": -9.201905, "GeyZd": -9.201905, "GfQ": -9.201905, "GfZ": -9.201905, "GjG/Qx": -9.201905, "GmPup": -9.201905, "GmUVS": -9.201905, "GnClkeK": -9.201905, "GoldenRatio": -9.201905, "GpZtGb": -9.201905, "GrT": -9.201905, "Graphics": -9.201905, "GraphicsBox": -8.508758, "GraphicsComplexBox": -9.201905, "GraphicsGroupBox": -8.508758, "GraphicsUtilities": -7.592467, "GrayLevel": -6.368692, "GridBox": -8.508758, "GridBoxAlignment": -9.201905, "GridBoxBackground": -9.201905, "GridBoxDividers": -9.201905, "GridBoxItemSize": -8.508758, "GridBoxSpacings": -8.508758, "GridLines": -9.201905, "GrnttGv": -9.201905, "GrvPQWv": -9.201905, "Gt": -9.201905, "GuRreZ/AdVvsbumrKk": -9.201905, "GvCbxXuidWEZ": -9.201905, "GvFi": -9.201905, "GvYqJsA": -9.201905, "Gvl": -9.201905, "Gvxdvs": -9.201905, "GwQoZBsg": -9.201905, "GwSKtR": -9.201905, "GxW": -9.201905, "Gyc": -9.201905, "GzxtIsk": -9.201905, "H": -6.206173, "H/": -9.201905, "H/M": -9.201905, "H/aXO": -9.201905, "H/b": -9.201905, "H/wX/HLxYrMel": -9.201905, "HAovNPqplkk": -9.201905, "HB": -9.201905, "HBd": -9.201905, "HC/Ur": -9.201905, "HD": -9.201905, "HG": -9.201905, "HHM": -9.201905, "HHxheXEnmhOEQbZkuHykII/c": -9.201905, "HIxuCYP": -9.201905, "HJu": -9.201905, "HL": -9.201905, "HNdeXTg": -9.201905, "HOlNE": -9.201905, "HRP": -9.201905, "HRPRuMz": -9.201905, "HT": -9.201905, "HTTCFvp/iyfZrGM": -9.201905, "HVq": -9.201905, "HWvDCWUG": -9.201905, "HXCL": -9.201905, "HXO": -9.201905, "HY": -9.201905, "Ha": -9.201905, "Hb": -9.201905, "Hc": -8.508758, "HdveAXl": -9.201905, "Head": -7.815611, "HetguT": -9.201905, "HeyexEyePosition": -8.508758, "HeyexImport": -8.508758, "HfnNuHe": -9.201905, "Hfuy": -9.201905, "HfvRl": -9.201905, "HgYeesrivNbc": -9.201905, "Hh": -9.201905, "HiDotH": -9.201905, "HikpV": -9.201905, "Hj": -9.201905, "Hjz": -9.201905, "HkF": -9.201905, "HlDkvabv": -9.201905, "Hljv": -9.201905, "HnC": -9.201905, "Ho": -9.201905, "HoOfSYwva": -9.201905, "How": -9.201905, "HpoYhyoNK": -9.201905, "HqURzRI": -9.201905, "HrOaZzzbCyk": -9.201905, "HsDHn": -9.201905, "Hsv/uQ": -9.201905, "Ht": -9.201905, "HtxKu": -9.201905, "Hue": -7.592467, "Hv": -8.508758, "HvW": -9.201905, "HwaD/nH": -9.201905, "Hx": -9.201905, "HxnBiZ": -9.201905, "HyFI": -9.201905, "I": -6.493855, "IA": -9.201905, "IBjzn": -9.201905, "IFSw": -9.201905, "IG": -9.201905, "IG/NElWJ": -9.201905, "IH": -9.201905, "IHDvVRW": -9.201905, "IHHN": -9.201905, "IIEb": -9.201905, "IIq": -9.201905, "IM": -9.201905, "IMOGNqdvQ": -9.201905, "IMUj": -9.201905, "IOVKfja/YWOhQ": -9.201905, "IOWbYuH": -9.201905, "IOZTe": -9.201905, "IOjC": -9.201905, "IP": -9.201905, "IPd": -9.201905, "IPiMDK": -9.201905, "IQNqkzhiX": -9.201905, "IQP//zWZy": -9.201905, "IQt": -9.201905, "IT": -9.201905, "ITjF": -9.201905, "IU": -9.201905, "IU/fOPB": -9.201905, "IV": -9.201905, "IXEOy": -9.201905, "IXlSg": -9.201905, "IZOQ": -9.201905, "Ia": -9.201905, "IaexgCKOhpOuy": -9.201905, "IanbXb/C": -9.201905, "Ib": -9.201905, "IbFRWKVHtopLHGVp": -9.201905, "Ic": -9.201905, "Identity": -8.508758, "IdgCf": -9.201905, "IeHDhfzWGTwttB": -9.201905, "IeP": -9.201905, "If": -7.592467, "IfcWRR": -9.201905, "Ifii": -9.201905, "Ig": -9.201905, "IhPNygpRt": -9.201905, "IhhYpHyshKtjSQpN/": -9.201905, "IlqevI": -9.201905, "Im": -8.103293, "Image": -7.815611, "Import": -9.201905, "ImportExport": -9.201905, "ImsD": -9.201905, "Imyghnr": -9.201905, "InQ": -9.201905, "IntegerListQ": -6.899320, "IntegerOrListQ": -7.815611, "IntegerQ": -7.410145, "IntegerQ/@input": -8.508758, "Io": -9.201905, "Iq": -9.201905, "IqAiunBFRvR/": -9.201905, "IrwAFvu": -9.201905, "Isvr": -9.201905, "IvvO": -9.201905, "IwubxDSIRyLsbpiYOSMCWvDWrvyEv": -9.201905, "J": -6.066411, "J//zFf": -9.201905, "JA/by": -9.201905, "JAH": -9.201905, "JBDHn": -9.201905, "JBw": -9.201905, "JC": -9.201905, "JD": -9.201905, "JDD": -9.201905, "JDcyx/OcciX": -9.201905, "JE": -8.508758, "JEEf": -9.201905, "JEVsHV/": -9.201905, "JEYP": -9.201905, "JEp": -9.201905, "JHT": -9.201905, "JIJFCSTg": -9.201905, "JIPeI/tFr": -9.201905, "JITfyK": -9.201905, "JJvIIOLbBV": -9.201905, "JKIqYerFLPSMtroJIhPc": -9.201905, "JL": -8.103293, "JLb": -9.201905, "JN": -9.201905, "JOYKL": -9.201905, "JS": -9.201905, "JXBPa": -9.201905, "JXzr": -9.201905, "JZ": -9.201905, "Jb": -9.201905, "JbnJgzm": -9.201905, "JcNPNBIv": -9.201905, "JdF": -9.201905, "JdeaTbra": -9.201905, "Jfcv": -9.201905, "JfjqxOUMZysMBPPkFzO": -9.201905, "JgLr": -9.201905, "JgqBT": -9.201905, "JhLxmHtHwvkyfEVQXeZ": -9.201905, "JhauFy/sNHRikJF/r": -9.201905, "JjDpnDldXyUzvRv": -9.201905, "JjYWHhXMTC": -9.201905, "JkRFXhtP": -9.201905, "JkbZsMQCH/cZjPdUXXNNDtzpNbLGDfOp": -9.201905, "Jl": -9.201905, "JlfW": -9.201905, "JmnzPkIMUIVcR": -9.201905, "JnY": -9.201905, "JncqCT": -9.201905, "Jnl": -9.201905, "Jny": -9.201905, "JoGvid": -9.201905, "Join": -9.201905, "JpBGXp": -9.201905, "JqTlwnFJ": -9.201905, "JqmYLOgVf": -9.201905, "JrTLw": -9.201905, "Jrj": -9.201905, "JsPHBD": -9.201905, "Jt": -8.508758, "JtKfC/hER": -9.201905, "JtTc": -9.201905, "Jtdnw": -9.201905, "JuAL": -9.201905, "JvNlvUmIB": -9.201905, "JvsckZ": -9.201905, "JxIb": -9.201905, "Jxn": -9.201905, "JyeNvXvaP": -9.201905, "JysJJWbYgDzMV": -9.201905, "JzngzC": -9.201905, "K": -6.206173, "K/pfJvms": -9.201905, "KA": -9.201905, "KA/": -9.201905, "KAfvA": -9.201905, "KAwp": -9.201905, "KBHTbiavDg": -9.201905, "KC": -9.201905, "KD": -9.201905, "KDQ": -9.201905, "KDbHje": -9.201905, "KE": -9.201905, "KEVfjq/mOMx": -9.201905, "KG": -9.201905, "KGTLZIp": -9.201905, "KHWK": -9.201905, "KIPIJazMkoDLDs": -9.201905, "KIoz": -9.201905, "KKZNJWOX": -9.201905, "KLJIqU": -9.201905, "KLLeWG": -9.201905, "KLWtZP": -9.201905, "KM": -9.201905, "KMPfPXW": -9.201905, "KMR": -9.201905, "KMcmMaIzVLXjjaSpNGHmcQ": -9.201905, "KPHT": -9.201905, "KQB": -9.201905, "KQiXPzmtcspJzphD": -9.201905, "KSK/pX": -9.201905, "KSQXSN": -9.201905, "KTS": -9.201905, "KTkTl": -9.201905, "KU/NYqxHjVXLcjuYZ": -9.201905, "KURmc": -9.201905, "KUdv": -9.201905, "KXyhJWOeD": -9.201905, "KY": -9.201905, "KYK": -9.201905, "KacB": -9.201905, "Kbhqx": -9.201905, "KbjE": -9.201905, "KdNYoLjNifp": -9.201905, "Kdxm": -9.201905, "Ke": -9.201905, "KeE": -9.201905, "KefjexK": -9.201905, "Kf": -9.201905, "KfC": -9.201905, "Kg": -9.201905, "KgMhnrFxRZ": -9.201905, "KgO": -9.201905, "Ki": -9.201905, "KiMxBkzeFf": -9.201905, "KjPYNNZ": -9.201905, "Kl": -9.201905, "KmOoso": -9.201905, "KnZfjSJHmgbljsOJDTP": -9.201905, "Kp": -9.201905, "Kqf": -9.201905, "KqvgjuD": -9.201905, "KsQ": -9.201905, "KtCjf": -9.201905, "Kudhia": -9.201905, "Kvhy/RLuhdZaCRrckW": -9.201905, "Kvyjaaz": -9.201905, "KwU/mJNRP": -9.201905, "KxH": -9.201905, "KzWnkZfrtDGtY": -9.201905, "KznLY": -9.201905, "KzoNz": -9.201905, "L": -6.493855, "L/Ot": -9.201905, "LCmEV": -9.201905, "LNhf": -9.201905, "L_": -6.899320, "Language": -9.201905, "LbFSivhTDGnWATyfPB/": -9.201905, "LddEOP": -9.201905, "Le": -9.201905, "LeTpnMzEKrjn": -9.201905, "Left": -8.508758, "Length": -9.201905, "LfDMevZLgy": -9.201905, "LineBox": -7.592467, "LineIndent": -7.815611, "LineSpacing": -8.508758, "LinebreakAdjustments": -8.508758, "List": -8.103293, "ListQ": -8.508758, "Listable": -9.201905, "Longest": -9.201905, "M": -6.206173, "M/": -9.201905, "M/OBsdc": -9.201905, "M/V": -9.201905, "M/e": -9.201905, "M/rQf": -9.201905, "MAzgQkTGRiQRypBQkeJq": -9.201905, "MCxdF": -9.201905, "MDn": -9.201905, "MEjonUtrfjDra": -9.201905, "MExd": -9.201905, "MEyEudw": -9.201905, "MHfKEHbt/": -9.201905, "MIk": -9.201905, "MJcH": -9.201905, "MKFqNBFFGZq": -9.201905, "MKfQWhUW": -9.201905, "ML": -9.201905, "MMsq": -9.201905, "MN/S": -9.201905, "MOPviFfkbeUvXVYteGA": -9.201905, "MPBfIazsxX": -9.201905, "MQwyJq": -9.201905, "MQyT": -9.201905, "MSxme": -9.201905, "MWQ/": -9.201905, "MWfClbO": -9.201905, "MYJGi": -9.201905, "MaXq": -9.201905, "MainPage": -9.201905, "Map": -9.201905, "MathematicaVersion": -9.201905, "Max": -8.103293, "Mb": -8.508758, "MbcQFojZ": -9.201905, "Mbnt": -9.201905, "McO": -9.201905, "McuJI": -9.201905, "MdILC": -9.201905, "MemberQ": -7.410145, "Message": -9.201905, "Method": -8.508758, "MflJauXvEZ": -9.201905, "Mg": -9.201905, "Mgg": -9.201905, "MiiLrGXD": -9.201905, "Min": -8.103293, "MjU": -9.201905, "Mk": -8.508758, "MkHpUco": -9.201905, "MkUsjNZC": -9.201905, "Ml": -8.103293, "Ml/mLneCf/": -9.201905, "MlEgf": -9.201905, "MmSFP": -9.201905, "Mnz": -9.201905, "Mo": -9.201905, "MoOh": -9.201905, "Module": -6.636956, "Moon": -8.508758, "MousePosition": -9.201905, "Mpkn": -9.201905, "MqS": -9.201905, "MrJQYy": -9.201905, "Ms": -8.508758, "MsuKw": -9.201905, "MtSJhA": -9.201905, "Mu": -9.201905, "MultilineFunction": -9.201905, "MuyszgP": -9.201905, "MvHOrjYOexOdYuuGj": -9.201905, "MzcVmJ": -9.201905, "Mzt/UM": -9.201905, "N": -6.562848, "N/": -9.201905, "N/HMw": -9.201905, "N/p": -9.201905, "N/usINztc": -9.201905, "NCMP": -9.201905, "NCache": -9.201905, "NCswjyX": -9.201905, "ND": -9.201905, "NDTo/R": -9.201905, "NEt": -9.201905, "NG": -9.201905, "NGJUnt": -9.201905, "NHqijX/VMLbH": -9.201905, "NIIdncsXp": -9.201905, "NIl": -9.201905, "NK": -9.201905, "NKK": -9.201905, "NKgdzPa": -9.201905, "NLFszbXC": -9.201905, "NMHhcs": -9.201905, "NNDI": -9.201905, "NNa": -9.201905, "NO": -9.201905, "NOQ": -9.201905, "NOdlas/mIAu/": -9.201905, "NOhe": -9.201905, "NOvnqCfBk": -9.201905, "NP": -8.508758, "NPHcjTo": -9.201905, "NQ": -9.201905, "NQMaWVdanRIE": -9.201905, "NQPqckHGI/HfzLum": -9.201905, "NQy": -9.201905, "NThkN": -9.201905, "NTmgEeeuhx": -9.201905, "NUrzx": -9.201905, "NWD/hn": -9.201905, "NWmZnevhrlCtxc": -9.201905, "NWzkq": -9.201905, "NXCJwN/DE": -9.201905, "NXb": -9.201905, "Name": -9.201905, "NamespaceBox": -9.201905, "NbwBJ": -9.201905, "NcTjzyaexwz": -9.201905, "Nd": -9.201905, "NdzyoUdhpcqWjfuRn": -9.201905, "Neap/R/YZvVw": -9.201905, "NearestFunction": -9.201905, "NestList": -9.201905, "NhHb": -9.201905, "NhLNPJfy": -9.201905, "NiazfAdv": -9.201905, "NigeF": -9.201905, "Nk": -9.201905, "NkDkM": -9.201905, "NkeuFzNz": -9.201905, "Nkv/": -9.201905, "Nl/sFBDgv": -9.201905, "NmE": -9.201905, "NmXUlHDUZPPgL": -9.201905, "NoPkmR": -9.201905, "NoiW": -9.201905, "None": -7.004680, "NonnegativeIntegerListQ": -7.410145, "NonnegativeIntegerOrListQ": -7.815611, "NonnegativeIntegerQ": -7.122463, "NonnegativeQ": -7.410145, "Not": -6.716998, "Notebook": -8.508758, "NrfhIzfNVuwIoEh": -9.201905, "NsLT/ReU": -9.201905, "Nt": -9.201905, "Nub": -9.201905, "Nuc": -9.201905, "Null": -9.201905, "NumberMarks": -8.103293, "NumericQ": -8.508758, "NvVXF": -9.201905, "Nw": -8.508758, "NwOzHNDfUoJ": -9.201905, "Nx": -9.201905, "NxfACXqhyWYWOlEW": -9.201905, "NyMzqEkjL": -9.201905, "O": -6.311533, "O/vZ": -9.201905, "OAjro": -9.201905, "OBgDvqZcH": -9.201905, "ODWraWPAIEN": -9.201905, "OEF/": -9.201905, "OERePDWvs": -9.201905, "OEb": -9.201905, "OHCKh": -9.201905, "OHD": -9.201905, "OHq": -9.201905, "OIPwLHqhtRdO": -9.201905, "OJThWcETPWbI": -9.201905, "OK": -9.201905, "OKyDSyn": -9.201905, "OLiH": -9.201905, "ONfF": -9.201905, "ONhK": -9.201905, "OOMCiye/WO": -9.201905, "OPHUBJbm": -9.201905, "OPeZ": -9.201905, "OPnAhc": -9.201905, "OQ": -9.201905, "OQcLjrdGqHeDZFEZuPLRuL": -9.201905, "OR": -9.201905, "ORAQ": -9.201905, "ORShPwbAo": -9.201905, "ORbyMosmUwfrcg/CVbJ": -9.201905, "OSEfALdst": -9.201905, "OTOK": -9.201905, "OV": -9.201905, "OVqeI": -9.201905, "OX": -9.201905, "OXB": -9.201905, "OY": -9.201905, "OY/zwVc": -9.201905, "OYHuCzLlaGTgp": -9.201905, "OYLWLWTaqY": -9.201905, "Oawdu": -9.201905, "Ob": -9.201905, "Ob/": -9.201905, "ObWcTuSfH/rUCfMfHQisWUonmneXqn": -9.201905, "Oc": -8.508758, "Ocd/L": -9.201905, "OdJIy": -9.201905, "Of": -9.201905, "Offset": -7.122463, "OfhlsNJjVFG": -9.201905, "OgEcmAxZZ": -9.201905, "OgP": -9.201905, "Oivsk": -9.201905, "OjXFZ": -9.201905, "OllYx": -9.201905, "OlpR/": -9.201905, "OneQIgHd": -9.201905, "OnhnKdaz": -9.201905, "Opacity": -8.508758, "OpdBPK": -9.201905, "Open": -7.255995, "OpenRead": -7.410145, "Oq": -9.201905, "Or": -8.508758, "OreSl": -9.201905, "OrfVw": -9.201905, "Orivygs": -9.201905, "OtECzjKHLhHub/": -9.201905, "OvDcinNdHp": -9.201905, "OvHspJw/": -9.201905, "OvJmRtdTIw": -9.201905, "OvRgojD": -9.201905, "OwbIXB": -9.201905, "OwrPheRto": -9.201905, "Ox": -9.201905, "Oxuffsq": -9.201905, "Oy": -9.201905, "Oyb": -9.201905, "Oz": -9.201905, "OzbU": -9.201905, "OzxaKuUmTgk": -9.201905, "P": -6.066411, "P/": -9.201905, "P//Blvj": -9.201905, "P/Gb": -9.201905, "P/WkpVBGmV": -9.201905, "P/fHckaTiIPhNLtff": -9.201905, "PBCvs": -9.201905, "PC": -9.201905, "PDV": -9.201905, "PE": -9.201905, "PEDvbs": -9.201905, "PF": -9.201905, "PGAvZ": -9.201905, "PHGw": -9.201905, "PIDGX": -9.201905, "PIiV": -9.201905, "PJzr": -9.201905, "PK": -9.201905, "PKHdpEkTxfrqutEMmL/PPbqjT": -9.201905, "PKauXvH": -9.201905, "PKlyZ": -9.201905, "PKofBf": -9.201905, "PL": -9.201905, "PLY": -9.201905, "PMDMN/sH": -9.201905, "PMyPgCpbYtPMwwqxcFJx": -9.201905, "PN": -9.201905, "PO": -9.201905, "POkW": -9.201905, "PP": -8.508758, "PQf": -9.201905, "PQwGKGLsmr": -9.201905, "PSPcy": -9.201905, "PVt": -9.201905, "PWFJZULom": -9.201905, "PWQYqsiGKN": -9.201905, "PWTx": -9.201905, "PWsmG": -9.201905, "PX": -9.201905, "PXAqvW": -9.201905, "PXeG": -9.201905, "PXfOwoPusg/e": -9.201905, "PXrEZaYMllU": -9.201905, "PXwv": -9.201905, "PYmG": -9.201905, "PYmHu": -9.201905, "Pa": -9.201905, "Paclet": -9.201905, "PajmGSMGj": -9.201905, "PakNZo": -9.201905, "PaneBox": -9.201905, "Parallelization": -9.201905, "Partition": -7.410145, "Pattern": -8.508758, "PclKELeCK": -9.201905, "Pex": -9.201905, "Pez": -9.201905, "Pf": -8.508758, "PfDiFN": -9.201905, "PfLCvGi": -9.201905, "Pfd": -9.201905, "PfpclwhjkgP": -9.201905, "PgbSaqRmrof": -9.201905, "PgsE": -9.201905, "Ph": -9.201905, "PhOvBx": -9.201905, "PhVQqC": -9.201905, "Pi/lJ": -9.201905, "PiwFb": -9.201905, "Pj/LylUaPt": -9.201905, "PjzB/aQcv": -9.201905, "PkYthhMtPFoqaAxi": -9.201905, "Pka": -9.201905, "PkyibJ": -9.201905, "PlkfhTWKGgWfRjwkMPms": -9.201905, "PlotRange": -9.201905, "PlotRangeClipping": -9.201905, "PlotRangePadding": -9.201905, "Plp": -9.201905, "Plus": -9.201905, "Pm": -9.201905, "PmCXXuF": -9.201905, "PmUuGq": -9.201905, "PmZCjNyE": -9.201905, "PnAXuDPIf": -9.201905, "PnG": -9.201905, "PolygonBox": -8.103293, "PolynomialForm": -9.201905, "Positive": -7.815611, "PositiveIntegerListQ": -7.410145, "PositiveIntegerOrListQ": -7.815611, "PositiveIntegerQ": -7.410145, "PositiveQ": -7.410145, "PossiblyFalseQ": -7.815611, "PossiblyNonzeroQ": -7.410145, "PossiblyTrueQ": -7.410145, "Power": -8.508758, "Ppj": -9.201905, "PqPqZA/xqNrE": -9.201905, "PqzrL": -9.201905, "PrM": -9.201905, "PrgLxIrF": -9.201905, "PrgxqpttK": -9.201905, "Print": -9.201905, "Private": -7.592467, "Ptth": -9.201905, "PuF": -9.201905, "PuMOdRikSp": -9.201905, "PuuEJ": -9.201905, "PwVu": -9.201905, "PxQ": -9.201905, "Pxk": -9.201905, "PxzSOci": -9.201905, "Pz": -9.201905, "PzbsmdbNvGIAufm": -9.201905, "Q": -7.004680, "Q/": -8.508758, "QAm": -9.201905, "QCL": -9.201905, "QDqe": -9.201905, "QHhQuZ": -9.201905, "QKAyn": -9.201905, "QKMh": -9.201905, "QLKuCv": -9.201905, "QM": -9.201905, "QMe": -9.201905, "QNHDm": -9.201905, "QQcpPp": -9.201905, "QR": -9.201905, "QRa": -9.201905, "QRpLqRYPVYC": -9.201905, "QUkojEHEmmIUteEgj/D": -9.201905, "QYNBcnkEmjzhXTSb": -9.201905, "QZRWjh/o": -9.201905, "QcrMZ": -9.201905, "QdYHyOPh": -9.201905, "QfjbazeD": -9.201905, "Qhf": -9.201905, "QhwvwHJRlq/": -9.201905, "QiGjDSkgvTuiW": -9.201905, "Qic": -9.201905, "QifEK": -9.201905, "QjhAyb": -9.201905, "QlB": -9.201905, "Qo": -9.201905, "QoJPHaeXLJ": -9.201905, "Qpyg/ulOj/fOckg": -9.201905, "Qqclw": -9.201905, "Qs": -9.201905, "QsvqzCS": -9.201905, "QuCM": -9.201905, "Quiet": -8.508758, "QuwubDufV/k": -9.201905, "QvfWPTEn": -9.201905, "QyedZpbdOjDPPr": -9.201905, "Qz": -9.201905, "R": -6.636956, "R/": -9.201905, "RA": -9.201905, "RBS": -9.201905, "RGBColor": -8.103293, "RGSahl": -9.201905, "RGf/e": -9.201905, "RHdNtI": -9.201905, "RHsep": -9.201905, "RHsv": -9.201905, "RJGdkjydLD": -9.201905, "RJeVNS": -9.201905, "RJzhiJ": -9.201905, "RL": -9.201905, "RMIPUiB": -9.201905, "RNkz": -9.201905, "ROp": -9.201905, "RSJcrsomw": -9.201905, "RSz": -9.201905, "RT": -9.201905, "RTZu": -9.201905, "RTefH": -9.201905, "RVZK": -9.201905, "RVnSfD": -9.201905, "RWbB": -9.201905, "RXAB": -9.201905, "RXgUvJR": -9.201905, "RY": -9.201905, "RYtMpXCerLruHLAyz": -9.201905, "RYwP": -9.201905, "RZrjr": -9.201905, "RapHtV": -9.201905, "Rd": -9.201905, "ReDQG": -9.201905, "RealQ": -7.410145, "RegisterImport": -9.201905, "Replace": -9.201905, "Rest": -9.201905, "Rezkj": -9.201905, "Rgz": -9.201905, "Rhadt/F": -9.201905, "RhnbYD": -9.201905, "RiJ": -9.201905, "Right": -9.201905, "Rj": -9.201905, "RlNsL": -9.201905, "RlfJArvyVlHGUjSmX": -9.201905, "Rme": -9.201905, "Rmpc": -9.201905, "RnpZBeDok": -9.201905, "RoBiFPPXt": -9.201905, "RoKdF/KXwSO": -9.201905, "RotationMatrix": -9.201905, "RowBox": -5.675544, "RowsEqual": -8.508758, "RpBOJ//": -9.201905, "RqA": -9.201905, "RrEbw/Ifq": -9.201905, "RrcILvsnrrEezzOyxGDbHVg": -9.201905, "RrgfiNDIzZnKtnDm": -9.201905, "RsTAkxqj": -9.201905, "Ru": -9.201905, "Rule": -8.508758, "RuntimeAttributes": -9.201905, "RuntimeOptions": -9.201905, "Rv": -9.201905, "RwJq": -9.201905, "RwOst": -9.201905, "Rwj": -9.201905, "RydrC": -9.201905, "S": -6.562848, "S/": -9.201905, "S/tJ": -9.201905, "SDx": -9.201905, "SFvpTchjn": -9.201905, "SG": -9.201905, "SK": -9.201905, "SKiCQqcAkazkCve": -9.201905, "SLbfoiGSRAQGTlPnhmwwXW": -9.201905, "SLzqiPVYv": -9.201905, "SM/": -9.201905, "SMJ": -9.201905, "SMgPMeuF": -9.201905, "SS": -8.103293, "SSVTY": -9.201905, "STgmYpsKHz": -9.201905, "STqFIyDCdVx": -9.201905, "SUvNAZ": -9.201905, "SVM": -9.201905, "SWsXwViOXsMJpihQbXTEphd": -9.201905, "SWwKVmSoer": -9.201905, "SYaVg": -9.201905, "Scaled": -6.899320, "ScdUfdRrp": -9.201905, "Sd": -9.201905, "SdZdsK": -9.201905, "SdpKJ": -9.201905, "SeQTp": -9.201905, "Seb": -9.201905, "Sequence": -8.508758, "SiMGOTEX": -9.201905, "SiZHDOthFf": -9.201905, "Sin": -8.508758, "Sjn": -9.201905, "SjzCcE/": -9.201905, "Sk": -9.201905, "Skip": -7.592467, "SlPJtWSRM/xqLdrwfqHjI": -9.201905, "Slc": -9.201905, "Sldnk": -9.201905, "SmAxc": -9.201905, "Small": -9.201905, "Smaller": -9.201905, "Smz": -9.201905, "Sn": -9.201905, "SoB/bpekwVov": -9.201905, "SoCe": -9.201905, "SolEk": -9.201905, "SoodkCcLjH": -9.201905, "SpdBlP": -9.201905, "SqQTjy": -9.201905, "SsaLASHeru": -9.201905, "SsoL": -9.201905, "StringJoin": -9.201905, "StringMatchQ": -9.201905, "StripOnInput": -9.201905, "StyleBox": -7.815611, "StyleDefinitions": -9.201905, "SuperscriptBox": -9.201905, "SvBrvFgIXvRkOjNiGfCozNXDkG/P": -9.201905, "Svqr": -9.201905, "SwIkIX": -9.201905, "Switch": -9.201905, "SxSeR": -9.201905, "SxhkaHjV": -9.201905, "Symbol": -7.815611, "SymbolOrNumberQ": -7.815611, "SymbolQ": -7.815611, "SyntaxForm": -8.508758, "T": -6.429316, "T/J": -9.201905, "T/r": -9.201905, "TAnxftDH": -9.201905, "TAp": -9.201905, "TBWz": -9.201905, "TCpVp": -9.201905, "TDKFIjWdHM": -9.201905, "TDN": -9.201905, "TGnZaBY": -9.201905, "TH": -9.201905, "THHDXAebBLLe": -9.201905, "TKKfwduYCo": -9.201905, "TKcOfcF": -9.201905, "TLFs/z": -9.201905, "TNIMdX": -9.201905, "TNXpVOeEP": -9.201905, "TP": -8.508758, "TPyUjLzNTUTK": -9.201905, "TQzy": -9.201905, "TRyNuyqO": -9.201905, "TT": -9.201905, "TU": -9.201905, "TXPsyD": -9.201905, "TXZyiWCcH": -9.201905, "TXexZZBqodszPHAVt": -9.201905, "TXlwnr": -9.201905, "TYXf": -9.201905, "TZcX": -9.201905, "Table": -8.508758, "TagBox": -7.004680, "TagBoxWrapper": -7.815611, "Take": -8.508758, "TapFygMU": -9.201905, "Tb": -9.201905, "Tb/pz": -9.201905, "TbCeRnWacPzsJwv/vWoNe/kU": -9.201905, "Tc/aXwsJw": -9.201905, "TcGRrSZrur": -9.201905, "Tcg": -9.201905, "Td": -9.201905, "TdcVUY": -9.201905, "TdoV": -9.201905, "Tdp": -9.201905, "Tdz": -9.201905, "Te": -9.201905, "TeNBMiuPFsFr": -9.201905, "TemplateBox": -9.201905, "Test": -8.508758, "TestID": -8.508758, "TestSuite": -9.201905, "TfFtND": -9.201905, "Tg": -9.201905, "ThKezV": -9.201905, "Throw": -9.201905, "TiD/Htv": -9.201905, "TiO": -9.201905, "TienN": -9.201905, "TimeConstraint": -9.201905, "Times": -8.103293, "Timing@readBScanHeader": -9.201905, "Tj": -9.201905, "TjP": -9.201905, "TjRoARvV": -9.201905, "Tjpgq": -9.201905, "TjygyM": -9.201905, "TlFBgkLBzPxxY": -9.201905, "TlHE": -9.201905, "TmC": -9.201905, "TmOsr": -9.201905, "TnI": -9.201905, "TnMN": -9.201905, "TnQ/woctnx": -9.201905, "TnewxvnveD": -9.201905, "ToBoxes": -9.201905, "ToPackedArray": -8.103293, "TpFfL": -9.201905, "TpG": -9.201905, "TqjP/yLlNkys": -9.201905, "TrMGXO/": -9.201905, "TraditionalForm": -8.103293, "TraditionalOrder": -9.201905, "Transpose": -7.592467, "True": -6.368692, "TrueQ": -6.899320, "TsJXfdkXlJB/pNh": -9.201905, "TtKbl": -9.201905, "TtO": -9.201905, "TufsNqTIsZ": -9.201905, "Tv": -9.201905, "Tw/kMeox": -9.201905, "TxQWdZJQuIp": -9.201905, "Txc": -9.201905, "TxkUEW": -9.201905, "TxkeZSblcNrpCZ": -9.201905, "TxnmV": -9.201905, "TycnTS": -9.201905, "Typeset": -7.255995, "U": -8.103293, "U/ADdHFf": -9.201905, "UMTlhfH": -9.201905, "UOS": -9.201905, "UOSl": -9.201905, "UPDV": -9.201905, "UTN": -9.201905, "UUU": -9.201905, "UWFm/GD": -9.201905, "UZv": -9.201905, "UdJ/l": -9.201905, "Ugcb": -9.201905, "Ujyn": -9.201905, "UmQbd": -9.201905, "UnFrTAJx": -9.201905, "UnitFontFamily": -9.201905, "Uq": -9.201905, "UqSqocolGJ": -9.201905, "V": -6.493855, "V/ptY": -9.201905, "VBc/tCcgzh": -9.201905, "VG": -9.201905, "VGx": -9.201905, "VH": -9.201905, "VITOoZRVDPJTs": -9.201905, "VIs/ljH": -9.201905, "VJ": -9.201905, "VJRmkcF": -9.201905, "VKI": -9.201905, "VLsX": -9.201905, "VLzCJIsirnWap": -9.201905, "VN": -9.201905, "VP": -9.201905, "VPJsPL": -9.201905, "VPhUn": -9.201905, "VPug": -9.201905, "VQI": -9.201905, "VR": -9.201905, "VRH": -9.201905, "VT": -9.201905, "VTvg": -9.201905, "VVal/oRjdr": -9.201905, "VX": -8.508758, "VXh": -9.201905, "VXi": -9.201905, "VZN": -9.201905, "VZeW": -9.201905, "VanCk": -9.201905, "VbJ": -9.201905, "Vc/vw": -9.201905, "VcVTugCcuo/ENGkFd": -9.201905, "Vcn": -9.201905, "VdJSEEfnGQ": -9.201905, "VdVy": -9.201905, "VeE": -9.201905, "VeVt": -9.201905, "VerificationTest": -8.508758, "Version": -9.201905, "VgDj": -9.201905, "VhEaYShH": -9.201905, "VjDIu": -9.201905, "Vk": -8.508758, "VkVGPfxJrVlv": -9.201905, "VkotOQMXetb": -9.201905, "VlYDrFPmuDCEPKwc": -9.201905, "VnYHPM/lv": -9.201905, "Vo": -8.508758, "Vq": -9.201905, "VqB": -9.201905, "Vqek": -9.201905, "Vqmbb": -9.201905, "VrlB": -9.201905, "Vs": -8.103293, "Vsb": -9.201905, "VsqJ": -9.201905, "VtQeZIi": -9.201905, "VtZhgfewMqel": -9.201905, "Vvlk": -9.201905, "VwS": -9.201905, "Vy": -9.201905, "W": -6.562848, "W/IfrJtp": -9.201905, "W/V": -9.201905, "W/ztI": -9.201905, "WARfzVnE": -9.201905, "WAl/": -9.201905, "WAlOafw": -9.201905, "WBhEea": -9.201905, "WCGVsV": -9.201905, "WD/hUzKyGDfLYT": -9.201905, "WDb": -9.201905, "WGdjDXv": -9.201905, "WGg": -9.201905, "WH": -9.201905, "WHDkcc": -9.201905, "WIG": -9.201905, "WITqPJ": -9.201905, "WImK": -9.201905, "WKMEZb": -9.201905, "WM": -9.201905, "WN": -9.201905, "WNaSSycGNzERzFYxA": -9.201905, "WNpyRXqCIyc": -9.201905, "WNyOfnbum": -9.201905, "WOBRJaN": -9.201905, "WOWxnEe/al": -9.201905, "WPAazOifM": -9.201905, "WPED/eJvsiJXtaJEbPH": -9.201905, "WQ": -9.201905, "WQb": -9.201905, "WRCOE": -9.201905, "WSyaTkp": -9.201905, "WTx/zllWq": -9.201905, "WUNmD/g": -9.201905, "WWU": -9.201905, "WXOUM": -9.201905, "WYqRZy": -9.201905, "WZW": -9.201905, "WcPGX": -9.201905, "WckUOZEmqnUKZqhELLgkUqQqXrA": -9.201905, "WeTY": -9.201905, "WedZoNVNHJPzTXFAx": -9.201905, "Wf": -9.201905, "WfUmNghMcdRc": -9.201905, "WfhR": -9.201905, "WgQMo": -9.201905, "Wgz": -9.201905, "WhJXeb": -9.201905, "WhO": -9.201905, "WindowMargins": -9.201905, "WindowSize": -9.201905, "With": -8.103293, "Wl": -9.201905, "WnBcWCks": -9.201905, "WopT": -9.201905, "Wpu": -9.201905, "Wr": -9.201905, "WrOblV": -9.201905, "WrjMwN": -9.201905, "WsPlDo": -9.201905, "WuCHf": -9.201905, "WukpyF": -9.201905, "Ww": -9.201905, "WwxYgP": -9.201905, "WyJ": -9.201905, "Wzf": -9.201905, "WzqWoCx": -9.201905, "X": -6.804010, "XAC/rKF": -9.201905, "XAy": -9.201905, "XB": -8.508758, "XBPMXOikZ": -9.201905, "XCP/WHH/LVx": -9.201905, "XD": -8.508758, "XDpLg": -9.201905, "XDx": -9.201905, "XEJh": -9.201905, "XGEWeeTSOBvvF/ia": -9.201905, "XHhHJ": -9.201905, "XIXXmufpvVPGUUsV": -9.201905, "XIZ/fuBxXYbr/": -9.201905, "XIcp": -9.201905, "XL": -9.201905, "XLRV": -9.201905, "XLwUqOIn": -9.201905, "XM": -9.201905, "XMLElement": -6.636956, "XMV": -9.201905, "XOKnwvsnmPoo": -9.201905, "XQ": -9.201905, "XQELiRj": -9.201905, "XQQSkVxx": -9.201905, "XSMg": -9.201905, "XSOlaWRIKDmiEjY": -9.201905, "XSy": -9.201905, "XTC": -9.201905, "XU/WlCxT": -9.201905, "XUfQ/ktYHqdD": -9.201905, "XUgN/OpdWUIfX": -9.201905, "XVI": -9.201905, "XVOY": -9.201905, "XXEXWKEVs": -9.201905, "XXFm": -9.201905, "XXGEQdprJ": -9.201905, "XXxv": -9.201905, "XYL": -9.201905, "XZpp": -9.201905, "XZx": -9.201905, "XaET": -9.201905, "XbDV": -9.201905, "XcUkTLgKouAi": -9.201905, "Xf": -9.201905, "XfFTIf": -9.201905, "XfHaFN": -9.201905, "XfuVTngntErH": -9.201905, "Xg": -9.201905, "XgF": -9.201905, "XgXCHlwBvM": -9.201905, "Xga": -9.201905, "XhVFUsRKun": -9.201905, "XjBrPe": -9.201905, "XlOoSYMcOFfPDzPVhO": -9.201905, "XlYG": -9.201905, "XmS": -9.201905, "XnC/MS": -9.201905, "XnZBkp/": -9.201905, "XoL": -9.201905, "XomQhhPP": -9.201905, "XpZfK": -9.201905, "XqK": -9.201905, "XqkN": -9.201905, "Xqw": -9.201905, "XrsNlz": -9.201905, "XrxLeTNfT": -9.201905, "Xszh": -9.201905, "Xt": -9.201905, "Xu/": -9.201905, "XuK": -9.201905, "XuSrQwWftUOGmH": -9.201905, "Xv": -9.201905, "XvOA": -9.201905, "Xvy/fwoJFMm": -9.201905, "Xw/sXvXRbbkiRjArNS": -9.201905, "XwMPvGzbs": -9.201905, "Xx": -9.201905, "Xxj": -9.201905, "XytoLX": -9.201905, "Xz": -8.508758, "Y": -6.562848, "Y/": -9.201905, "Y/DbbudWy": -9.201905, "Y/gTmkWcRUYLpXbHcH": -9.201905, "Y/yuyKpcj": -9.201905, "YA": -9.201905, "YBb": -9.201905, "YBnsEB": -9.201905, "YD": -9.201905, "YDI": -9.201905, "YEoY": -9.201905, "YFZk": -9.201905, "YG": -8.508758, "YG/fzX": -9.201905, "YGXZkpw": -9.201905, "YHGDoum": -9.201905, "YHM": -9.201905, "YIqPCfP": -9.201905, "YJAXAo": -9.201905, "YJI": -9.201905, "YJIL": -9.201905, "YJIz": -9.201905, "YJoNE": -9.201905, "YMkRSSmaKQDJkyz": -9.201905, "YNgvZA": -9.201905, "YOf": -9.201905, "YP/": -9.201905, "YPYGR": -9.201905, "YQd/vlA": -9.201905, "YRPgiv": -9.201905, "YRrZxGO": -9.201905, "YRtISVKX": -9.201905, "YTLxWJ": -9.201905, "YVNUsJEGaQlPO": -9.201905, "YWvq": -9.201905, "YXH": -9.201905, "YXcD": -9.201905, "YYFotwVv": -9.201905, "YYnUNYePfqeTb": -9.201905, "YYoiTl": -9.201905, "YbPXzgT": -9.201905, "Yd/UK": -9.201905, "YefpJ": -9.201905, "Yf/": -9.201905, "YfDowGg": -9.201905, "YfLcEHk": -9.201905, "YfO": -9.201905, "Yfj": -9.201905, "YiTfB": -9.201905, "YjfwlHLx": -9.201905, "YlrNq": -9.201905, "Ym": -9.201905, "YmRE": -9.201905, "Yme": -9.201905, "YmfgJC": -9.201905, "YonsH": -9.201905, "YpMiA": -9.201905, "YpZMXb/": -9.201905, "Yr": -9.201905, "Yt": -9.201905, "YtHnnhfVtTGXB": -9.201905, "Yvvwz/bzIIddA": -9.201905, "Yx": -9.201905, "YyD": -9.201905, "YyV": -9.201905, "YyqSRn": -9.201905, "YzHNBxZavHZQgJ": -9.201905, "YzwewKv": -9.201905, "Z": -6.493855, "Z/YrVgVxFz/hwucUWf/chj": -9.201905, "Z/gGIr": -9.201905, "Z/kfSnrwhvHy": -9.201905, "ZAinibUgi": -9.201905, "ZBBK": -9.201905, "ZBdNOrmz": -9.201905, "ZCf": -9.201905, "ZDT": -9.201905, "ZDcnnCzGsmHsFkX": -9.201905, "ZDsPg": -9.201905, "ZEf/prAlbVMFfVbo": -9.201905, "ZFVRXzEa": -9.201905, "ZFupV": -9.201905, "ZGvlMU": -9.201905, "ZIGM": -9.201905, "ZIheNGGIu": -9.201905, "ZJPxQ": -9.201905, "ZKTUwf": -9.201905, "ZKWLGPL": -9.201905, "ZLYB": -9.201905, "ZNX": -9.201905, "ZNmhEoyn": -9.201905, "ZNzrKLI": -9.201905, "ZOGyCfCMnGfNIGzZ": -9.201905, "ZOJaqV": -9.201905, "ZP": -9.201905, "ZPysNIBTJKtCWmFJ": -9.201905, "ZQb": -9.201905, "ZU": -9.201905, "ZU/ywu": -9.201905, "ZWfeTZj": -9.201905, "ZWt": -9.201905, "ZZ": -9.201905, "ZZJZlSXEiRWVYH": -9.201905, "ZanRKCd/mvUxh": -9.201905, "Zapu": -9.201905, "ZbtyKtnC": -9.201905, "ZcVDVGf": -9.201905, "ZcdscYpIH": -9.201905, "ZdE": -9.201905, "Zdhn": -9.201905, "ZeroWidthTimes": -9.201905, "ZetzNi": -9.201905, "ZfjbAP": -9.201905, "ZgQ": -9.201905, "ZhPw": -9.201905, "Zhct": -9.201905, "Zj": -9.201905, "ZjSyK": -9.201905, "ZkGbIIDKXNg": -9.201905, "ZkP/J": -9.201905, "Zl": -9.201905, "ZlJ": -9.201905, "ZlvYso": -9.201905, "ZmqWlWY": -9.201905, "Zn/": -9.201905, "Znje": -9.201905, "ZoxKXnubkC": -9.201905, "Zpxf": -9.201905, "ZrZAPa": -9.201905, "Zsv": -9.201905, "ZtmPpvH": -9.201905, "Zu": -9.201905, "ZuXCt": -9.201905, "Zugz": -9.201905, "ZvPbP": -9.201905, "ZwSCXh": -9.201905, "ZwUUUjWXY": -9.201905, "ZyEtWii": -9.201905, "ZyjMIIkXu": -9.201905, "ZzlEHOtEpZOcD": -9.201905, "ZzpDGn": -9.201905, "[": -2.866851, "\\": -6.493855, "]": -2.902956, "^": -6.157382, "_": -7.122463, "_Integer": -8.508758, "_Real": -9.201905, "_Rule..": -9.201905, "_String": -7.255995, "__": -9.201905, "___": -6.899320, "`": -5.289882, "a": -5.834609, "a/AhVsqqdH": -9.201905, "aA": -9.201905, "aBCDParSFj": -9.201905, "aCQqTUtvLXw": -9.201905, "aD": -9.201905, "aFNk/YqkboQyjq": -9.201905, "aG": -9.201905, "aHKrgx": -9.201905, "aLo": -9.201905, "aMQqYtzgOJzc": -9.201905, "aMWGHfO": -9.201905, "aN": -9.201905, "aNPstfIZOvH/KKZXByy": -9.201905, "aOTBd": -9.201905, "aP": -9.201905, "aQu/": -9.201905, "aRJ": -9.201905, "aRpGbed": -9.201905, "aSNFBM/xpbUy": -9.201905, "aT": -9.201905, "aU": -9.201905, "aUOX": -9.201905, "aXWRIhfKUwsV": -9.201905, "aXgxyQuBNOdvHETMS": -9.201905, "aY": -9.201905, "aZeu": -9.201905, "a_": -7.815611, "aa": -9.201905, "ab": -9.201905, "acGCotRf/": -9.201905, "acs": -9.201905, "adjb": -9.201905, "adjustGraylevelFunc": -7.815611, "aeTtmyV": -9.201905, "aff": -9.201905, "ajvm": -9.201905, "al": -9.201905, "alU": -9.201905, "ale": -9.201905, "amGvzeSC": -9.201905, "aq": -9.201905, "ateyNcp": -9.201905, "au": -9.201905, "aw": -9.201905, "aww": -9.201905, "ax": -9.201905, "ayfvf": -9.201905, "azIe/kKo": -9.201905, "azYUUZ": -9.201905, "b": -5.834609, "b/EI": -9.201905, "b/Yjtv": -9.201905, "b/pFOZmuzV": -9.201905, "bA": -9.201905, "bBscsye": -9.201905, "bDBQdmyrZ": -9.201905, "bDvQ": -9.201905, "bEMVXHFwXvxUBY": -9.201905, "bF": -8.103293, "bFYVvcCm": -9.201905, "bFk": -9.201905, "bFs": -9.201905, "bGTWF": -9.201905, "bIVfH": -9.201905, "bKtDVi/b/": -9.201905, "bLjFGgazKjx": -9.201905, "bMO": -9.201905, "bOF/mhngaK": -9.201905, "bPDOWwcMgLsE": -9.201905, "bPJlFMZrtVvZG": -9.201905, "bQ": -9.201905, "bQL": -9.201905, "bQtjSqHhe": -9.201905, "bScanHdr": -7.410145, "bScanHeader": -8.103293, "bScanHeaderInfo": -9.201905, "bVBTLGGO": -9.201905, "bVIO": -9.201905, "bVZPlMGO": -9.201905, "bVxI": -9.201905, "bY": -9.201905, "bYKyHIJ/Ega/wr": -9.201905, "bb": -8.508758, "bbaiHtKCa": -9.201905, "bbkvh": -9.201905, "bc/K": -9.201905, "bcKzHGiTvTPDuTH": -9.201905, "bciD": -9.201905, "bdG": -9.201905, "bdjcT": -9.201905, "beCbM": -9.201905, "beaG": -9.201905, "bf": -9.201905, "bf/Ivs/": -9.201905, "bgDu": -9.201905, "bgK": -9.201905, "bgedT": -9.201905, "bgxKd": -9.201905, "bh": -8.508758, "bhXvEB": -9.201905, "bhdr": -7.004680, "bhfCHxY": -9.201905, "bhwsEi": -9.201905, "biGWy": -9.201905, "bj/LQ": -9.201905, "bjoLC": -9.201905, "bkoQM": -9.201905, "bmC": -9.201905, "bmlNppGvAekoQVlxY/FXwPI": -9.201905, "bmwGlw": -9.201905, "bnLfpogD": -9.201905, "bo": -9.201905, "boJT": -9.201905, "bod": -9.201905, "boo": -9.201905, "bpXpu": -9.201905, "bqWwA": -9.201905, "bqnUkIYV": -9.201905, "brLO": -9.201905, "bsNZlNaNE": -9.201905, "bspUUqbINU": -9.201905, "btj": -9.201905, "btpW": -9.201905, "bu": -9.201905, "bvKmMPrTFS//hSXDbKI": -9.201905, "byMQdOlk": -9.201905, "byNBzSHDB": -9.201905, "byayRRZwrI/C": -9.201905, "byuMJyQKSqymk": -9.201905, "bz": -9.201905, "bzp": -9.201905, "c": -6.716998, "c/Sud": -9.201905, "cAU/": -9.201905, "cD": -9.201905, "cDGH": -9.201905, "cERtu": -9.201905, "cETpZcfpk": -9.201905, "cEjh": -9.201905, "cF": -9.201905, "cFH": -9.201905, "cFxbPDbfEd": -9.201905, "cGw/NKBseksF": -9.201905, "cI": -9.201905, "cJ": -9.201905, "cJDCjSd/YVGxhkbGKPM": -9.201905, "cLIT": -9.201905, "cMLBDl": -9.201905, "cMxP": -9.201905, "cN": -9.201905, "cN/nU": -9.201905, "cNNx": -9.201905, "cNWmrznLBeVeiYhcGD": -9.201905, "cOF": -9.201905, "cOgFnR": -9.201905, "cOhtCqsT": -9.201905, "cOisOKGqHKAujfHmxwpknB": -9.201905, "cP": -9.201905, "cPqrNCGHur": -9.201905, "cQ": -9.201905, "cR": -9.201905, "cSZDFPkZ": -9.201905, "cT": -9.201905, "cTFsfZuTdytc": -9.201905, "cTl": -9.201905, "cVValQIj": -9.201905, "cViYTlOiVi": -9.201905, "cX": -9.201905, "cXd": -9.201905, "cY": -9.201905, "cYJOWWYY": -9.201905, "cZGkZxit": -9.201905, "cb": -8.508758, "cbDoUy": -9.201905, "cbLCHlOFuF": -9.201905, "cbQv": -9.201905, "cbqz": -9.201905, "cc": -9.201905, "ccLdIlGrD": -9.201905, "cd": -9.201905, "ceM": -9.201905, "cfQX": -9.201905, "cfcjr": -9.201905, "cg": -9.201905, "chars": -9.201905, "chars___Integer": -9.201905, "ci": -9.201905, "cijfdbENBlmKXp": -9.201905, "cj": -9.201905, "ckKGhk": -9.201905, "ckTud": -9.201905, "cka": -9.201905, "cmTeX": -9.201905, "cn": -8.508758, "cnAtfaXxprNbl": -9.201905, "cno": -9.201905, "compileTarget": -7.592467, "cond": -7.122463, "cond_": -7.122463, "coo": -9.201905, "cp": -9.201905, "cpYhg": -9.201905, "cq": -9.201905, "cqPoB": -9.201905, "cqnMB": -9.201905, "crHe": -9.201905, "crg": -9.201905, "cs": -9.201905, "csKs": -9.201905, "csoWvnG": -9.201905, "csrj": -9.201905, "csuRuLN": -9.201905, "csz/A": -9.201905, "ct": -9.201905, "ctw": -9.201905, "cubMH": -9.201905, "cv": -9.201905, "cw": -9.201905, "cwnf/BkqZVdOJrkVHyHn": -9.201905, "cz": -9.201905, "czcmHdxywpqVM": -9.201905, "czdMwzPri": -9.201905, "d": -5.618386, "d/h": -9.201905, "dAb": -9.201905, "dBNG": -9.201905, "dCBBYK": -9.201905, "dDK": -9.201905, "dDl": -9.201905, "dEn": -9.201905, "dFkP/sypvclGAt": -9.201905, "dGHP": -9.201905, "dHQadkM": -9.201905, "dIQ": -9.201905, "dIbvPpEOkkW/": -9.201905, "dLCp": -9.201905, "dLLG": -9.201905, "dM": -9.201905, "dN": -9.201905, "dNPPtmCo": -9.201905, "dNirrQF": -9.201905, "dNp": -9.201905, "dNq": -9.201905, "dO": -9.201905, "dOzlOdYH": -9.201905, "dPPlIjEGstyx": -9.201905, "dPjY": -9.201905, "dPv": -9.201905, "dQ": -9.201905, "dRbVwcWZ": -9.201905, "dRy": -9.201905, "dSBszMiwkb/oxM": -9.201905, "dUYd": -9.201905, "dVtNmEQzJBYQK": -9.201905, "dWRrK": -9.201905, "dX": -9.201905, "dYNxge": -9.201905, "dYQzjmicQz": -9.201905, "dZVmt": -9.201905, "daYP": -9.201905, "data": -6.493855, "dc": -9.201905, "dcNrH": -9.201905, "delrx": -9.201905, "detL": -9.201905, "dfoQPK": -9.201905, "dgvc": -9.201905, "dhAO": -9.201905, "dhNX": -9.201905, "dhphNPcMP": -9.201905, "diXoMA": -9.201905, "distance": -9.201905, "dj": -8.508758, "dj/": -9.201905, "dk": -9.201905, "dlRTR": -9.201905, "dmcPbF": -9.201905, "dn/": -9.201905, "dnEGUQn": -9.201905, "dnN": -9.201905, "dpzKc": -9.201905, "drRU": -9.201905, "dtFTv": -9.201905, "dtFr": -9.201905, "duA": -9.201905, "duDyo": -9.201905, "duiuFsJ/lsZuyvOADn": -9.201905, "dvYX": -9.201905, "dwCndz": -9.201905, "dwYn": -9.201905, "dxPY": -9.201905, "dxS": -9.201905, "dyPXM": -9.201905, "dzPhxh": -9.201905, "dzgGeUCW": -9.201905, "dzjBOD": -9.201905, "dzwlr/teyzQ": -9.201905, "e": -6.257466, "e/rH": -9.201905, "eA": -8.103293, "eAH": -9.201905, "eAev": -9.201905, "eB": -9.201905, "eDtJ": -9.201905, "eDxV": -9.201905, "eFK": -9.201905, "eFKaw": -9.201905, "eGB": -9.201905, "eH": -9.201905, "eHIA": -9.201905, "eJw": -9.201905, "eJwk": -9.201905, "eK": -9.201905, "eKC": -9.201905, "eKJjwQWUkjnw": -9.201905, "eKegkf": -9.201905, "eKiID": -9.201905, "eKr": -9.201905, "eLW": -9.201905, "eM": -9.201905, "eNDux": -9.201905, "eNNF": -9.201905, "eONF": -9.201905, "eOS": -9.201905, "eOWV": -9.201905, "eOeshn": -9.201905, "eOnqHWmH": -9.201905, "eP": -8.103293, "eP/": -9.201905, "ePRujbktadP": -9.201905, "eQPmYCd": -9.201905, "eQeSyMu": -9.201905, "eQeidvB": -9.201905, "eSohjwqs": -9.201905, "eU": -9.201905, "eUc": -9.201905, "eVOL": -9.201905, "eWZjAAYc/RVfw": -9.201905, "eY": -9.201905, "eYA": -9.201905, "eYOcAp/IO": -9.201905, "eZgf": -9.201905, "ea": -9.201905, "eac": -9.201905, "eaxAM": -9.201905, "eca": -9.201905, "ecqxnkAYyfeoO": -9.201905, "ed": -9.201905, "edGGKWAusM": -9.201905, "edMKK": -9.201905, "edQc": -9.201905, "eddIM": -9.201905, "ee": -9.201905, "eeg": -9.201905, "eelwwV": -9.201905, "efRUs": -9.201905, "egsn/yx": -9.201905, "ei": -9.201905, "eiVFfJI/bDWH": -9.201905, "ej": -9.201905, "ejucsrG": -9.201905, "ekf": -9.201905, "ektua": -9.201905, "el": -9.201905, "elRgzy": -9.201905, "elements": -9.201905, "elq": -9.201905, "em": -8.508758, "emke": -9.201905, "en": -9.201905, "enXbQSR/": -9.201905, "ep/T": -9.201905, "epLFgnnLftMeptkfpC": -9.201905, "epPyBReR": -9.201905, "eq": -9.201905, "es": -9.201905, "esJLZGX/Mv/e": -9.201905, "eseekHz": -9.201905, "etPxywTs/ElQ": -9.201905, "ethaBO": -9.201905, "etxLod": -9.201905, "euT/WJ": -9.201905, "eusvV": -9.201905, "ev/OXLMMrvorZB": -9.201905, "evLpvl": -9.201905, "evVIepFEakfdQW": -9.201905, "ew": -9.201905, "ewlkB": -9.201905, "exGyW": -9.201905, "expr": -7.122463, "expr_": -7.122463, "exzQi": -9.201905, "ey": -9.201905, "eyD": -9.201905, "eyL": -9.201905, "eyegPkK": -9.201905, "eywrNyBvvZhU": -9.201905, "ez/": -9.201905, "ezPWg": -9.201905, "ezU": -9.201905, "f": -7.255995, "fCaZp": -9.201905, "fDncSU": -9.201905, "fNw": -9.201905, "fTamxrIgOvsBGqEWxnk": -9.201905, "fTcyTjqwidbEj": -9.201905, "fTj": -9.201905, "fX": -9.201905, "fXmD": -9.201905, "fXuYAtwccreD": -9.201905, "fXvrzZZ": -9.201905, "fYb": -9.201905, "fZMKscNDpQY": -9.201905, "fa": -9.201905, "far": -9.201905, "fbTT": -9.201905, "fbtizgiLDtoP": -9.201905, "fdf": -9.201905, "fdpl": -9.201905, "ff": -9.201905, "ffBgwJDK": -9.201905, "fgK": -9.201905, "fhnBrH": -9.201905, "fiI": -9.201905, "file": -8.508758, "fileHdr": -6.368692, "fileHeaderInfo": -8.508758, "file_String": -9.201905, "filename": -7.004680, "filename_String": -7.004680, "fkFvPjHFNfJ": -9.201905, "fqPglTGDxCRfDy": -9.201905, "from": -8.508758, "fsfUXnDjKIemH": -9.201905, "g": -6.899320, "g/n": -9.201905, "g/nu/E": -9.201905, "gEDbJBM": -9.201905, "gH": -9.201905, "gHP": -9.201905, "gHf": -9.201905, "gHk": -9.201905, "gKNZK/aqnoKLndd": -9.201905, "gKXoNgZHWili": -9.201905, "gLf/XO": -9.201905, "gMcOeG": -9.201905, "gNedFLFTxh": -9.201905, "gNfjrD": -9.201905, "gP": -9.201905, "gQb": -9.201905, "gR": -9.201905, "gRtl": -9.201905, "gS": -9.201905, "gSCA": -9.201905, "gTU": -9.201905, "gUtmR": -9.201905, "gW": -9.201905, "gWMt/HZLwA": -9.201905, "gXw": -9.201905, "gaXnWHl": -9.201905, "gb": -9.201905, "gbbR": -9.201905, "geDONdC": -9.201905, "geexT": -9.201905, "gf": -9.201905, "gfBCneYNNhvkxYCZTcFwxf": -9.201905, "gh": -9.201905, "ghz/Ek/Xu": -9.201905, "gisT/ZGjp": -9.201905, "gjSSplRCPsMRqqeCk": -9.201905, "gjyqvKXL": -9.201905, "gkXtVypPb": -9.201905, "gkcTdfPn": -9.201905, "gl": -9.201905, "gloJ": -9.201905, "gnXVjuRMbi/aOu": -9.201905, "grSkTtOPw": -9.201905, "grjIkmK": -9.201905, "gs/r": -9.201905, "gtXuylDAd/e": -9.201905, "gu": -9.201905, "guXbiJmuxInxE": -9.201905, "gv": -9.201905, "gvxkR": -9.201905, "gw": -9.201905, "gwZMfX": -9.201905, "gx": -8.103293, "gyLSseE": -9.201905, "gyfvNMs": -9.201905, "gzmV": -9.201905, "h": -6.899320, "h/": -9.201905, "h/w": -9.201905, "hAz": -9.201905, "hC": -9.201905, "hDx": -9.201905, "hF": -9.201905, "hFTAXO": -9.201905, "hH": -9.201905, "hHmY": -9.201905, "hHvlfOpcxPjvtVjtYwX": -9.201905, "hIG": -9.201905, "hJJ": -9.201905, "hJwu": -9.201905, "hLmV": -9.201905, "hPNLx": -9.201905, "hPpsNX": -9.201905, "hR": -8.508758, "hS": -9.201905, "hSJGFj": -9.201905, "hTML": -9.201905, "hTdlPvjXsU": -9.201905, "hTzxfjvbaQU": -9.201905, "hXIIPw": -9.201905, "hXObRi": -9.201905, "hXmSkkz": -9.201905, "hY": -8.508758, "hYuIi": -9.201905, "haVj": -9.201905, "hca": -9.201905, "hdr": -8.103293, "hdsqjuwo": -9.201905, "header": -5.646557, "hgLv": -9.201905, "hhPka": -9.201905, "hhzWcKvj": -9.201905, "hiYi": -9.201905, "hjdEUyfNi": -9.201905, "hjs": -9.201905, "hkv": -9.201905, "hlf/GKaITJ": -9.201905, "hmR": -9.201905, "hmij/E/nI": -9.201905, "hn": -8.103293, "ho": -8.508758, "hoVp": -9.201905, "hoWZ": -9.201905, "hoXdOT": -9.201905, "hobG": -9.201905, "hpmU": -9.201905, "hqAjjbrxdJLUkVyaA": -9.201905, "hrWrUvVrkeeuLP": -9.201905, "hrnmC": -9.201905, "htvU": -9.201905, "huzPm": -9.201905, "hvDPHOMCLuSrhVNmq": -9.201905, "hvE": -9.201905, "hvsqIfvvLrji": -9.201905, "hwW": -9.201905, "hxMcjKp": -9.201905, "i": -5.538343, "i/": -9.201905, "i/wROGVnDpQk": -9.201905, "i/whsSnwh": -9.201905, "iA": -9.201905, "iB/": -9.201905, "iBmzTQxy": -9.201905, "iCI": -9.201905, "iCm": -9.201905, "iE": -9.201905, "iE/z": -9.201905, "iFgHwRw": -9.201905, "iFlrtlx": -9.201905, "iHOSHWzy": -9.201905, "iHnW": -9.201905, "iIQeY": -9.201905, "iJxPw": -9.201905, "iL/": -9.201905, "iNJG/": -9.201905, "iNwzhOLh": -9.201905, "iORxuxSBrL/h": -9.201905, "iOYxGlk": -9.201905, "iPFJE": -9.201905, "iPS": -9.201905, "iPe": -9.201905, "iQ": -9.201905, "iQcsGwb": -9.201905, "iR": -9.201905, "iT": -8.508758, "iTk/": -9.201905, "iU": -9.201905, "iV": -9.201905, "iVEGg": -9.201905, "iWAuT": -9.201905, "iWfUG": -9.201905, "iXMnoavsvSEi": -9.201905, "iXkCzVptpL": -9.201905, "iY": -9.201905, "iZ": -9.201905, "iZXcsc": -9.201905, "iZYf": -9.201905, "icFvnWy": -9.201905, "icHVlgamoBdZ": -9.201905, "icR": -9.201905, "icn": -9.201905, "id": -8.103293, "idWE": -9.201905, "id_String": -8.103293, "if/gxfrSBefe": -9.201905, "ifl": -9.201905, "ihOi": -9.201905, "ihOxvk": -9.201905, "iiNPf/DJ": -9.201905, "iitM": -9.201905, "ijb": -9.201905, "ijuo": -9.201905, "ilucKmxYFFW": -9.201905, "im": -9.201905, "imageNumber": -8.103293, "imageNumber_Integer": -9.201905, "imjN": -9.201905, "importData": -7.255995, "importDataSize": -8.508758, "importHeader": -8.103293, "importImages": -7.815611, "importSLOImage": -8.508758, "importSegmentation": -7.815611, "inFz": -9.201905, "infy": -9.201905, "inkZ": -9.201905, "input": -6.110862, "input_": -6.716998, "ioBXbJwuzNlSmO": -9.201905, "ioMtdmodurWH": -9.201905, "ipc": -9.201905, "iqnCUWxUZhesv": -9.201905, "irEwjA": -9.201905, "is": -8.508758, "isHeyexRawFormat": -8.103293, "iv": -9.201905, "ivZP": -9.201905, "ivv": -9.201905, "iw": -9.201905, "iwT": -9.201905, "iyBOnhXmZ": -9.201905, "izu": -9.201905, "j": -5.983029, "jBtNcX": -9.201905, "jD": -9.201905, "jDPub": -9.201905, "jF": -9.201905, "jFPSDdjJp": -9.201905, "jH": -8.508758, "jHI": -9.201905, "jI": -9.201905, "jJ": -9.201905, "jKXSScHzQcA": -9.201905, "jKf": -9.201905, "jKxWppFzMitfnIPP": -9.201905, "jLU": -9.201905, "jM/": -9.201905, "jMB": -9.201905, "jMIFpxPMD": -9.201905, "jMSYyWC": -9.201905, "jNbGGRaPvtmKLwvi/JYas": -9.201905, "jNcoNdKfDIPYvFRnUUye": -9.201905, "jOFG": -9.201905, "jP": -9.201905, "jPh/MxpejXgeO": -9.201905, "jPoOf": -9.201905, "jQCPfF": -9.201905, "jQLFwrwcv/": -9.201905, "jQNjuuj/nUft": -9.201905, "jRHy": -9.201905, "jRSdueulBNsvbhQeLEujTx": -9.201905, "jRlm": -9.201905, "jSvM/RfJi": -9.201905, "jSwMD": -9.201905, "jUH": -9.201905, "jVPYY": -9.201905, "jX": -9.201905, "jXq": -9.201905, "jXst": -9.201905, "jY": -9.201905, "jZ": -9.201905, "jZUO//QjHlWPW": -9.201905, "jbDmpILu": -9.201905, "jd/H": -9.201905, "jdt/": -9.201905, "jeWkY": -9.201905, "jekd": -9.201905, "jfCBbl/or": -9.201905, "jfzodW/Ldj": -9.201905, "jh": -9.201905, "jhO": -9.201905, "jhycLPj/iRh": -9.201905, "ji": -9.201905, "jiID": -9.201905, "jl": -8.103293, "jlttxQ": -9.201905, "jmUImOplg": -9.201905, "joyZ": -9.201905, "jpIWY": -9.201905, "jpd": -9.201905, "jrreiGv": -9.201905, "juiJx": -9.201905, "jv": -9.201905, "jvCMXrHU": -9.201905, "jy": -9.201905, "jyC": -9.201905, "jyw/iKd": -9.201905, "jz": -9.201905, "jz/Ievsjl": -9.201905, "jzqW": -9.201905, "jzrz": -9.201905, "jzt": -9.201905, "jzwKkLlNkvjHCMhcWV": -9.201905, "k": -6.368692, "k/l": -9.201905, "kAz": -9.201905, "kBjlw/rhszaW": -9.201905, "kCLuFXeWkhxCAOU": -9.201905, "kDVZeO/sNuc": -9.201905, "kDmsbRSf": -9.201905, "kFEaR": -9.201905, "kFY": -9.201905, "kFeCK": -9.201905, "kHespPksnOG": -9.201905, "kI": -9.201905, "kISXXroxHzBJVEelowLNd": -9.201905, "kJffaH": -9.201905, "kM": -9.201905, "kMUNT": -9.201905, "kMhd/pCGeRkx": -9.201905, "kOdutLJB": -9.201905, "kP": -9.201905, "kPR": -9.201905, "kQYHvq": -9.201905, "kRUjhklDRsvv": -9.201905, "kSfqlvst": -9.201905, "kT": -9.201905, "kTsb": -9.201905, "kW": -9.201905, "kY": -9.201905, "kYXLgxhE": -9.201905, "kYfcOlmocvt": -9.201905, "kYs": -9.201905, "kYwSBCb": -9.201905, "kbPXD": -9.201905, "kbZ": -9.201905, "kbimB": -9.201905, "kcTu": -9.201905, "kd": -9.201905, "kdCxZ": -9.201905, "kdiC": -9.201905, "kdscSIM": -9.201905, "ke": -9.201905, "kgW": -9.201905, "khXdkWdqW": -9.201905, "kj": -9.201905, "kjiaXx": -9.201905, "kjxv/U": -9.201905, "kkH/r": -9.201905, "kkoDfOfS": -9.201905, "kkqOJi": -9.201905, "kl/": -9.201905, "kmFgzfL": -9.201905, "kmsXBW": -9.201905, "knet": -9.201905, "knfbqPn": -9.201905, "kooqIyRCQRV": -9.201905, "kp": -9.201905, "kq": -9.201905, "kqfPuSH": -9.201905, "kt": -9.201905, "ku": -8.508758, "kv": -8.508758, "kveajvCXdYF": -9.201905, "kwyHFpHbdYOPBW": -9.201905, "kx": -9.201905, "kyKNHMvtb": -9.201905, "kyOrZ": -9.201905, "kzHM": -9.201905, "kzvkxxzP": -9.201905, "l": -8.508758, "lCkFnxXyPuVI": -9.201905, "lhfpOWhY": -9.201905, "lrT": -9.201905, "lxrDzRd": -9.201905, "m": -6.257466, "m/b/rL": -9.201905, "m/ky": -9.201905, "mAV": -9.201905, "mBQ": -9.201905, "mBdfIMX": -9.201905, "mCO": -9.201905, "mDke": -9.201905, "mE": -9.201905, "mEH": -9.201905, "mF": -9.201905, "mITIS": -9.201905, "mJ": -9.201905, "mJ/fPxzIgzxstUThRResqSMxny": -9.201905, "mKhTZob": -9.201905, "mKv": -9.201905, "mLl/": -9.201905, "mO": -9.201905, "mOX": -9.201905, "mOeEatcmWC": -9.201905, "mPPcRtPAfjU": -9.201905, "mPXL": -9.201905, "mRac/": -9.201905, "mSo": -9.201905, "mTCHlSW//p": -9.201905, "mU": -8.508758, "mV": -9.201905, "mVZrv": -9.201905, "mVulNagEFUR": -9.201905, "mWaNS": -9.201905, "mWuu": -9.201905, "mZm": -9.201905, "mZtx": -9.201905, "maG": -9.201905, "mcQGaF": -9.201905, "mdTotA/e": -9.201905, "mdi": -9.201905, "meQxNNbtO/CupVPKIMDDDI": -9.201905, "mf": -8.103293, "mfly": -9.201905, "mgSUYEekldgzyIuKa": -9.201905, "mil": -9.201905, "miles": -9.201905, "miyLuhXo": -9.201905, "mjE": -9.201905, "mmchGP": -9.201905, "mn": -8.103293, "mp": -8.508758, "mpHf": -9.201905, "mpcks": -9.201905, "mqWA": -9.201905, "ms/C": -9.201905, "mt": -9.201905, "mtDz": -9.201905, "mte/uNYZ": -9.201905, "mv": -9.201905, "mveg": -9.201905, "mvr": -9.201905, "mvwuN": -9.201905, "myVajXMO": -9.201905, "myfQpeaDyVpIx": -9.201905, "n": -5.351757, "n/m": -9.201905, "nAV": -9.201905, "nBPj": -9.201905, "nBfw": -9.201905, "nBmRYhExfL": -9.201905, "nC": -9.201905, "nCe": -9.201905, "nCrn": -9.201905, "nCsJ": -9.201905, "nCtxXnPbt": -9.201905, "nE": -8.103293, "nFSkebHfUhztD": -9.201905, "nGOrpfr": -9.201905, "nHRsxM": -9.201905, "nHtrYy": -9.201905, "nIUV": -9.201905, "nIl": -9.201905, "nJbN": -9.201905, "nLB": -9.201905, "nLf": -9.201905, "nMQPOCDfCIqtPl": -9.201905, "nMlzC": -9.201905, "nN": -9.201905, "nN/oUPdfCn": -9.201905, "nNthRe/": -9.201905, "nOCM/lpJNDuQcCv": -9.201905, "nOxu": -9.201905, "nPeAdst": -9.201905, "nQ": -8.508758, "nQYMtvQxtP": -9.201905, "nRyYhvu": -9.201905, "nS": -9.201905, "nSHvOwh": -9.201905, "nSLunCbbzJnjZ": -9.201905, "nSfe": -9.201905, "nU": -9.201905, "nUF/nSvq": -9.201905, "nXp": -9.201905, "nY": -9.201905, "nZ": -9.201905, "n_": -6.899320, "n_Integer": -7.255995, "na": -9.201905, "nbxq": -9.201905, "nc": -9.201905, "ndO": -9.201905, "neBYiKdLj": -9.201905, "neRHOu": -9.201905, "nekJOzidY": -9.201905, "neuL": -9.201905, "nfBdL": -9.201905, "nfxfCN/Z": -9.201905, "ng": -9.201905, "nhbBVc": -9.201905, "ni": -9.201905, "niL": -9.201905, "njkLc/cyqMa": -9.201905, "njkij": -9.201905, "njyTS": -9.201905, "nkVENkgXFvxC": -9.201905, "nl": -9.201905, "nnJrxtP": -9.201905, "nnp": -9.201905, "noGJ": -9.201905, "npDYpMwgNZWev": -9.201905, "nqUAmMQ": -9.201905, "nrg": -9.201905, "nrgFOMucy": -9.201905, "nu": -9.201905, "num": -7.815611, "numVecs": -7.410145, "num_Integer": -8.508758, "nuopN": -9.201905, "nuxmhfb": -9.201905, "nv": -9.201905, "nvA": -9.201905, "nx": -6.899320, "nygilmbmvQl": -9.201905, "nyic": -9.201905, "nz": -9.201905, "nzhVwiAF": -9.201905, "nzqbxtHPULeWiZZcdP": -9.201905, "nzwNL": -9.201905, "o": -7.122463, "o/CGhOmDGhRF": -9.201905, "oCtWINBVOba/y": -9.201905, "oE": -9.201905, "oF": -8.508758, "oG": -8.508758, "oGHLXO": -9.201905, "oHqk": -9.201905, "oI/KAlYadggg": -9.201905, "oKzDF/afkL": -9.201905, "oLmxtFMevxy": -9.201905, "oNz": -9.201905, "oOG": -9.201905, "oORH": -9.201905, "oOiIDW": -9.201905, "oP": -8.103293, "oR/Qt": -9.201905, "oRvg": -9.201905, "oT": -9.201905, "oTjpmzsi/rpxHVz": -9.201905, "oULxOHzDLy": -9.201905, "oUvhf": -9.201905, "oXan/NsMazrYLu": -9.201905, "oZNKdbOV": -9.201905, "oZvzwWcsgby": -9.201905, "oZwwz": -9.201905, "obnh": -9.201905, "oc": -9.201905, "ocQW/DwsbVXmFKz": -9.201905, "ocj": -9.201905, "of": -9.201905, "ofXffhAEdU": -9.201905, "ofn/PK": -9.201905, "oh": -9.201905, "oiM": -9.201905, "oiPkBT/J": -9.201905, "oiSIP": -9.201905, "okk": -9.201905, "ol": -9.201905, "onHd": -9.201905, "ooj": -9.201905, "oop": -9.201905, "ootcz": -9.201905, "opGHB": -9.201905, "opUqY": -9.201905, "opts": -9.201905, "oqIUbqn": -9.201905, "or": -8.508758, "orfDT": -9.201905, "orqrtXIL": -9.201905, "orw": -9.201905, "osD": -9.201905, "ov": -8.508758, "ovC": -9.201905, "ovwGsH": -9.201905, "owayhPDXV": -9.201905, "owjUH": -9.201905, "ox": -9.201905, "oxCxoyXyGWz": -9.201905, "oyeZOZ": -9.201905, "oznY": -9.201905, "p": -6.110862, "p/": -8.508758, "p/vDKZKSqZO": -9.201905, "p/w": -9.201905, "pBhmI": -9.201905, "pBuEQ": -9.201905, "pFPdbVFB": -9.201905, "pG": -8.508758, "pGbwAO": -9.201905, "pGyUfhf": -9.201905, "pH": -9.201905, "pHSyDS": -9.201905, "pHdEj": -9.201905, "pJWbNw": -9.201905, "pJub": -9.201905, "pK": -9.201905, "pLoi": -9.201905, "pMWdK": -9.201905, "pNkUCCeVb": -9.201905, "pOF": -9.201905, "pPPbh": -9.201905, "pPoj": -9.201905, "pQU": -9.201905, "pTq": -9.201905, "pUwYpLJLtDIfZ": -9.201905, "pW": -9.201905, "pWy": -9.201905, "pXgOwplh": -9.201905, "pYLPD": -9.201905, "pYiJWsu": -9.201905, "pbGvLeAGTn": -9.201905, "perpvzI": -9.201905, "pfhvM": -9.201905, "pgqsvlRVfDaSI": -9.201905, "ph": -8.508758, "phi": -7.592467, "phvn": -9.201905, "pjRNPtH": -9.201905, "pkPOCuVbdXJYqh": -9.201905, "plWpPAlnfj": -9.201905, "pn": -9.201905, "pnbc": -9.201905, "pnxs": -9.201905, "pod": -8.103293, "position": -8.103293, "pqt": -9.201905, "psUn": -9.201905, "pt": -9.201905, "ptBpuQh": -9.201905, "pv": -9.201905, "pvGRfwFOn/owPsDNIrGDU": -9.201905, "pvOaNb": -9.201905, "pyAu": -9.201905, "q": -6.110862, "q/": -9.201905, "q/DPrAf": -9.201905, "qBfOpjPu": -9.201905, "qBvBp": -9.201905, "qC": -9.201905, "qCOZ": -9.201905, "qCZ": -9.201905, "qDULpgMZySN": -9.201905, "qGZ": -9.201905, "qIOHwx": -9.201905, "qJmD": -9.201905, "qJvzC/LwpQ/UzTmc/x": -9.201905, "qKUP": -9.201905, "qLeOyJpnfPxY": -9.201905, "qLv": -9.201905, "qNhsH": -9.201905, "qOfP": -9.201905, "qOnhS": -9.201905, "qR": -9.201905, "qREN": -9.201905, "qT": -9.201905, "qUIR/FV": -9.201905, "qUJH": -9.201905, "qVgimi/HHHRYFx": -9.201905, "qX": -9.201905, "qY": -9.201905, "qYP": -9.201905, "qcOP": -9.201905, "qdm": -9.201905, "qfq": -9.201905, "qfw": -9.201905, "qicYL": -9.201905, "qijb": -9.201905, "qj": -9.201905, "qjvAkU": -9.201905, "qkUc": -9.201905, "qlERHtNaKsAOXy": -9.201905, "qlVH": -9.201905, "qmZ/": -9.201905, "qn": -9.201905, "qoRRCQf": -9.201905, "qpFMmbun": -9.201905, "qpeGM/rbsznxGbCrLrveuCv": -9.201905, "qrLv": -9.201905, "qs/pb": -9.201905, "qtD/": -9.201905, "qtVTCuyWS": -9.201905, "qw": -9.201905, "qxJ": -9.201905, "qy": -9.201905, "qyW": -9.201905, "qz": -9.201905, "r": -6.368692, "rAz": -9.201905, "rBa/Sp": -9.201905, "rC": -9.201905, "rCOe": -9.201905, "rCb": -9.201905, "rCnjrKo": -9.201905, "rD": -9.201905, "rE": -9.201905, "rEgmH": -9.201905, "rFfZQHzrd": -9.201905, "rFn/KzN/rrxzS": -9.201905, "rGOTpVrkbD": -9.201905, "rGVfUXmK/Pl": -9.201905, "rGwGM": -9.201905, "rJPES": -9.201905, "rM": -9.201905, "rP": -9.201905, "rPGGBSOHlMJxv": -9.201905, "rRb": -9.201905, "rRr/PcP": -9.201905, "rSAlKz": -9.201905, "rTyvzg": -9.201905, "rUUjBo": -9.201905, "rUcfDHwmeMT": -9.201905, "rUf": -9.201905, "rVEc": -9.201905, "rWBz": -9.201905, "rWHFZMtRMYyviVnY": -9.201905, "rXwp": -9.201905, "rYCFfw": -9.201905, "rYuN": -9.201905, "r___": -9.201905, "rbZYcZX": -9.201905, "rd": -9.201905, "re": -9.201905, "read": -6.899320, "readBScanData": -9.201905, "readBScanHeader": -8.508758, "readFileHeader": -7.122463, "readSLOImage": -8.508758, "rf": -9.201905, "rg": -9.201905, "rgT": -9.201905, "rgoH": -9.201905, "rgu": -9.201905, "rhMW": -9.201905, "rhawmm": -9.201905, "rj": -9.201905, "rjt": -9.201905, "rlKEWOFWnGccE": -9.201905, "rlLLL": -9.201905, "rlb": -9.201905, "rm": -9.201905, "rn": -8.508758, "rnR": -9.201905, "rnmlTJstGZnTD": -9.201905, "rpR": -9.201905, "rqRCn": -9.201905, "rqpyS": -9.201905, "rrCLhaEudGzno": -9.201905, "ruZmGp": -9.201905, "rvfCFp": -9.201905, "rwJrhwz": -9.201905, "rwd": -9.201905, "rwjlnLAQd": -9.201905, "rx": -9.201905, "ry": -9.201905, "s": -6.311533, "s/XGCfheQXlNIZ": -9.201905, "s/aNcLPetdVmschH/Dfzm": -9.201905, "s/mNt": -9.201905, "s/uBs": -9.201905, "sAjuS": -9.201905, "sAonbSWFNeG": -9.201905, "sAxOrz": -9.201905, "sBy": -9.201905, "sD": -9.201905, "sDRuhNzfOvpZFLCV/UdHEcbnS": -9.201905, "sDegnW": -9.201905, "sE": -9.201905, "sEsuDX": -9.201905, "sFNOgyDffeTbr": -9.201905, "sG": -9.201905, "sGeBfC": -9.201905, "sHH": -9.201905, "sHf": -9.201905, "sHq": -9.201905, "sI": -9.201905, "sJjb": -9.201905, "sKg": -9.201905, "sLTzxQx/CcTnA": -9.201905, "sMG": -9.201905, "sML": -9.201905, "sNDeEzzoG": -9.201905, "sNGSOPc": -9.201905, "sNLfW": -9.201905, "sNRbbDrf": -9.201905, "sNmA": -9.201905, "sP": -8.508758, "sQHM": -9.201905, "sQRGon": -9.201905, "sR": -9.201905, "sRROnO": -9.201905, "sS": -8.508758, "sU": -9.201905, "sUKRgwG": -9.201905, "sUt": -9.201905, "sYNl": -9.201905, "sZ": -9.201905, "sZTTSLo/": -9.201905, "saM/H": -9.201905, "sbJMPV": -9.201905, "sc": -9.201905, "sf": -9.201905, "sfutbLrHPzwmOFY": -9.201905, "shtNDVl": -9.201905, "si": -9.201905, "siTW": -9.201905, "siwz": -9.201905, "sj": -9.201905, "sjTOr": -9.201905, "skTcV": -9.201905, "skipBScanBlocks": -8.103293, "skipBScanData": -8.508758, "skipBScanHeader": -8.103293, "skipSLOImage": -7.592467, "slo": -8.103293, "smB": -9.201905, "smUef": -9.201905, "smePG": -9.201905, "smrRGZVFcIHze": -9.201905, "so": -9.201905, "soVJ": -9.201905, "sodX/i": -9.201905, "sp": -9.201905, "spnP/mKO": -9.201905, "sqfrPGeY": -9.201905, "ss": -9.201905, "ssfxlAPturLPuvovn": -9.201905, "ssh": -9.201905, "str": -5.250661, "str_": -7.815611, "str_InputStream": -7.122463, "swR": -9.201905, "sx": -8.508758, "sxiOnOvYzLcISUwxFZ": -9.201905, "syNwQ": -9.201905, "syg": -9.201905, "szCdTo": -9.201905, "szcfb": -9.201905, "t": -5.943808, "t/bqGR": -9.201905, "tAffX": -9.201905, "tB/J/fDmxIzzcsjfEX": -9.201905, "tBVs": -9.201905, "tCg": -9.201905, "tFFLt": -9.201905, "tFG": -9.201905, "tFIscAfywbYZ": -9.201905, "tFkj": -9.201905, "tFnDbHwUXZx": -9.201905, "tG": -9.201905, "tHNCmEWX": -9.201905, "tHfqKFOm": -9.201905, "tI": -9.201905, "tIZVF": -9.201905, "tJ": -9.201905, "tJEV": -9.201905, "tK": -8.508758, "tKGwgJM": -9.201905, "tKqy": -9.201905, "tLcZ": -9.201905, "tM": -8.508758, "tMj": -9.201905, "tNeVUoB/nBrC/vhcxQR": -9.201905, "tQ": -9.201905, "tQrcNnWFYY": -9.201905, "tTEsYf": -9.201905, "tU/Zn": -9.201905, "tUedKKrIZ": -9.201905, "tVtbI": -9.201905, "tX": -9.201905, "tXm": -9.201905, "tYYEBOFb": -9.201905, "tZSJHV": -9.201905, "ta": -9.201905, "tc/R": -9.201905, "tcB": -9.201905, "tcIqWTt": -9.201905, "td": -9.201905, "te": -9.201905, "teuKJtZfTRQwzyb": -9.201905, "teycCL": -9.201905, "tfC": -9.201905, "tfwgv": -9.201905, "tg": -9.201905, "tgZ": -9.201905, "th": -9.201905, "the": -8.508758, "thfD": -9.201905, "tinrQm/tzEz": -9.201905, "tjDI": -9.201905, "tk": -9.201905, "tkBwCNa/Qu": -9.201905, "tkYg": -9.201905, "tlXuw": -9.201905, "tlnDMH": -9.201905, "tm": -9.201905, "tm/": -9.201905, "tn": -9.201905, "toIq": -9.201905, "tpcYc": -9.201905, "tqRQcZh": -9.201905, "tr": -9.201905, "trPRZtoJJUqu": -9.201905, "trZoJh": -9.201905, "trfe/jnM": -9.201905, "truaIy": -9.201905, "tsriDyrHu": -9.201905, "tsvdnkbcORdUveAdjGiOWSsasR": -9.201905, "ttI": -9.201905, "ttQ": -9.201905, "tumpy": -9.201905, "type": -8.103293, "type_String": -8.103293, "u": -8.103293, "uCwvuEhGfP": -9.201905, "uFfmwn": -9.201905, "uJYREESJpKON": -9.201905, "uNV": -9.201905, "uRc": -9.201905, "uVWlEfbItBQJ": -9.201905, "uWbGWL": -9.201905, "uZ": -9.201905, "ucg": -9.201905, "uf": -9.201905, "ug": -9.201905, "umkQelmnjV": -9.201905, "uqpvTUE": -9.201905, "usage": -5.395242, "uwTnf": -9.201905, "ux": -9.201905, "v": -5.906068, "v/": -9.201905, "vC": -9.201905, "vCkzPuM": -9.201905, "vDY": -9.201905, "vDzOfHHou": -9.201905, "vErElf": -9.201905, "vH": -9.201905, "vHXNt": -9.201905, "vIO/WQ": -9.201905, "vJzqJKC/": -9.201905, "vMD": -9.201905, "vMW": -9.201905, "vO/iuPhp": -9.201905, "vOC": -9.201905, "vONDCIXkz": -9.201905, "vP": -9.201905, "vPIO/zBw/Hm": -9.201905, "vPRVhSZtf": -9.201905, "vPUyCwYDmd": -9.201905, "vRv": -9.201905, "vSHVZ": -9.201905, "vU": -9.201905, "vV": -9.201905, "vVn": -9.201905, "vW": -9.201905, "vWNzXDi": -9.201905, "vWZvN": -9.201905, "vWwaubBJOvkorMZuZfsKeXdDorpYONxww": -9.201905, "vY": -9.201905, "vYMIgmSezJa/CKUah": -9.201905, "vYcuYdQ": -9.201905, "va": -9.201905, "values": -8.508758, "vanhdZkP": -9.201905, "vaoyOw": -9.201905, "vb": -9.201905, "vbvoRvnndX": -9.201905, "vbzazHSTxrI": -9.201905, "vc/hG/cRf": -9.201905, "vcubpRT": -9.201905, "vdGsFTRYOqz": -9.201905, "vdcd": -9.201905, "vdv": -9.201905, "ve": -9.201905, "veKwasb": -9.201905, "vec": -8.508758, "vecNames": -7.410145, "vec_": -8.508758, "vehLyR": -9.201905, "version": -9.201905, "version_String": -9.201905, "vfJY": -9.201905, "vfPbyEemwMopo": -9.201905, "vfTkduw/rI": -9.201905, "vg": -9.201905, "vgNf": -9.201905, "vgvyxSH": -9.201905, "vhM": -9.201905, "vhkFaxw": -9.201905, "vhkVOL": -9.201905, "vhs": -9.201905, "vhv": -9.201905, "vil": -9.201905, "vjuGIkZn": -9.201905, "vk": -9.201905, "vkY": -9.201905, "vketQnMX": -9.201905, "vkrvJofhi/cqdrIgf": -9.201905, "vm": -9.201905, "vmspHfDUgpGmSD": -9.201905, "vmtMT": -9.201905, "vmvsFqh": -9.201905, "vnAWa": -9.201905, "vniFnx": -9.201905, "vol": -9.201905, "vpehY/": -9.201905, "vqTtB": -9.201905, "vs": -9.201905, "vsBI": -9.201905, "vsJ": -9.201905, "vsjSlk": -9.201905, "vsv": -9.201905, "vsz": -9.201905, "vtr": -9.201905, "vu": -9.201905, "vv": -9.201905, "vwf": -9.201905, "vwmirRvMz": -9.201905, "vwuSs": -9.201905, "vxBJwfw": -9.201905, "vxUUjgv": -9.201905, "vxobphH": -9.201905, "vy": -9.201905, "vyIx": -9.201905, "vyJvZS": -9.201905, "vzMDyk": -9.201905, "vzmV": -9.201905, "w": -5.906068, "w//glnN": -9.201905, "w/bKr": -9.201905, "w/dBH": -9.201905, "wAf": -9.201905, "wB": -9.201905, "wD": -9.201905, "wF/qc": -9.201905, "wFLl": -9.201905, "wG": -9.201905, "wGdrPD": -9.201905, "wH": -9.201905, "wHN": -9.201905, "wHz": -9.201905, "wIB": -9.201905, "wII": -9.201905, "wJdVXdq": -9.201905, "wL": -8.508758, "wN": -9.201905, "wNVRdlEb": -9.201905, "wOvrKET": -9.201905, "wQL": -9.201905, "wRX": -9.201905, "wRbhWRgn": -9.201905, "wSHbR": -9.201905, "wSvf/": -9.201905, "wT": -8.103293, "wTHd": -9.201905, "wTr/zotssvgy": -9.201905, "wUY": -9.201905, "wXwot": -9.201905, "wYxJu": -9.201905, "wbuzOFjkJ": -9.201905, "wc": -9.201905, "wcN": -9.201905, "wdhy": -9.201905, "wfCZYJ": -9.201905, "wfubTyiAtc": -9.201905, "wgcfTOe": -9.201905, "whzH": -9.201905, "wiER": -9.201905, "wjXW": -9.201905, "wjuedN": -9.201905, "wmU": -9.201905, "wmdu": -9.201905, "woG": -9.201905, "woPx": -9.201905, "wonaKTXUv": -9.201905, "wp/xq": -9.201905, "wpOdDXPTAUCeDRGhNRZ": -9.201905, "wpg": -9.201905, "wpkgpW": -9.201905, "wpserGJZM": -9.201905, "wr": -8.103293, "wrongHdr": -8.508758, "ws": -9.201905, "wslzHrs": -9.201905, "wtD": -9.201905, "wtdQxOakKH": -9.201905, "wtzP": -9.201905, "wuN": -9.201905, "wv": -8.508758, "wvLuo": -9.201905, "wvizpGYtquikOTTktwIsn": -9.201905, "wvx": -9.201905, "wvzvhDl": -9.201905, "ww": -9.201905, "wwciBVAnnvGZXDNoPn": -9.201905, "wxiS/": -9.201905, "wySPO": -9.201905, "wyaA/sqwK": -9.201905, "wzc": -9.201905, "x": -6.257466, "xBtwH": -9.201905, "xCKBN": -9.201905, "xDUf": -9.201905, "xDtczJrBrIdxhZ/O": -9.201905, "xDzI": -9.201905, "xGDrwp": -9.201905, "xGHYY": -9.201905, "xH": -9.201905, "xHMu/qrPWCA/prfeq": -9.201905, "xI": -9.201905, "xJ": -9.201905, "xJnv": -9.201905, "xL": -9.201905, "xLXht": -9.201905, "xN": -9.201905, "xNZk": -9.201905, "xNbbgs": -9.201905, "xQZbfZTsHYPlz": -9.201905, "xQp": -9.201905, "xSc": -9.201905, "xT": -9.201905, "xTDLyZpa": -9.201905, "xTh": -9.201905, "xTuKltxxDy": -9.201905, "xUySKzjn": -9.201905, "xVDxkYhvXS": -9.201905, "xVbsGglxr/": -9.201905, "xWj": -9.201905, "xXYRO": -9.201905, "xY": -8.508758, "xYr": -9.201905, "xZx": -9.201905, "xb": -9.201905, "xbDO/VzvR/l": -9.201905, "xc": -9.201905, "xcc/iRz/YEfPB": -9.201905, "xcsXuTDP/c": -9.201905, "xf": -8.508758, "xfRiO": -9.201905, "xfo": -9.201905, "xfz": -9.201905, "xhVjOL/jj": -9.201905, "xi": -9.201905, "xi/uUNE": -9.201905, "xidCXxDPKS": -9.201905, "xjv": -9.201905, "xk": -9.201905, "xmuzSXsN/Jtt": -9.201905, "xnlJWKZ": -9.201905, "xp": -8.508758, "xpee": -9.201905, "xpwHrekyizsfezKKm": -9.201905, "xpz": -9.201905, "xqWe": -9.201905, "xr": -8.508758, "xrJqXFGWH": -9.201905, "xtv": -9.201905, "xu": -9.201905, "xudnLs": -9.201905, "xurPxbD": -9.201905, "xw/AKx": -9.201905, "xwsB": -9.201905, "xxu": -9.201905, "xy": -9.201905, "xyUwGHKiXsM": -9.201905, "xzoxBLHvsj": -9.201905, "xzs": -9.201905, "y": -6.257466, "yA": -8.508758, "yC": -9.201905, "yCoI": -9.201905, "yD/hPM": -9.201905, "yDKcx": -9.201905, "yE": -9.201905, "yF/O": -9.201905, "yHUyD": -9.201905, "yJC": -9.201905, "yJjvz": -9.201905, "yKXI": -9.201905, "yKY": -9.201905, "yMIZzzX": -9.201905, "yMXucNMGcz": -9.201905, "yNMLPOU": -9.201905, "yNd": -9.201905, "yNp": -9.201905, "yNsKDSzdDbB": -9.201905, "yNzfbpbO/tlKSL": -9.201905, "yOUk": -9.201905, "yOYPkFX": -9.201905, "ySxu": -9.201905, "yTk": -9.201905, "yUYxeHGoQ": -9.201905, "yWCPOjjnLof/uuZ": -9.201905, "yXt": -9.201905, "yYKGCfRidm": -9.201905, "ybHcz": -9.201905, "ybOyupqMUlF": -9.201905, "ybvifYAGuf": -9.201905, "yc/gB": -9.201905, "yeNc": -9.201905, "yetHP": -9.201905, "yf": -8.508758, "yhU": -9.201905, "yiQGWen": -9.201905, "yjIhMDdBI": -9.201905, "yju": -9.201905, "yjy": -9.201905, "ylfbAd": -9.201905, "ymbU": -9.201905, "ymdFLRu": -9.201905, "ymi": -9.201905, "yn": -8.508758, "yp": -9.201905, "ypzivt": -9.201905, "yr": -8.508758, "ytYu": -9.201905, "ytestsX": -9.201905, "yuVHqetx": -9.201905, "yuWyy": -9.201905, "yufayTI": -9.201905, "yvG": -9.201905, "yvUtV": -9.201905, "yvVuo": -9.201905, "yy": -9.201905, "yyGoH": -9.201905, "yyNnH": -9.201905, "yzhOPPWi": -9.201905, "z": -5.800708, "z/UwZW/GRTrS": -9.201905, "zA": -9.201905, "zCcLilwOGFVH/qyuVykTg": -9.201905, "zCj": -9.201905, "zDZ": -9.201905, "zDvZe": -9.201905, "zEiCKJEvvn": -9.201905, "zEuT": -9.201905, "zFUzDkcHmT": -9.201905, "zHYremU": -9.201905, "zHrZnb": -9.201905, "zHv": -9.201905, "zI/kXyxZkIWfy": -9.201905, "zJkfl": -9.201905, "zJx/DVmXfR": -9.201905, "zKCK": -9.201905, "zKdlOaZf": -9.201905, "zMCKETu": -9.201905, "zMm": -9.201905, "zNHJz": -9.201905, "zOdPDBp": -9.201905, "zPDdJK": -9.201905, "zPq": -9.201905, "zQOcI/FKmk": -9.201905, "zREXibjbLG": -9.201905, "zRj": -9.201905, "zSReBLRyZ": -9.201905, "zSgj": -9.201905, "zT": -9.201905, "zTiFJCgUwfrP": -9.201905, "zTyqee": -9.201905, "zUL": -9.201905, "zUWyZsOmnfE": -9.201905, "zW": -9.201905, "zWdan": -9.201905, "zWuZSM/PX": -9.201905, "zX": -9.201905, "zXpIj": -9.201905, "zYM": -9.201905, "za": -9.201905, "zaGw": -9.201905, "zbbMUQ": -9.201905, "zcPH": -9.201905, "zcX": -9.201905, "zcmNx": -9.201905, "zcxMF/": -9.201905, "zd": -9.201905, "zeaxZpLhXm": -9.201905, "zgDRx": -9.201905, "zgjqi": -9.201905, "zgsvREmHaFX": -9.201905, "zhAWRP": -9.201905, "zhFkk": -9.201905, "ziypE": -9.201905, "zjVdfN": -9.201905, "zkFeWWt": -9.201905, "zl": -9.201905, "zlwf": -9.201905, "znXUWoM": -9.201905, "zo": -9.201905, "zpfzTdBImZMTR": -9.201905, "zqYQP": -9.201905, "zsKvtrX": -9.201905, "zskIqRRRZJZIFCmRURpW": -9.201905, "ztxiwPgjl": -9.201905, "zu": -9.201905, "zudnpgXrypjsf": -9.201905, "zuftz": -9.201905, "zul": -9.201905, "zuxgknI/P": -9.201905, "zv/LBTCuXIA": -9.201905, "zvSuSdho": -9.201905, "zvVI": -9.201905, "zvbOwZpKC": -9.201905, "zvkYpSTbJZyv": -9.201905, "zx": -9.201905, "zy": -9.201905, "zyBoddEfLRA": -9.201905, "zyXwq": -9.201905, "zzItLctQrnLX": -9.201905, "zzWeChGq": -9.201905, "zzd": -9.201905, "{": -3.411945, "||": -7.122463, "}": -3.443003, "~": -8.508758, }, "Matlab": map[string]float64{ "%": -3.289450, "&": -8.070672, "&&": -7.259741, "'": -7.377525, "(": -2.364392, ")": -2.365224, "*": -5.585765, "*E": -8.763819, "*E_L": -9.456966, "*Omega": -7.847528, "*Potential": -7.847528, "*T": -8.763819, "*ds": -8.070672, "*ds_vx": -8.763819, "*ds_x": -8.763819, "*e_": -8.358354, "*grid_width/": -8.070672, "*h/": -8.763819, "*k": -8.763819, "*log": -9.456966, "*mu": -7.665207, "*n": -8.763819, "*vx_": -9.456966, "+": -4.559126, ",": -1.835281, "-": -3.919632, ".": -6.566594, ".*": -8.763819, "...": -4.636684, "./": -9.456966, ".Medium.openLoops.Phi.den": -9.456966, ".Medium.openLoops.Phi.num": -9.456966, ".file": -9.456966, ".fit.par": -9.456966, ".handlingMetric.den": -8.763819, ".handlingMetric.num": -8.763819, ".png": -9.456966, ".vaf": -9.456966, "/": -5.565146, "/abs": -8.358354, "/length": -9.456966, ":": -4.459754, ";": -2.759932, "<": -7.154381, "<tol>": -9.456966, "=": -2.678181, ">": -7.059071, "@": -9.456966, "@RKF": -9.456966, "@cr": -9.456966, "@cross_y": -9.456966, "@dg": -9.456966, "@f": -7.665207, "@fH": -9.456966, "@f_ell": -9.456966, "@f_reg": -9.456966, "@getState": -9.456966, "@iirFilter": -9.456966, "A": -7.154381, "AbsTol": -8.763819, "B": -7.259741, "C": -6.892017, "C/": -9.456966, "CURRENT_DIRECTORY": -8.763819, "C_L": -8.358354, "C_star": -9.456966, "Call": -8.763819, "Color": -8.763819, "Compute_FILE_gpu": -9.456966, "D": -7.511056, "Double": -9.456966, "E": -7.511056, "E_": -8.070672, "E_L": -8.070672, "E_T": -7.377525, "E_cin": -8.070672, "Earth": -8.763819, "EastOutside": -9.456966, "Edgecolor": -8.763819, "Energy": -8.763819, "FTLE": -8.070672, "Facecolor": -9.456966, "Fontsize": -9.456966, "G": -9.456966, "Hands": -9.456966, "Hill": -9.456966, "In": -9.456966, "InputName": -9.456966, "Integrate": -8.358354, "Integrate_FILE": -9.456966, "Integrate_FTLE_Gawlick_ell": -9.456966, "It": -8.763819, "K": -8.070672, "Kutta": -9.456966, "Lagr": -7.665207, "Linestyle": -8.763819, "Linewidth": -9.456966, "Moon": -8.763819, "N": -7.259741, "Omega": -7.511056, "OutputName": -9.456966, "Potential": -9.456966, "R": -9.456966, "RK": -8.070672, "RelTol": -8.763819, "Runge": -9.456966, "S": -7.847528, "StateName": -9.456966, "T": -6.365924, "The": -9.456966, "VAF": -9.456966, "VX_T": -8.070672, "VY_T": -8.358354, "X": -7.665207, "X_T": -8.070672, "Y": -6.461234, "Y_": -8.070672, "Y_T": -8.070672, "Yc": -7.847528, "Yp": -8.763819, "Ys": -9.456966, "Ys.den": -9.456966, "Ys.num": -9.456966, "[": -3.851164, "\\": -7.377525, "]": -3.854847, "^": -6.022979, "_": -9.456966, "_FILE_gpu": -9.456966, "_max": -6.566594, "_min": -6.566594, "_n": -9.456966, "_par": -9.456966, "a": -7.059071, "abs": -7.259741, "adapting_structural_model": -8.763819, "advected_x": -6.972059, "advected_y": -6.972059, "all": -6.748916, "allGains": -8.070672, "allSpeeds": -8.070672, "analytic": -8.358354, "analytic.A": -8.358354, "analytic.B": -9.456966, "analytic.C": -9.456966, "analytic.D": -9.456966, "and": -9.456966, "annotation": -7.511056, "approach": -9.456966, "are": -9.456966, "arg": -8.358354, "args": -9.456966, "args.detrend": -9.456966, "args.directory": -9.456966, "args.sampleTime": -9.456966, "arguments": -7.511056, "arrayfun": -8.763819, "aux": -8.763819, "aux.b": -8.358354, "aux.m": -8.358354, "aux.pars": -8.358354, "aux.plantFirst": -8.763819, "aux.plantSecond": -8.763819, "aux.timeDelay": -8.763819, "average": -9.456966, "ax": -6.748916, "axes": -7.665207, "axis": -7.847528, "b": -7.259741, "be": -9.456966, "because": -8.763819, "bicycle": -7.511056, "bicycle.InputName": -8.763819, "bicycle.OutputName": -8.070672, "bicycle.StateName": -8.763819, "bicycle_state_space": -9.456966, "bikeData.": -8.763819, "bikeData.modelPar.": -9.456966, "bikes": -5.960458, "black": -9.456966, "blue": -9.456966, "bode": -7.847528, "bodeoptions": -9.456966, "bodeplot": -9.456966, "bops": -8.763819, "bops.FreqUnits": -9.456966, "bottomRow": -9.456966, "box": -7.847528, "bp_jac": -9.456966, "c": -6.892017, "calc_cost": -9.456966, "calc_error": -8.763819, "calcolare": -9.456966, "change": -9.456966, "chil": -8.763819, "choose_plant": -8.070672, "ci": -7.259741, "classdef": -9.456966, "clc": -9.456966, "clear": -6.892017, "close": -8.070672, "closeLeg": -9.456966, "col": -8.070672, "colorbar": -9.456966, "colors": -7.847528, "columns": -8.070672, "compare": -8.358354, "compute": -9.456966, "computed": -9.456966, "contents": -9.456966, "contents.colheaders": -9.456966, "contents.data": -8.763819, "contourf": -8.763819, "convert_variable": -9.456966, "coordinates": -7.665207, "cover": -9.456966, "create_ieee_paper_plots": -8.763819, "cross_validation": -9.456966, "crossvalind": -9.456966, "curPos": -8.070672, "currentGuess": -8.763819, "cyan": -9.456966, "d": -7.059071, "d./": -9.456966, "d_mean": -8.358354, "d_std": -8.358354, "data": -6.321472, "data.": -7.154381, "data.Browser": -8.763819, "data.Ts": -7.665207, "data.bicycle.inputs": -9.456966, "data.bicycle.outputs": -9.456966, "data.bicycle.states": -9.456966, "data.forceTF.PhiDot.den": -9.456966, "data.forceTF.PhiDot.num": -9.456966, "data.modelPar.A": -9.456966, "data.modelPar.B": -9.456966, "data.modelPar.C": -9.456966, "data.modelPar.D": -9.456966, "data.system.A": -9.456966, "data.system.B": -9.456966, "data.system.C": -9.456966, "data.system.D": -9.456966, "data/": -9.456966, "dataAdapting": -8.358354, "dataPlantOne": -8.358354, "dataPlantTwo": -8.358354, "dbstack": -9.456966, "de": -8.070672, "defaultNames": -8.763819, "defaultSettings": -8.358354, "defaultSettings.": -9.456966, "defaultSettings.inputs": -9.456966, "defaultSettings.outputs": -9.456966, "defaultSettings.states": -9.456966, "delta_E": -7.847528, "delta_e": -8.763819, "den": -7.059071, "depends": -8.763819, "derivative": -9.456966, "detrend": -9.456966, "dim": -8.763819, "direction": -8.763819, "directory": -8.763819, "disp": -7.377525, "display": -7.259741, "distance": -7.847528, "double": -9.456966, "downSlope": -8.358354, "dphi": -7.665207, "dphi*dphi": -9.456966, "ds": -9.456966, "ds_vx": -9.456966, "ds_x": -9.456966, "dvx": -8.358354, "dx": -7.665207, "dy": -7.847528, "e": -9.456966, "eVals": -7.847528, "e_": -7.665207, "e_T": -7.665207, "ecc": -8.763819, "ecc*cos": -9.456966, "eig": -7.847528, "eigenValues": -9.456966, "else": -6.684377, "elseif": -7.059071, "end": -4.559126, "endOfSlope": -9.456966, "energy_tol": -7.847528, "enumeration": -9.456966, "equal": -8.763819, "error": -6.817909, "errors": -8.070672, "eye": -7.259741, "f.": -9.456966, "f_x_t": -8.763819, "fclose": -8.763819, "feedback": -9.456966, "fid": -7.511056, "fieldnames": -7.377525, "figHeight": -6.566594, "figWidth": -6.278912, "figure": -6.748916, "filename": -6.412444, "fileparts": -9.456966, "filesep": -6.817909, "fillColors": -9.456966, "filter": -6.972059, "filter_ftle": -7.059071, "filtfcn": -8.763819, "filtro": -7.665207, "filtro_": -7.059071, "find": -6.512527, "find_structural_gains": -8.763819, "findobj": -8.070672, "first": -8.358354, "fit": -7.665207, "fix_ps_linestyle": -7.665207, "flat": -8.070672, "floatSpec": -8.358354, "fopen": -8.763819, "for": -5.329832, "fprintf": -6.892017, "free": -9.456966, "freq": -7.847528, "frontWheel": -8.358354, "ftle": -7.511056, "ftle_norm": -9.456966, "fun": -7.847528, "function": -6.055769, "g": -7.847528, "gainChanges": -8.763819, "gainSlopeOffset": -7.665207, "gains": -7.059071, "gains.": -9.456966, "gains.Benchmark.Fast": -9.456966, "gains.Benchmark.Medium": -9.456966, "gains.Benchmark.Slow": -9.456966, "gains.Browser.Fast": -9.456966, "gains.Browser.Medium": -9.456966, "gains.Browser.Slow": -9.456966, "gains.Browserins.Fast": -9.456966, "gains.Browserins.Medium": -9.456966, "gains.Browserins.Slow": -9.456966, "gains.Fisher.Fast": -9.456966, "gains.Fisher.Medium": -9.456966, "gains.Fisher.Slow": -9.456966, "gains.Pista.Fast": -9.456966, "gains.Pista.Medium": -9.456966, "gains.Pista.Slow": -9.456966, "gains.Yellow.Fast": -9.456966, "gains.Yellow.Medium": -9.456966, "gains.Yellow.Slow": -9.456966, "gains.Yellowrev.Fast": -9.456966, "gains.Yellowrev.Medium": -9.456966, "gains.Yellowrev.Slow": -9.456966, "gainsInFile": -8.358354, "gather": -8.070672, "gca": -7.377525, "gcf": -6.972059, "generate_data": -7.847528, "get": -7.511056, "getState": -9.456966, "get_variables": -8.763819, "getoptions": -9.456966, "global": -7.511056, "goldenRatio": -6.817909, "gpuArray": -8.070672, "green": -9.456966, "grid_max": -8.358354, "grid_min": -8.358354, "grid_spacing": -7.847528, "grid_width": -9.456966, "grid_width/": -9.456966, "grid_x": -8.358354, "grid_y": -8.358354, "guess": -9.456966, "guess.": -8.763819, "guess.plantOne": -8.358354, "guess.plantTwo": -8.763819, "guessPlantOne": -8.358354, "guessPlantTwo": -8.763819, "h": -6.161129, "h*k": -9.456966, "h/": -8.358354, "h_a": -7.847528, "h_r": -7.847528, "h_r/": -8.070672, "history": -7.511056, "hold": -6.512527, "human": -9.456966, "hyper_parameter": -8.358354, "i": -3.797484, "i/n": -9.456966, "i/nx": -9.456966, "iddata": -9.456966, "idnlgrey": -9.456966, "ie": -8.763819, "if": -5.743394, "iirFilter": -9.456966, "importdata": -9.456966, "in": -8.763819, "index": -7.665207, "indices": -8.763819, "inf": -9.456966, "inline": -9.456966, "input": -8.070672, "inputParser": -9.456966, "inputs": -6.892017, "inset": -8.358354, "integrare": -9.456966, "integrated": -9.456966, "integrator": -9.456966, "io": -7.847528, "is": -8.358354, "ischar": -9.456966, "ismember": -6.972059, "isreal": -7.377525, "isterminal": -8.763819, "it": -8.763819, "j": -4.168699, "k": -5.166507, "kP": -7.511056, "keep": -9.456966, "keepOutputs": -8.763819, "l": -5.222860, "lambda_max": -8.763819, "lane": -8.070672, "lane.": -9.456966, "laneLength": -8.070672, "lane_change": -9.456966, "leg": -8.070672, "legLines": -9.456966, "legend": -7.665207, "legends": -8.358354, "length": -5.628325, "level": -8.070672, "line": -7.154381, "lines": -7.259741, "linestyles": -7.847528, "linspace": -6.684377, "load": -9.456966, "load_bikes": -8.763819, "load_data": -8.070672, "loc": -8.358354, "location": -9.456966, "log": -8.763819, "loopNames": -8.070672, "m": -5.793404, "m/s": -8.070672, "mag": -8.070672, "magLines": -8.070672, "magenta": -9.456966, "magnitudes": -8.763819, "makeFilter": -9.456966, "matlab_class": -8.763819, "matlab_function": -7.847528, "max": -7.847528, "maxEvals": -8.070672, "maxLine": -7.511056, "maxValue": -8.070672, "mean": -8.763819, "meaningful": -9.456966, "meaningless": -9.456966, "methods": -9.456966, "metricLines": -8.763819, "min": -9.456966, "minLine": -8.070672, "minStates": -8.763819, "mine": -9.456966, "mod": -8.358354, "mu": -5.180300, "mu./": -9.456966, "n": -4.861846, "name": -8.070672, "names": -7.665207, "ndgrid": -8.358354, "ne": -6.512527, "needs": -9.456966, "nome": -8.358354, "nominalData": -9.456966, "nominalData.": -8.763819, "none": -8.763819, "normalize": -9.456966, "not": -8.763819, "notGiven": -7.847528, "np": -7.847528, "nu": -8.763819, "num": -6.055769, "num_data": -8.763819, "numeric": -8.763819, "numeric.A": -8.763819, "numeric.B": -9.456966, "numeric.C": -9.456966, "numeric.D": -9.456966, "numeric.InputName": -9.456966, "numeric.OutputName": -9.456966, "numeric.StateName": -9.456966, "nvx": -6.365924, "nx": -6.412444, "ny": -6.512527, "obj": -8.763819, "obj.B": -8.763819, "obj.G": -8.763819, "obj.R": -8.763819, "ode": -7.259741, "odeset": -8.070672, "of": -8.763819, "off": -7.377525, "ok": -8.763819, "on": -7.059071, "oneSpeed": -8.358354, "oneSpeed.": -8.358354, "oneSpeed.speed": -8.763819, "oneSpeed.time": -8.763819, "ones": -7.847528, "only": -9.456966, "openBode": -8.358354, "options": -6.892017, "options.": -9.456966, "opts": -8.763819, "opts.PhaseMatching": -9.456966, "opts.PhaseMatchingValue": -9.456966, "opts.Title.Interpreter": -9.456966, "opts.Title.String": -8.763819, "opts.YLim": -9.456966, "orbit": -9.456966, "order": -7.154381, "output": -7.847528, "outputs": -7.154381, "overrideNames": -8.763819, "overrideSettings": -8.358354, "overwrite_settings": -8.763819, "p": -7.511056, "pad": -7.154381, "par": -7.511056, "par.": -9.456966, "par_text_to_struct": -8.070672, "parallel": -8.763819, "parfor": -7.847528, "parser": -9.456966, "parser.Results": -9.456966, "parser.addParamValue": -8.358354, "parser.addRequired": -9.456966, "parser.parse": -9.456966, "path": -8.358354, "pathLength": -8.358354, "pathToFile": -7.059071, "pathToParFile": -8.763819, "pcolor": -8.358354, "pem": -9.456966, "per": -8.763819, "phase": -8.763819, "phaseLines": -8.763819, "phi": -7.377525, "pints": -9.456966, "plant": -8.358354, "plantNum": -9.456966, "plantNum.plantOne": -8.763819, "plantNum.plantTwo": -8.763819, "plantOneSlopeOffset": -8.358354, "plantTwoSlopeOffset": -8.358354, "plot": -6.321472, "plotAxes": -6.892017, "plots/": -9.456966, "plotyy": -8.358354, "point": -8.763819, "possible": -8.763819, "prettyNames": -8.358354, "print": -7.665207, "prod": -8.358354, "properties": -9.456966, "px_": -8.763819, "px_T": -9.456966, "py_": -8.763819, "py_T": -9.456966, "pzplot": -9.456966, "r": -7.377525, "raise": -8.070672, "randomGuess": -9.456966, "raw": -9.456966, "raw.theta": -9.456966, "raw.theta_c": -9.456966, "real": -9.456966, "rectangle": -8.763819, "red": -9.456966, "regexp": -9.456966, "removeInputs": -9.456966, "removeStates": -9.456966, "repmat": -8.763819, "resides": -8.763819, "result": -7.847528, "result.": -8.763819, "resultPlantOne": -9.456966, "resultPlantOne.fit": -9.456966, "resultPlantOne.fit.par": -9.456966, "resultPlantTwo": -9.456966, "resultPlantTwo.fit": -9.456966, "resultPlantTwo.fit.par": -9.456966, "results.mat": -9.456966, "ret": -8.358354, "rollAngle": -8.070672, "rollData": -8.358354, "rollData.inputs": -9.456966, "rollData.outputs": -8.358354, "rollData.path": -9.456966, "rollData.speed": -9.456966, "rollData.time": -9.456966, "rollTorque": -8.070672, "roots": -8.358354, "round": -9.456966, "row": -8.358354, "s": -7.259741, "same": -8.763819, "sameSpeedIndices": -7.847528, "save": -8.763819, "secData.": -9.456966, "sections": -6.892017, "self": -9.456966, "set": -5.930606, "setoptions": -9.456966, "settings": -8.358354, "settings.": -9.456966, "settings.outputs": -9.456966, "settings.states": -9.456966, "setxor": -9.456966, "sg": -9.456966, "shading": -8.070672, "sigma": -7.665207, "single": -9.456966, "size": -7.377525, "slope": -8.358354, "sort": -9.456966, "specified": -9.456966, "speed": -6.461234, "speedInd": -6.972059, "speedNames": -6.684377, "speeds": -6.412444, "speedsInFile": -7.847528, "sprintf": -7.259741, "sqrt": -6.817909, "squeeze": -9.456966, "sr": -9.456966, "ss": -7.665207, "start": -8.070672, "startOfSlope": -8.358354, "state": -8.763819, "statefcn": -8.763819, "states": -8.358354, "std": -9.456966, "steerAngle": -8.070672, "stored": -9.456966, "str": -6.972059, "strcmp": -6.684377, "strtrim": -8.763819, "struct": -9.456966, "subplot": -8.358354, "sum": -8.763819, "system_state_space": -8.763819, "t": -5.525140, "t_ftle": -8.763819, "t_integrazione": -8.358354, "te": -8.763819, "tempo": -8.763819, "test_idx": -8.070672, "text": -7.377525, "textX": -8.358354, "textscan": -9.456966, "tf": -6.684377, "th": -9.456966, "the": -7.847528, "this": -9.456966, "tic": -7.665207, "ticks": -8.070672, "time": -6.512527, "to": -8.763819, "toc": -7.847528, "train": -9.456966, "train_idx": -8.358354, "true": -8.763819, "tspan": -7.511056, "twentyPercent": -9.456966, "twentyPercent.": -8.763819, "twentyPercent.modelPar.": -9.456966, "type": -9.456966, "u": -8.358354, "units": -8.358354, "useful": -8.763819, "userSettings": -8.358354, "v": -6.972059, "vOut": -8.763819, "v_y": -8.358354, "validation": -9.456966, "vals": -8.763819, "value": -7.154381, "var_": -9.456966, "var_xvx_": -9.456966, "varargin": -6.623753, "varargin_to_structure": -8.763819, "variable": -7.154381, "vvx": -8.763819, "vx": -7.665207, "vx_": -5.505722, "vx_T": -6.684377, "vx_f": -8.358354, "vx_gpu": -8.358354, "vy": -8.070672, "vy_": -6.412444, "vy_T": -7.154381, "vy_f": -8.358354, "vy_gpu": -8.358354, "w": -7.511056, "w_a": -7.511056, "w_r": -7.847528, "w_r/": -8.070672, "waitbar": -8.070672, "warning": -9.456966, "which": -8.763819, "while": -9.456966, "whipple_pull_force_ABCD": -9.456966, "whipple_pull_force_abcd": -8.763819, "white": -9.456966, "width": -8.358354, "with": -9.456966, "wnm": -7.059071, "write_gains": -9.456966, "x": -5.565146, "xAxis": -7.059071, "xData": -8.358354, "xLab": -8.070672, "xLimits": -7.665207, "xShift": -8.358354, "x_": -5.396523, "x_T": -6.623753, "x_a": -7.154381, "x_f": -8.358354, "x_gpu": -8.358354, "x_max": -8.358354, "x_min": -8.358354, "x_r": -7.665207, "x_res": -7.511056, "x_test": -8.358354, "x_train": -8.763819, "xl": -5.585765, "xlabel": -7.259741, "xlabels": -8.763819, "xlim": -7.377525, "xn": -8.070672, "xx": -8.763819, "xy": -7.511056, "xySource": -7.511056, "y": -6.278912, "yShift": -6.684377, "y_": -6.055769, "y_T": -6.892017, "y_a": -7.154381, "y_f": -8.358354, "y_gpu": -8.358354, "y_max": -8.358354, "y_min": -8.358354, "y_r": -7.665207, "y_res": -7.511056, "y_test": -8.358354, "y_train": -8.763819, "ye": -7.259741, "yellow": -9.456966, "yh": -8.763819, "yl": -5.650304, "ylabel": -7.847528, "ylabels": -8.763819, "ylim": -8.358354, "yn": -8.763819, "z": -8.358354, "zeroIndices": -8.358354, "zeros": -5.544943, "zetanm": -7.847528, "{": -4.522492, "|": -8.763819, "||": -8.358354, "}": -4.529712, "~": -6.972059, }, "Maven POM": map[string]float64{ "$": -3.203762, "-": -2.798297, "//renpengben.github.io": -6.381816, "/log": -6.381816, "/slf": -6.381816, "0": -5.688669, "2001": -6.381816, "4": -6.381816, ":": -5.283204, "<": -4.995522, "</artifactId>": -3.049612, "</build>": -6.381816, "</cglib.version>": -6.381816, "</configuration>": -6.381816, "</dependencies>": -6.381816, "</dependency>": -3.203762, "</description>": -6.381816, "</druid-version>": -6.381816, "</exclusion>": -5.688669, "</exclusions>": -5.688669, "</groupId>": -3.049612, "</hibernate-validator.version>": -6.381816, "</hibernate.version>": -6.381816, "</java.version>": -6.381816, "</junit.version>": -6.381816, "</modelVersion>": -6.381816, "</mysql.version>": -6.381816, "</name>": -6.381816, "</packaging>": -6.381816, "</plugin>": -6.381816, "</plugins>": -6.381816, "</project.build.sourceEncoding>": -6.381816, "</project>": -6.381816, "</properties>": -6.381816, "</scope>": -4.995522, "</source>": -6.381816, "</spring.data.jpa.version>": -6.381816, "</spring.version>": -6.381816, "</target>": -6.381816, "</url>": -6.381816, "</version>": -3.123719, "<?xml>": -6.381816, "<artifactId>": -3.049612, "<build>": -6.381816, "<cglib.version>": -6.381816, "<configuration>": -6.381816, "<dependencies>": -6.381816, "<dependency>": -3.203762, "<description>": -6.381816, "<druid-version>": -6.381816, "<exclusion>": -5.688669, "<exclusions>": -5.688669, "<groupId>": -3.049612, "<hibernate-validator.version>": -6.381816, "<hibernate.version>": -6.381816, "<java.version>": -6.381816, "<junit.version>": -6.381816, "<modelVersion>": -6.381816, "<mysql.version>": -6.381816, "<name>": -6.381816, "<packaging>": -6.381816, "<plugin>": -6.381816, "<plugins>": -6.381816, "<project.build.sourceEncoding>": -6.381816, "<project>": -6.381816, "<properties>": -6.381816, "<scope>": -4.995522, "<source>": -6.381816, "<spring.data.jpa.version>": -6.381816, "<spring.version>": -6.381816, "<target>": -6.381816, "<url>": -6.381816, "<version>": -3.123719, "=": -4.772378, ">": -4.590057, "?": -6.381816, "Maven": -6.381816, "POM": -6.381816, "RELEASE": -5.688669, "SNAPSHOT": -6.381816, "UTF": -6.381816, "Webapp": -6.381816, "XMLSchema": -6.381816, "_": -6.381816, "aop": -6.381816, "apache": -5.688669, "api": -6.381816, "aspects": -6.381816, "beans": -6.381816, "cglib": -5.688669, "cglib.version": -6.381816, "com.alibaba": -6.381816, "commons": -5.688669, "compile": -6.381816, "compiler": -6.381816, "connector": -6.381816, "context": -5.688669, "core": -5.688669, "data": -6.381816, "dep": -6.381816, "druid": -5.688669, "encoding": -6.381816, "encoding=": -6.381816, "entitymanager": -6.381816, "expression": -6.381816, "hibernate": -4.995522, "hibernate.version": -5.688669, "http": -5.283204, "https": -6.381816, "inal": -5.688669, "instance": -6.381816, "j": -4.435906, "j.version": -4.435906, "java": -6.381816, "jdbc": -6.381816, "jpa": -4.995522, "junit": -4.995522, "junit.version": -6.381816, "log": -4.772378, "logging": -5.688669, "maven": -4.995522, "mvc": -5.283204, "mysql": -5.688669, "mysql.version": -6.381816, "nodep": -6.381816, "org": -5.283204, "org.apache.maven.plugins": -6.381816, "org.hibernate": -5.283204, "org.slf": -5.688669, "org.springframework": -3.816867, "org.springframework.data": -6.381816, "orm": -6.381816, "plugin": -6.381816, "renpengben": -6.381816, "runtime": -6.381816, "schemaLocation": -5.688669, "slf": -4.772378, "spring": -3.548603, "spring.data.jpa.version": -6.381816, "spring.version": -3.816867, "support": -6.381816, "test": -5.283204, "tx": -6.381816, "v4_0_0": -6.381816, "validator": -6.381816, "validator.version": -6.381816, "version": -5.688669, "w3": -6.381816, "war": -6.381816, "web": -6.381816, "webmvc": -6.381816, "www": -6.381816, "xmlns": -5.283204, "xsd": -6.381816, "xsi": -4.995522, "{": -3.203762, "}": -3.203762, }, "Max": map[string]float64{ "#B": -6.767343, "#N": -7.460490, "#P": -4.975584, ",": -1.030771, ":": -1.280474, ";": -4.752440, "Verdana": -7.460490, "[": -2.366740, "]": -2.366740, "append": -7.460490, "button": -6.074196, "color": -6.767343, "jojo": -6.767343, "linecount": -7.460490, "max": -7.460490, "newex": -5.851052, "r": -7.460490, "route": -7.460490, "s": -7.460490, "setfont": -7.460490, "toggle": -7.460490, "toto": -7.460490, "v": -7.460490, "vpatcher": -7.460490, "window": -6.767343, "{": -2.624208, "}": -2.624208, }, "MediaWiki": map[string]float64{ "!": -6.496775, "#References": -7.189922, "#You": -7.883069, "#check": -7.189922, "#check_http_expect_alive": -7.883069, "#check_http_send": -7.883069, "#include": -7.883069, "$": -5.937159, "&": -7.883069, "(": -6.091310, ")": -6.091310, "*": -4.838547, "*timeout*": -7.883069, "+": -4.587232, ",": -3.417161, "-": -4.992698, ".": -5.580484, "...": -7.189922, "./configure": -7.883069, "/": -7.883069, "//github.com/cep": -7.883069, "//github.com/yaoweibin/nginx_tcp_proxy_module": -7.883069, "//nginx.org/": -7.883069, "//openssl.org/docs/apps/ciphers.html": -7.883069, "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.": -7.883069, "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": -7.883069, "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": -7.883069, "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng": -7.883069, "//wiki.nginx.org/NginxMailCoreModule#listen": -7.883069, "/User_Guide": -7.883069, "/healthcheck_nginx_upstreams": -7.883069, "/path/to/nginx_tcp_proxy_module": -7.883069, "/path/to/nginx_tcp_proxy_module/tcp.patch": -7.883069, "/path/to/tcp_proxy.conf": -7.883069, "/status": -7.883069, ":": -3.229109, ";": -5.110481, "<": -7.883069, "</geshi>": -6.091310, "</pre>": -7.189922, "<geshi>": -6.091310, "<pre>": -7.189922, "<yaoweibin@gmail.com>": -7.883069, "=": -2.255448, ">": -5.398163, "?": -7.883069, "A": -7.883069, "ADH": -7.883069, "ADVISED": -7.883069, "ALL": -7.883069, "AND": -6.496775, "ANY": -6.496775, "ARE": -7.883069, "ARISING": -7.883069, "All": -6.496775, "Alternatively": -7.883069, "Analysis": -7.883069, "At": -7.883069, "B.": -7.883069, "BE": -7.883069, "BSD": -7.883069, "BUSINESS": -7.883069, "BUT": -7.189922, "BY": -7.883069, "B_Tracepoints.": -7.883069, "Browse": -7.189922, "C": -7.883069, "C.": -7.883069, "C/C": -5.580484, "CA": -7.883069, "CAUSED": -7.883069, "CDT": -6.784457, "CONSEQUENTIAL": -7.883069, "CONTRACT": -7.883069, "CONTRIBUTORS": -7.189922, "COPYRIGHT": -7.189922, "Certificate": -7.883069, "Cipher": -7.883069, "Click": -7.883069, "Collecting": -7.189922, "Copyright": -7.883069, "Creating": -7.883069, "DAMAGE.": -7.883069, "DAMAGES": -7.883069, "DATA": -7.883069, "DIRECT": -7.883069, "DISCLAIMED.": -7.883069, "Data": -6.496775, "Debugger": -6.496775, "Debugger.": -7.883069, "Default": -7.189922, "Description": -7.883069, "Diffie": -7.883069, "Directives": -7.883069, "Display": -7.883069, "Document": -7.883069, "Download": -7.883069, "EVEN": -7.883069, "EVENT": -7.883069, "EXEMPLARY": -7.883069, "EXP": -7.883069, "EXPORT": -7.883069, "EXPRESS": -7.883069, "Each": -7.883069, "Eclipse": -7.883069, "Eclipse.": -7.883069, "Enables": -7.883069, "Events": -6.273631, "Executable": -7.883069, "FAQ": -7.189922, "FITNESS": -7.883069, "FOR": -7.189922, "FTP/IRC": -7.883069, "For": -7.883069, "Framework": -7.883069, "GDB": -5.175019, "GOODS": -7.883069, "Getting": -7.883069, "Grab": -7.883069, "Guide": -7.189922, "Guide.": -7.883069, "HIGH": -7.189922, "HOLDER": -7.883069, "HOLDERS": -7.883069, "HOWEVER": -7.883069, "HTTP": -7.883069, "Hellman": -7.883069, "How": -7.883069, "I": -7.189922, "IF": -7.883069, "IMPLIED": -7.189922, "IN": -6.784457, "INCIDENTAL": -7.883069, "INCLUDING": -6.784457, "INDIRECT": -7.883069, "INTERRUPTION": -7.883069, "IS": -7.883069, "If": -6.273631, "Image": -7.189922, "Importing": -7.189922, "In": -6.273631, "Installation": -7.883069, "Issues": -7.883069, "It": -7.189922, "Known": -7.883069, "LIABILITY": -7.189922, "LIABLE": -7.883069, "LIMITED": -7.189922, "LOSS": -7.883069, "LOW": -7.883069, "LTTng": -6.784457, "List": -7.883069, "MD": -7.883069, "MEDIUM": -7.883069, "MERCHANTABILITY": -7.883069, "Monitoring": -7.883069, "NEGLIGENCE": -7.883069, "NO": -7.883069, "NOT": -7.189922, "Name": -7.883069, "Navigating": -7.883069, "Nginx": -7.189922, "Nginx.": -7.883069, "OF": -5.803628, "OK": -7.883069, "ON": -7.883069, "OR": -5.803628, "OTHERWISE": -7.883069, "OUT": -7.883069, "OpenSSL": -7.189922, "Opening": -7.883069, "Optionally": -7.883069, "Overview": -7.883069, "PARTICULAR": -7.883069, "PEM": -6.273631, "POSSIBILITY": -7.883069, "PROCUREMENT": -7.883069, "PROFITS": -7.883069, "PROVIDED": -7.883069, "PURPOSE": -7.883069, "Parameter": -7.883069, "Perspective": -7.883069, "Postmortem": -6.273631, "Project": -7.883069, "RC": -7.883069, "RSA": -7.883069, "Redistribution": -7.883069, "Redistributions": -7.189922, "References": -6.784457, "Revocation": -7.883069, "Right": -7.189922, "SERVICES": -7.883069, "SHALL": -7.883069, "SOFTWARE": -7.189922, "SPECIAL": -7.883069, "SSL": -7.189922, "SSLv": -6.273631, "STRICT": -7.883069, "SUBSTITUTE": -7.883069, "SUCH": -7.883069, "Searching": -7.883069, "See": -7.883069, "Select": -7.883069, "Selecting": -7.189922, "Set": -7.883069, "Some": -7.883069, "Started": -7.883069, "Synopsis": -7.883069, "TCP": -7.189922, "THE": -6.273631, "THEORY": -7.883069, "THIS": -7.189922, "TLSv": -5.937159, "TO": -7.189922, "TORT": -7.883069, "The": -4.664194, "These": -7.883069, "This": -4.887337, "To": -7.883069, "Trace": -5.685845, "Tracepoint": -6.496775, "Tracepoints": -7.883069, "Tracing": -6.784457, "Type": -7.883069, "USE": -7.189922, "Updating": -7.883069, "User": -6.784457, "Viewing": -7.883069, "Visualizing": -7.883069, "WARRANTIES": -7.189922, "WAY": -7.883069, "WHETHER": -7.883069, "Weibin": -7.883069, "Yao": -7.883069, "You": -7.883069, "Your": -7.883069, "[": -4.587232, "]": -4.587232, "a": -5.049856, "aNULL": -7.883069, "above": -7.189922, "access.log.": -7.883069, "access_log": -6.784457, "actually": -7.883069, "add": -7.883069, "added": -7.883069, "address": -7.883069, "agreement": -7.883069, "alive.": -7.883069, "allows": -7.189922, "also": -6.273631, "an": -6.784457, "analysis": -7.883069, "and": -4.449082, "and/or": -7.189922, "any": -7.189922, "application": -7.883069, "are": -5.803628, "area": -7.189922, "as": -7.189922, "assigned": -7.883069, "associated": -7.883069, "at": -6.784457, "available": -7.189922, "backend": -6.784457, "backends.": -6.091310, "be": -4.747575, "between": -7.883069, "binary": -7.189922, "bind": -7.883069, "block": -7.883069, "block.": -6.784457, "blocks": -7.883069, "both": -7.883069, "buffer": -7.883069, "buffer.": -7.189922, "build": -7.883069, "built": -7.883069, "builtin": -7.189922, "busyness.": -7.883069, "buttons.": -7.883069, "by": -5.175019, "cache": -7.883069, "caches": -7.883069, "can": -5.175019, "case": -7.883069, "cd": -7.883069, "cert.pem": -7.189922, "certificate": -6.496775, "certificates": -7.883069, "certificates.": -7.189922, "chain": -7.883069, "check": -5.685845, "check_http_expect_alive": -7.189922, "check_http_send": -7.189922, "check_shm_size": -7.189922, "checking": -7.883069, "checks": -7.883069, "choose": -7.189922, "cipher": -6.784457, "cipherlist": -7.189922, "ciphers": -7.883069, "click": -5.803628, "clicking": -7.883069, "client": -6.091310, "client.": -7.883069, "cluster": -7.189922, "code": -6.784457, "codes": -7.883069, "collaborative": -7.883069, "collected": -7.189922, "collection": -7.883069, "column": -6.091310, "command": -7.189922, "compatibility": -7.883069, "compile": -7.189922, "complete": -7.883069, "component": -7.883069, "conditions": -6.784457, "config": -7.883069, "connection": -6.784457, "connection.": -7.883069, "console": -7.883069, "contain": -7.883069, "contained": -7.189922, "containing": -6.496775, "contains": -7.883069, "context": -4.938630, "copy": -7.883069, "copyright": -7.189922, "corresponding": -7.883069, "create": -7.883069, "created": -7.883069, "cryptographic": -7.883069, "current": -7.883069, "currently": -7.883069, "custom": -7.883069, "data": -6.273631, "debug": -7.883069, "debugger": -7.883069, "deep": -7.883069, "default": -4.838547, "describes": -7.883069, "description": -5.244012, "details": -7.883069, "dialog": -7.883069, "different": -7.883069, "directive": -5.580484, "directive.": -7.883069, "directives": -7.189922, "directory.": -7.883069, "disclaimer": -7.883069, "disclaimer.": -7.883069, "dispatched": -7.883069, "displays": -7.189922, "distribution.": -7.883069, "document": -7.189922, "documentation": -7.883069, "done": -7.189922, "double": -7.883069, "drag": -7.883069, "dropped": -7.883069, "each": -7.883069, "editor": -5.937159, "editor.": -7.189922, "editors": -7.883069, "enables": -7.189922, "enlarged": -7.883069, "enough": -7.883069, "enter": -7.189922, "entering": -7.883069, "entry": -7.189922, "establishing": -7.883069, "example": -7.189922, "exchanging": -7.883069, "executable": -6.784457, "executable.": -7.883069, "expression": -7.883069, "extension": -7.883069, "external": -7.883069, "fall": -6.784457, "feature": -6.784457, "feature.": -7.883069, "features": -7.883069, "file": -4.992698, "file.": -7.883069, "filename": -7.883069, "filtering": -7.883069, "first": -7.883069, "folder": -6.273631, "following": -6.496775, "for": -5.485174, "form": -7.883069, "format": -6.273631, "format.": -7.189922, "forms": -7.883069, "found": -7.883069, "from": -5.398163, "function": -7.883069, "further": -7.883069, "github": -7.883069, "go": -7.883069, "have": -7.883069, "header.": -7.883069, "health": -6.784457, "healthcheck": -7.883069, "healthcheck_nginx_upstreams": -7.883069, "hidden": -7.883069, "host": -7.189922, "host.": -7.883069, "how": -7.883069, "http": -5.318120, "http_": -5.803628, "http_packet": -7.883069, "hundreds": -7.883069, "icon": -7.883069, "identified": -7.883069, "identity": -7.883069, "identity.": -7.189922, "if": -6.784457, "images/GDBTracePerspective.png": -7.883069, "images/gdb_icon": -7.883069, "import.": -7.883069, "imported": -7.883069, "in": -4.386562, "include": -7.189922, "includes": -7.189922, "indicate": -7.883069, "individually": -7.883069, "information": -7.883069, "install": -7.883069, "installed": -6.784457, "instance": -7.883069, "instances": -7.883069, "interval": -6.496775, "ip_hash": -6.784457, "ip_hash.": -7.883069, "is": -4.992698, "issuing": -7.883069, "it": -6.273631, "its": -7.883069, "just": -7.883069, "k": -7.189922, "key": -7.189922, "key.": -7.883069, "keyboard": -7.883069, "keys": -7.883069, "lang": -6.496775, "later": -7.883069, "latest": -7.883069, "launched": -7.883069, "launched.": -7.883069, "license.": -7.883069, "licensed": -7.883069, "line": -7.189922, "list": -6.496775, "list.": -7.883069, "listen": -6.273631, "listening": -7.883069, "local": -7.883069, "location": -7.189922, "log": -7.189922, "logs/tcp_access.log": -7.883069, "long": -7.883069, "made": -7.883069, "main": -7.883069, "maintained": -7.883069, "make": -6.784457, "manage": -7.883069, "manager.": -7.883069, "many": -7.883069, "materials": -7.883069, "may": -7.883069, "meanings": -7.883069, "means": -7.883069, "memory": -7.883069, "menu.": -6.496775, "met": -7.883069, "method": -7.883069, "miliseconds": -6.091310, "minimum": -7.883069, "modification": -7.883069, "modify": -7.883069, "module": -5.937159, "modules": -6.784457, "modules.": -7.883069, "monitor.": -7.883069, "motivation": -7.883069, "mouse.": -7.883069, "must": -6.273631, "my": -7.883069, "name": -6.784457, "navigated": -7.883069, "navigation": -7.883069, "nginx": -6.273631, "nginx.": -7.883069, "nginx.org": -7.883069, "ngx_tcp_core_module": -7.883069, "ngx_tcp_module": -7.883069, "ngx_tcp_moodule": -7.883069, "ngx_tcp_proxy_module": -7.189922, "ngx_tcp_proxy_module/config": -7.883069, "ngx_tcp_proxy_module/config_without_ssl": -7.883069, "ngx_tcp_ssl_module": -6.784457, "ngx_tcp_ssl_module.": -7.883069, "ngx_tcp_upstream_busyness_module": -7.883069, "ngx_tcp_upstream_ip_hash_module.": -7.883069, "ngx_tcp_upstream_module": -7.883069, "ngx_tcp_websocket_module": -7.189922, "none": -5.398163, "not": -7.189922, "notice": -7.189922, "number": -6.784457, "number.": -7.883069, "number_of_checked_upstream_blocks": -7.883069, "obtained": -7.883069, "of": -4.449082, "off": -5.580484, "omitted": -7.883069, "on": -6.091310, "one": -7.189922, "open": -7.883069, "opened": -7.189922, "opened.": -7.883069, "openssl": -7.883069, "openssl_cipherlist_spec": -7.883069, "optional": -7.883069, "or": -5.685845, "order": -7.883069, "other": -6.784457, "output": -7.883069, "outside": -7.189922, "over": -7.883069, "p": -7.883069, "packet": -7.883069, "pagesize": -7.883069, "paramaters.": -7.883069, "parameter": -7.189922, "parameters": -7.883069, "patch": -7.883069, "path": -6.784457, "path.": -7.883069, "paths": -7.883069, "permitted": -7.883069, "perspective": -7.189922, "platform": -7.883069, "please": -7.883069, "png": -7.883069, "point": -7.883069, "port": -6.091310, "port.": -7.883069, "preferred": -7.883069, "press": -7.883069, "private": -7.189922, "program": -7.883069, "project": -7.189922, "projects": -7.883069, "projects.": -7.883069, "properly.": -7.883069, "protocol": -6.784457, "protocols": -7.883069, "provided": -6.784457, "proxy": -6.091310, "proxy_buffer": -7.189922, "proxy_connect_timeout": -7.189922, "proxy_pass": -6.784457, "proxy_read_timeout": -7.189922, "proxy_send_timeout": -7.189922, "proxy_set_header": -7.883069, "proxying": -7.883069, "reading": -7.189922, "recognized": -7.883069, "recommended": -7.883069, "reconfigrure": -7.883069, "record": -6.784457, "record.": -7.189922, "records": -7.883069, "records.": -7.883069, "redundant": -7.883069, "regular": -7.883069, "related": -7.883069, "release": -7.883069, "relocate": -7.883069, "reproduce": -7.883069, "request": -6.784457, "requires": -7.189922, "reserved.": -7.883069, "response": -7.883069, "retain": -7.883069, "revocation": -7.883069, "right": -6.784457, "rights": -7.883069, "rise": -6.784457, "root": -7.883069, "row": -7.883069, "run": -7.883069, "running": -7.883069, "s": -6.273631, "same": -6.496775, "scope": -7.883069, "section": -7.883069, "section.": -7.189922, "secure": -7.883069, "see": -7.189922, "select": -6.273631, "selected": -6.784457, "selecting": -7.883069, "sending": -7.189922, "sends": -7.883069, "sequential": -7.883069, "server": -4.098880, "server.": -6.273631, "servers": -7.189922, "session": -7.883069, "sessions.": -7.883069, "set": -5.485174, "set.": -7.883069, "sets": -7.189922, "several": -7.189922, "shared": -6.784457, "should": -7.883069, "show": -7.883069, "shown": -7.883069, "shows": -5.937159, "site": -7.883069, "size": -5.803628, "sizes": -7.883069, "smtp": -7.883069, "so": -6.784457, "source": -6.091310, "specific": -7.883069, "specified": -7.883069, "specified.": -7.883069, "specifies": -6.273631, "specify": -7.883069, "ssl": -6.496775, "ssl_certificate": -6.784457, "ssl_certificate_key": -6.784457, "ssl_ciphers": -6.496775, "ssl_client_certificate": -7.189922, "ssl_crl": -7.189922, "ssl_dhparam": -7.189922, "ssl_hello": -7.883069, "ssl_prefer_server_ciphers": -6.784457, "ssl_protocols": -6.784457, "ssl_session_cache": -6.784457, "ssl_verify_client": -6.784457, "ssl_verify_depth": -6.784457, "stable": -7.883069, "stack": -7.189922, "status": -6.496775, "step": -7.883069, "store": -7.189922, "stored": -7.883069, "suite": -7.189922, "suites": -7.189922, "support": -6.496775, "supported": -7.189922, "supports": -7.883069, "sure": -7.883069, "syntax": -5.175019, "syslog": -7.883069, "t": -7.883069, "table": -7.883069, "tar": -7.883069, "tar.gz": -7.883069, "tarball": -7.883069, "tcp": -4.550865, "tcp_check_status": -6.784457, "tcp_proxy.conf": -7.883069, "that": -5.937159, "the": -2.899463, "then": -7.189922, "these": -7.189922, "this": -5.318120, "thread": -7.883069, "time": -7.189922, "timeout": -5.485174, "timeout.": -7.883069, "to": -4.550865, "together": -7.883069, "trace": -5.049856, "tracepoint": -6.273631, "tracepoint.": -6.784457, "tracing": -7.883069, "tree.": -7.883069, "type": -5.937159, "types": -7.189922, "under": -7.883069, "update": -7.189922, "updated": -7.189922, "updated.": -7.883069, "upstream": -5.580484, "upstream_ip": -7.883069, "use": -7.189922, "used": -6.784457, "using": -6.496775, "utilized": -7.883069, "validating": -7.883069, "value": -6.091310, "variable": -7.883069, "verification": -7.883069, "verify": -7.883069, "version": -6.496775, "versions": -7.883069, "view": -5.937159, "views": -7.189922, "visit": -7.883069, "visualization": -7.883069, "want": -7.189922, "was": -6.784457, "websocket": -7.883069, "websocket_buffer": -7.189922, "websocket_connect_timeout": -7.189922, "websocket_pass": -7.189922, "websocket_read_timeout": -7.189922, "websocket_send_timeout": -7.189922, "websockets": -7.883069, "wget": -7.883069, "when": -7.883069, "where": -7.883069, "which": -7.883069, "wiki.": -7.883069, "will": -5.685845, "wish": -7.883069, "with": -5.485174, "within": -7.883069, "without": -7.189922, "work": -7.883069, "workspace": -7.189922, "writing": -7.883069, "xx": -5.803628, "xzvf": -7.883069, "you": -5.937159, "your": -6.496775, "{": -5.803628, "|": -5.175019, "}": -5.803628, "\ufeff": -7.189922, }, "Mercury": map[string]float64{ "!": -4.493151, "$": -6.344682, "%": -6.323176, "(": -2.393439, ")": -2.384698, "*": -9.074712, "+": -5.778875, ",": -1.910507, "-": -1.736907, ".": -3.829443, ".CI": -7.282952, ".Clause": -10.173324, ".ClausesInfo": -9.480177, ".GoalInfo": -10.173324, ".Info": -7.228885, ".ModuleInfo": -8.093882, ".PredInfo": -9.480177, ".ProcInfo": -9.480177, ".ProcTable": -10.173324, ".RevMarkedGoals": -10.173324, ".RttiVarMaps": -10.173324, ".Unification": -10.173324, "/": -10.173324, "0": -10.173324, ":": -2.643380, ";": -5.558203, "<": -7.400735, "<->": -9.480177, "<arity>": -10.173324, "<fjh@cs.mu.oz.au>": -9.480177, "<n>": -10.173324, "<pointer>": -9.480177, "<rbeck@microsoft.com>": -10.173324, "<the>": -9.480177, "<wharvey@cs.monash.edu.au>": -9.480177, "=": -4.235788, ">": -6.095786, "A": -7.608374, "ActualArgTypes": -8.093882, "ActualExistConstraints": -7.775429, "ActualExistQVarTypes": -9.480177, "ActualExistQVars": -8.787029, "ActualExistentialConstraints": -8.787029, "ActualExistentialTypes": -9.480177, "ActualRetType": -10.173324, "ActualTypeInfoTypes": -9.480177, "ActualTypes": -9.480177, "ActualUnconstrainedExistTypes": -9.480177, "ActualUnconstrainedUnivTypes": -9.480177, "ActualUnivConstraints": -9.480177, "AddRegionOps": -9.480177, "AddTrailOps": -10.173324, "AfterCommit": -9.480177, "AfterRegionOp": -9.074712, "AllExtraHeadTypeInfoVars": -9.480177, "AllUnconstrainedTVars": -9.480177, "AllocId": -9.480177, "AllocSite": -9.074712, "AllocSites": -8.787029, "Allow": -10.173324, "Arg": -8.381564, "ArgInfo": -8.787029, "ArgInfos": -9.480177, "ArgModes": -8.787029, "ArgNum": -8.381564, "ArgRef": -7.688417, "ArgT": -9.480177, "ArgTypeSubst": -9.480177, "ArgTypeVarSet": -8.563886, "ArgTypes": -7.976099, "ArgVars": -9.074712, "Args": -9.074712, "Arity": -9.480177, "B": -8.227414, "BSResumeKnown": -9.480177, "BranchStart": -9.480177, "BranchStartFailInfo": -9.480177, "BuiltinState": -9.480177, "C": -7.177592, "CI": -5.411150, "C_VarName": -9.074712, "CallArgs": -8.563886, "CallGoal": -9.480177, "CallGoalExpr": -9.480177, "CalleeExtraHeadVars": -8.787029, "CalleeHeadVars": -9.480177, "CalleePredInfo": -9.480177, "CalleeProcInfo": -9.074712, "CalleeRttiVarMaps": -9.480177, "CanFail": -9.480177, "CanOptAwayUnnamed": -8.093882, "Case": -8.787029, "Cases": -8.787029, "Changed": -8.381564, "Char": -7.688417, "CharString": -9.480177, "Chars": -9.480177, "CheaperTagTest": -9.074712, "CheaperTagTestPrime": -9.480177, "ClassContext": -8.381564, "Clause": -9.480177, "Clauses": -8.787029, "ClausesInfo": -7.282952, "ClausesRep": -8.787029, "ClosureLayout": -9.480177, "ClosureLayouts": -9.480177, "Code": -8.381564, "CodeAddr": -9.480177, "CodeModel": -9.480177, "CommitGoalInfo": -10.173324, "CommitTrailCode": -9.480177, "Components": -8.787029, "ConjunctA": -8.787029, "ConjunctB": -8.787029, "Conjuncts": -8.787029, "ConsId": -8.787029, "ConsIdPrime": -9.480177, "ConstStructDb": -9.480177, "Constraint": -9.480177, "ConstraintMap": -7.688417, "ConstraintVarName": -9.074712, "Context": -7.400735, "Copy": -9.480177, "Cs": -7.976099, "Ctxt": -9.480177, "CurCI": -9.480177, "CurCondEnv": -9.480177, "CurCurfMaxfr": -9.480177, "CurFailInfo": -9.480177, "CurFailStack": -9.480177, "CurHijack": -9.480177, "CurPredId": -9.480177, "CurProcId": -9.480177, "CurfrMaxfr": -9.074712, "CutCode": -8.787029, "DataAddr": -8.381564, "Det": -10.173324, "Digits": -9.480177, "ElseCode": -8.563886, "EmbeddedStackFrameId": -9.480177, "ErrNo": -9.480177, "ErrorCode": -8.787029, "ErrorMessage": -8.787029, "EvalMethod": -10.173324, "Exec": -8.093882, "ExistConstrainedTVars": -9.480177, "ExistConstrainedVars": -9.480177, "ExistConstraints": -8.381564, "ExistCs": -8.787029, "ExistHeadTypeClassInfoVars": -7.976099, "ExistHeadTypeInfoVars": -8.563886, "ExistQVars": -7.870739, "ExistQVarsForCall": -9.480177, "ExistTypeArgInfos": -9.480177, "ExistTypeClassArgInfos": -9.480177, "ExistTypeClassInfoHeadVars": -8.381564, "ExistTypeClassInfoModes": -9.480177, "ExistTypeClassVars": -9.074712, "ExistTypeClassVarsMCAs": -9.480177, "ExistTypeInfoModes": -9.480177, "ExistTypeLocns": -9.480177, "ExistTypes": -9.480177, "ExistUnconstrainedVars": -9.480177, "ExistVars": -9.480177, "ExplicitVarTypes": -9.480177, "ExtraArgModes": -7.037830, "ExtraArgModesList": -9.480177, "ExtraArgTypes": -9.480177, "ExtraArgs": -9.074712, "ExtraArgsConstArgs": -9.480177, "ExtraExistClassGoals": -9.480177, "ExtraExistClassVars": -9.480177, "ExtraExistTypeInfoGoals": -9.480177, "ExtraExistTypeInfoVars": -9.480177, "ExtraExistTypeInfoVarsMCAs": -9.480177, "ExtraGoals": -8.381564, "ExtraHeadTypeInfoVars": -8.227414, "ExtraHeadVarList": -9.480177, "ExtraTypeClassGoals": -8.563886, "ExtraTypeClassUnifyGoals": -9.480177, "ExtraTypeClassVars": -9.480177, "ExtraTypeClassVars.": -10.173324, "ExtraTypeClassVarsMCAs": -9.480177, "ExtraTypeInfoGoals": -8.787029, "ExtraTypeInfoHeadVars": -8.787029, "ExtraTypeInfoUnifyGoals": -9.480177, "ExtraTypeInfoVars": -9.480177, "ExtraTypeInfoVarsMCAs": -9.480177, "ExtraUnivClassGoals": -9.480177, "ExtraUnivClassVars": -9.480177, "ExtraUnivClassVarsMCAs": -9.480177, "ExtraUnivTypeInfoGoals": -9.480177, "ExtraUnivTypeInfoVars": -9.480177, "ExtraUnivTypeInfoVarsMCAs": -9.480177, "ExtraVars": -8.563886, "FailCode": -9.480177, "FailInfo": -7.688417, "FailureCode": -9.480177, "FailureRegionCode": -9.480177, "FailureUndoCode": -8.563886, "FollowVarMap": -9.480177, "FollowVars": -8.787029, "ForwardLiveVarsBeforeGoal": -9.074712, "Func": -9.480177, "Functor": -9.480177, "GetTypeInfoTypes": -9.480177, "Globals": -8.787029, "Goal": -6.222080, "GoalExpr": -7.976099, "GoalId": -8.381564, "GoalInfo": -6.203032, "GoalList": -9.480177, "GoalPath": -9.480177, "Goals": -7.400735, "GotoSuccLabel": -9.480177, "Groundness": -10.173324, "HasSubGoals": -9.074712, "HaveForeignClauses": -9.480177, "HeadTypeVars": -9.480177, "HeadVarList": -8.787029, "HeadVars": -6.739337, "HijackCode": -8.563886, "HijackInfo": -7.976099, "HijackResumeKnown": -10.173324, "HijackType": -9.074712, "IO": -8.787029, "ITEResumePoint": -10.173324, "ITEStackResumeCodeAddr": -9.480177, "Immed": -8.381564, "Impl": -7.870739, "In": -8.381564, "InMode": -9.074712, "Index": -9.074712, "Info": -5.718977, "InitialSnapshot": -7.608374, "InstMap": -8.787029, "InstMapDelta": -9.480177, "InstanceConstraints": -9.074712, "InstanceHeadTypeClassInfoModes": -9.480177, "InstanceHeadTypeClassInfoVars": -8.787029, "InstanceMethodConstraints": -8.787029, "InstanceTVars": -8.227414, "InstanceTypes": -9.480177, "InstanceUnconstrainedTVars": -9.480177, "InstanceUnconstrainedTypeInfoVars": -9.480177, "Internal": -7.688417, "Internals": -7.534267, "InvariantsStatus": -8.227414, "IsConstruction": -9.480177, "IsDummy": -9.480177, "IsHidden": -9.480177, "ItemNumbers": -9.480177, "KindMap": -9.480177, "Label": -8.093882, "LabelConst": -9.480177, "LabelNum": -8.093882, "LambdaGoal": -9.074712, "LambdaVars": -10.173324, "Layout": -9.480177, "LayoutInfo": -9.480177, "LocDep": -8.787029, "Locns": -9.480177, "MD": -8.787029, "MainConsId": -9.480177, "MarkCode": -9.074712, "MarkedGoal": -9.074712, "MaxVarAfter": -9.480177, "MaxVarBefore": -9.480177, "MaxfrCode": -8.787029, "MaxfrSlot": -7.534267, "MaybeArgName": -8.227414, "MaybeCallUnifyContext": -9.480177, "MaybeEnd": -9.480177, "MaybeFollowVars": -9.074712, "MaybeIO": -10.173324, "MaybeRegionCommitFrameInfo": -8.787029, "MaybeRegionInfo": -8.787029, "MaybeSolverEventInfo": -9.480177, "MaybeTrailSlots": -8.787029, "Mode": -7.870739, "ModePrime": -9.480177, "Modes": -9.074712, "ModuleInfo": -6.589805, "MutVar": -8.787029, "Mutvar": -7.340110, "N": -8.787029, "NCallArgs": -9.480177, "NExtraArgs": -9.074712, "NPredArgs": -9.480177, "Name": -8.787029, "NewFailInfo": -9.480177, "NewHeadVars": -9.480177, "NewIndex": -9.480177, "NewResumePoint": -10.173324, "NextCI": -8.381564, "NextNonReserved": -9.480177, "NonLocals": -7.534267, "Num": -7.282952, "NumExistClassInfoVars": -9.480177, "NumExistConstraints": -8.787029, "NumExistentialConstraints": -9.074712, "NumReusesAfter": -9.480177, "NumReusesBefore": -9.480177, "NumStr": -9.480177, "NumUnconstrainedExistTVars": -9.480177, "NumUnconstrainedUnivTVars": -9.480177, "NumUnivClassInfoVars": -9.480177, "NumUnivConstraints": -9.480177, "Oct": -6.707588, "OldCondEnv": -10.173324, "OldHeadVarList": -9.480177, "OldHeadVarTypes": -9.480177, "OldHeadVars": -9.480177, "OldInfo": -9.074712, "OrigArgTypes": -9.480177, "OrigParentArgTypes": -9.480177, "OrigPredArgTypes": -8.787029, "Origin": -8.093882, "OtherConsIds": -9.480177, "Out": -8.381564, "ParentArgTypes": -8.563886, "ParentClassContext": -9.480177, "ParentExistConstrainedTVars": -8.787029, "ParentExistConstraints": -9.074712, "ParentExistQVars": -8.563886, "ParentExistentialConstraints": -9.480177, "ParentKindMap": -8.381564, "ParentRetType": -10.173324, "ParentTVars": -8.787029, "ParentToActualTSubst": -9.480177, "ParentToActualTypeSubst": -8.381564, "ParentTypeInfoTypes": -9.480177, "ParentUnconstrainedExistQVars": -9.480177, "ParentUnconstrainedExistTVars": -9.480177, "ParentUnconstrainedTVars": -8.227414, "ParentUnconstrainedUnivTVars": -9.074712, "ParentUnivConstrainedTVars": -9.480177, "ParentUnivConstraints": -9.074712, "Persistent": -9.480177, "PersistentTemps": -9.480177, "Port": -9.480177, "PostBirths": -9.074712, "PostDeaths": -8.563886, "PreBirths": -9.480177, "PreDeaths": -9.074712, "PredArgTypes": -8.227414, "PredArity": -8.787029, "PredClassContext": -8.563886, "PredExistConstraints": -9.480177, "PredExistQVars": -9.480177, "PredId": -6.739337, "PredIds": -8.787029, "PredInfo": -5.924829, "PredKindMap": -9.074712, "PredMarkers": -9.480177, "PredModule": -8.787029, "PredName": -8.787029, "PredOrFunc": -10.173324, "PredTVarSet": -9.480177, "PredTable": -8.563886, "PredToActualTypeSubst": -8.787029, "PredToParentRenaming": -9.074712, "PredToParentTypeRenaming": -8.381564, "PredTypeInfoTypes": -9.480177, "PredTypeVarSet": -8.227414, "PredTypeVars": -7.976099, "Preds": -8.787029, "Prime": -9.480177, "ProcId": -7.340110, "ProcIds": -9.480177, "ProcInfo": -7.128801, "ProcLabel": -8.381564, "ProcTable": -9.480177, "Procs": -8.093882, "ProcsPerFunc": -9.480177, "ProgVar": -9.480177, "Purity": -10.173324, "Reason": -9.480177, "RecordExistQLocns": -9.074712, "RedofrSlot": -7.976099, "RedoipSlot": -7.340110, "Ref": -6.915227, "RegType": -9.480177, "RegionInfo": -9.480177, "RegionVars": -9.480177, "Res": -8.093882, "Rest": -9.480177, "RestoreTrailCode": -9.480177, "Result": -8.787029, "ResultVar": -10.173324, "Resume": -8.093882, "ResumeKnown": -8.093882, "ResumeMap": -7.870739, "ResumeMapVarList": -9.480177, "ResumePoint": -7.976099, "ResumePointCode": -9.480177, "ResumePointInfo": -9.480177, "ResumePointStack": -9.480177, "ResumePoints": -8.787029, "ResumeVars": -8.787029, "Return": -8.787029, "RevMarkedGoals": -8.787029, "RevMarkedSubGoals": -9.480177, "RevTable": -8.563886, "RevTable.": -10.173324, "Rot": -9.480177, "RotChar": -8.093882, "RttiVarMaps": -7.228885, "Rvals": -9.480177, "RvalsTypes": -9.480177, "S": -5.481976, "SaveRegionCommitFrameCode": -10.173324, "SaveRegionCommitFrameCode.": -10.173324, "SaveTrailCode": -9.480177, "SemiCommitInfo": -9.074712, "SeqNo": -9.480177, "ShortHand": -9.074712, "Size": -8.227414, "SlotNum": -9.480177, "StackLabel": -8.787029, "StackLabelConst": -8.381564, "StackSlots": -9.480177, "Static": -9.480177, "StaticCellInfo": -7.688417, "StdErr": -8.093882, "Store": -8.563886, "StoreMap": -10.173324, "String": -9.480177, "SubGoal": -8.093882, "SubGoalExpr": -8.381564, "SubGoalInfo": -8.787029, "SubGoals": -8.787029, "Subn": -9.074712, "SuccLabel": -9.074712, "SuccLabelCode": -10.173324, "SuccLabelCode.": -10.173324, "SuccessCode": -9.480177, "SuccessRecordSlot": -9.074712, "SuccessRegionCode": -9.480177, "SuccessUndoCode": -8.563886, "SymName": -8.787029, "T": -7.128801, "TVar": -8.787029, "TVarName": -8.787029, "TVarNameMap": -9.480177, "TVarSet": -9.074712, "TableSize": -9.480177, "TempContentMap": -9.480177, "TempFrameCode": -10.173324, "Temps": -9.480177, "TempsInUse": -8.381564, "TempsInUseContentMap": -9.480177, "TermVar": -9.480177, "TheLocn": -9.480177, "TheVar": -9.480177, "ThenCode": -8.227414, "TmpChar": -9.480177, "ToLocn": -8.787029, "Toks": -6.995270, "TopResumePoint": -9.480177, "Type": -7.400735, "TypeBody": -9.480177, "TypeClassArgInfos": -9.480177, "TypeCtor": -9.480177, "TypeDefn": -8.381564, "TypeDefnPrime": -9.480177, "TypeInfoArgInfos": -9.480177, "TypeInfoHeadVars": -9.480177, "TypeInfoLiveness": -9.480177, "TypeInfoLocns": -8.381564, "TypeInfoType": -9.480177, "TypeInfoTypes": -9.480177, "TypeInfoVars": -8.227414, "TypeInfoVarsMCAs": -9.480177, "TypeTable": -9.480177, "TypeVarName": -9.480177, "TypeVarNames": -9.480177, "TypeVarSet": -7.400735, "TypeVars": -8.093882, "Types": -8.787029, "UnconstrainedExistTVars": -8.381564, "UnconstrainedInstanceTVars": -8.381564, "UnconstrainedInstanceTypeInfoModes": -9.480177, "UnconstrainedInstanceTypeInfoVars": -8.227414, "UnconstrainedInstanceTypeLocns": -9.480177, "UnconstrainedTVars": -7.128801, "UnconstrainedUnivTVars": -8.227414, "Unification": -7.534267, "UnificationPrime": -9.480177, "UnifyContext": -8.381564, "UnifyContextPrime": -9.480177, "UnivConstrainedTVars": -9.480177, "UnivConstrainedVars": -9.480177, "UnivConstraints": -9.074712, "UnivCs": -8.787029, "UnivHeadTypeClassInfoVars": -8.787029, "UnivHeadTypeInfoVars": -8.787029, "UnivTypeArgInfos": -9.480177, "UnivTypeClassArgInfos": -9.480177, "UnivTypeClassInfoModes": -9.480177, "UnivTypeInfoModes": -9.480177, "UnivTypeLocns": -9.480177, "UnivTypes": -9.480177, "UnivUnconstrainedVars": -9.480177, "UnivVars": -9.480177, "UseMinimalModel": -9.074712, "UseMinimalModelStackCopyCut": -10.173324, "Val": -6.617976, "ValRef": -9.074712, "Value": -8.787029, "Var": -7.282952, "VarInfo": -8.787029, "VarLocnInfo": -7.870739, "VarName": -9.480177, "VarSet": -8.787029, "VarSetAfter": -9.480177, "VarSetBefore": -9.480177, "VarType": -9.480177, "VarTypes": -7.177592, "Vars": -8.227414, "Varset": -9.480177, "Vector": -9.480177, "X": -7.976099, "XVar": -7.976099, "XVarPrime": -9.480177, "Y": -8.093882, "YVars": -8.787029, "YVarsPrime": -9.480177, "[": -4.793426, "\\": -9.480177, "]": -4.788829, "^": -7.228885, "_": -5.491193, "_Changed": -9.480177, "_ForwardLiveVarsBefo": -10.173324, "_PredExistQVars": -10.173324, "_RttiVarMaps": -10.173324, "_S": -6.203032, "_TVarNameMap": -10.173324, "_VarSet": -10.173324, "_VarTypes": -10.173324, "_YVar": -10.173324, "_concise.": -10.173324, "_maximum_matrix_size": -10.173324, "_only": -9.480177, "_ralph.": -10.173324, "_verbose.": -10.173324, "`": -9.480177, "a": -6.030189, "abs_follow_vars": -10.173324, "abs_store_map": -9.480177, "accumulating": -6.323176, "acquire_temp_slot": -8.787029, "add_alloc_site_info": -9.480177, "add_closure_layout": -9.480177, "add_forward_live_vars": -9.480177, "add_out_of_line_code": -10.173324, "add_region_ops": -9.074712, "add_resume_layout_for_label": -9.480177, "add_scalar_static_cell": -9.480177, "add_scalar_static_cell_natural_types": -9.480177, "add_threadscope_string": -9.480177, "add_trace_layout_for_label": -9.480177, "add_trail_ops": -9.480177, "add_unification_typeinfos": -8.787029, "add_vector_static_cell": -9.480177, "after_all_branches": -10.173324, "agc_stack_layout": -10.173324, "alloc_site_id": -9.480177, "alloc_site_info": -9.074712, "allow_argument_packing": -10.173324, "allow_defn_of_builtins": -10.173324, "allow_hijacks": -10.173324, "allow_inlining": -10.173324, "allow_multi_arm_switches": -10.173324, "allow_some_paths_only_waits": -10.173324, "allow_stubs": -9.480177, "allow_undefined": -10.173324, "alphabet": -9.074712, "always_specialize_in_dep_par_conjs": -10.173324, "analyse_closures": -10.173324, "analyse_exceptions": -10.173324, "analyse_mm_tabling": -10.173324, "analyse_trail_usage": -10.173324, "analysis_file_cache_dir": -10.173324, "ansi_c": -10.173324, "any": -10.173324, "apply": -10.173324, "apply_rec_subst_to_tvar_list": -8.787029, "apply_rec_subst_to_type_list": -10.173324, "apply_subst_to_tvar_list": -10.173324, "apply_variable_renaming_to_prog_constraints": -10.173324, "apply_variable_renaming_to_tvar_kind_map": -10.173324, "apply_variable_renaming_to_tvar_list": -10.173324, "apply_variable_renaming_to_type_list": -9.074712, "arg_ref": -9.074712, "arity": -10.173324, "asm_labels": -10.173324, "assign": -6.841119, "assign_var": -9.074712, "assign_var_list": -8.093882, "assoc_list": -10.173324, "assoc_list.": -9.480177, "assoc_list.keys": -8.093882, "assume_gmake": -9.480177, "assumed": -9.480177, "at": -10.173324, "auto_comments": -9.480177, "aux_output_option": -10.173324, "b": -8.563886, "backend_foreign_languages": -10.173324, "backend_libs.builtin_ops.": -10.173324, "backend_libs.proc_label.": -10.173324, "basic_stack_layout": -10.173324, "benchmark_modes": -9.480177, "benchmark_modes_repeat": -9.480177, "bi_implication": -10.173324, "binary_switch_size": -10.173324, "body_should_use_typeinfo_liveness": -10.173324, "body_typeinfo_liveness": -9.480177, "bool": -4.392580, "bool.": -9.480177, "bool_special": -8.563886, "bound": -10.173324, "box_policy": -9.480177, "branch_end": -8.787029, "branch_end_info": -9.074712, "branch_end_info.": -10.173324, "build_typeclass_info_type": -9.480177, "c": -9.074712, "c_optimize": -10.173324, "cache_maps": -9.074712, "call_foreign_proc": -10.173324, "can_compare_compound_values": -10.173324, "can_compare_constants_as_ints": -10.173324, "can_pass_as_mercury_type": -8.563886, "cannot_branch_away": -8.787029, "canonicalize": -10.173324, "case": -8.787029, "cc": -10.173324, "cflags": -10.173324, "cflags_for_warnings": -10.173324, "char": -7.976099, "char__is_digit": -9.480177, "char__is_whitespace": -10.173324, "char_to_string": -10.173324, "check_dummy_type": -10.173324, "check_hlds.clause_to_proc.": -10.173324, "check_hlds.mode_util.": -10.173324, "check_hlds.type_util.": -9.480177, "check_marker": -10.173324, "checked_nondet_tailcalls": -10.173324, "cild_fail_info.": -10.173324, "cip_ts_rev_string_table": -9.074712, "cip_ts_string_table_size": -9.480177, "cip_ts_string_table_size.": -10.173324, "cis_auto_comments": -10.173324, "cis_containing_goal_map": -10.173324, "cis_emit_region_ops": -10.173324, "cis_emit_trail_ops": -10.173324, "cis_exprn_opts": -10.173324, "cis_globals": -10.173324, "cis_lcmc_null": -10.173324, "cis_maybe_trace_info": -10.173324, "cis_module_info": -10.173324, "cis_opt_no_resume_calls": -10.173324, "cis_opt_region_ops": -10.173324, "cis_opt_trail_ops": -10.173324, "cis_pred_id": -10.173324, "cis_pred_info": -10.173324, "cis_proc_id": -10.173324, "cis_proc_info": -10.173324, "cis_proc_label": -10.173324, "cis_proc_label.": -10.173324, "cis_var_slot_count": -10.173324, "cis_varset": -10.173324, "clang_flags": -10.173324, "clause": -9.480177, "clause_body": -9.480177, "clauses_info": -8.381564, "clauses_info_get_headvars": -9.480177, "clauses_info_get_rtti_varmaps": -10.173324, "clauses_info_get_varset": -10.173324, "clauses_info_get_vartypes": -9.480177, "cli_interpreter": -10.173324, "closure_proc_id_data": -9.480177, "code_addr.": -10.173324, "code_gen_option": -10.173324, "code_info": -5.419734, "code_info.": -10.173324, "code_info.get_var_types": -10.173324, "code_info_loc_dep": -8.787029, "code_info_persistent": -8.093882, "code_info_static": -8.563886, "code_label": -9.480177, "code_model": -10.173324, "commit_full_hijack": -9.480177, "commit_half_hijack": -9.480177, "commit_quarter_hijack": -9.480177, "commit_temp_frame": -10.173324, "common_data": -10.173324, "common_goal": -10.173324, "common_layout_data": -10.173324, "common_struct": -10.173324, "common_struct_preds": -10.173324, "compare_specialization": -10.173324, "comparison": -8.563886, "comparison_result": -10.173324, "compilation_model_option": -10.173324, "compile_only": -9.074712, "compile_to_c": -9.480177, "compile_to_shared_lib": -9.480177, "compiler_sufficiently_recent": -10.173324, "compiletime": -8.787029, "complicated_unify": -9.480177, "config_file": -10.173324, "conj": -9.074712, "conj_list_to_goal": -9.480177, "cons_id": -10.173324, "const": -8.563886, "const_struct_map": -9.480177, "constant_propagation": -10.173324, "constraint": -10.173324, "constraint_list_get_tvars": -9.074712, "constraint_map": -10.173324, "constraint_propagation": -10.173324, "constraints": -8.787029, "containing_goal_map": -8.787029, "context": -10.173324, "control_granularity": -10.173324, "convert_to_mercury": -8.563886, "copy_clauses_to_proc": -10.173324, "copy_module_clauses_to_procs": -10.173324, "copy_mutvar": -10.173324, "copy_ref_value": -10.173324, "cord.": -10.173324, "counter": -9.074712, "counter.": -10.173324, "counter.allocate": -9.480177, "coverage_profiling": -10.173324, "coverage_profiling_static": -10.173324, "coverage_profiling_via_calls": -10.173324, "create_pure_atomic_complicated_unification": -10.173324, "cross_compiling": -10.173324, "csharp": -9.480177, "csharp_compiler": -10.173324, "csharp_flags": -10.173324, "csharp_only": -9.480177, "curfr": -7.976099, "current_resume_point_vars": -10.173324, "cycle": -9.074712, "d": -8.381564, "data_id": -9.074712, "debug_closure": -9.480177, "debug_code_gen_pred_id": -9.480177, "debug_dep_par_conj": -9.480177, "debug_det": -9.074712, "debug_il_asm": -9.480177, "debug_indirect_reuse": -9.480177, "debug_intermodule_analysis": -9.480177, "debug_liveness": -9.480177, "debug_make": -9.480177, "debug_mm_tabling_analysis": -9.480177, "debug_mode_constraints": -9.480177, "debug_modes": -9.074712, "debug_modes_minimal": -9.480177, "debug_modes_pred_id": -9.480177, "debug_modes_statistics": -9.480177, "debug_modes_verbose": -9.480177, "debug_opt": -9.480177, "debug_opt_pred_id": -9.480177, "debug_opt_pred_name": -9.480177, "debug_pd": -9.480177, "debug_stack_opt": -9.480177, "debug_term": -9.074712, "debug_trail_usage": -9.480177, "debug_type_rep": -9.480177, "debug_types": -9.074712, "decl_debug": -10.173324, "deconstruct.": -10.173324, "deconstruct_top_down": -10.173324, "deep_profiling": -10.173324, "deforestation": -10.173324, "deforestation_cost_factor": -10.173324, "deforestation_depth_limit": -10.173324, "deforestation_size_threshold": -10.173324, "deforestation_vars_threshold": -10.173324, "delay_construct": -10.173324, "delay_death": -9.480177, "delay_death_max_vars": -9.480177, "delay_partial_instantiations": -10.173324, "demangle": -10.173324, "dense_switch_req_density": -10.173324, "dense_switch_size": -10.173324, "det": -7.340110, "det.": -5.411150, "det_commit_info": -9.480177, "det_copy_out": -10.173324, "detailed_statistics": -9.480177, "di": -5.882864, "disable_minimal_model_stack_copy_cut": -10.173324, "disable_minimal_model_stack_copy_pneg": -10.173324, "disable_trail_ops": -10.173324, "disj_hijack_info": -9.480177, "distance_granularity": -10.173324, "do_fail": -9.480177, "do_not_record_type_info_locns": -10.173324, "do_record_type_info_locns": -9.074712, "do_redo": -10.173324, "does_not_have_subgoals": -9.480177, "dotnet_library_version": -10.173324, "dump_hlds": -8.787029, "dump_hlds_alias": -9.074712, "dump_hlds_file_suffix": -9.480177, "dump_hlds_inst_limit": -9.480177, "dump_hlds_options": -9.480177, "dump_hlds_pred_id": -9.480177, "dump_hlds_pred_name": -9.480177, "dump_mlds": -9.074712, "dump_same_hlds": -9.480177, "dump_trace_counts": -9.480177, "e": -8.227414, "effect_resume_point": -10.173324, "eliminate_local_vars": -10.173324, "else": -9.074712, "emit_c_loops": -10.173324, "empty": -9.074712, "empty_cache_maps": -8.787029, "enable_const_struct": -10.173324, "enter_simple_neg": -10.173324, "entry_label": -9.480177, "env_type": -10.173324, "eof": -8.381564, "equality": -8.563886, "erlang": -9.480177, "erlang_compiler": -10.173324, "erlang_flags": -10.173324, "erlang_include_directory": -10.173324, "erlang_inhibit_trivial_warnings": -10.173324, "erlang_interpreter": -10.173324, "erlang_native_code": -10.173324, "erlang_object_file_extension": -10.173324, "erlang_only": -9.480177, "erlang_switch_on_strings_as_atoms": -10.173324, "error": -8.227414, "error_message": -10.173324, "errorcheck_only": -9.074712, "event_set_file_name": -9.480177, "everything_in_one_c_function": -10.173324, "excess_assign": -10.173324, "exec_trace": -10.173324, "exec_trace_tail_rec": -9.480177, "exist_constraints": -10.173324, "expand_class_method_bodies": -10.173324, "expect": -8.227414, "experiment": -10.173324, "expr.": -10.173324, "exprn": -8.227414, "exprn/": -10.173324, "exprn_opts": -10.173324, "extra_initialization_functions": -10.173324, "extra_library_header": -10.173324, "extract_ref_value": -9.074712, "f": -8.563886, "fact_table_hash_percent_full": -10.173324, "fact_table_max_array_size": -10.173324, "factor": -8.381564, "fail_info": -8.093882, "fail_info.": -9.480177, "feedback_file": -10.173324, "fgt_broken_goal": -10.173324, "fgt_invariants_broken": -9.480177, "fgt_invariants_kept": -9.480177, "fgt_invariants_status": -9.480177, "fgt_kept_goal": -10.173324, "fgt_marked_goal": -9.480177, "file_special": -10.173324, "filenames_from_stdin": -10.173324, "filter_region_vars": -9.480177, "find_all_recompilation_reasons": -9.480177, "fixup_pred_polymorphism": -8.787029, "fixup_quantification": -10.173324, "flag": -8.787029, "flags_file": -10.173324, "flat": -8.381564, "follow_code": -10.173324, "for": -9.480177, "force_disable_ssdebug": -9.480177, "force_disable_tracing": -9.480177, "foreign_code": -9.480177, "foreign_code_does_not_use_variable": -8.787029, "foreign_code_uses_variable": -10.173324, "foreign_decl": -10.173324, "foreign_proc": -6.323176, "foreign_proc_add_typeclass_info": -8.787029, "foreign_proc_add_typeinfo": -8.787029, "foreign_proc_code": -9.480177, "foreign_proc_raw_code": -8.787029, "foreign_type": -7.870739, "forward_goal_path": -10.173324, "frameopt_comments": -9.480177, "framework_directories": -9.480177, "frameworks": -10.173324, "from_ground_term": -10.173324, "from_ground_term_initial": -10.173324, "from_ground_term_threshold": -10.173324, "from_list": -7.870739, "fullarch": -10.173324, "fully_strict": -9.480177, "func": -7.976099, "functor": -10.173324, "g": -8.563886, "gcc_flags": -10.173324, "gcc_global_registers": -10.173324, "gcc_local_labels": -10.173324, "gcc_nested_functions": -10.173324, "gcc_non_local_gotos": -10.173324, "generate_branch_end": -9.480177, "generate_bytecode": -9.480177, "generate_dependencies": -9.074712, "generate_dependency_file": -9.480177, "generate_failure": -10.173324, "generate_item_version_numbers": -9.480177, "generate_mmc_make_module_dependencies": -9.074712, "generate_module_order": -9.480177, "generate_resume_point": -10.173324, "generate_semi_commit": -10.173324, "generate_source_file_mapping": -9.074712, "generate_standalone_interface": -9.480177, "generate_trail_ops_inline": -10.173324, "generic_mutvar": -8.093882, "generic_ref": -8.093882, "get_active_temps_data": -9.480177, "get_alloc_sites": -9.480177, "get_arginfo": -10.173324, "get_auto_comments": -10.173324, "get_cache_maps_snapshot": -9.480177, "get_clause_list": -10.173324, "get_closure_layouts": -10.173324, "get_closure_seq_counter": -9.480177, "get_const_struct_map": -10.173324, "get_constrained_vars": -9.480177, "get_containing_goal_map": -10.173324, "get_containing_goal_map_det": -10.173324, "get_cur_proc_label": -8.787029, "get_emit_region_ops": -10.173324, "get_emit_trail_ops": -10.173324, "get_fail_info": -8.787029, "get_follow_var_map": -10.173324, "get_globals": -9.480177, "get_headvars": -10.173324, "get_improved_exists_head_constraints": -8.787029, "get_instmap": -10.173324, "get_label_counter": -10.173324, "get_layout_info": -9.480177, "get_lcmc_null": -10.173324, "get_max_reg_in_use_at_trace": -10.173324, "get_max_temp_slot_count": -10.173324, "get_maybe_trace_info": -10.173324, "get_module_info": -8.563886, "get_mutvar": -8.563886, "get_next_closure_seq_no": -9.480177, "get_next_label": -9.074712, "get_next_non_reserved": -10.173324, "get_opt_no_return_calls": -10.173324, "get_opt_region_ops": -10.173324, "get_opt_trail_ops": -10.173324, "get_out_of_line_code": -10.173324, "get_persistent_temps": -9.480177, "get_pred_id": -8.787029, "get_pred_proc_arginfo": -9.480177, "get_proc_id": -9.074712, "get_proc_info": -9.480177, "get_proc_model": -10.173324, "get_proc_trace_events": -10.173324, "get_special_proc_det": -10.173324, "get_stack_slots": -10.173324, "get_static_cell_info": -8.787029, "get_temp_content_map": -9.480177, "get_temps_in_use": -9.074712, "get_threadscope_rev_string_table": -9.480177, "get_type_defn_body": -10.173324, "get_type_info_locn": -10.173324, "get_unconstrained_tvars": -10.173324, "get_used_env_vars": -10.173324, "get_var_locn_info": -8.563886, "get_var_slot_count": -10.173324, "get_var_types": -9.074712, "get_varset": -10.173324, "get_zombies": -10.173324, "global_data.add_scalar_static_cell": -10.173324, "global_data.add_scalar_static_cell_natural_types": -10.173324, "global_data.add_vector_static_cell": -10.173324, "globals": -10.173324, "globals.lookup_int_option": -10.173324, "goal_id": -10.173324, "goal_info_get_context": -9.074712, "goal_info_get_follow_vars": -10.173324, "goal_info_get_goal_id": -9.480177, "goal_info_get_instmap_delta": -10.173324, "goal_info_get_nonlocals": -9.074712, "goal_info_get_post_births": -10.173324, "goal_info_get_post_deaths": -9.480177, "goal_info_get_pre_births": -10.173324, "goal_info_get_pre_deaths": -10.173324, "goal_info_get_resume_point": -10.173324, "goal_info_set_nonlocals": -9.074712, "goto": -9.480177, "grade": -9.074712, "ground": -7.976099, "halt_at_auto_parallel_failure": -10.173324, "halt_at_syntax_errors": -10.173324, "halt_at_warn": -10.173324, "has_been_done": -10.173324, "has_subgoals": -10.173324, "have_delay_slot": -10.173324, "hello.": -10.173324, "help": -9.074712, "higher_order_arg_limit": -10.173324, "higher_order_size_limit": -10.173324, "highlevel_code": -9.480177, "highlevel_data": -10.173324, "hlds.arg_info.": -10.173324, "hlds.code_model.": -10.173324, "hlds.const_struct.": -10.173324, "hlds.from_ground_term_util.": -10.173324, "hlds.goal_util.": -10.173324, "hlds.hlds_args.": -10.173324, "hlds.hlds_clauses.": -10.173324, "hlds.hlds_code_util.": -10.173324, "hlds.hlds_data.": -9.480177, "hlds.hlds_desc.": -10.173324, "hlds.hlds_goal.": -10.173324, "hlds.hlds_llds.": -10.173324, "hlds.hlds_module.": -10.173324, "hlds.hlds_pred.": -10.173324, "hlds.hlds_rtti.": -10.173324, "hlds.instmap.": -9.480177, "hlds.passes_aux.": -10.173324, "hlds.pred_table.": -10.173324, "hlds.quantification.": -10.173324, "hlds.special_pred.": -10.173324, "hlds_du_type": -10.173324, "hlds_goal": -6.772126, "hlds_goal_expr": -9.480177, "hlds_goal_info": -7.775429, "hlds_pred.in_in_unification_proc_id": -10.173324, "host_env_type": -10.173324, "if": -8.787029, "if_val": -10.173324, "ignore_par_conjunctions": -10.173324, "il": -10.173324, "il_assembler": -10.173324, "il_byref_tailcalls": -10.173324, "il_funcptr_types": -10.173324, "il_only": -9.480177, "il_refany_fields": -10.173324, "ilasm_flags": -10.173324, "implementation.": -7.688417, "implicit_parallelism": -10.173324, "import_module": -5.578204, "imports_graph": -9.480177, "impure": -9.480177, "in": -4.365181, "in_mode": -9.074712, "index_det": -10.173324, "infer_all": -9.480177, "infer_det": -9.074712, "infer_modes": -9.480177, "infer_types": -9.480177, "inform_inferred": -9.480177, "inform_inferred_modes": -9.480177, "inform_inferred_types": -9.480177, "inform_ite_instead_of_switch": -9.480177, "inhibit_accumulator_warnings": -10.173324, "inhibit_warnings": -9.480177, "init_file_directories": -10.173324, "init_files": -10.173324, "init_poly_info": -10.173324, "inline_alloc": -10.173324, "inline_builtins": -10.173324, "inline_call_cost": -10.173324, "inline_compound_threshold": -10.173324, "inline_par_builtins": -10.173324, "inline_simple": -10.173324, "inline_simple_threshold": -10.173324, "inline_single_use": -10.173324, "inline_vars_threshold": -10.173324, "inlining": -10.173324, "insert": -10.173324, "install_command": -10.173324, "install_command_dir_option": -10.173324, "instance": -8.787029, "instance_method_constraints": -9.480177, "instmap.apply_instmap_delta": -10.173324, "int": -5.673514, "int.": -8.787029, "interface.": -7.870739, "intermod_directories": -10.173324, "intermod_inline_simple_threshold": -10.173324, "intermod_unused_args": -10.173324, "internal_label": -9.074712, "internal_layout_info": -8.381564, "internal_use_option": -10.173324, "introduce_accumulators": -10.173324, "introduce_exists_casts_proc": -10.173324, "introduce_partial_fgt_scopes": -10.173324, "io": -8.563886, "io.": -8.227414, "io.state": -8.787029, "io.write_string": -10.173324, "io__error_message": -9.480177, "io__nl": -10.173324, "io__read_byte": -10.173324, "io__read_char": -10.173324, "io__state": -8.787029, "io__stderr_stream": -10.173324, "io__write_byte": -10.173324, "io__write_char": -10.173324, "io__write_string": -9.480177, "io_mutvar": -10.173324, "io_ref": -10.173324, "is": -5.162689, "is_empty": -10.173324, "is_region_var": -10.173324, "ite_full_hijack": -10.173324, "ite_half_hijack": -10.173324, "ite_quarter_hijack": -10.173324, "ite_region_info": -10.173324, "java": -9.074712, "java_classpath": -10.173324, "java_compiler": -10.173324, "java_flags": -10.173324, "java_interpreter": -10.173324, "java_object_file_extension": -10.173324, "java_only": -9.480177, "jobs": -10.173324, "keep_going": -10.173324, "label": -8.787029, "language_semantics_option": -10.173324, "layout_compression_limit": -10.173324, "layout_label_info": -9.480177, "ld_flags": -10.173324, "ld_libflags": -10.173324, "least": -10.173324, "leave_simple_neg": -10.173324, "level": -10.173324, "lexically_order_constructors": -10.173324, "lib_linkages": -10.173324, "libgrade_install_check": -10.173324, "libgrades": -10.173324, "libgrades_exclude_components": -10.173324, "libgrades_include_components": -10.173324, "libs.": -10.173324, "libs.globals.": -9.480177, "libs.options.": -9.480177, "libs.trace_params.": -10.173324, "line_numbers": -9.074712, "link_libraries": -9.480177, "link_library_directories": -9.480177, "link_objects": -10.173324, "link_option": -10.173324, "link_ssdb_libs": -9.480177, "linkage": -10.173324, "linkage_special": -10.173324, "list": -6.203032, "list.": -9.480177, "list.condense": -8.787029, "list.delete_elems": -7.688417, "list.drop": -10.173324, "list.duplicate": -8.381564, "list.filter": -10.173324, "list.foldl": -8.381564, "list.foldl_corresponding": -9.074712, "list.length": -7.688417, "list.map": -7.400735, "list.map_foldl": -9.480177, "list.member": -10.173324, "list.remove_dups": -8.787029, "list.take": -10.173324, "list__reverse": -10.173324, "live_lvals_info": -8.787029, "ll_backend.code_info.": -10.173324, "ll_backend.code_util.": -10.173324, "ll_backend.continuation_info.": -10.173324, "ll_backend.global_data.": -10.173324, "ll_backend.layout.": -10.173324, "ll_backend.llds.": -10.173324, "ll_backend.opt_debug.": -10.173324, "ll_backend.trace_gen.": -10.173324, "ll_backend.var_locn.": -10.173324, "llconst_code_addr": -8.787029, "llconst_true": -10.173324, "llds_code": -8.227414, "llds_instr": -6.509762, "llds_type": -10.173324, "local_constraint_propagation": -10.173324, "local_module_id": -10.173324, "local_thread_engine_base": -10.173324, "local_var_access_threshold": -10.173324, "logical_not": -10.173324, "long_option": -4.692685, "lookup_cheaper_tag_test": -9.480177, "lookup_hlds_constraint_list": -8.787029, "lookup_switch_req_density": -10.173324, "lookup_switch_size": -10.173324, "lookup_type_defn": -10.173324, "lookup_var_type": -9.480177, "lookup_var_types": -8.563886, "loop_invariants": -10.173324, "low_level_debug": -10.173324, "lval": -6.078979, "main": -7.534267, "maj": -8.381564, "make": -10.173324, "make_analysis_registry": -9.480177, "make_entry_label": -10.173324, "make_existq_typeclass_info_vars": -9.480177, "make_fake_resume_map": -8.563886, "make_foreign_args": -10.173324, "make_head_vars": -9.074712, "make_interface": -8.787029, "make_optimization_interface": -8.787029, "make_private_interface": -9.074712, "make_proc_entry_label": -10.173324, "make_short_interface": -9.074712, "make_transitive_opt_interface": -8.787029, "make_typeclass_info_head_vars": -9.074712, "make_typeclass_info_vars": -9.074712, "make_vars_forward_live": -10.173324, "make_xml_documentation": -8.787029, "map": -8.787029, "map.": -9.480177, "map.det_insert": -9.074712, "map.det_update": -8.787029, "map.init": -8.563886, "map.is_empty": -10.173324, "map.keys": -9.074712, "map.lookup": -9.480177, "map.map_values_only": -10.173324, "map.search": -9.480177, "map.select": -10.173324, "map.to_assoc_list": -10.173324, "marker_class_method": -10.173324, "max_error_line_width": -9.480177, "max_jump_table_size": -10.173324, "max_specialized_do_call_class_method": -10.173324, "max_specialized_do_call_closure": -10.173324, "maxfr": -7.128801, "may_be_different": -10.173324, "may_not_duplicate": -9.480177, "maybe": -7.465274, "maybe.": -10.173324, "maybe_cheaper_tag_test.": -10.173324, "maybe_make_vars_forward_dead": -9.480177, "maybe_option_table": -9.480177, "maybe_pick_stack_resume_point": -10.173324, "maybe_polymorphism_process_pred": -9.074712, "maybe_restore_region_commit_frame": -10.173324, "maybe_restore_trail_info": -10.173324, "maybe_save_region_commit_frame": -9.074712, "maybe_save_trail_info": -10.173324, "maybe_string": -8.787029, "maybe_string_special": -10.173324, "mdbcomp.goal_path.": -9.480177, "mdbcomp.prim_data.": -9.480177, "mdbcomp.program_representation.": -10.173324, "memory_profiling": -10.173324, "mer_mode": -7.608374, "mer_type": -8.563886, "mercury_configuration_directory": -10.173324, "mercury_configuration_directory_special": -10.173324, "mercury_libraries": -10.173324, "mercury_library_directories": -10.173324, "mercury_library_directory_special": -10.173324, "mercury_library_special": -10.173324, "mercury_linkage": -10.173324, "mercury_linkage_special": -10.173324, "mercury_standard_library_directory": -10.173324, "mercury_standard_library_directory_special": -10.173324, "middle_rec": -10.173324, "min": -8.381564, "miscellaneous_option": -10.173324, "mod": -10.173324, "mode": -8.227414, "mode_constraints": -9.480177, "mode_inference_iteration_limit": -9.480177, "model_semi": -10.173324, "modifier": -9.480177, "module": -6.739337, "module_info": -7.465274, "module_info_get_preds": -9.074712, "module_info_get_type_table": -10.173324, "module_info_pred_info": -8.787029, "module_info_pred_proc_info": -9.480177, "module_info_set_const_struct_db": -10.173324, "module_info_set_pred_info": -10.173324, "module_info_set_preds": -10.173324, "msvc_flags": -10.173324, "multi.": -10.173324, "must_be_equal": -10.173324, "mutable": -9.480177, "mutable_always_boxed": -10.173324, "mutvar": -10.173324, "native_if_possible": -9.480177, "natural": -7.688417, "new_arg_ref": -9.074712, "new_mutvar": -8.563886, "new_ref": -8.787029, "new_type_class_rtti": -9.480177, "new_type_info_var_raw": -10.173324, "next_topnote": -7.282952, "nl": -10.173324, "no": -4.604979, "no_cheaper_tag_test": -10.173324, "no_resume_point": -10.173324, "no_type_info_builtin": -9.480177, "non_persistent_temp_slot": -8.787029, "non_rtti_var": -10.173324, "nondet_copy_out": -10.173324, "note": -6.589805, "num": -9.074712, "octave": -9.480177, "ok": -9.074712, "one": -10.173324, "opt_level": -10.173324, "opt_no_return_calls": -10.173324, "optimization_option": -10.173324, "optimize": -10.173324, "optimize_constructor_last_call": -10.173324, "optimize_constructor_last_call_accumulator": -10.173324, "optimize_constructor_last_call_null": -10.173324, "optimize_dead_procs": -10.173324, "optimize_delay_slot": -10.173324, "optimize_duplicate_calls": -10.173324, "optimize_dups": -10.173324, "optimize_format_calls": -10.173324, "optimize_frames": -10.173324, "optimize_fulljumps": -10.173324, "optimize_higher_order": -10.173324, "optimize_initializations": -10.173324, "optimize_jumps": -10.173324, "optimize_labels": -10.173324, "optimize_peep": -10.173324, "optimize_peep_mkword": -10.173324, "optimize_proc_dups": -10.173324, "optimize_reassign": -10.173324, "optimize_region_ops": -10.173324, "optimize_repeat": -10.173324, "optimize_saved_vars": -10.173324, "optimize_saved_vars_cell": -10.173324, "optimize_saved_vars_cell_all_path_node_ratio": -10.173324, "optimize_saved_vars_cell_candidate_headvars": -10.173324, "optimize_saved_vars_cell_cv_load_cost": -10.173324, "optimize_saved_vars_cell_cv_store_cost": -10.173324, "optimize_saved_vars_cell_full_path": -10.173324, "optimize_saved_vars_cell_fv_load_cost": -10.173324, "optimize_saved_vars_cell_fv_store_cost": -10.173324, "optimize_saved_vars_cell_include_all_candidates": -10.173324, "optimize_saved_vars_cell_loop": -10.173324, "optimize_saved_vars_cell_node_ratio": -10.173324, "optimize_saved_vars_cell_on_stack": -10.173324, "optimize_saved_vars_cell_op_ratio": -10.173324, "optimize_saved_vars_const": -10.173324, "optimize_tailcalls": -10.173324, "optimize_trail_usage": -10.173324, "optimize_unused_args": -10.173324, "option": -9.480177, "option_defaults_": -7.688417, "option_table": -9.480177, "options_files": -10.173324, "options_help": -10.173324, "options_search_directories": -10.173324, "order_make_by_timestamp": -10.173324, "orig_only": -10.173324, "origin_assertion": -10.173324, "origin_created": -10.173324, "origin_instance_method": -10.173324, "origin_lambda": -10.173324, "origin_special_pred": -10.173324, "origin_transformed": -10.173324, "origin_user": -10.173324, "out": -4.766152, "out_mode": -9.480177, "output_c_compiler_type": -9.074712, "output_c_include_directory_flags": -9.074712, "output_cc": -9.480177, "output_cflags": -9.480177, "output_compile_error_lines": -9.480177, "output_csharp_compiler_type": -9.480177, "output_file_name": -9.480177, "output_grade_defines": -9.480177, "output_grade_string": -9.480177, "output_libgrades": -9.480177, "output_library_link_flags": -9.480177, "output_link_command": -9.480177, "output_option": -10.173324, "output_shared_lib_link_command": -9.480177, "pair": -8.563886, "pair.": -9.480177, "par_loop_control": -10.173324, "par_loop_control_preserve_tail_recursion": -10.173324, "parallel_code_gen": -10.173324, "parallel_liveness": -10.173324, "params": -9.480177, "parse": -10.173324, "parse_tree.builtin_lib_types.": -9.480177, "parse_tree.mercury_to_mercury.": -10.173324, "parse_tree.prog_data.": -10.173324, "parse_tree.prog_mode.": -10.173324, "parse_tree.prog_type.": -9.480177, "parse_tree.prog_type_subst.": -10.173324, "parse_tree.set_of_var.": -9.480177, "pessimize_tailcalls": -10.173324, "pick_first_resume_point": -10.173324, "pick_stack_resume_point": -10.173324, "plain_call": -10.173324, "plain_conj": -9.074712, "poly_arg_vector": -7.976099, "poly_arg_vector_init": -10.173324, "poly_arg_vector_set_exist_type_infos": -10.173324, "poly_arg_vector_set_exist_typeclass_infos": -10.173324, "poly_arg_vector_set_instance_type_infos": -10.173324, "poly_arg_vector_set_instance_typeclass_infos": -10.173324, "poly_arg_vector_set_univ_type_infos": -10.173324, "poly_arg_vector_set_univ_typeclass_infos": -10.173324, "poly_arg_vector_to_list": -10.173324, "poly_info": -6.676816, "poly_info_get_const_struct_db": -10.173324, "poly_info_get_constraint_map": -8.787029, "poly_info_get_module_info": -9.480177, "poly_info_get_num_reuses": -9.480177, "poly_info_get_rtti_varmaps": -8.787029, "poly_info_get_typevarset": -9.480177, "poly_info_get_var_types": -8.563886, "poly_info_get_varset": -9.074712, "poly_info_set_num_reuses": -10.173324, "poly_info_set_rtti_varmaps": -9.074712, "poly_info_set_typevarset": -9.480177, "polymorphism": -10.173324, "polymorphism_do_make_type_info_vars": -8.563886, "polymorphism_introduce_exists_casts_pred": -9.074712, "polymorphism_process_call": -10.173324, "polymorphism_process_cases": -8.787029, "polymorphism_process_clause": -9.074712, "polymorphism_process_clause_info": -9.074712, "polymorphism_process_disj": -8.787029, "polymorphism_process_fgti_goals": -8.563886, "polymorphism_process_foreign_proc": -9.480177, "polymorphism_process_from_ground_term_initial": -9.480177, "polymorphism_process_generated_pred": -10.173324, "polymorphism_process_goal": -7.870739, "polymorphism_process_module": -10.173324, "polymorphism_process_new_call": -10.173324, "polymorphism_process_par_conj": -8.787029, "polymorphism_process_plain_conj": -8.787029, "polymorphism_process_pred": -8.787029, "polymorphism_process_pred_msg": -9.074712, "polymorphism_process_proc": -9.074712, "polymorphism_process_proc_in_table": -9.074712, "polymorphism_process_unify": -9.480177, "polymorphism_process_unify_functor": -9.480177, "pos_get_fail_info": -9.074712, "position_info": -7.775429, "position_info.": -10.173324, "post_goal_update": -9.480177, "pragma": -6.078979, "pragma_foreign_code_impl": -9.074712, "pre_goal_update": -9.480177, "pre_implicit_parallelism_simplify": -10.173324, "pre_prof_transforms_simplify": -10.173324, "pred": -5.231681, "pred_id": -8.093882, "pred_id_to_int": -10.173324, "pred_info": -7.870739, "pred_info_get_arg_types": -8.381564, "pred_info_get_class_context": -8.787029, "pred_info_get_clauses_info": -9.480177, "pred_info_get_exist_quant_tvars": -10.173324, "pred_info_get_markers": -10.173324, "pred_info_get_origin": -10.173324, "pred_info_get_procedures": -9.480177, "pred_info_get_tvar_kinds": -9.480177, "pred_info_is_imported": -9.480177, "pred_info_is_pseudo_imported": -10.173324, "pred_info_module": -9.480177, "pred_info_name": -9.480177, "pred_info_orig_arity": -9.480177, "pred_info_procids": -10.173324, "pred_info_set_arg_types": -10.173324, "pred_info_set_clauses_info": -10.173324, "pred_info_set_existq_tvar_binding": -10.173324, "pred_info_set_procedures": -9.480177, "pred_info_set_typevarset": -10.173324, "predicate": -10.173324, "prefer_switch": -10.173324, "prepare_for_disj_hijack": -10.173324, "pretest_equality_cast_pointers": -10.173324, "prevfr_slot": -9.480177, "print": -9.074712, "private_builtin.ref": -9.480177, "proc": -10.173324, "proc_affects_liveness": -9.480177, "proc_arg_vector": -8.227414, "proc_arg_vector_partition_poly_args": -10.173324, "proc_arg_vector_set_exist_type_infos": -10.173324, "proc_arg_vector_set_exist_typeclass_infos": -10.173324, "proc_arg_vector_set_instance_type_infos": -10.173324, "proc_arg_vector_set_instance_typeclass_infos": -10.173324, "proc_arg_vector_set_univ_type_infos": -10.173324, "proc_arg_vector_set_univ_typeclass_infos": -10.173324, "proc_arg_vector_to_list": -9.480177, "proc_does_not_affect_liveness": -9.480177, "proc_id": -8.381564, "proc_info": -8.787029, "proc_info_arg_info": -10.173324, "proc_info_get_argmodes": -10.173324, "proc_info_get_headvars": -9.480177, "proc_info_get_rtti_varmaps": -10.173324, "proc_info_get_vartypes": -10.173324, "proc_info_interface_code_model": -10.173324, "proc_info_set_argmodes": -10.173324, "proc_info_set_headvars": -10.173324, "proc_info_set_rtti_varmaps": -10.173324, "proc_info_set_varset": -10.173324, "proc_info_set_vartypes": -10.173324, "proc_label": -9.480177, "proc_label_layout_info": -10.173324, "proc_may_duplicate": -9.480177, "proc_size_statistics": -9.480177, "proc_table": -9.480177, "proc_will_not_call_mercury": -9.480177, "procid_stack_layout": -10.173324, "procs_per_c_function": -9.480177, "produce_existq_tvars": -9.480177, "prof": -10.173324, "prof_optimized": -9.074712, "profile_calls": -10.173324, "profile_deep": -10.173324, "profile_deep_coverage_after_goal": -10.173324, "profile_deep_coverage_branch_disj": -10.173324, "profile_deep_coverage_branch_ite": -10.173324, "profile_deep_coverage_branch_switch": -10.173324, "profile_memory": -10.173324, "profile_time": -10.173324, "profiling": -9.480177, "prog_constraint": -9.074712, "prog_constraints": -10.173324, "prog_context": -10.173324, "prog_type.constraint_list_get_tvars": -9.480177, "prog_type.type_list_to_var_list": -10.173324, "prog_var": -6.617976, "prog_varset": -7.976099, "promise_pure": -6.281504, "prop_mode_constraints": -9.074712, "put_commit_in_own_func": -10.173324, "put_nondet_env_on_heap": -10.173324, "qualifier": -9.480177, "quoted_cflag": -10.173324, "quoted_clang_flag": -10.173324, "quoted_csharp_flag": -10.173324, "quoted_erlang_flag": -10.173324, "quoted_gcc_flag": -10.173324, "quoted_ilasm_flag": -10.173324, "quoted_java_flag": -10.173324, "quoted_ld_flag": -10.173324, "quoted_ld_libflag": -10.173324, "quoted_msvc_flag": -10.173324, "rank": -9.480177, "read_char": -10.173324, "rebuild": -10.173324, "reclaim_heap_on_failure": -10.173324, "reclaim_heap_on_nondet_failure": -10.173324, "reclaim_heap_on_semidet_failure": -10.173324, "redofr_slot": -8.227414, "redoip_slot": -7.228885, "ref": -10.173324, "ref_functor": -10.173324, "reg": -10.173324, "reg_r": -10.173324, "region_analysis": -10.173324, "region_commit_stack_frame": -8.787029, "region_ite_nondet_cond_fail": -10.173324, "rem": -10.173324, "rem_forward_live_vars": -9.074712, "remember_position": -9.074712, "reorder_conj": -9.480177, "reorder_disj": -9.480177, "report_cmd_line_args": -9.480177, "report_cmd_line_args_in_doterr": -9.480177, "require.": -8.381564, "reset_resume_known": -9.480177, "reset_to_position": -9.074712, "restore_maxfr": -9.480177, "restricted_command_line": -10.173324, "resume_point": -10.173324, "resume_point_info": -10.173324, "resume_point_known": -9.074712, "resume_point_stack_addr": -10.173324, "resume_point_unknown": -9.074712, "rhs_functor": -9.480177, "rhs_lambda_goal": -10.173324, "rhs_var": -9.480177, "rot": -5.968631, "rot_n": -9.480177, "rtti_det_insert_type_info_locn": -9.074712, "rtti_line_numbers": -10.173324, "rtti_lookup_type_info_locn": -10.173324, "rtti_reuse_typeclass_info_var": -9.074712, "rtti_varmaps": -8.381564, "rtti_varmaps_var_info": -10.173324, "rule": -9.074712, "runtime_flags": -10.173324, "runtime_link_library_directories": -9.480177, "rval": -9.480177, "save_hp_in_branch": -10.173324, "save_maxfr": -10.173324, "scan": -7.400735, "scope": -10.173324, "search_directories": -9.480177, "search_hlds_constraint_list": -10.173324, "search_library_files_directories": -10.173324, "search_library_files_directory_special": -10.173324, "search_type_ctor_defn": -10.173324, "search_type_defn": -9.074712, "selected_pred": -10.173324, "semi_commit_info": -9.480177, "semidet": -10.173324, "semidet.": -8.787029, "separate_assemblies": -9.480177, "set": -8.093882, "set.": -9.074712, "set.init": -8.787029, "set.make_singleton_set": -10.173324, "set.union": -10.173324, "set_alloc_sites": -9.480177, "set_cache_maps_snapshot": -8.563886, "set_clause_list": -10.173324, "set_closure_layouts": -9.480177, "set_closure_seq_counter": -9.480177, "set_created_temp_frame": -10.173324, "set_fail_info": -8.563886, "set_follow_vars": -9.480177, "set_instmap": -10.173324, "set_label_counter": -9.480177, "set_layout_info": -9.074712, "set_max_reg_in_use_at_trace": -10.173324, "set_max_temp_slot_count": -10.173324, "set_maybe_trace_info": -10.173324, "set_mutvar": -8.787029, "set_of_progvar": -8.787029, "set_of_progvar.": -10.173324, "set_of_var.filter": -10.173324, "set_of_var.insert_list": -9.480177, "set_of_var.list_to_set": -9.480177, "set_of_var.union": -10.173324, "set_persistent_temps": -10.173324, "set_proc_trace_events": -10.173324, "set_ref": -9.074712, "set_ref_value": -9.480177, "set_selected_pred": -9.480177, "set_static_cell_info": -8.787029, "set_succip_used": -9.480177, "set_temp_content_map": -10.173324, "set_temps_in_use": -9.480177, "set_tree": -8.787029, "set_used_env_vars": -10.173324, "set_var_locn_info": -9.480177, "set_zombies": -10.173324, "setup_headvars": -9.480177, "setup_headvars_": -8.787029, "setup_headvars_instance_method": -9.480177, "shared_library_extension": -10.173324, "sharp": -10.173324, "short_option": -6.617976, "shorthand": -10.173324, "should_pretest_equality": -10.173324, "show_dependency_graph": -9.480177, "show_make_times": -10.173324, "sign_assembly": -9.480177, "simple_mode_constraints": -9.480177, "simple_neg": -10.173324, "simple_neg_info": -10.173324, "singleton": -7.775429, "size_region_commit_entry": -10.173324, "size_region_commit_fixed": -10.173324, "size_region_disj_fixed": -10.173324, "size_region_disj_snapshot": -10.173324, "size_region_ite_fixed": -10.173324, "size_region_ite_protect": -10.173324, "size_region_ite_snapshot": -10.173324, "size_region_semi_disj_protect": -10.173324, "slot_contents": -9.074712, "slot_lval": -8.787029, "smart_indexing": -10.173324, "smart_recompilation": -9.480177, "solutions.": -10.173324, "solver_type_auto_init": -10.173324, "some": -10.173324, "source_to_source_debug": -9.074712, "special": -9.480177, "special_optimization_option": -10.173324, "special_pred_id": -10.173324, "special_preds": -9.480177, "ssdb_trace_level": -10.173324, "stack.": -10.173324, "stack.det_top": -9.074712, "stack_trace": -10.173324, "stack_trace_higher_order": -9.480177, "standardize_labels": -10.173324, "state": -9.480177, "static_cell_info": -9.074712, "static_code_addresses": -10.173324, "static_ground_cells": -10.173324, "static_ground_floats": -10.173324, "statistics": -9.074712, "stderr_stream": -10.173324, "store": -6.646963, "store.": -10.173324, "store.do_init": -8.381564, "store.init": -10.173324, "store.new_cyclic_mutvar": -10.173324, "store.set_mutvar": -10.173324, "store.unsafe_arg_ref": -10.173324, "store.unsafe_new_arg_ref": -10.173324, "store.unsafe_new_uninitialized_mutvar": -9.480177, "store_compare": -9.480177, "store_compare.": -8.563886, "store_equal": -8.227414, "store_mutvar": -10.173324, "store_ref": -10.173324, "strict_sequential": -9.480177, "string": -6.412124, "string.": -8.563886, "string.append_list": -10.173324, "string__det_to_int": -10.173324, "string__from_char_list": -10.173324, "string_binary_switch_size": -10.173324, "string_hash_switch_size": -10.173324, "string_special": -7.282952, "strip": -10.173324, "structure": -9.480177, "sub_string_search": -10.173324, "succip_is_used": -10.173324, "support_ms_clr": -10.173324, "support_rotor_clr": -10.173324, "suppress_trace": -9.480177, "switch_detection_bug.": -10.173324, "switch_multi_rec_base_first": -10.173324, "switch_single_rec_base_first": -10.173324, "sym_name": -9.480177, "sym_name_to_string_sep": -10.173324, "sync_term_size": -10.173324, "table_debug": -10.173324, "tag_switch_size": -10.173324, "takewhile": -10.173324, "target": -10.173324, "target_code_compilation_option": -10.173324, "target_code_only": -9.074712, "target_debug": -10.173324, "target_env_type": -10.173324, "term": -7.870739, "term.": -9.480177, "term.context": -10.173324, "term.context_init": -9.480177, "the": -8.787029, "then": -9.074712, "time_profiling": -10.173324, "token": -8.563886, "trace": -8.787029, "trace_goal_flags": -9.480177, "trace_info": -9.074712, "trace_init_files": -10.173324, "trace_level": -9.480177, "trace_optimized": -9.074712, "trace_port": -10.173324, "trace_port_layout_info": -10.173324, "trace_prof": -9.480177, "trace_slot_info": -10.173324, "trace_stack_layout": -10.173324, "trace_table_io": -9.480177, "trace_table_io_all": -9.480177, "trace_table_io_only_retry": -9.480177, "trace_table_io_require": -9.480177, "trace_table_io_states": -9.480177, "trad_passes": -10.173324, "true": -9.480177, "true_goal": -10.173324, "try_goal": -10.173324, "try_switch_size": -10.173324, "tuple": -10.173324, "tuple_costs_ratio": -10.173324, "tuple_min_args": -10.173324, "tuple_trace_counts_file": -10.173324, "tvar": -7.976099, "tvarset": -9.074712, "tvarset_merge_renaming": -9.480177, "type": -6.772126, "type_check_constraints": -10.173324, "type_ctor_functors": -10.173324, "type_ctor_info": -9.074712, "type_ctor_info.": -10.173324, "type_ctor_layout": -9.480177, "type_inference_iteration_limit": -9.480177, "type_info": -9.480177, "type_info_kind": -9.480177, "type_info_locn": -10.173324, "type_info_locn_var": -10.173324, "type_info_type": -10.173324, "type_info_var": -10.173324, "type_list_subsumes": -9.480177, "type_list_subsumes_det": -9.074712, "type_specialization": -10.173324, "type_to_ctor_det": -10.173324, "type_vars": -9.480177, "type_vars_list": -8.563886, "typecheck_ambiguity_error_limit": -10.173324, "typecheck_ambiguity_warn_limit": -10.173324, "typecheck_only": -9.074712, "typeclass_info_var": -10.173324, "typed_rval": -10.173324, "umc_explicit": -10.173324, "unboxed_enums": -10.173324, "unboxed_float": -10.173324, "unboxed_no_tag_types": -10.173324, "underscore_and_tvar_name": -9.074712, "undo_disj_hijack": -10.173324, "unexpected": -7.400735, "unification": -8.563886, "unification_typeinfos": -9.074712, "unification_typeinfos_rtti_varmaps": -10.173324, "unify": -7.976099, "unify_context": -9.480177, "unify_mode": -10.173324, "unify_rhs": -9.480177, "unneeded_code": -10.173324, "unneeded_code_copy_limit": -10.173324, "unneeded_code_debug": -10.173324, "unneeded_code_debug_pred_name": -10.173324, "unop": -10.173324, "unproven": -9.074712, "unsafe_arg_ref": -9.074712, "unsafe_new_arg_ref": -9.074712, "unsafe_new_uninitialized_mutvar": -9.074712, "unsafe_ref_value": -8.381564, "untrailed": -9.480177, "untuple": -10.173324, "uo": -5.968631, "use_activation_counts": -10.173324, "use_and_maybe_pop_region_frame": -10.173324, "use_atomic_cells": -10.173324, "use_float_registers": -10.173324, "use_grade_subdirs": -10.173324, "use_local_vars": -10.173324, "use_macro_for_redo_fail": -10.173324, "use_minimal_model_stack_copy_cut": -10.173324, "use_minimal_model_stack_copy_pneg": -10.173324, "use_readline": -10.173324, "use_search_directories_for_intermod": -10.173324, "use_subdirs": -10.173324, "user_event_info": -10.173324, "user_guided_type_specialization": -10.173324, "var_locn_get_follow_var_map": -10.173324, "var_locn_get_next_non_reserved": -10.173324, "var_locn_get_stack_slots": -10.173324, "var_locn_info": -9.480177, "var_locn_set_follow_vars": -10.173324, "variable_is_of_dummy_type": -10.173324, "variable_name": -9.480177, "variable_type": -9.480177, "varset.": -9.480177, "varset.is_empty": -10.173324, "varset.lookup_name": -9.480177, "varset.max_var": -9.480177, "varset.search_name": -10.173324, "vartypes": -8.093882, "vartypes.": -10.173324, "vartypes_is_empty": -10.173324, "verbose": -9.074712, "verbose_commands": -9.480177, "verbose_dump_mlds": -9.074712, "verbose_errors": -9.074712, "verbose_make": -9.480177, "verbose_recompilation": -9.480177, "verbosity_option": -10.173324, "verifiable_code": -10.173324, "version": -10.173324, "very_verbose": -9.074712, "warn_dead_procs": -9.480177, "warn_det_decls_too_lax": -9.480177, "warn_duplicate_calls": -9.480177, "warn_inferred_erroneous": -9.480177, "warn_insts_without_matching_type": -9.480177, "warn_interface_imports": -9.480177, "warn_known_bad_format_calls": -9.480177, "warn_missing_module_name": -9.480177, "warn_missing_opt_files": -9.480177, "warn_missing_trans_opt_deps": -9.480177, "warn_missing_trans_opt_files": -9.480177, "warn_non_contiguous_clauses": -9.480177, "warn_non_contiguous_foreign_procs": -9.480177, "warn_non_stratification": -9.480177, "warn_non_tail_recursion": -9.480177, "warn_non_term_special_preds": -9.480177, "warn_nothing_exported": -9.480177, "warn_obsolete": -9.480177, "warn_overlapping_scopes": -9.480177, "warn_simple_code": -9.480177, "warn_singleton_vars": -9.480177, "warn_smart_recompilation": -9.480177, "warn_state_var_shadowing": -9.480177, "warn_stubs": -9.480177, "warn_suspicious_foreign_procs": -9.480177, "warn_table_with_inline": -9.480177, "warn_target_code": -9.480177, "warn_undefined_options_variables": -9.480177, "warn_unification_cannot_succeed": -9.480177, "warn_unknown_format_calls": -9.480177, "warn_unresolved_polymorphism": -9.480177, "warn_unused_args": -9.480177, "warn_unused_imports": -9.480177, "warn_up_to_date": -9.480177, "warn_wrong_module_name": -9.480177, "where": -8.227414, "will_not_call_mercury": -6.323176, "will_not_modify_trail": -8.227414, "wont_be_done": -10.173324, "write_pred_progress_message": -10.173324, "x": -8.787029, "xx": -10.173324, "yes": -5.558203, "z": -10.173324, "{": -7.340110, "|": -6.617976, "}": -7.400735, }, "Meson": map[string]float64{ "!": -4.890349, "(": -2.405442, ")": -2.405442, "+": -4.197202, ",": -2.587764, "-": -4.890349, ".format": -4.890349, ":": -2.810908, "<": -4.890349, "=": -2.492454, "?": -4.890349, "[": -3.791737, "\\": -3.098590, "]": -3.504055, "add_global_arguments": -4.890349, "add_global_link_arguments": -4.890349, "and": -4.197202, "bar": -4.890349, "baz": -4.197202, "blah": -4.890349, "elif": -3.504055, "else": -4.890349, "endforeach": -4.197202, "endif": -4.890349, "false": -3.791737, "foo": -2.587764, "foreach": -4.197202, "gnome": -4.890349, "gnome.do_something": -4.890349, "if": -4.890349, "import": -4.890349, "include_directories": -4.197202, "kwarg": -4.890349, "meson.source_root": -4.890349, "message": -4.890349, "not": -4.890349, "ntest": -4.890349, "option": -4.890349, "or": -4.890349, "project": -4.890349, "string": -4.197202, "te": -4.890349, "test": -3.504055, "true": -3.280911, "type": -4.890349, "value": -4.890349, "version": -4.890349, }, "Metal": map[string]float64{ "#include": -5.483759, "(": -2.539320, ")": -2.539320, "*": -4.162003, "*forwardProjection": -6.176906, "*fwdProjMissingPoints": -6.870053, "*minmaxdata": -6.176906, "*normalsMap": -6.870053, "*outRendering": -6.176906, "*params": -5.260615, "*pointsMap": -6.870053, "*pointsRay": -5.483759, "*voxelData": -6.176906, "*voxelIndex": -6.176906, "+": -4.305104, ",": -2.593387, "-": -3.343693, "/": -5.260615, ":": -5.483759, ";": -3.692000, "<ITMVoxel,>": -6.176906, "<false>": -6.176906, "<metal_stdlib>": -6.870053, "=": -3.502758, ">": -3.063391, "CONSTPTR": -4.162003, "CreateICPMaps_Params": -5.260615, "DEVICEPTR": -4.924143, "ITMVoxel": -6.176906, "ITMVoxelIndex": -5.483759, "IndexData": -6.176906, "M": -6.870053, "TO_VECTOR": -6.176906, "Vector": -4.305104, "[": -2.475604, "]": -2.475604, "blockDim": -5.260615, "blockDim.x": -5.260615, "blockDim.y": -5.483759, "blockIdx": -5.260615, "blockIdx.x": -5.260615, "blockIdx.y": -5.483759, "buffer": -3.779011, "castRay": -6.176906, "const": -4.162003, "float": -5.483759, "floor": -5.483759, "forwardProjectPixel": -6.870053, "forwardProject_device": -6.870053, "forwardProjection": -6.176906, "fwdProjMissingPoints": -6.870053, "genericRaycastVGMissingPoints_device": -6.870053, "genericRaycastVH_device": -6.870053, "if": -5.078294, "imgSize.x": -4.567468, "imgSize.xy": -5.771441, "imgSize.y": -5.483759, "imgSize.z": -6.870053, "int": -4.036840, "invM": -6.176906, "invProjParams": -6.176906, "kernel": -5.260615, "lightSource": -6.176906, "lightSource.w": -6.176906, "locId": -4.385147, "locId_new": -5.771441, "metal": -6.870053, "minmaxdata": -6.176906, "minmaximg_subsample": -5.483759, "namespace": -6.870053, "normalsMap": -6.870053, "outRendering": -6.176906, "params": -3.373546, "pixel": -5.771441, "pointId": -5.771441, "pointsMap": -6.870053, "pointsRay": -5.483759, "processPixelForwardRender": -6.870053, "processPixelICP": -6.870053, "projParams": -6.870053, "renderForward_device": -6.870053, "renderICP_device": -6.870053, "return": -5.260615, "threadIdx": -5.260615, "threadIdx.x": -5.260615, "threadIdx.y": -5.483759, "thread_position_in_threadgroup": -5.260615, "threadgroup_position_in_grid": -5.260615, "threads_per_threadgroup": -5.260615, "typename": -6.176906, "uint": -4.162003, "using": -6.870053, "void": -5.260615, "voxelData": -6.176906, "voxelIndex": -6.176906, "voxelSizes.x": -5.771441, "voxelSizes.y": -6.176906, "x": -4.036840, "y": -3.979682, "{": -5.260615, "||": -5.483759, "}": -5.260615, }, "Modelica": map[string]float64{ "(": -2.654632, ")": -2.656024, "*": -8.827028, "*cgeo*fn": -9.925640, "*d": -9.925640, "*der": -8.316202, "*phi": -9.925640, "*pi*": -9.925640, "+": -7.360691, ",": -1.601789, "-": -2.849831, "/": -9.925640, "//Modelica.Mechanics.Translational.Components.Fixed": -9.925640, "//Modelica.Mechanics.Translational.Examples.ElastoGap": -9.925640, "//Modelica/Resources/Images/Mechanics/Translational/ElastoGap": -9.925640, "//Modelica/Resources/Images/Mechanics/Translational/InitialConditions.png": -9.925640, "//Modelica/Resources/Images/Mechanics/Translational/PreLoad": -8.827028, "//Modelica/Resources/Images/Mechanics/Translational/PreLoad.png": -9.925640, "//www.springerlink.com/content/h": -9.925640, ":": -7.092427, ";": -3.566066, "<": -8.827028, "</a>": -8.316202, "</b>": -6.141451, "</dl>": -8.316202, "</html>": -6.399280, "</i>": -7.360691, "</li>": -7.286583, "</ol>": -8.827028, "</p>": -5.814766, "</pre>": -7.286583, "</ul>": -8.133881, "<IMG>": -8.316202, "<a>": -8.316202, "<b>": -6.141451, "<br>": -6.429133, "<dd>": -7.623055, "<dl>": -8.316202, "<dt>": -7.623055, "<html>": -6.399280, "<i>": -7.360691, "<img>": -9.925640, "<li>": -7.153052, "<ol>": -8.827028, "<p>": -5.782506, "<pre>": -7.286583, "<ul>": -8.133881, "=": -2.403781, ">": -9.925640, "A": -9.925640, "Accelerate": -9.232493, "Andre.Schneider@eas.iis.fraunhofer.de": -9.925640, "Angle": -8.539346, "AngularVelocity": -8.539346, "Area": -9.925640, "Blocks.Sources.Constant": -9.925640, "Blocks.Sources.Sine": -9.232493, "Boolean": -9.925640, "Brake": -8.827028, "C": -9.925640, "C*der": -9.925640, "Christoph.Clauss@eas.iis.fraunhofer.de": -9.925640, "Components": -9.925640, "Components.Brake": -9.925640, "Components.Damper": -9.925640, "Components.ElastoGap": -8.827028, "Components.Fixed": -8.827028, "Components.Mass": -8.133881, "Components.MassWithStopAndFriction": -9.925640, "Components.Rod": -9.232493, "Components.Spring": -9.925640, "Components.SpringDamper": -8.539346, "Components.SupportFriction": -9.232493, "ConvectionCoefficient": -9.232493, "CurrentSensor": -9.232493, "Damper": -8.539346, "Diagram": -7.217590, "Dialog": -9.925640, "Documentation": -6.558345, "ElastoGap": -8.539346, "Ellipse": -7.846199, "Examples": -9.232493, "Examples.Utilities.GenerateStribeckFrictionTable": -9.925640, "F_Coulomb": -8.133881, "F_Stribeck": -8.316202, "F_Stribeck*exp": -9.925640, "F_prop": -8.316202, "F_prop*table": -9.925640, "FillPattern.Solid": -6.314722, "FillPattern.Sphere": -7.846199, "Fixed": -9.232493, "Forward": -9.232493, "Friction": -9.232493, "Gc": -9.925640, "GearSubsystemModel": -9.232493, "GenerateStribeckFrictionTable": -9.232493, "HeatLosses": -9.232493, "Icon": -7.360691, "Inertia": -9.232493, "InitialConditions": -9.232493, "Integer": -9.232493, "Interfaces.Flange_b": -9.925640, "Interfaces.NegativePin": -9.232493, "Interfaces.PositivePin": -8.827028, "Interval": -7.360691, "J": -8.539346, "Joints.Revolute": -9.925640, "L": -6.164440, "L*der": -9.925640, "Line": -4.380463, "LinePattern.Dot": -8.316202, "LotkaVolterra": -9.232493, "Mass": -8.827028, "Modelica": -9.232493, "Modelica.Blocks.Interfaces.RealInput": -9.925640, "Modelica.Blocks.Interfaces.RealOutput": -8.539346, "Modelica.Blocks.Math.Product": -9.925640, "Modelica.Blocks.Sources.Constant": -8.539346, "Modelica.Blocks.Sources.Sine": -8.316202, "Modelica.Blocks.Sources.Step": -9.925640, "Modelica.Constants.g_n": -9.925640, "Modelica.Constants.pi": -9.925640, "Modelica.Electrical.Analog": -9.925640, "Modelica.Electrical.Analog.Interfaces.NegativePin": -9.232493, "Modelica.Electrical.Analog.Interfaces.PositivePin": -9.232493, "Modelica.Electrical.Analog.Sensors.CurrentSensor": -9.925640, "Modelica.Electrical.Analog.Sensors.VoltageSensor": -9.925640, "Modelica.Icons.Example": -7.440734, "Modelica.Icons.ExamplesPackage": -9.925640, "Modelica.Icons.Function": -9.925640, "Modelica.Icons.Package": -9.232493, "Modelica.Icons.RotationalSensor": -8.827028, "Modelica.Icons.SensorsPackage": -9.925640, "Modelica.Icons.UtilitiesPackage": -9.925640, "Modelica.Math.tempInterpol": -7.623055, "Modelica.Mechanics": -9.925640, "Modelica.Mechanics.MultiBody.Joints": -9.925640, "Modelica.Mechanics.MultiBody.Parts": -9.925640, "Modelica.Mechanics.MultiBody.World": -9.925640, "Modelica.Mechanics.Translational.Components.Brake": -9.232493, "Modelica.Mechanics.Translational.Components.Fixed": -9.925640, "Modelica.Mechanics.Translational.Components.Mass": -9.232493, "Modelica.Mechanics.Translational.Components.MassWithStopAndFriction": -9.232493, "Modelica.Mechanics.Translational.Interfaces.PartialCompliantWithRelativeStates": -9.925640, "Modelica.Mechanics.Translational.Interfaces.PartialElementaryTwoFlangesAndSupport": -9.232493, "Modelica.Mechanics.Translational.Sensors.MultiSensor": -9.925640, "Modelica.SIunits": -9.925640, "Modelica.SIunits.*": -9.925640, "Modelica.SIunits.Angle": -9.232493, "Modelica.SIunits.Area": -9.925640, "Modelica.SIunits.Capacitance": -9.925640, "Modelica.SIunits.CoefficientOfHeatTransfer": -9.925640, "Modelica.SIunits.Current": -8.827028, "Modelica.SIunits.Diameter": -9.925640, "Modelica.SIunits.Force": -7.979730, "Modelica.SIunits.Inductance": -9.925640, "Modelica.SIunits.Length": -9.232493, "Modelica.SIunits.Mass": -9.232493, "Modelica.SIunits.Position": -9.232493, "Modelica.SIunits.Resistance": -9.925640, "Modelica.SIunits.SpecificHeatCapacity": -9.925640, "Modelica.SIunits.Temperature": -9.925640, "Modelica.SIunits.Time": -9.232493, "Modelica.SIunits.Voltage": -9.232493, "Modelica.Thermal.HeatTransfer.Interfaces.PartialElementaryConditionalHeatPortWithoutT": -8.316202, "Modelica/package.mo": -9.925640, "ModelicaByExample": -8.827028, "ModelicaByExample.PackageExamples": -8.539346, "ModelicaByExample.Subsystems": -9.232493, "ModelicaByExample.Subsystems.Pendula": -9.232493, "NestedPackages": -9.232493, "NewtonCooling": -9.232493, "Oscillator": -9.232493, "PackageExamples": -9.232493, "Parts.BodyCylinder": -9.925640, "Parts.Fixed": -9.925640, "Parts.PointMass": -9.925640, "Pendula": -9.232493, "Pendulum": -8.827028, "Placement": -4.915005, "Polygon": -6.747587, "PotentialSensor": -9.232493, "PowerSensor": -9.232493, "PreLoad": -9.232493, "R": -9.925640, "RLC": -9.232493, "RabbitFatalities": -9.925640, "RabbitReproduction": -9.925640, "Rabbits": -9.925640, "Real": -7.092427, "Rectangle": -7.286583, "Rod": -9.232493, "RotationalDampingConstant": -9.232493, "RotationalSpringConstant": -9.232493, "SI": -9.925640, "SI.Acceleration": -8.827028, "SI.Distance": -9.925640, "SI.Force": -8.539346, "SI.Mass": -9.925640, "SI.Position": -8.316202, "SI.TranslationalDampingConstant": -8.539346, "SI.TranslationalSpringConstant": -8.827028, "SI.Velocity": -8.827028, "SecondOrderSystem": -9.232493, "Sensors": -8.539346, "SignConvention": -9.232493, "Smooth.None": -5.382346, "Sources.Force": -9.925640, "SpecificHeat": -9.232493, "Spring": -9.232493, "SpringDamper": -9.232493, "StateSelect": -9.925640, "StateSelect.default": -9.925640, "StopTime": -7.360691, "SupportFriction": -9.232493, "System": -9.232493, "T": -7.846199, "T/": -9.925640, "TAmbient": -9.925640, "TAmbient.port": -9.925640, "T_inf": -9.232493, "Temperature": -8.827028, "Text": -6.141451, "Thermal.HeatTransfer.Celsius.FixedTemperature": -9.925640, "Thermal.HeatTransfer.Components.Convection": -9.925640, "Tolerance": -9.925640, "Translational": -9.925640, "Translational.Components.Damper": -8.539346, "Translational.Components.ElastoGap": -8.539346, "Translational.Components.Fixed": -7.360691, "Translational.Components.Mass": -6.981201, "Translational.Components.Rod": -7.846199, "Translational.Components.Spring": -7.728416, "Translational.Components.SpringDamper": -8.827028, "Translational.Interfaces.PartialCompliant": -9.925640, "Translational.Interfaces.PartialCompliantWithRelativeStates": -9.232493, "Translational.Interfaces.PartialFriction": -9.232493, "Translational.Interfaces.PartialRigid": -9.232493, "Translational.Sensors.AccSensor": -9.925640, "Translational.Sensors.ForceSensor": -9.925640, "Translational.Sensors.PositionSensor": -8.316202, "Translational.Sensors.SpeedSensor": -9.925640, "Translational.Sources.Accelerate": -9.925640, "Translational.Sources.Force": -7.728416, "Types": -9.232493, "Types.RabbitFatalities": -9.925640, "Types.RabbitReproduction": -9.925640, "Types.Rabbits": -9.232493, "Types.WolfFatalities": -9.925640, "Types.WolfReproduction": -9.925640, "Types.Wolves": -9.232493, "Utilities": -9.232493, "V": -8.827028, "V/R": -9.925640, "Vb": -9.232493, "VoltageSensor": -9.232493, "WhyArrows": -9.232493, "WolfFatalities": -9.925640, "WolfReproduction": -9.925640, "Wolves": -9.925640, "X": -9.232493, "[": -7.440734, "\\": -6.706765, "]": -7.440734, "^": -9.232493, "_init": -7.846199, "_max": -9.232493, "_normalized": -9.925640, "a": -7.846199, "a_relfric": -9.232493, "accSensor": -9.232493, "accelerate": -9.925640, "accelerate.a_ref": -9.925640, "accelerate.flange": -9.925640, "algorithm": -9.925640, "alpha": -9.232493, "amplitude": -8.316202, "ange": -6.834598, "ange_a": -6.236761, "ange_b": -6.118978, "animation": -9.232493, "annotation": -4.189068, "ball": -9.925640, "ball.frame_a": -9.925640, "beta": -9.925640, "beta*y": -9.925640, "brake": -8.133881, "brake.f_normalized": -9.232493, "brake.flange_a": -9.232493, "brake.flange_b": -9.925640, "brake.heatPort": -9.925640, "c": -6.629803, "c*": -9.232493, "c*abs": -9.925640, "c_p": -9.925640, "cgeo": -9.232493, "cgeo*fn*": -9.925640, "clean": -9.232493, "color": -4.380463, "connect": -5.073610, "const": -9.925640, "const.y": -9.925640, "constant": -8.133881, "constantAcc": -9.925640, "constantAcc.y": -9.925640, "contact": -8.316202, "convection": -9.925640, "convection.": -9.232493, "convection.solid": -7.979730, "coordinateSystem": -6.593436, "currentSensor": -9.925640, "currentSensor.i": -9.925640, "currentSensor.n": -9.925640, "currentSensor.p": -9.925640, "cylinderDiameter": -9.925640, "d": -6.524443, "d*v_rel": -8.827028, "d/": -9.925640, "damper": -7.440734, "damper.flange_a": -9.925640, "damper.flange_b": -9.925640, "damper.heatPort": -9.925640, "delta": -9.925640, "delta*x": -9.925640, "density": -9.925640, "der": -7.623055, "diameter": -9.925640, "e": -7.979730, "each": -9.232493, "elastoGap": -7.979730, "elastoGap.flange_a": -9.925640, "elastoGap.flange_b": -9.925640, "elastoGap.heatPort": -9.925640, "else": -7.286583, "end": -6.212068, "equation": -6.459904, "experiment": -7.360691, "extends": -6.342121, "extent": -4.428472, "f": -6.881118, "f*v_rel": -9.925640, "f*v_relfric": -9.232493, "f_c": -7.527745, "f_d": -7.440734, "f_d*v_rel": -9.232493, "f_normalized": -9.925640, "f_pos": -7.846199, "false": -7.360691, "fexp": -8.316202, "fexp*table": -9.925640, "fillColor": -6.118978, "fillPattern": -6.118978, "final": -7.217590, "fixed": -5.382346, "fixed.flange": -7.979730, "fixedLe": -9.925640, "fixedLe.flange": -8.827028, "flange": -8.539346, "flange.s": -9.925640, "flange_a": -7.217590, "flange_a.f": -8.539346, "flange_a.s": -9.232493, "flange_b": -8.316202, "flange_b.f": -8.539346, "flange_b.s": -9.925640, "fluid": -9.925640, "fn": -8.539346, "fn_max": -8.539346, "fn_max*f_normalized": -9.925640, "for": -8.827028, "force": -6.790146, "force.f": -8.539346, "force.flange": -8.539346, "forceSensor": -9.925640, "forceSensor.flange_a": -9.925640, "forceSensor.flange_b": -9.925640, "free": -8.827028, "freqHz": -7.979730, "friction": -9.925640, "friction.flange_a": -9.925640, "friction.flange_b": -9.925640, "function": -9.925640, "g_n*": -9.925640, "gamma": -9.232493, "graphics": -6.629803, "grid": -7.846199, "ground": -9.925640, "ground.frame_b": -9.925640, "h": -9.925640, "h*A*": -9.925640, "heatPort": -9.925640, "height": -9.925640, "housing": -9.925640, "housing.": -9.925640, "housing.flange_a": -9.925640, "http": -9.925640, "i": -7.527745, "i_C": -8.827028, "i_L": -8.827028, "i_R": -8.827028, "if": -7.286583, "import": -7.440734, "in": -9.232493, "inertia": -9.232493, "info": -6.558345, "initial": -9.232493, "inner": -9.925640, "innerContactA": -9.925640, "innerContactA.flange_a": -9.925640, "innerContactA.flange_b": -9.925640, "innerContactB": -9.925640, "innerContactB.": -9.232493, "input": -8.133881, "k": -7.623055, "lengths": -9.232493, "lineColor": -5.437004, "linspace": -9.925640, "locked": -9.232493, "loop": -9.925640, "lossPower": -8.316202, "m": -6.096999, "m*a": -9.925640, "m*c_p*der": -9.925640, "mailto": -9.232493, "mass": -6.141451, "mass.flange_a": -8.133881, "mass.flange_b": -9.232493, "massWithStopAndFriction": -9.925640, "massWithStopAndFriction.flange_a": -9.925640, "massWithStopAndFriction.heatPort": -9.925640, "min": -6.881118, "mode": -9.232493, "model": -6.491653, "modelica": -7.846199, "mue": -8.827028, "mue_pos": -8.133881, "multiSensor": -9.925640, "multiSensor.flange_a": -9.925640, "multiSensor.flange_b": -9.925640, "n": -7.440734, "n.i": -9.232493, "n.v": -9.232493, "n/fulltext.pdf": -9.925640, "nTable": -8.316202, "nc": -9.232493, "noEvent": -9.232493, "nv": -9.232493, "omega": -7.440734, "origin": -7.286583, "outerContactA": -9.925640, "outerContactA.flange_a": -9.925640, "outerContactA.flange_b": -9.925640, "outerContactB": -9.925640, "outerContactB.": -9.925640, "outerContactB.flange_b": -9.925640, "output": -9.925640, "p": -8.539346, "p.i": -8.827028, "p.v": -8.827028, "package": -7.527745, "parameter": -5.882589, "pattern": -8.316202, "pc": -9.232493, "peak": -9.232493, "peak*f": -9.232493, "pendulum": -9.925640, "phi": -6.629803, "png": -8.539346, "points": -4.294429, "positionSensor": -7.623055, "power": -9.232493, "pre": -9.232493, "preserveAspectRatio": -6.593436, "product": -9.925640, "product.u": -9.232493, "product.y": -9.925640, "protected": -9.232493, "pulling/sticking": -9.925640, "pv": -9.232493, "q": -9.925640, "quantity": -8.133881, "r": -9.232493, "revisions": -8.316202, "revolute": -9.925640, "revolute.frame_a": -9.925640, "revolute.frame_b": -9.925640, "rod": -6.491653, "rotation": -5.216110, "s": -5.936656, "s_a": -9.925640, "s_b": -9.925640, "s_rel": -6.212068, "s_support": -9.925640, "sa*unitForce": -9.232493, "sd": -8.133881, "sine": -7.846199, "sineForce": -8.827028, "sineForce.y": -8.539346, "smax": -8.827028, "smin": -8.827028, "smooth": -5.361292, "speedSensor": -9.232493, "sphereDiameter": -9.925640, "spool": -9.925640, "spool.flange_a": -9.232493, "spring": -6.929908, "spring.": -9.925640, "spring.flange_a": -9.232493, "spring.flange_b": -8.827028, "springDamper": -7.286583, "springDamper.flange_a": -9.925640, "springDamper.flange_b": -9.925640, "springDamper.heatPort": -9.925640, "springPlateA": -9.925640, "springPlateA.": -9.925640, "springPlateA.flange_b": -9.232493, "springPlateB": -9.925640, "springPlateB.": -9.232493, "springPlateB.flange_b": -9.925640, "start": -6.212068, "startBackward": -9.232493, "startForward": -9.232493, "startTime": -9.925640, "stateSelect": -8.316202, "step": -9.925640, "step.y": -9.232493, "stop": -8.539346, "string": -9.925640, "string.frame_a": -9.925640, "string.frame_b": -9.925640, "stuck": -9.232493, "support": -9.232493, "supportFriction": -9.232493, "supportFriction.flange_a": -9.232493, "supportFriction.flange_b": -9.925640, "supportFriction.heatPort": -9.925640, "tab": -9.925640, "table": -8.827028, "textString": -6.141451, "then": -7.286583, "thickness": -7.728416, "transformation": -4.915005, "true": -5.382346, "type": -8.133881, "unit": -9.232493, "useHeatPort": -7.527745, "useSupport": -8.827028, "uses": -9.925640, "v": -5.974397, "v_max": -9.232493, "v_max*": -9.925640, "v_rel": -9.232493, "v_relfric": -9.232493, "version": -9.925640, "visible": -8.539346, "voltageSensor": -9.925640, "voltageSensor.n": -9.925640, "voltageSensor.p": -9.925640, "voltageSensor.v": -9.925640, "within": -7.440734, "world": -9.925640, "x": -7.623055, "x*": -9.925640, "y": -7.527745, "y*": -9.925640, "{": -2.239937, "}": -2.240397, }, "Modula-2": map[string]float64{ "(": -2.920628, ")": -2.920628, "+": -4.530066, ",": -3.355946, "-": -4.655229, ".cd": -5.976985, ".ch": -6.264667, ".chid": -5.976985, ".cnt": -5.753842, ".doRawRead": -7.363280, ".doRawWrite": -7.363280, ".left": -5.976985, ".n": -5.976985, ".next": -5.417369, ".rbc": -7.363280, ".result": -5.976985, ".right": -6.264667, ".vl": -6.264667, ":": -2.458005, ";": -1.929558, "<": -5.753842, "=": -2.644781, ">": -6.264667, "ALLOCATE": -7.363280, "ARRAY": -6.264667, "BEGIN": -4.655229, "BITSET": -7.363280, "BuildTable": -5.753842, "BuildTree": -6.670132, "C": -5.571520, "CARDINAL": -4.472908, "CHAR": -5.571520, "CHR": -6.670132, "CONST": -7.363280, "ChanConsts": -7.363280, "ChanConsts.opened": -7.363280, "ChanConsts.outOfChans": -6.670132, "ChanId": -6.264667, "CreateAlias": -6.670132, "DEALLOCATE": -7.363280, "DISPOSE": -6.264667, "DO": -4.655229, "DeleteAlias": -6.670132, "ELSE": -6.670132, "END": -3.451257, "EXIT": -7.363280, "FOR": -5.753842, "FROM": -7.363280, "HuffChan": -7.363280, "HuffChan.": -7.363280, "IF": -4.472908, "IMPLEMENTATION": -7.363280, "IMPORT": -6.670132, "INTEGER": -5.753842, "IOChan": -7.363280, "IOChan.ChanId": -7.363280, "IOChan.InvalidChan": -7.363280, "IOChan.RawRead": -7.363280, "IOChan.RawWrite": -7.363280, "IOChan.ReadResult": -7.363280, "IOChan.notAvailable": -6.670132, "IOConsts": -7.363280, "IOConsts.allRight": -6.670132, "IOConsts.endOfInput": -7.363280, "IOLink": -7.363280, "IOLink.AllocateDeviceId": -7.363280, "IOLink.DeviceId": -7.363280, "IOLink.DeviceTablePtr": -5.976985, "IOLink.DeviceTablePtrValue": -6.670132, "IOLink.MakeChan": -7.363280, "IOLink.UnMakeChan": -6.670132, "Insert": -5.976985, "LOOP": -7.363280, "MAX": -7.363280, "MODULE": -7.363280, "NEW": -6.264667, "NIL": -4.965384, "OF": -6.264667, "OR": -7.363280, "ORD": -5.283838, "OpenResults": -7.363280, "POINTER": -5.976985, "PROCEDURE": -4.724222, "RECORD": -7.363280, "RETURN": -5.166055, "RawRead": -6.264667, "RawWrite": -6.264667, "SYSTEM": -7.363280, "SYSTEM.ADDRESS": -6.670132, "SYSTEM.ADR": -6.670132, "SYSTEM.CAST": -5.571520, "SYSTEM.SHIFT": -7.363280, "Shf": -4.798330, "Storage": -7.363280, "Strings": -7.363280, "THEN": -4.472908, "TO": -5.166055, "TYPE": -7.363280, "VAR": -4.655229, "WHILE": -7.363280, "WITH": -5.166055, "[": -4.367547, "]": -4.367547, "^": -3.492079, "a": -5.283838, "b": -4.878373, "blen": -5.976985, "buf": -5.976985, "c": -5.571520, "ch": -4.472908, "charTap": -5.753842, "charp": -7.363280, "chid": -7.363280, "cht": -5.417369, "cid": -5.283838, "clcTab": -5.753842, "cr": -4.472908, "did": -5.417369, "flush": -6.264667, "ftbl": -5.417369, "getSym": -5.976985, "h": -5.976985, "htbl": -5.166055, "i": -4.272237, "iniHuf": -6.264667, "io": -6.670132, "lclDataT": -7.363280, "lclDataTp": -5.976985, "ldt": -4.272237, "len": -5.417369, "n": -5.976985, "ncr": -5.417369, "ocr": -5.753842, "rb": -4.418841, "rbc": -4.965384, "rbldFrq": -6.264667, "rdDword": -6.264667, "res": -5.976985, "s": -5.166055, "smbT": -6.670132, "smbTp": -5.571520, "smc": -5.060694, "t": -5.283838, "tRoot": -5.753842, "tblT": -7.363280, "v": -5.753842, "vl": -5.753842, "vl*": -7.363280, "wBf": -4.655229, "wbc": -4.965384, "wrDword": -5.753842, "wrSmb": -5.571520, "x": -4.590691, "z": -6.670132, }, "Module Management System": map[string]float64{ "!": -3.806783, "#####": -9.027138, "#.include": -7.235379, "#GS_DOCDIR": -9.027138, "#GS_LIB_DEFAULT": -9.027138, "#SW_DEBUG": -9.027138, "$": -1.697389, "%": -9.027138, "(": -1.995397, ")": -1.995397, "*": -4.837484, "*.": -8.333991, "*.*": -9.027138, "*.H": -8.333991, "*.MAP": -8.333991, "*.OBJ": -4.966695, "*.exe": -7.928526, "*.hlb": -9.027138, "*.log": -9.027138, "*.obj": -7.928526, "*.olb": -8.333991, "+": -7.417701, ",": -3.796030, "-": -3.764448, ".Bits": -7.928526, ".ELSE": -6.947697, ".ENDIF": -6.947697, ".EXE": -4.382748, ".IF": -7.235379, ".JPEG": -8.333991, ".OLB": -8.333991, ".PCAP": -8.333991, ".TIFF": -8.333991, ".bin": -8.333991, ".c": -7.928526, ".else": -6.319088, ".endif": -6.319088, ".eqs.": -7.928526, ".exe": -9.027138, ".first": -8.333991, ".h": -8.333991, ".ifdef": -6.254550, ".include": -6.542232, ".lib": -8.333991, ".nes.": -8.333991, ".obj": -6.829914, ".obj.exe": -9.027138, ".src": -8.333991, ".suffixes": -9.027138, "/Create": -9.027138, "/DEBUG/NOOPTIMIZE": -9.027138, "/DECC/PREFIX": -9.027138, "/DEFINE": -7.928526, "/Define": -9.027138, "/Description": -7.081228, "/EXE": -5.056847, "/IEEE_MODE": -9.027138, "/INCLUDE": -9.027138, "/Include": -9.027138, "/LIBRARY": -4.345007, "/Library": -6.829914, "/Macro": -7.928526, "/NODEBUG/NOOPTIMIZE": -9.027138, "/NODEBUG/OPTIMIZE": -9.027138, "/NoConfirm": -7.928526, "/NoDebug": -9.027138, "/NoLog": -7.081228, "/OBJ": -5.075895, "/OBJECT": -9.027138, "/OPTIONS": -9.027138, "/Optimize": -7.928526, "/Option": -7.235379, "/Replace": -9.027138, "/Share": -7.640844, "/Standard": -8.333991, "/WARN": -9.027138, "/Warnings": -9.027138, "/Write": -9.027138, "/ansidefs.mak": -9.027138, "/define": -9.027138, "/float": -9.027138, "/generic.mak": -9.027138, "/incl": -9.027138, "/include": -9.027138, "/nowarn": -9.027138, "/obj": -8.333991, "/vmsdefs.mak": -9.027138, ":": -4.092664, ";": -4.822446, "=": -3.378164, "@": -4.822446, "@SYS": -8.333991, "A": -8.333991, "AK": -8.333991, "ALL/NESTED_INCLUDE": -9.027138, "ALPHA": -7.640844, "ALPHA_OR_IA": -7.235379, "ALTAIR": -7.235379, "ALTAIRZ": -6.542232, "ALTAIR_LIB": -7.640844, "ALTAIR_OPTIONS": -8.333991, "APPEND_L": -7.235379, "ARCH": -4.363699, "All": -9.027138, "Author": -9.027138, "BAND_LIST_COMPRESSOR": -9.027138, "BAND_LIST_STORAGE": -9.027138, "BEGINFILES": -9.027138, "BIN.DIR": -9.027138, "BINDIR": -7.928526, "BIN_DIR": -4.373178, "BITS": -8.333991, "BLD_DIR": -3.951965, "BUILD_PCAPVCM": -8.333991, "Because": -7.235379, "Building": -5.038154, "C": -9.027138, "CC": -5.056847, "CC_": -7.417701, "CC_INT": -9.027138, "CC_NO_WARN": -9.027138, "CDEBUG": -9.027138, "CFLAGS": -8.333991, "CMD": -9.027138, "COMMON": -7.417701, "COMMONDIR": -7.235379, "COMP": -8.333991, "COMPILE_INITS": -9.027138, "CONFILES": -9.027138, "CONFLDTR": -9.027138, "COPY": -8.333991, "COPY_ONE": -9.027138, "CP_": -9.027138, "Continue": -7.081228, "Copy": -9.027138, "Created": -9.027138, "D": -8.333991, "DD": -4.657691, "DEASSIGN": -9.027138, "DEBUG": -7.417701, "DEC": -8.333991, "DECC": -7.235379, "DECC_OPTIONS.OPT": -8.333991, "DECW": -6.542232, "DEC_XUI": -8.333991, "DEFINE/NOLOG": -9.027138, "DEFS": -8.333991, "DELETE/NOLOG/NOCONFIRM": -5.001787, "DEVICE_DEVS": -5.891644, "DISABLE": -9.027138, "DISK": -8.333991, "D_": -9.027138, "Default": -6.829914, "Define": -7.640844, "Delete": -8.333991, "Disk": -7.235379, "ECHOGS_XE": -9.027138, "ECLIPSE": -7.235379, "ECLIPSE_LIB": -7.640844, "ECLIPSE_OPTIONS": -8.333991, "EXE/SHARE": -8.333991, "EXP": -9.027138, "EXTEND_NAMES": -8.333991, "Environment": -9.027138, "Execlet": -7.640844, "F": -9.027138, "FEATURE_DEVS": -9.027138, "FILE_IMPLEMENTATION": -9.027138, "FLOATOVERFL": -9.027138, "Finished": -9.027138, "Fontmap.": -9.027138, "GENARCH_DEPS": -9.027138, "GENARCH_XE": -9.027138, "GENCONF_DEPS": -9.027138, "GENCONF_XE": -9.027138, "GENDEV_DEPS": -9.027138, "GENDEV_XE": -9.027138, "GENHT_DEPS": -9.027138, "GENHT_XE": -9.027138, "GENINIT_DEPS": -9.027138, "GENINIT_XE": -9.027138, "GLD": -9.027138, "GLGEN": -7.417701, "GLGENDIR": -7.640844, "GLOBJ": -6.947697, "GLOBJDIR": -6.254550, "GLSRC": -7.640844, "GLSRCDIR": -5.443619, "GRI": -7.235379, "GRI_LIB": -7.640844, "GRI_OPTIONS": -8.333991, "GS": -7.417701, "GS.FONT": -9.027138, "GS_DOC": -9.027138, "GS_DOCDIR": -9.027138, "GS_DOT_VERSION": -9.027138, "GS_INIT": -9.027138, "GS_INIT.PS": -9.027138, "GS_LIB": -9.027138, "GS_LIB_DEFAULT": -9.027138, "GS_XE": -7.928526, "H": -6.542232, "HAVE_PDS": -9.027138, "HAVE_SYS_TIME_H": -9.027138, "HAVE_XUI": -9.027138, "HP": -6.542232, "I": -5.389552, "IBM": -6.542232, "ID": -5.849085, "IEEE": -7.928526, "II": -9.027138, "INCDIR": -9.027138, "INCLUDE": -9.027138, "INCS": -8.333991, "INT": -7.235379, "INT_ALL": -9.027138, "I_": -9.027138, "Id": -9.027138, "If": -9.027138, "Include": -9.027138, "Installing": -8.333991, "It": -7.235379, "JBIG": -8.333991, "JPEG": -9.027138, "JPEGDIR": -9.027138, "JPEGINCLUDE": -9.027138, "JPEGLIB": -7.640844, "LDR": -8.333991, "LGP": -7.235379, "LGP_LIB": -7.640844, "LGP_OPTIONS": -8.333991, "LIBDIR": -9.027138, "LIBJPEG.OLB": -8.333991, "LIBRARY": -7.640844, "LIBRARY/CREATE": -8.333991, "LIBRARY/REPLACE": -8.333991, "LIBRARY_INCLUDE": -9.027138, "LIBTIFF.OLB": -7.928526, "LIBXV.OLB": -9.027138, "LIB_ALL": -9.027138, "LIB_DIR": -8.333991, "LINK": -4.949601, "LINK/DEBUG/TRACEBACK": -9.027138, "LINK/EXEC": -9.027138, "LINK/NODEBUG/NOTRACEBACK": -9.027138, "LINKER": -7.928526, "LINKFLAGS": -6.947697, "LINK_DEBUG": -5.075895, "LINK_SECTION_BINDING": -7.640844, "LISP": -8.333991, "LISP_CORE": -8.333991, "LISP_MAIN": -9.027138, "LNK": -8.333991, "LOADABLE_IMAGES": -8.333991, "LibJPEG.olb": -9.027138, "LibTIFF.olb": -9.027138, "LibXV.olb": -9.027138, "Library": -6.829914, "Library_Include": -8.333991, "Linker": -9.027138, "MAKEFILE": -8.333991, "MAKEFILE.MMS": -7.081228, "MCR": -9.027138, "MISC": -9.027138, "MMS": -6.542232, "MMSDEFAULTS": -7.417701, "MMSQUALIFIERS": -9.027138, "NOMAINUFLO": -9.027138, "NOVA": -7.235379, "NOVA_LIB": -7.640844, "NOVA_OPTIONS": -8.333991, "NULL": -8.333991, "NoInformationals": -9.027138, "OBJ": -5.891644, "OBJ.DIR": -9.027138, "OBJDIR": -9.027138, "OBJS": -7.640844, "OBJ_DIR": -9.027138, "OPENVMS": -9.027138, "OPENVMS.COM": -9.027138, "OPENVMS.OPT": -9.027138, "OPENVMS.OPT/OPTION": -9.027138, "OPTIMIZE": -7.640844, "OPTS": -6.542232, "O_": -9.027138, "Of": -7.235379, "On": -8.333991, "Open": -9.027138, "Options": -9.027138, "Output": -9.027138, "Owner": -7.928526, "PCAP": -7.640844, "PCAPVCM.EXE": -6.947697, "PCAP_EXECLET": -6.947697, "PCAP_LIBD": -6.947697, "PCAP_LIBR": -6.724553, "PCAP_VCI": -8.333991, "PCAP_VCMDIR": -6.724553, "PCAP_VCM_SOURCES": -8.333991, "PCFBASM": -9.027138, "PDP": -4.421968, "PDS": -8.333991, "PLATFORM": -9.027138, "PLATOPT": -9.027138, "PRIMARY/name": -9.027138, "PSD": -6.947697, "PSGENDIR": -8.333991, "PSLIBDIR": -9.027138, "PSOBJDIR": -9.027138, "PSSRCDIR": -7.928526, "Project": -9.027138, "Protection": -7.928526, "Purge": -9.027138, "RMN_": -9.027138, "RM_": -9.027138, "RM_ALL": -9.027138, "RM_ONE": -9.027138, "RWE": -9.027138, "RWED": -8.333991, "Rename": -9.027138, "Requires": -7.235379, "S": -6.542232, "SCP.C": -5.075895, "SCP.OBJ": -5.075895, "SDS": -7.235379, "SDS_LIB": -7.640844, "SDS_OPTIONS": -8.333991, "SEARCH_HERE_FIRST": -9.027138, "SETMOD": -9.027138, "SH": -9.027138, "SHARE": -7.235379, "SHARE_JBIG": -9.027138, "SHARE_JPEG": -9.027138, "SHARE_LIBPNG": -9.027138, "SHARE_ZLIB": -9.027138, "SIMH_LIB": -4.382748, "STDIO_IMPLEMENTATION": -9.027138, "SW_DEBUG": -7.928526, "SW_IEEE": -7.928526, "SW_PAPER": -7.928526, "SW_PLATFORM": -8.333991, "SYNC": -9.027138, "SYS": -6.193925, "SYSLIB": -9.027138, "SYSTEM_CONSTANTS_ARE_WRITABLE": -8.333991, "Set": -6.542232, "Simulator.": -5.075895, "Sys": -6.319088, "TARGET": -7.640844, "TDEBUG": -8.333991, "TIFF": -9.027138, "TIFFDIR": -9.027138, "TIFFINCLUDE": -9.027138, "TIFFLIB": -7.640844, "TIMERS": -9.027138, "TMP": -5.982616, "TOP_MAKEFILES": -9.027138, "The": -4.932794, "Then": -9.027138, "UNDERFLOW_TO_ZERO/FLOAT": -9.027138, "USE_ASM": -9.027138, "USE_FPU": -9.027138, "Use": -7.235379, "VAX": -5.936096, "VAX.": -8.333991, "VAXC": -8.333991, "VAXCRTL": -9.027138, "VAXC_OPTIONS.OPT": -9.027138, "VAXC_Options.opt": -9.027138, "VAX_LIB": -7.640844, "VAX_OPTIONS": -8.333991, "VCI": -7.640844, "VMS": -7.928526, "VMS.PCAPVCM": -8.333991, "Write": -5.982616, "X": -9.027138, "XLIBSHR.EXE/SHARE": -8.333991, "XLibShr.exe": -8.333991, "XMLIBSHR": -9.027138, "XMLIBSHR.EXE/SHARE": -9.027138, "XMLibShr": -9.027138, "XTLIBSHRR": -9.027138, "XTSHR.EXE/SHARE": -9.027138, "XTShr.exe": -9.027138, "XUI": -8.333991, "XV": -8.333991, "XVDIR": -9.027138, "XVLIB": -6.542232, "X_INCLUDE": -9.027138, "Z": -9.027138, "ZERODIV": -9.027138, "[": -5.593151, "\\": -7.081228, "]": -5.593151, "_EXTRA_OBJS": -9.027138, "_I": -9.027138, "_LIB": -4.596322, "_OPTIONS": -5.389552, "_PAPER": -8.333991, "a": -7.928526, "all": -8.333991, "alpha.dev": -9.027138, "annot.h": -8.333991, "append_l.com": -9.027138, "arch.h": -9.027138, "as_is": -9.027138, "b.dev": -9.027138, "bbox.dev": -9.027138, "bggen": -8.333991, "bggen.exe": -7.928526, "bggen.obj": -8.333991, "bit.dev": -9.027138, "bitcmyk.dev": -9.027138, "bitrgb.dev": -9.027138, "bj": -8.333991, "bjc": -8.333991, "build": -9.027138, "c": -9.027138, "cc": -8.333991, "cdeskjet.dev": -9.027138, "cdj": -9.027138, "cdjcolor.dev": -9.027138, "cdjmono.dev": -9.027138, "cflags": -9.027138, "cfonts.mak": -9.027138, "changelog.": -9.027138, "clean": -7.640844, "clib": -8.333991, "cmyk.dev": -9.027138, "config.h": -9.027138, "contrib.mak": -9.027138, "core": -7.640844, "create/directory/log": -8.333991, "d.dev": -7.640844, "decc": -9.027138, "decompress": -8.333991, "decompress.exe": -7.928526, "decompress.obj": -8.333991, "decw": -8.333991, "del": -8.333991, "descrip.mms": -9.027138, "deskjet.dev": -9.027138, "dev": -5.982616, "devs.mak": -9.027138, "dirent.h": -9.027138, "djet": -9.027138, "dpsnext.dev": -9.027138, "dsl": -7.928526, "dsl.or.a": -9.027138, "e": -7.928526, "e.dev": -9.027138, "echogs.": -8.333991, "echogs.c": -9.027138, "epsf.dev": -9.027138, "epswrite.dev": -9.027138, "exe": -9.027138, "exec": -7.928526, "extract": -9.027138, "f": -7.235379, "fapi.dev": -9.027138, "faxg": -7.928526, "file": -9.027138, "for": -9.027138, "genarch.": -8.333991, "genarch.c": -9.027138, "genconf.": -8.333991, "genconf.c": -9.027138, "gendev.": -8.333991, "gendev.c": -9.027138, "generic.mak": -9.027138, "genht.": -8.333991, "genht.c": -9.027138, "geninit.": -8.333991, "geninit.c": -9.027138, "gp_getnv.": -9.027138, "gp_h": -8.333991, "gp_stdia.": -7.928526, "gp_stdia.c": -8.333991, "gp_vms.": -7.928526, "gp_vms.c": -8.333991, "gpmisc_h": -9.027138, "gray": -8.333991, "gs.": -8.333991, "gs.mak": -9.027138, "gsstruct_h": -9.027138, "gx_h": -8.333991, "head": -7.928526, "help": -8.333991, "i": -7.928526, "icclib.mak": -9.027138, "ideas.": -9.027138, "ieee": -9.027138, "if": -6.947697, "in": -8.333991, "include": -9.027138, "includes.h": -9.027138, "install": -9.027138, "int.mak": -9.027138, "jbig": -8.333991, "jpeg.dev": -9.027138, "jpeg.mak": -9.027138, "jpeggray.dev": -9.027138, "laserjet.dev": -9.027138, "ld_tr": -9.027138, "length": -9.027138, "lib": -8.333991, "lib.mak": -9.027138, "libpng.mak": -9.027138, "list": -9.027138, "ljet": -7.417701, "ljetplus.dev": -9.027138, "m.dev": -9.027138, "macro": -6.319088, "macro.nes.": -9.027138, "main": -7.640844, "mak": -9.027138, "memory__h": -9.027138, "mono.dev": -9.027138, "nc.dev": -8.333991, "nosync": -9.027138, "nosync.dev": -9.027138, "o": -9.027138, "obj": -8.333991, "objs": -7.928526, "of": -9.027138, "openvms": -8.333991, "openvms.com": -8.333991, "openvms.mmk": -9.027138, "openvms.opt": -9.027138, "openvms_": -8.333991, "openvms_.dev": -9.027138, "openvms__": -7.928526, "p": -7.640844, "p.dev": -9.027138, "p.or.decc.or.decw": -9.027138, "pbm.dev": -9.027138, "pbmraw.dev": -9.027138, "pcx": -7.928526, "pcxcmyk.dev": -9.027138, "pcxgray.dev": -9.027138, "pcxmono.dev": -9.027138, "pdf.dev": -9.027138, "pdfwrite.dev": -9.027138, "pgm.dev": -9.027138, "pgmraw.dev": -9.027138, "pgnm.dev": -9.027138, "pgnmraw.dev": -9.027138, "pj.dev": -9.027138, "pjxl": -9.027138, "pjxl.dev": -9.027138, "pkm.dev": -9.027138, "pkmraw.dev": -9.027138, "pksm.dev": -9.027138, "pksmraw.dev": -9.027138, "png": -7.928526, "pngalpha.dev": -9.027138, "pnggray.dev": -9.027138, "pngmono.dev": -9.027138, "pnm.dev": -9.027138, "pnmraw.dev": -9.027138, "posync": -9.027138, "ppm.dev": -9.027138, "ppmraw.dev": -9.027138, "psgray.dev": -9.027138, "psl": -9.027138, "psmono.dev": -9.027138, "psrgb.dev": -9.027138, "pswrite.dev": -9.027138, "pxlcolor.dev": -9.027138, "pxlmono.dev": -9.027138, "readme.": -9.027138, "s": -9.027138, "search": -7.640844, "short": -9.027138, "snprintf.": -9.027138, "stdio": -9.027138, "stdio__h": -9.027138, "string__h": -9.027138, "the": -7.928526, "then": -6.947697, "tiff": -8.333991, "tiffcrle.dev": -9.027138, "tiffg": -7.928526, "tifflzw.dev": -9.027138, "tiffpack.dev": -9.027138, "time__h": -9.027138, "tmr": -8.333991, "to": -9.027138, "ttfont.dev": -9.027138, "uniprint.dev": -9.027138, "unistd__h": -9.027138, "v": -8.333991, "vdcomp.exe": -7.928526, "vdcomp.obj": -8.333991, "version.mak": -9.027138, "vms.obj": -8.333991, "vmscdefs.mak": -9.027138, "vmsdefs.mak": -9.027138, "with": -9.027138, "x": -7.235379, "xcmap": -8.333991, "xcmap.exe": -8.333991, "xcmap.obj": -8.333991, "xv": -7.928526, "xv.exe": -7.928526, "xv.h": -9.027138, "xv.hlb": -8.333991, "xv.hlp": -9.027138, "xv.obj": -7.928526, "xvalg.obj": -9.027138, "xvbmp.obj": -9.027138, "xvbrowse.obj": -9.027138, "xvbutt.obj": -9.027138, "xvcolor.obj": -9.027138, "xvctrl.obj": -9.027138, "xvcut.obj": -9.027138, "xvdflt.obj": -9.027138, "xvdial.obj": -9.027138, "xvdir.obj": -9.027138, "xvevent.obj": -9.027138, "xvfits.obj": -9.027138, "xvgam.obj": -9.027138, "xvgif.obj": -9.027138, "xvgifwr.obj": -9.027138, "xvgrab.obj": -9.027138, "xvgraf.obj": -9.027138, "xviff.obj": -9.027138, "xvimage.obj": -9.027138, "xvinfo.obj": -9.027138, "xviris.obj": -9.027138, "xvjpeg.obj": -9.027138, "xvmisc.obj": -9.027138, "xvpbm.obj": -9.027138, "xvpcx.obj": -9.027138, "xvpds.obj": -9.027138, "xvpictoppm": -8.333991, "xvpictoppm.exe": -8.333991, "xvpictoppm.obj": -8.333991, "xvpm.obj": -9.027138, "xvpopup.obj": -9.027138, "xvps.obj": -9.027138, "xvrle.obj": -9.027138, "xvroot.obj": -9.027138, "xvscrl.obj": -9.027138, "xvsmooth.obj": -9.027138, "xvsunras.obj": -9.027138, "xvtarga.obj": -9.027138, "xvtext.obj": -9.027138, "xvtiff.obj": -9.027138, "xvtiffwr.obj": -9.027138, "xvxbm.obj": -9.027138, "xvxpm.obj": -9.027138, "xvxwd.obj": -9.027138, "zlib": -9.027138, "zlib.mak": -9.027138, }, "Monkey": map[string]float64{ "#ElseIf": -5.459586, "#End": -5.459586, "#If": -5.459586, "&": -5.459586, "(": -3.061690, ")": -3.061690, "+": -4.360973, ",": -3.513675, ".": -5.459586, ".ToUpper": -5.459586, ":": -3.061690, "<": -5.459586, "<String[]>": -5.459586, "=": -2.368543, ">": -5.459586, "?": -5.459586, "Abstract": -5.459586, "App": -5.459586, "Bool": -4.766438, "Boolean": -5.459586, "Class": -4.360973, "Cls": -5.459586, "D": -5.459586, "DeviceWidth/": -5.459586, "Die": -5.459586, "DoOtherStuff": -5.459586, "DoStuff": -5.459586, "DrawRect": -5.459586, "DrawSpiral": -4.360973, "End": -3.380144, "Enemy": -5.459586, "Extends": -4.766438, "False": -5.459586, "Field": -4.766438, "For": -5.459586, "Function": -4.766438, "Game": -5.459586, "Global": -2.820528, "Local": -4.360973, "Method": -4.073291, "New": -5.459586, "Next": -5.459586, "Node": -5.459586, "OnCreate": -5.459586, "OnRender": -5.459586, "OnUpdate": -5.459586, "Print": -4.766438, "SetUpdateRate": -5.459586, "Step": -5.459586, "Strict": -5.459586, "String": -4.073291, "TARGET": -4.766438, "True": -4.766438, "Until": -5.459586, "Vector": -5.459586, "VectorNode": -5.459586, "[": -3.667826, "]": -3.667826, "a": -4.360973, "array": -5.459586, "b": -3.850148, "boolVariable": -4.766438, "c": -5.459586, "characers": -5.459586, "class": -5.459586, "clock": -4.766438, "comma": -5.459586, "documentation": -5.459586, "escape": -5.459586, "event.pos": -5.459586, "field": -5.459586, "from": -5.459586, "he": -5.459586, "hitbox.Collide": -5.459586, "i#": -5.459586, "i*": -5.459586, "i*Cos": -5.459586, "in": -5.459586, "keywords": -5.459586, "lessStuff": -5.459586, "listOfStuff": -4.360973, "oneStuff": -5.459586, "operators": -5.459586, "oss": -5.459586, "preprocessor": -5.459586, "prints": -5.459586, "sample": -5.459586, "separated": -5.459586, "sequence": -5.459586, "shorttype": -5.459586, "string": -4.073291, "strings": -5.459586, "syntax": -5.459586, "testField": -5.459586, "text": -5.459586, "the": -5.459586, "updateCount": -4.360973, "updateCount*": -5.459586, "w": -4.766438, "w*": -5.459586, "worst.List": -5.459586, "worstCase": -5.459586, "x": -5.459586, "x#": -5.459586, "y": -4.360973, "|": -4.766438, "~": -4.766438, }, "Moocode": map[string]float64{ "!": -5.006627, "#": -4.852477, "$": -5.574611, "%": -7.714677, "&": -7.714677, "&&": -5.574611, "'": -8.407825, "(": -2.344039, ")": -2.355735, "*": -6.461915, "*/": -7.309212, "*now*": -8.407825, "+": -4.744263, ",": -2.824328, "-": -4.437533, ".": -5.574611, "..": -8.407825, ".id": -6.616065, ".tokenizer.row": -8.407825, ".type": -8.407825, "/": -7.714677, ":": -3.301879, ";": -2.668032, "<": -5.922918, "=": -2.462404, ">": -4.495802, "?": -5.922918, "@a": -7.714677, "@code": -5.075620, "@compiler": -8.407825, "@imports": -7.714677, "@program": -5.768767, "@result": -7.714677, "@source": -7.309212, "@this": -5.922918, "@verb": -8.407825, "@x": -7.309212, "A": -8.407825, "ANON": -8.407825, "ANY": -7.714677, "Any": -8.407825, "Assignment": -7.714677, "Brace": -8.407825, "Bracket": -8.407825, "Catching": -8.407825, "Changelog": -8.407825, "Compiler": -7.714677, "Compound": -8.407825, "Control": -8.407825, "Dictionary": -8.407825, "E_FOO": -8.407825, "E_INVARG": -7.309212, "E_PERM": -8.407825, "E_PROPNF": -8.407825, "E_RANGE": -6.210600, "Error": -8.407825, "Experimental": -7.714677, "Flow": -8.407825, "For": -8.407825, "Fork": -8.407825, "From": -8.407825, "I": -8.407825, "If": -8.407825, "Infix": -8.407825, "Installation": -8.407825, "Invocation": -8.407825, "LIST": -7.021530, "Language": -7.714677, "Literal": -8.407825, "Loop": -8.407825, "M": -8.407825, "MOOcode": -7.021530, "N": -8.407825, "Name": -8.407825, "O": -8.407825, "OBJ": -8.407825, "Operator": -6.009929, "P": -8.407825, "Package": -7.714677, "Parser": -7.714677, "Positional": -8.407825, "Prefix": -8.407825, "Pretty": -8.407825, "Printer": -8.407825, "Property": -8.407825, "Prototype": -5.188949, "R": -8.407825, "Selector": -7.714677, "Statement": -6.328383, "Stunt/Improvise": -8.407825, "Symbol": -7.714677, "Syntax": -8.407825, "T": -7.714677, "Tests": -7.021530, "The": -7.714677, "Tokenizer": -7.714677, "Tree": -8.407825, "Try": -8.407825, "Unterminated": -7.714677, "Utilities": -8.407825, "Verb": -8.407825, "Worse": -8.407825, "You": -8.407825, "[": -4.159329, "\\": -7.714677, "]": -4.145145, "_": -7.714677, "_ensure_instance": -6.798387, "_ensure_prototype": -7.309212, "_generate": -8.407825, "_lookup": -7.714677, "_print": -7.021530, "`": -6.105240, "a": -5.922918, "advance": -6.105240, "an": -7.714677, "and": -8.407825, "announce": -8.407825, "announce_all": -7.714677, "anonymous": -8.407825, "application/x": -5.922918, "are": -8.407825, "args": -5.922918, "as": -5.842875, "be": -8.407825, "block_comment": -6.798387, "break": -7.714677, "but": -8.407825, "c": -5.574611, "cannot": -8.407825, "cc": -8.407825, "characters": -8.407825, "clone": -7.309212, "code": -4.646625, "col": -8.407825, "column": -4.911317, "column..column": -8.407825, "comment": -7.714677, "compile": -8.407825, "compiler": -7.714677, "continue": -6.616065, "continue_msg": -8.407825, "create": -6.009929, "datatype": -8.407825, "do_the_work": -7.309212, "else": -4.824306, "elseif": -4.973837, "end": -8.407825, "endfor": -5.272330, "endfork": -8.407825, "endif": -4.248942, "endtry": -8.407825, "endwhile": -6.616065, "eol": -6.461915, "error": -6.798387, "errors": -8.407825, "errors.": -8.407825, "ex": -7.309212, "except": -8.407825, "expression": -7.021530, "first": -5.699774, "first.type": -8.407825, "float": -8.407825, "following": -7.714677, "for": -5.316782, "fork": -8.407825, "forward": -8.407825, "functionality": -8.407825, "i": -5.040529, "id": -6.461915, "if": -4.313480, "import": -6.461915, "import.id": -7.714677, "import.type": -7.714677, "imports": -6.798387, "in": -4.881464, "indent": -7.021530, "inline_comment": -7.021530, "instance": -7.714677, "instance.column": -8.407825, "instance.row": -8.407825, "instance.source": -8.407825, "invalid": -7.714677, "is": -6.798387, "is.": -8.407825, "isa": -5.412092, "item": -7.714677, "join": -6.616065, "led": -8.407825, "len": -7.309212, "length": -6.105240, "like": -7.021530, "literal": -7.309212, "loop": -6.328383, "make_identifier": -7.714677, "map": -8.407825, "moocode": -5.922918, "most": -8.407825, "my": -8.407825, "name": -6.616065, "need": -8.407825, "next_two": -7.021530, "none": -8.407825, "not": -8.407825, "not.": -8.407825, "numbers": -8.407825, "object": -8.407825, "object_utils": -8.407825, "objects.": -8.407825, "operator": -7.021530, "options": -7.714677, "other": -8.407825, "p": -4.001105, "parent": -8.407825, "parse_list_sequence": -8.407825, "parser": -4.601162, "parser.imports": -7.714677, "parser.plastic.assignment_operator_proto": -8.407825, "parser.plastic.invocation_operator_proto": -8.407825, "parser.plastic.name_proto": -7.714677, "parser.symbols": -7.714677, "plastic.compiler": -7.309212, "plastic.from_statement_proto": -8.407825, "plastic.parser_proto": -8.407825, "plastic.printer": -7.714677, "plastic.tokenizer_proto": -7.309212, "plastic.traditional_ternary_operator_proto": -8.407825, "player": -7.714677, "player.location": -8.407825, "player.name": -8.407825, "pop": -8.407825, "prefix": -7.021530, "present": -8.407825, "print": -8.407825, "private": -8.407825, "provides": -8.407825, "push": -8.407825, "raise": -5.635236, "random": -7.309212, "re": -8.407825, "read": -8.407825, "res": -5.463386, "reserve_keyword": -7.714677, "reserve_statement": -8.407825, "respond_to": -6.210600, "rest": -7.309212, "result": -6.461915, "result.first": -8.407825, "result.second": -8.407825, "result.type": -8.407825, "return": -4.579183, "rewrite": -8.407825, "right": -7.714677, "room": -8.407825, "row": -5.842875, "s": -4.670155, "second": -6.105240, "second.id": -8.407825, "seconds_left": -7.309212, "server": -8.407825, "server/core": -8.407825, "server/core.": -8.407825, "source": -5.316782, "starts": -8.407825, "statement": -5.075620, "statement.first": -5.517453, "statement.first.type": -8.407825, "statement.first.value": -8.407825, "statement.id": -7.309212, "statement.second": -5.842875, "statement.second.type": -7.714677, "statement.subtype": -7.714677, "statement.third": -7.021530, "statement.type": -6.105240, "statement.value": -5.412092, "statements": -5.842875, "std": -8.407825, "straight": -8.407825, "string": -7.309212, "suspend": -7.309212, "symbol": -6.009929, "symbol.type": -8.407825, "target": -6.461915, "target.id": -7.021530, "target.type": -7.309212, "target.value": -7.309212, "tell": -8.407825, "temp": -7.021530, "temp.first": -7.714677, "temp.first.id": -8.407825, "temp.first.type": -7.714677, "temp.first.value": -8.407825, "temp.id": -8.407825, "temp.second": -8.407825, "temp.second.type": -8.407825, "temp.type": -8.407825, "than": -8.407825, "that": -7.309212, "the": -7.714677, "third": -7.021530, "third.id": -7.714677, "this": -3.853948, "this.column": -8.407825, "this.first": -7.309212, "this.location": -7.309212, "this.name": -7.021530, "this.plastic.assignment_operator_proto": -8.407825, "this.plastic.brace_operator_proto": -8.407825, "this.plastic.bracket_operator_proto": -8.407825, "this.plastic.control_flow_statement_proto": -8.407825, "this.plastic.error_catching_operator_proto": -8.407825, "this.plastic.for_statement_proto": -8.407825, "this.plastic.fork_statement_proto": -8.407825, "this.plastic.if_statement_proto": -8.407825, "this.plastic.infix_operator_proto": -8.407825, "this.plastic.invocation_operator_proto": -8.407825, "this.plastic.literal_proto": -8.407825, "this.plastic.loop_statement_proto": -8.407825, "this.plastic.name_proto": -8.407825, "this.plastic.parser_proto": -7.714677, "this.plastic.positional_symbol_proto": -8.407825, "this.plastic.prefix_operator_proto": -7.714677, "this.plastic.property_selector_operator_proto": -8.407825, "this.plastic.sign_operator_proto": -8.407825, "this.plastic.tokenizer_proto": -7.714677, "this.plastic.traditional_ternary_operator_proto": -8.407825, "this.plastic.try_statement_proto": -8.407825, "this.plastic.utilities": -8.407825, "this.reserved_names": -8.407825, "this.row": -8.407825, "this.second": -7.309212, "this.source": -7.714677, "this.symbols": -7.714677, "this.third": -7.714677, "this.token": -6.210600, "this.token.eol": -7.714677, "this.token.id": -7.714677, "this.token.type": -7.714677, "this.token.value": -7.714677, "this.type": -7.309212, "this.variable_map": -7.309212, "this.wound": -6.328383, "ticks_left": -7.309212, "to": -8.407825, "token": -6.009929, "tokenizer": -7.021530, "toliteral": -8.407825, "tostr": -4.495802, "toy": -7.309212, "treated": -7.714677, "try": -8.407825, "ttid": -7.714677, "type": -6.328383, "typeof": -6.616065, "types": -6.461915, "used": -8.407825, "uses": -8.407825, "v": -5.699774, "v.first": -7.714677, "v.second": -8.407825, "v.type": -7.714677, "valid": -8.407825, "value": -4.173718, "variable.": -8.407825, "while": -6.009929, "will": -8.407825, "wind": -8.407825, "wind_down_msg": -8.407825, "with": -8.407825, "x": -6.210600, "your": -8.407825, "{": -4.077091, "|": -6.105240, "||": -5.768767, "}": -4.064019, }, "MoonScript": map[string]float64{ "!": -6.045953, "#body": -7.655391, "#ifstm": -7.655391, "#list": -7.655391, "#node": -6.556778, "#real_name": -7.655391, "#stms": -7.655391, "#values": -7.655391, "(": -3.685099, ")": -3.685099, "*body": -6.962243, "*conds": -7.655391, "*find_assigns": -7.655391, "*item": -7.655391, "*names": -6.556778, "*properties": -7.655391, "*stm": -7.655391, "*stubs": -6.962243, "+": -6.962243, ",": -2.308283, "-": -4.947340, "..": -7.655391, "...": -5.863631, "..op": -7.655391, "..t": -7.655391, ":": -3.630039, "=": -2.275493, ">": -3.917721, "@": -7.655391, "@fn": -7.655391, "@listen": -7.655391, "@put_name": -6.962243, "@seen_nodes": -6.556778, "@send": -7.655391, "@set": -7.655391, "@splice": -7.655391, "@transform": -6.962243, "@transform.statement": -6.962243, "@transformers": -6.556778, "LocalName": -6.962243, "NameProxy": -5.016333, "Run": -5.575949, "Statement": -6.962243, "Transformer": -6.962243, "Value": -7.655391, "[": -3.285943, "\\": -6.556778, "]": -3.285943, "_": -5.352806, "__call": -7.655391, "__mode": -7.655391, "action": -6.269096, "and": -5.709480, "apply_to_last": -5.863631, "args": -6.556778, "arrow": -7.655391, "assign": -5.709480, "assign_name": -7.655391, "assigns": -6.556778, "base": -5.709480, "base_name": -6.269096, "bind": -7.655391, "block": -6.962243, "body": -4.436515, "body_idx": -6.556778, "bounds": -6.556778, "break": -7.655391, "build": -5.709480, "build.assign": -6.556778, "build.assign_one": -5.257495, "build.chain": -5.709480, "build.declare": -7.655391, "build.do": -6.962243, "build.fndef": -6.556778, "build.group": -5.016333, "build.table": -6.962243, "call": -7.655391, "can_transform": -7.655391, "case": -5.090441, "case_exps": -6.556778, "class": -6.556778, "class_lookup": -6.556778, "clause": -6.269096, "clauses": -6.269096, "cls": -6.045953, "cls.name": -7.655391, "cls_mt": -6.962243, "cls_name": -7.655391, "comprehension": -7.655391, "cond": -5.352806, "cond_exp": -6.045953, "conds": -7.655391, "construct_comprehension": -6.962243, "constructor": -5.863631, "constructor.arrow": -7.655391, "constructor_name": -6.962243, "continue": -7.655391, "continue_name": -5.090441, "convert_cond": -6.962243, "current_stms": -5.709480, "data": -7.655391, "dec": -5.863631, "decorated": -7.655391, "destructure": -7.655391, "destructure.build_assign": -6.962243, "destructure.has_destructure": -6.962243, "destructure.split_assign": -7.655391, "destructures": -6.045953, "do": -6.962243, "else": -4.564348, "elseif": -7.655391, "error": -6.269096, "exp": -4.882802, "exp_name": -6.556778, "expand_elseif_assign": -6.962243, "export": -7.655391, "fail": -6.045953, "false": -6.962243, "find_assigns": -6.962243, "first": -6.556778, "fn": -6.962243, "for": -4.659658, "foreach": -7.655391, "from": -6.269096, "hoist_declarations": -7.655391, "i": -4.947340, "idx": -6.269096, "if": -3.941819, "if_cond": -6.269096, "if_stm": -6.045953, "ifstm": -6.045953, "implicitly_return": -6.962243, "import": -6.045953, "in": -4.882802, "index": -6.962243, "index_name": -6.556778, "inner": -6.962243, "insert": -4.822177, "ipairs": -6.556778, "is_singular": -6.962243, "is_slice": -6.962243, "item": -6.556778, "iter": -6.962243, "key": -6.556778, "last": -6.269096, "last_exp_id": -6.556778, "lines": -6.962243, "list": -6.045953, "list_name": -5.863631, "local": -7.655391, "match": -7.655391, "max_tmp_name": -6.045953, "mtype": -6.556778, "name": -4.254193, "named_assign": -6.962243, "names": -4.947340, "new": -6.962243, "next": -7.655391, "nil": -5.575949, "node": -3.435883, "node.body": -5.458166, "node.iter": -7.655391, "node.names": -6.556778, "not": -6.962243, "ntype": -4.882802, "op": -6.962243, "op_final": -6.556778, "or": -5.863631, "out": -5.458166, "out_body": -7.655391, "parent_assign": -6.556778, "parent_cls_name": -6.045953, "parent_val": -7.655391, "properties": -6.556778, "proxy": -6.962243, "real_name": -5.863631, "real_names": -6.269096, "require": -6.045953, "res": -6.556778, "ret": -4.882802, "return": -5.352806, "reversed": -6.962243, "root_stms": -7.655391, "scope": -6.269096, "scope_name": -6.045953, "self": -7.655391, "self.fn": -7.655391, "self_name": -6.269096, "setmetatable": -7.655391, "slice": -5.709480, "slice_var": -6.556778, "smart_node": -5.709480, "source": -5.709480, "source_name": -6.556778, "split": -6.556778, "state": -6.962243, "statements": -6.556778, "stm": -4.947340, "stms": -6.556778, "stub": -6.269096, "stubs": -7.655391, "switch": -5.863631, "t": -5.352806, "table": -7.655391, "table.insert": -6.556778, "table.remove": -6.962243, "then": -6.962243, "thing": -6.269096, "transform": -7.655391, "transformed": -6.962243, "transformer": -6.556778, "true": -6.269096, "tuple": -5.575949, "type": -6.045953, "types": -6.962243, "types.cascading": -7.655391, "types.is_value": -7.655391, "unless": -5.863631, "unpack": -4.564348, "update": -7.655391, "util": -6.962243, "value": -5.709480, "value_is_singular": -6.556778, "values": -5.458166, "when": -5.170484, "while": -6.556778, "with": -6.556778, "with_continue_listener": -6.269096, "wrapped": -6.269096, "{": -2.750116, "}": -2.757551, }, "NCL": map[string]float64{ "!": -6.366728, "#": -9.362460, "#eof_ts": -9.362460, "#inverse_matrix": -9.362460, "$": -6.723403, "&": -5.836100, "'": -8.669313, "(": -2.792979, ")": -2.795788, "*": -6.723403, "*******************": -8.669313, "********************": -9.362460, "************************************": -7.753023, "*************************************": -9.362460, "***************************************": -6.654410, "****************************************": -9.362460, "**********************************************": -7.976166, "***********************************************": -8.669313, "************************************************": -6.226966, "*************************************************": -7.570701, "**************************************************": -7.976166, "****************************************************": -9.362460, "*****************************************************": -7.976166, "********************************************************": -8.669313, "***********************************************************": -8.669313, "**************************************************************": -9.362460, "***************************************************************": -6.877554, "********************************************************************": -9.362460, "*******************END": -9.362460, "*dx": -9.362460, "*dy": -9.362460, "*eof": -7.976166, "*prepended*": -9.362460, "+": -4.931644, ",": -2.573489, "-": -2.284119, ".": -7.753023, "...": -7.976166, ".eq.": -9.362460, ".gt.OldYear": -9.362460, ".ne.": -9.362460, "/": -4.268710, "//www.ngdc.noaa.gov/mgg/shorelines/data/gshhg/latest/": -9.362460, "/ifx": -9.362460, "/imag": -9.362460, "/land_mask/": -9.362460, "/lat": -9.362460, "/lon": -9.362460, "/map_data": -9.362460, "/minmax_elevW": -9.362460, "/nlat": -9.362460, "/nlon": -9.362460, "/np": -8.669313, "/pr": -9.362460, "/right": -9.362460, "/sum": -8.669313, "/tmpE": -9.362460, "/tmpW*": -9.362460, "/z": -8.669313, "/zr*stdev": -9.362460, ":": -4.064143, ";": -2.679099, "=": -1.763059, ">": -5.896725, "@long_name": -8.669313, "@units": -9.362460, "A": -7.976166, "A.": -9.362460, "ASCII": -9.362460, "Add": -8.669313, "Adding": -8.669313, "Advance": -8.669313, "Africa": -9.362460, "Annotations": -9.362460, "Anomaly": -8.669313, "Array": -9.362460, "Associate": -9.362460, "Attaching": -7.976166, "BADC": -9.362460, "Band": -8.263848, "Bin": -9.362460, "Binned": -8.669313, "Birgit": -9.362460, "COARDS/udunits": -9.362460, "CRU": -9.362460, "Change": -9.362460, "Changing": -9.362460, "Choose": -9.362460, "City": -9.362460, "Climate": -9.362460, "Close": -9.362460, "Colorado.": -9.362460, "Compute": -9.362460, "Concepts": -7.416550, "Construct": -9.362460, "Convert": -9.362460, "Converting": -9.362460, "Create": -7.753023, "Creating": -8.669313, "Customizing": -9.362460, "D": -7.753023, "DATES": -9.362460, "DEBUG": -8.669313, "DENSITY...": -9.362460, "Data": -8.669313, "Date": -9.362460, "Define": -8.669313, "Dr.": -9.362460, "Draw": -6.723403, "Drawing": -7.283019, "EXP": -8.263848, "EarthMap_": -8.669313, "Eigenvalues": -9.362460, "End": -9.362460, "Example": -8.669313, "Experiment": -9.362460, "False": -5.411217, "First": -9.362460, "GIN": -9.362460, "Graphics": -8.669313, "Gregorin": -9.362460, "HDF": -9.362460, "Ha": -9.362460, "Haley": -9.362460, "Hassler": -9.362460, "Higher": -9.362460, "I": -9.362460, "INPUT": -9.362460, "INPUTS": -9.362460, "In": -9.362460, "Input": -8.263848, "Inputs": -8.263848, "Int": -9.362460, "Interpolated": -8.669313, "JPEG": -9.362460, "JUN": -9.362460, "L": -9.362460, "Latin": -8.669313, "Legend": -9.362460, "Level": -9.362460, "LoV": -8.669313, "Loop": -8.263848, "Lower": -9.362460, "MAIN": -9.362460, "MCSST": -9.362460, "MMM/NCAR": -9.362460, "Main": -9.362460, "Make": -8.263848, "Manually": -9.362460, "MarkerCol": -7.753023, "Mary": -9.362460, "Mask": -9.362460, "Masking": -9.362460, "Maximize": -9.362460, "Maximizing": -9.362460, "Mode": -8.669313, "Move": -9.362460, "N": -8.669313, "NAVO": -9.362460, "NCL": -7.753023, "NDC": -8.263848, "NOAA": -9.362460, "NVAP": -9.362460, "Named": -9.362460, "Nebraska": -9.362460, "NetCDF": -9.362460, "NhlNewColor": -9.362460, "Note": -9.362460, "Now": -9.362460, "Number": -9.362460, "O": -6.964565, "OldYear": -8.263848, "Open": -7.976166, "Or": -9.362460, "Oscillation": -9.362460, "Output": -9.362460, "Overlay": -8.669313, "PARAMETERS": -9.362460, "PD": -8.263848, "PDF": -9.362460, "PI": -9.362460, "PNG.": -9.362460, "POP": -7.570701, "POPs": -8.669313, "POTENTIAL": -9.362460, "PR": -9.362460, "PS": -8.669313, "Patterns": -9.362460, "Plot": -8.669313, "Plots": -9.362460, "Plotting": -8.669313, "Points": -9.362460, "Postscript": -9.362460, "Pressure": -9.362460, "Principal": -9.362460, "PrnOscPat_driver": -9.362460, "Procedure": -9.362460, "Put": -9.362460, "RGBA": -9.362460, "Raster": -8.263848, "Read": -8.263848, "Reading": -8.669313, "Recreating": -8.669313, "Regarding": -8.263848, "Research": -9.362460, "S": -9.362460, "SALT": -8.669313, "SEP": -9.362460, "SEVIRI": -9.362460, "SST": -9.362460, "Same": -9.362460, "Scale": -9.362460, "Sea": -7.753023, "Second": -9.362460, "Selecting": -9.362460, "Set": -8.263848, "Slightly": -9.362460, "So": -9.362460, "Southern": -9.362460, "Spanning": -9.362460, "Start": -9.362460, "Station": -9.362460, "Structure": -9.362460, "Surface": -7.976166, "T": -9.362460, "TEMP": -8.669313, "TRAJ": -8.669313, "Tell": -9.362460, "Temperature": -7.976166, "The": -7.753023, "These": -9.362460, "This": -7.570701, "To": -8.669313, "Trinidad": -9.362460, "True": -5.450437, "Turn": -6.964565, "U": -9.362460, "Uncomment": -9.362460, "Unit": -9.362460, "Use": -9.362460, "Used": -9.362460, "User": -8.669313, "Using": -7.416550, "V": -9.362460, "View": -9.362460, "WARNING": -9.362460, "WRF": -9.362460, "WRF_map_c": -9.362460, "WRITE_MASK": -8.669313, "We": -9.362460, "Weekly": -8.669313, "When": -9.362460, "X": -8.669313, "XLAT": -9.362460, "XLONG": -9.362460, "XY": -7.976166, "Yeager": -8.669313, "Young": -9.362460, "Z": -7.165236, "Z/": -9.362460, "Z@long_name": -9.362460, "Zoom": -9.362460, "Zooming": -9.362460, "[": -6.226966, "\\": -5.058395, "]": -6.226966, "_FillValue": -8.669313, "_inverse": -8.669313, "a": -4.955741, "activate": -9.362460, "add": -7.165236, "added": -9.362460, "addfile": -6.529247, "adjusted": -9.362460, "adjustment": -9.362460, "advance": -7.753023, "advance.": -9.362460, "after": -9.362460, "again.": -9.362460, "against": -9.362460, "align": -9.362460, "all": -7.753023, "allocate": -9.362460, "alternative": -9.362460, "an": -7.283019, "and": -6.271418, "anom": -9.362460, "arbitrary": -9.362460, "arctic": -9.362460, "are": -7.283019, "area": -7.753023, "areas": -9.362460, "around": -8.669313, "array": -7.165236, "array.": -9.362460, "arrays": -8.669313, "as": -6.877554, "ascii": -8.263848, "asciiread": -9.362460, "aspect": -9.362460, "aspects": -9.362460, "assign": -7.570701, "assigned": -8.669313, "at": -7.976166, "atlantic": -9.362460, "attach": -8.669313, "attributes": -8.669313, "available": -9.362460, "averaged": -8.669313, "avg": -9.362460, "axis": -7.570701, "b": -6.143585, "back": -9.362460, "bands": -9.362460, "bar": -9.362460, "barb": -8.263848, "barbs": -9.362460, "base": -9.362460, "based": -8.669313, "basic": -9.362460, "basin": -6.877554, "basins": -9.362460, "be": -7.165236, "before": -9.362460, "begin": -7.165236, "below.": -8.669313, "better...": -9.362460, "bi": -7.976166, "bi.eq.": -7.283019, "bi.lt.": -9.362460, "binary": -8.669313, "binfile": -6.723403, "blab": -7.283019, "black": -9.362460, "blue": -9.362460, "blueMap": -8.669313, "blues": -7.753023, "both": -9.362460, "bottom": -7.753023, "boundaries": -9.362460, "bounding": -7.753023, "box": -7.283019, "box.": -8.669313, "boxes": -9.362460, "brought": -9.362460, "brown": -9.362460, "brute": -9.362460, "bug": -9.362460, "but": -8.669313, "by": -7.976166, "calculate": -8.263848, "calculating": -9.362460, "call": -8.669313, "calls": -9.362460, "can": -8.263848, "case": -8.669313, "cat": -8.669313, "categories": -9.362460, "category": -9.362460, "cd_calendar": -9.362460, "cd_inv_calendar": -9.362460, "cdf_file": -8.263848, "cdf_prefix": -8.263848, "center": -8.669313, "change": -8.669313, "changed": -9.362460, "check": -9.362460, "chimney": -8.263848, "chimney.": -9.362460, "choice": -9.362460, "choose": -7.976166, "cities": -9.362460, "cities.": -8.669313, "city_lats": -8.669313, "city_lons": -8.669313, "cld": -7.976166, "cldclm": -8.263848, "cleaner": -9.362460, "climatologies": -9.362460, "climatology": -8.669313, "clmMonTLL": -7.059875, "cm": -8.263848, "cmap": -7.976166, "code": -9.362460, "col": -9.362460, "color": -6.529247, "colormap": -7.570701, "colormap.": -9.362460, "colormaps...": -9.362460, "colors": -7.416550, "cols": -7.570701, "column": -8.263848, "combine": -9.362460, "comments.": -9.362460, "completely": -9.362460, "complex": -9.362460, "compute": -8.669313, "computed": -9.362460, "conform_dims": -8.669313, "conjugate": -9.362460, "construct": -9.362460, "contains": -8.669313, "continental": -9.362460, "contour": -6.472089, "contours": -7.753023, "convert": -7.416550, "converted": -9.362460, "coord": -9.362460, "coordinate": -8.669313, "coordinates": -8.669313, "copy": -9.362460, "copy_VarCoords": -9.362460, "copy_VarMeta": -8.669313, "cov": -6.877554, "covariance": -8.669313, "covcorm": -8.669313, "covcorm_xy": -8.669313, "create": -6.317938, "creating": -9.362460, "cru_": -9.362460, "curves": -9.362460, "cv": -8.669313, "cyclic": -9.362460, "d": -5.491259, "d.eq.min": -9.362460, "data": -5.555798, "date": -6.797511, "date@units": -9.362460, "dates": -8.669313, "day": -7.416550, "decision": -9.362460, "default": -8.669313, "delete": -6.723403, "den": -9.362460, "density": -7.753023, "depth": -7.570701, "depth_max": -8.263848, "depth_max/": -9.362460, "depth_min": -8.263848, "depth_min/": -9.362460, "desired": -7.976166, "destination": -9.362460, "determine": -9.362460, "dgeevx": -9.362460, "dgeevx_lapack": -9.362460, "diagrams": -9.362460, "different": -8.263848, "dim_avg_n": -9.362460, "dim_eof": -7.753023, "dim_rmvmean_n": -9.362460, "dim_standardize_n": -9.362460, "dim_stddev_n": -9.362460, "dim_ts": -8.263848, "dimd": -8.669313, "dimension": -9.362460, "dimensions": -9.362460, "dimll": -7.570701, "dims": -8.669313, "dimsizes": -6.877554, "dimx": -8.263848, "dir": -8.669313, "directions": -9.362460, "directory": -8.669313, "diri": -6.589872, "distinct": -9.362460, "ditto": -9.362460, "dlat": -9.362460, "dlon": -9.362460, "dnam_eof": -7.283019, "dnam_ts": -7.753023, "do": -6.366728, "dom": -8.669313, "domain": -9.362460, "dominant": -9.362460, "don": -7.165236, "dot": -8.263848, "down": -9.362460, "draw": -6.143585, "draw.": -9.362460, "drawNDCGrid": -8.669313, "draw_vp_box": -8.669313, "drawing": -9.362460, "drawn": -9.362460, "dtr": -8.263848, "dtrclm": -8.669313, "dum": -8.263848, "dx": -9.362460, "dx/": -9.362460, "dy": -9.362460, "dy/": -9.362460, "each": -7.283019, "eigenvalues": -9.362460, "eigenvectors": -8.669313, "eigi": -8.669313, "eigr": -8.669313, "either": -9.362460, "else": -9.362460, "end": -5.601260, "enter": -9.362460, "eof": -7.753023, "eof_ts": -7.059875, "eps": -8.669313, "ev": -7.976166, "even": -9.362460, "everything": -9.362460, "evlr": -7.416550, "evlr@eigi": -9.362460, "evlr@eigr": -9.362460, "evolution": -9.362460, "examined": -9.362460, "example": -9.362460, "existing": -8.669313, "exit": -9.362460, "external": -9.362460, "extra": -9.362460, "extract": -8.669313, "f": -6.366728, "fakeDim": -8.669313, "faster": -9.362460, "fbindirread": -8.669313, "fbinrecread": -6.877554, "fcld": -8.263848, "fdtr": -8.669313, "feet": -8.669313, "ffrs": -8.669313, "figure": -9.362460, "filName": -8.669313, "file": -6.723403, "file.": -9.362460, "filename": -9.362460, "files": -8.263848, "files.": -9.362460, "filevardef": -9.362460, "fili": -6.964565, "fill": -7.570701, "filled": -8.669313, "filx": -8.263848, "fin": -8.263848, "find": -9.362460, "finout": -8.263848, "first": -8.263848, "flag": -6.964565, "flag*": -9.362460, "flag@long_name": -9.362460, "flag@units": -9.362460, "float": -6.184407, "fmmmm": -8.669313, "fname": -8.263848, "focn": -8.263848, "for": -5.896725, "force": -9.362460, "format": -7.976166, "fortran": -9.362460, "fpet": -8.669313, "fpre": -8.669313, "frame": -6.418021, "frame.": -8.669313, "from": -7.059875, "frs": -8.263848, "frsclm": -8.669313, "fs": -8.263848, "fspan": -7.753023, "ftmn": -8.669313, "ftmp": -8.669313, "ftmx": -8.669313, "full": -8.669313, "fully": -9.362460, "function": -8.263848, "functions": -9.362460, "fvap": -8.669313, "fwet": -8.669313, "gaps": -9.362460, "gdal_translate": -9.362460, "generates": -9.362460, "geographical": -9.362460, "get": -7.976166, "get_file_suffix": -8.669313, "get_ncl_version": -9.362460, "getvardims": -8.669313, "global": -8.669313, "graphic": -7.283019, "graphic.": -9.362460, "graphics": -8.669313, "gray": -8.669313, "green": -9.362460, "greenMap": -8.669313, "greens": -7.753023, "grid": -7.976166, "grid_type": -9.362460, "gsn_add_polyline": -8.669313, "gsn_add_polymarker": -8.263848, "gsn_add_polyxxx": -9.362460, "gsn_add_shapefile_polylines": -8.263848, "gsn_add_text": -8.669313, "gsn_coordinates": -7.976166, "gsn_csm_contour": -8.263848, "gsn_csm_contour_map": -7.283019, "gsn_csm_contour_map_ce": -6.797511, "gsn_csm_map": -9.362460, "gsn_csm_xy": -7.976166, "gsn_define_colormap": -7.416550, "gsn_map": -9.362460, "gsn_open_wks": -6.877554, "gsn_panel": -7.283019, "gsn_xy": -7.283019, "gsres": -7.570701, "gsres@gsMarkerColor": -8.263848, "gsres@gsMarkerIndex": -8.669313, "gsres@gsMarkerSizeF": -8.669313, "has": -9.362460, "have": -8.669313, "having": -9.362460, "header": -9.362460, "headers": -9.362460, "height": -9.362460, "helpful": -9.362460, "hour": -8.263848, "how": -9.362460, "http": -9.362460, "i": -5.778941, "i.e.": -9.362460, "i.eq.": -9.362460, "i.gt.": -9.362460, "if": -5.555798, "ifs": -7.059875, "ifx": -8.263848, "ifx/": -9.362460, "ifx@max_lat": -9.362460, "ifx@max_lon": -9.362460, "ifx@min_lat": -9.362460, "ifx@min_lon": -9.362460, "ii": -9.362460, "ii*mlon": -9.362460, "ilat": -9.362460, "illustrate": -9.362460, "illustrated": -7.416550, "illustrating": -9.362460, "illustrations.": -9.362460, "imag": -8.263848, "image": -8.263848, "images": -9.362460, "imdat": -8.669313, "imin": -7.416550, "in": -6.654410, "included": -9.362460, "ind": -8.263848, "ind_resolve": -9.362460, "indeces": -9.362460, "index": -7.570701, "indian": -9.362460, "indivdual": -9.362460, "individual": -8.669313, "info": -9.362460, "info.": -9.362460, "information": -8.669313, "informs": -9.362460, "initial": -9.362460, "input": -9.362460, "instead.": -9.362460, "integer": -7.283019, "intercept": -9.362460, "interest": -8.669313, "interpolated": -9.362460, "interval": -9.362460, "into": -8.263848, "inverse_matrix": -8.669313, "ipar": -7.416550, "ipar.eq.": -7.976166, "is": -7.976166, "ispan": -8.263848, "it": -8.263848, "ix": -7.416550, "ix*": -9.362460, "ix/": -9.362460, "j": -7.570701, "jday": -8.669313, "ji": -7.753023, "jj": -8.669313, "jlon": -9.362460, "jmin": -7.416550, "jpeg": -8.263848, "jpg": -9.362460, "just": -9.362460, "kPOP": -7.976166, "kg/m": -9.362460, "knots.": -9.362460, "lPlotVariablesList": -9.362460, "label": -8.263848, "labelbar": -8.263848, "labeled": -9.362460, "labeling": -9.362460, "labels": -8.669313, "labrador": -9.362460, "lag": -7.753023, "land": -8.263848, "land/ocean": -9.362460, "land_mask": -8.263848, "land_mask.eq.": -8.669313, "large": -8.263848, "last": -8.263848, "lat": -5.533819, "lat/lon": -7.976166, "lat@long_name": -9.362460, "lat@units": -8.263848, "latE": -8.669313, "latW": -8.263848, "lat_t": -9.362460, "latbox": -8.669313, "later.": -8.669313, "layer": -8.263848, "layer.": -9.362460, "lb": -9.362460, "left": -8.263848, "legend": -9.362460, "legend.": -9.362460, "legend_": -7.570701, "less": -9.362460, "let": -9.362460, "level": -7.976166, "levels": -8.669313, "limits": -9.362460, "line": -7.165236, "line.": -7.976166, "lines": -7.165236, "listed": -9.362460, "lnd": -9.362460, "lnres": -8.669313, "lnres@gsLineColor": -9.362460, "lnres@gsLineThicknessF": -9.362460, "load": -5.896725, "local": -8.669313, "location": -9.362460, "logitude": -9.362460, "lon": -5.578271, "lon@long_name": -9.362460, "lon@units": -8.263848, "lonE": -8.669313, "lonW": -8.669313, "lonbox": -8.669313, "long_name": -8.669313, "longer": -9.362460, "lower": -9.362460, "lsMask": -7.976166, "magically": -9.362460, "magnitude": -9.362460, "make": -7.976166, "manual": -9.362460, "manually": -9.362460, "map": -6.184407, "map.": -7.753023, "map_cornersE": -8.263848, "map_cornersW": -8.263848, "map_data": -8.263848, "map_land_mask": -7.976166, "map_ocean_mask": -8.263848, "map_ocean_mask/": -9.362460, "marker": -9.362460, "marks": -8.669313, "mas": -9.362460, "mask": -7.416550, "masked": -9.362460, "matrices": -9.362460, "matrix": -8.263848, "max": -7.570701, "max_elev": -8.669313, "max_lat": -9.362460, "max_lon": -9.362460, "maximize": -8.263848, "maximize_output": -9.362460, "maxlat": -8.263848, "maxlon": -8.263848, "mb": -9.362460, "mcsst_": -9.362460, "mean": -7.976166, "means": -9.362460, "meta": -7.753023, "meters": -9.362460, "middle": -9.362460, "min": -7.570701, "min_elev": -9.362460, "min_lat": -9.362460, "min_lon": -9.362460, "minij": -8.263848, "minima.": -9.362460, "minind": -9.362460, "minlat": -8.263848, "minlon": -8.263848, "minmax_elevE": -8.669313, "minmax_elevW": -9.362460, "missing": -7.976166, "mkres": -7.976166, "mkres@gsMarkerSizeF": -9.362460, "mkres@gsnCoordsAttach": -9.362460, "mkres@gsnCoordsMissingColor": -9.362460, "mkres@gsnCoordsNonMissingColor": -9.362460, "mlon": -7.059875, "mm": -8.669313, "mmmm": -8.669313, "mn": -7.976166, "mnmxint": -7.976166, "mode": -8.669313, "model": -7.416550, "modified": -9.362460, "modify": -8.669313, "mods": -8.263848, "mon": -7.976166, "mon*": -9.362460, "month": -7.976166, "monthly": -9.362460, "more": -8.669313, "mpres": -8.669313, "mpres@gsnFrame": -9.362460, "mpres@mpCenterLatF": -9.362460, "mpres@mpCenterLonF": -9.362460, "mpres@mpCenterRotF": -9.362460, "mpres@mpOutlineBoundarySets": -9.362460, "mpres@mpSatelliteDistF": -9.362460, "multiple": -7.976166, "n": -8.669313, "nPOP": -8.669313, "name": -7.976166, "names": -8.669313, "names.": -9.362460, "nc": -9.362460, "ncdump": -9.362460, "ncgm": -9.362460, "ncl": -7.416550, "ncol": -8.669313, "ncor": -7.976166, "ndate": -6.723403, "ndc": -9.362460, "ndtooned": -7.753023, "necessary": -9.362460, "need": -9.362460, "needed": -7.753023, "neof": -7.283019, "netCDF": -8.669313, "netCDFFilePath": -9.362460, "new": -5.648888, "new_cdf_file": -8.263848, "nexp": -7.976166, "next": -9.362460, "nf": -7.976166, "nfil": -8.669313, "nfs": -7.976166, "nhead": -8.669313, "nice_mnmxintvl": -9.362460, "nicely": -9.362460, "nlat": -6.964565, "nlon": -9.362460, "no": -9.362460, "north": -9.362460, "north.": -9.362460, "not": -6.877554, "note": -9.362460, "noty": -9.362460, "now": -8.263848, "np": -8.669313, "nq": -8.669313, "nq/": -8.669313, "nt": -6.964565, "ntLast": -6.964565, "ntStrt": -6.964565, "ntim": -6.797511, "number": -9.362460, "numbers": -9.362460, "numeric": -7.976166, "object": -8.669313, "ocean": -8.669313, "ocean.": -9.362460, "ocnfile": -8.669313, "of": -5.928473, "off": -6.723403, "off.": -9.362460, "on": -6.418021, "one": -7.753023, "only": -8.669313, "onward": -8.263848, "opaque": -9.362460, "open": -7.570701, "opt": -8.669313, "opt@return_mask": -9.362460, "optional": -9.362460, "options": -9.362460, "or": -8.669313, "or.bi.gt.": -9.362460, "or.ipar.eq.": -8.263848, "orientation": -9.362460, "original": -8.669313, "originally": -9.362460, "ork": -9.362460, "ot": -9.362460, "other": -9.362460, "other.": -9.362460, "our": -9.362460, "out": -8.669313, "outline": -9.362460, "outlines": -8.669313, "output": -8.669313, "output.": -9.362460, "outputFilePath": -9.362460, "over": -7.753023, "overlain": -9.362460, "overlay": -7.753023, "own": -9.362460, "pacific": -9.362460, "page": -7.976166, "panel": -7.570701, "parameters": -9.362460, "parse": -9.362460, "part": -7.753023, "particle": -9.362460, "particle.f": -9.362460, "path": -8.263848, "patterns": -8.263848, "pd": -6.964565, "pdf": -8.669313, "per": -8.669313, "period": -9.362460, "pet": -8.263848, "petclm": -8.669313, "pi": -7.976166, "pi*pi": -9.362460, "pi/": -9.362460, "picture": -9.362460, "plot": -4.943620, "plot.": -7.976166, "plot@": -9.362460, "plotTCOPolym": -8.669313, "plotpd": -8.669313, "plots": -6.529247, "plotted": -8.669313, "plotting": -7.976166, "pltDir": -8.669313, "pltName": -7.753023, "pltType": -7.570701, "plts": -7.753023, "pmid": -8.669313, "pointers": -9.362460, "points": -8.669313, "polylines": -7.976166, "polylines.": -9.362460, "polymarkers": -7.753023, "polymarkers.": -9.362460, "position": -9.362460, "pot": -9.362460, "potenial": -9.362460, "potential": -8.263848, "pr": -7.976166, "pr*pi": -8.669313, "pr*pr": -9.362460, "pre": -8.263848, "preclm": -8.669313, "pres": -8.669313, "pres@gsnMaximize": -9.362460, "pres@gsnPanelLabelBar": -9.362460, "print": -6.797511, "printVarInfo": -9.362460, "printVarSummary": -7.059875, "procedure": -8.669313, "projection": -8.669313, "projection.": -9.362460, "projection.eq.": -9.362460, "ps": -7.976166, "psres": -8.669313, "put": -9.362460, "quad_name": -8.669313, "rPlotVariablesList": -9.362460, "ramp": -7.976166, "range": -7.976166, "raster": -7.570701, "rather": -8.669313, "ratio": -9.362460, "read": -7.570701, "readAsciiTable": -9.362460, "real": -7.976166, "recognized.": -9.362460, "recreate_jpeg_image": -9.362460, "recreates": -9.362460, "red": -7.753023, "redMap": -7.976166, "reds": -7.753023, "references": -9.362460, "regular": -9.362460, "represent": -9.362460, "res": -5.698899, "res@cnFillBackgroundColor": -9.362460, "res@cnFillColors": -8.263848, "res@cnFillMode": -7.570701, "res@cnFillOn": -7.416550, "res@cnFillPalette": -9.362460, "res@cnInfoLabelOn": -9.362460, "res@cnLevelSelectionMode": -7.753023, "res@cnLevelSpacingF": -8.263848, "res@cnLevels": -8.669313, "res@cnLineLabelsOn": -7.976166, "res@cnLinesOn": -7.416550, "res@cnMaxLevelCount": -9.362460, "res@cnMaxLevelValF": -8.669313, "res@cnMinLevelValF": -8.669313, "res@cnMissingValFillColor": -9.362460, "res@gsnAddCyclic": -7.753023, "res@gsnCenterString": -8.263848, "res@gsnDraw": -7.283019, "res@gsnFrame": -7.570701, "res@gsnLeftString": -7.753023, "res@gsnMaximize": -7.753023, "res@gsnRightString": -7.753023, "res@gsnSpreadColorEnd": -9.362460, "res@gsnSpreadColorStart": -9.362460, "res@gsnSpreadColors": -8.669313, "res@lbBoxMinorExtentF": -9.362460, "res@lbLabelAlignment": -9.362460, "res@lbLabelAutoStride": -9.362460, "res@lbLabelBarOn": -8.669313, "res@lbLabelFontHeightF": -9.362460, "res@lbLabelPosition": -9.362460, "res@lbLabelStrings": -9.362460, "res@lbOrientation": -8.669313, "res@lbTitleFontHeightF": -9.362460, "res@lbTitleOffsetF": -9.362460, "res@lbTitleString": -9.362460, "res@mpCenterLonF": -8.669313, "res@mpDataBaseVersion": -9.362460, "res@mpFillOn": -7.976166, "res@mpLambertMeridianF": -9.362460, "res@mpLambertParallel": -8.669313, "res@mpLeftCornerLatF": -8.669313, "res@mpLeftCornerLonF": -8.669313, "res@mpLimitMode": -8.669313, "res@mpMaxLatF": -8.669313, "res@mpMaxLonF": -8.669313, "res@mpMinLatF": -8.669313, "res@mpMinLonF": -8.669313, "res@mpOutlineBoundarySets": -8.669313, "res@mpOutlineDrawOrder": -9.362460, "res@mpOutlineOn": -9.362460, "res@mpProjection": -9.362460, "res@mpRightCornerLatF": -8.669313, "res@mpRightCornerLonF": -8.669313, "res@pmLabelBarOrthogonalPosF": -9.362460, "res@pmLabelBarWidthF": -9.362460, "res@pmLegendDisplayMode": -9.362460, "res@pmTickMarkDisplayMode": -8.263848, "res@tfDoNDCOverlay": -9.362460, "res@tiMainFontHeightF": -9.362460, "res@tiMainOffsetYF": -9.362460, "res@tiMainString": -7.165236, "res@tiXAxisFontHeightF": -9.362460, "res@tiXAxisString": -8.669313, "res@tiYAxisFontHeightF": -9.362460, "res@tiYAxisString": -8.669313, "res@tmXBLabelFontHeightF": -9.362460, "res@trXMaxF": -8.669313, "res@trXMinF": -8.669313, "res@trYMaxF": -9.362460, "res@trYMinF": -9.362460, "res@txFontHeightF": -8.669313, "res@vpHeightF": -8.669313, "res@vpWidthF": -8.669313, "res@vpXF": -8.263848, "res@vpYF": -8.669313, "res@xyMarkLineMode": -9.362460, "res@xyMarkLineModes": -9.362460, "res@xyMarker": -9.362460, "res@xyMarkerColor": -9.362460, "res@xyMarkerColors": -9.362460, "res@xyMarkers": -9.362460, "resP": -7.976166, "resP@gsnMaximize": -8.669313, "resP@gsnPanelRowSpec": -9.362460, "resP@txString": -8.669313, "res_lines": -8.669313, "res_lines@gsLineColor": -9.362460, "res_lines@gsLineThicknessF": -9.362460, "resource": -8.669313, "resources": -6.964565, "resov": -8.669313, "resov@cnInfoLabelOn": -9.362460, "resov@cnLevelSelectionMode": -9.362460, "resov@cnLineLabelFontHeightF": -9.362460, "resov@cnLineLabelPlacementMode": -9.362460, "resov@gsnDraw": -9.362460, "resov@gsnFrame": -9.362460, "resp": -7.570701, "resp@gsnMaximize": -9.362460, "resp@txString": -7.753023, "retrieve": -9.362460, "return": -8.263848, "returned": -8.669313, "reverse": -9.362460, "rho_mwjf": -8.669313, "right": -7.753023, "righteigenvector": -9.362460, "rotated": -9.362460, "row": -8.263848, "s": -7.570701, "s_range": -8.669313, "safer.": -9.362460, "salinity": -9.362460, "salt": -7.976166, "salt@units": -9.362460, "salt_ba": -8.669313, "same": -7.976166, "sbl": -7.753023, "sbl@lat": -9.362460, "sbl@lon": -9.362460, "scale": -8.669313, "scaled": -9.362460, "scatter": -8.669313, "script": -8.669313, "sdata_ba": -8.669313, "sdate": -8.669313, "sec": -7.976166, "section": -8.669313, "see": -9.362460, "segment": -9.362460, "selected": -9.362460, "separate": -9.362460, "separated": -9.362460, "series": -7.753023, "set": -7.165236, "settings": -9.362460, "sfx": -8.263848, "sfx@fBase": -8.669313, "shapefile": -7.976166, "shapefile.": -9.362460, "shapefile_mask_data": -9.362460, "should": -9.362460, "showing": -9.362460, "shpfile": -7.753023, "side": -7.283019, "simple": -9.362460, "since": -9.362460, "size": -7.976166, "size.": -9.362460, "size/shape": -9.362460, "sjm": -9.362460, "slp": -7.165236, "smaxcn": -8.263848, "smin": -7.416550, "smincn": -8.263848, "so": -8.669313, "soiltype": -8.669313, "some": -8.669313, "something": -9.362460, "source": -9.362460, "southern": -9.362460, "space": -9.362460, "spacing": -8.669313, "spatial": -8.263848, "specific": -9.362460, "specified": -8.669313, "specify": -8.263848, "sprinti": -9.362460, "square.": -9.362460, "sspan": -8.263848, "sst": -7.165236, "sst@_FillValue": -8.263848, "sst@long_name": -9.362460, "sst@units": -9.362460, "standardize": -9.362460, "start": -8.263848, "start/lat": -9.362460, "state": -9.362460, "static": -9.362460, "static.wrsi": -9.362460, "station": -7.976166, "stdev": -7.753023, "stl": -7.753023, "stl@lat": -9.362460, "stl@lon": -9.362460, "storm": -9.362460, "stracks": -9.362460, "stride": -9.362460, "string": -7.283019, "stringtochar": -9.362460, "sub": -9.362460, "subtitles": -9.362460, "sum": -8.669313, "sure": -8.669313, "surface": -9.362460, "system": -9.362460, "system.": -9.362460, "systemfunc": -8.669313, "t": -7.165236, "t_range": -8.669313, "tdata_ba": -8.669313, "temp": -7.753023, "temp@units": -9.362460, "temp_ba": -8.669313, "text": -8.263848, "than": -8.669313, "that": -8.669313, "the": -5.251587, "their": -8.669313, "them": -8.669313, "then": -6.143585, "these": -9.362460, "they": -9.362460, "thick": -8.669313, "thicker": -9.362460, "thickness": -8.669313, "this": -9.362460, "though": -9.362460, "three": -9.362460, "through": -8.263848, "tick": -8.669313, "tickmark": -9.362460, "tickmarks": -9.362460, "time": -6.104364, "times": -9.362460, "title": -6.797511, "tmaxcn": -8.263848, "tmincn": -8.263848, "tmn": -8.263848, "tmnclm": -8.669313, "tmp": -7.753023, "tmp*xslope": -9.362460, "tmpE": -9.362460, "tmpW": -9.362460, "tmpclm": -8.669313, "tmx": -8.263848, "tmxclm": -8.669313, "to": -5.491259, "toint": -8.263848, "tool": -9.362460, "top": -7.753023, "topo": -8.669313, "topographic": -9.362460, "topography": -9.362460, "total": -9.362460, "towards": -9.362460, "track": -9.362460, "traj_": -9.362460, "trajectory": -9.362460, "transparent.": -9.362460, "true": -9.362460, "tspan": -8.263848, "tunits": -8.263848, "turn": -7.165236, "turned": -9.362460, "twc_lv": -8.669313, "two": -7.570701, "txid": -7.976166, "txres": -8.263848, "txres@txFontColor": -8.669313, "txres@txFontHeightF": -9.362460, "txres@txJust": -8.263848, "type": -8.263848, "type.": -9.362460, "typeof": -9.362460, "u": -6.723403, "u@_FillValue": -8.669313, "u_land_mask": -7.976166, "u_ocean_mask": -7.976166, "undef": -9.362460, "unecessary": -9.362460, "unequal": -9.362460, "unique": -9.362460, "unique_": -9.362460, "unique_string": -9.362460, "units": -8.263848, "unusual": -9.362460, "up": -8.263848, "use": -6.797511, "use@lat": -9.362460, "use@lon": -9.362460, "used": -8.669313, "user": -9.362460, "using": -7.283019, "v": -9.362460, "val": -9.362460, "val/": -9.362460, "valid_range": -9.362460, "value": -8.263848, "values": -7.416550, "values.": -9.362460, "vap": -8.263848, "vapclm": -8.669313, "vapour": -8.263848, "var": -9.362460, "variable": -7.753023, "variable.": -9.362460, "variables": -7.753023, "vertical": -9.362460, "very": -8.669313, "via": -9.362460, "viewport": -8.669313, "viewport_": -9.362460, "viewports.": -9.362460, "vs": -9.362460, "want": -8.669313, "was": -7.753023, "water": -7.976166, "we": -7.976166, "wet": -8.263848, "wetclm": -8.669313, "what": -9.362460, "where": -8.669313, "which": -9.362460, "white": -9.362460, "width": -9.362460, "will": -7.416550, "wind": -7.753023, "winds": -9.362460, "with": -7.283019, "without": -9.362460, "wks": -4.798112, "wmbarbmap": -9.362460, "wmsetp": -8.263848, "wmstnm": -8.669313, "works": -9.362460, "workstation": -9.362460, "workstation.": -9.362460, "world": -9.362460, "worldwide": -9.362460, "wrf_user_getvar": -8.669313, "wrf_user_list_times": -9.362460, "wrfout": -9.362460, "x": -6.066624, "x@long_name": -9.362460, "x@units": -9.362460, "xDimName": -9.362460, "xDimSize": -9.362460, "xTitle": -8.669313, "xaxis": -6.964565, "xdata": -8.669313, "xmarker": -8.263848, "xrot": -7.976166, "xslope": -9.362460, "xx": -8.669313, "xy": -9.362460, "xy_": -9.362460, "xyres": -7.165236, "xyres@gsnFrame": -9.362460, "xyres@tiMainString": -9.362460, "xyres@tmXTBorderOn": -9.362460, "xyres@tmXTOn": -9.362460, "xyres@tmYRBorderOn": -9.362460, "xyres@tmYROn": -9.362460, "xyres@trXMaxF": -9.362460, "xyres@trXMinF": -9.362460, "xyres@trYMaxF": -9.362460, "xyres@trYMinF": -9.362460, "xyres@xyLineColors": -8.263848, "xyres@xyLineThicknessF": -8.263848, "y": -8.263848, "yLAxisLabel": -9.362460, "yRAxisLabel": -9.362460, "yTitle": -7.976166, "yaxis": -6.964565, "ydata": -8.669313, "year": -6.418021, "year*": -9.362460, "year@long_name": -8.669313, "yet": -8.669313, "yet.": -9.362460, "yint": -8.263848, "ymLast": -9.362460, "ymLast/": -9.362460, "ymStrt": -9.362460, "ymStrt/": -9.362460, "ymarker": -8.263848, "you": -7.976166, "yrLast": -8.669313, "yrStrt": -8.669313, "yrot": -7.976166, "yy": -8.669313, "yyyymm": -9.362460, "yyyymm.eq.ymLast": -9.362460, "yyyymm.eq.ymStrt": -9.362460, "z": -6.654410, "z@long_name": -9.362460, "z@mean": -9.362460, "z@stdev": -9.362460, "z_t": -9.362460, "zero": -9.362460, "zi": -7.976166, "zi*stdev": -9.362460, "zonal": -9.362460, "zr": -7.976166, "{": -7.753023, "|": -7.570701, "}": -7.753023, }, "NL": map[string]float64{ "-": -0.279485, "C": -2.545994, "G": -6.697034, "J": -2.545994, "O": -6.697034, "b": -6.697034, "g": -6.697034, "k": -6.697034, "n": -2.530369, "r": -6.697034, }, "NSIS": map[string]float64{ "!": -3.596716, "$": -3.331013, "'": -6.732211, "(": -5.122773, ")": -5.122773, "*i.s": -6.732211, "+": -6.039064, ",": -5.345916, "-": -1.343139, ".onSelChange": -6.732211, "/COMPONENTSONLYONCUSTOM": -6.732211, "/NOCUSTOM": -6.732211, "/a": -6.732211, "/e": -6.732211, ":": -3.436374, ";": -3.043331, "=": -6.732211, "A": -6.732211, "AutoCloseWindow": -6.732211, "BGGradient": -6.732211, "BeginTestSection": -6.732211, "BigNSISTest": -4.940451, "BranchTest": -6.732211, "CONTROL": -6.039064, "CRCCheck": -6.732211, "CSCTest": -6.732211, "Call": -4.940451, "Caption": -6.732211, "CheckBitmap": -6.732211, "ClearErrors": -6.732211, "CreateDirectory": -6.732211, "CreateShortCut": -6.039064, "Ctrl": -6.732211, "Delete": -4.940451, "DeleteINISec": -6.732211, "DeleteINIStr": -6.732211, "DeleteRegKey": -6.039064, "DetailPrint": -6.732211, "DisableX": -5.345916, "EnableWow": -6.039064, "EnableX": -5.345916, "EndIf": -6.732211, "ErrorYay": -6.039064, "FF": -6.732211, "FFFFFF": -6.732211, "File": -5.633598, "Function": -5.633598, "FunctionEnd": -5.345916, "GetCurrentProcess": -6.732211, "Goto": -6.039064, "Group": -6.732211, "HAVE_UPX": -6.732211, "HKCR": -6.732211, "HKLM": -4.334315, "IDNO": -6.039064, "IDOK": -6.732211, "IDYES": -6.039064, "INIDelSuccess": -6.039064, "INSTDIR": -6.039064, "Icon": -6.732211, "If": -6.732211, "IfErrors": -6.732211, "IfFileExists": -6.039064, "InstType": -4.940451, "InstallColors": -6.732211, "InstallDir": -6.732211, "InstallDirRegKey": -6.732211, "IsWow": -6.732211, "LicenseData": -6.732211, "LicenseText": -6.732211, "LogicLib.nsh": -6.732211, "MB_ICONQUESTION": -6.039064, "MB_OK": -4.334315, "MB_YESNO": -5.345916, "MessageBox": -4.024161, "MyFunctionTest": -6.039064, "MyLabel": -6.039064, "NOCOMPRESS": -6.732211, "NOINSTTYPES": -6.732211, "NSIS": -6.732211, "NSISTest": -4.940451, "Name": -6.732211, "NoDelete": -6.039064, "NoError": -6.039064, "NoErrorMsg": -6.039064, "NoFailedMsg": -6.039064, "NoOverwrite": -6.732211, "Nop": -6.732211, "OutFile": -6.732211, "Page": -5.345916, "Pop": -6.732211, "Process": -6.732211, "Q": -6.039064, "RMDir": -5.122773, "ReadINIStr": -6.039064, "ReadRegStr": -6.732211, "RequestExecutionLevel": -6.732211, "RunningX": -5.345916, "SHIFT": -6.039064, "SOFTWARE": -4.940451, "SRedirection": -4.652769, "SW_SHOWMAXIMIZED": -6.732211, "SW_SHOWMINIMIZED": -6.732211, "SYSDIR": -6.732211, "Section": -4.940451, "SectionEnd": -5.122773, "SectionGetText": -6.732211, "SectionGroup": -5.633598, "SectionIn": -5.345916, "SectionSetText": -6.039064, "SetCompress": -6.732211, "SetDatablockOptimize": -6.732211, "SetDateSave": -6.732211, "SetOutPath": -5.633598, "Shift": -6.732211, "ShowInstDetails": -6.732211, "SilentInstall": -6.732211, "Start": -6.039064, "StrCmp": -5.633598, "StrCpy": -5.633598, "System": -5.345916, "TESTIDX": -5.633598, "This": -6.732211, "UninstPage": -6.039064, "UninstallIcon": -6.732211, "UninstallText": -6.732211, "Uninstaller": -6.732211, "Wow": -6.039064, "WriteINIStr": -5.345916, "WriteRegBin": -6.732211, "WriteRegDword": -5.633598, "WriteRegStr": -5.345916, "WriteUninstaller": -6.732211, "XPStyle": -6.732211, "Z": -6.732211, "\\": -4.247304, "_": -6.732211, "_LOGICLIB_TEMP": -5.633598, "_RunningX": -6.732211, "__NSH___": -6.039064, "___X": -6.039064, "_a": -6.732211, "_b": -6.732211, "_f": -6.039064, "_t": -6.039064, "`": -4.940451, "a": -6.039064, "admin": -6.732211, "and": -6.732211, "attempts": -6.732211, "bigtest.nsi": -6.732211, "checks": -6.732211, "components": -6.732211, "create": -6.732211, "define": -5.345916, "defined": -6.732211, "directory": -6.039064, "disables": -6.732211, "doesn": -6.039064, "e": -5.345916, "empty": -6.732211, "enables": -6.732211, "endif": -5.345916, "exehead.": -6.732211, "exist": -6.732211, "false": -6.732211, "few": -6.732211, "file": -5.345916, "for": -6.039064, "fun": -6.732211, "fun.": -6.732211, "functionality": -6.732211, "give": -6.732211, "handle": -6.732211, "hidden": -6.732211, "hotkey": -6.732211, "i": -6.039064, "i.s": -6.732211, "icon": -6.732211, "if": -5.122773, "ifdef": -6.039064, "ifndef": -6.039064, "include": -6.732211, "info": -6.732211, "insertmacro": -6.039064, "installations": -6.732211, "installer": -6.732211, "instfiles": -6.039064, "is": -6.039064, "it": -5.633598, "kernel": -5.345916, "license": -6.732211, "machines.": -6.732211, "macro": -5.633598, "macroend": -5.633598, "macros": -6.732211, "makes": -6.732211, "minimized": -6.732211, "most": -6.732211, "myfunc": -6.732211, "no": -6.732211, "normal": -6.732211, "not": -6.732211, "of": -5.633598, "off": -6.732211, "on": -4.940451, "only": -6.732211, "packhdr": -6.732211, "recursively": -6.732211, "redirection.": -6.039064, "reg": -6.732211, "running": -6.732211, "s": -6.732211, "sRedirection": -6.039064, "script": -6.732211, "show": -6.732211, "simple": -6.732211, "skipped": -5.633598, "so": -6.732211, "some.dll": -6.039064, "start": -6.732211, "starting": -6.732211, "string": -6.732211, "strings": -6.732211, "system": -6.039064, "t": -6.732211, "test": -6.732211, "the": -5.633598, "tmp.dat": -6.732211, "to": -6.039064, "uninstConfirm": -6.732211, "uninstall": -6.732211, "with": -6.732211, "would": -6.732211, "write": -6.039064, "x": -6.039064, "xyz_cc_does_not_exist": -6.732211, "{": -4.429626, "|": -4.940451, "}": -4.429626, }, "Nemerle": map[string]float64{ "(": -2.197225, ")": -2.197225, ":": -2.890372, ";": -2.197225, "Main": -2.890372, "Program": -2.890372, "System.Console": -2.890372, "WriteLine": -2.890372, "module": -2.890372, "using": -2.890372, "void": -2.890372, "{": -2.197225, "}": -2.197225, }, "NetLinx": map[string]float64{ "#define": -5.501258, "#end_if": -5.501258, "#if_not_defined": -5.501258, "#include": -5.501258, "(": -3.016352, ")": -3.016352, ",": -3.016352, ":": -3.016352, ";": -2.243162, "<NAME>": -4.808111, "<PARAMETERS>": -4.808111, "<RETURN_TYPE>": -5.501258, "=": -2.556819, "BTN_COMPOSITE": -4.808111, "BTN_HDMI": -4.808111, "BTN_POWER_OFF": -5.501258, "BTN_POWER_ON": -5.501258, "BTN_SVIDEO": -4.808111, "BTN_VGA": -4.808111, "DEFINE_CONSTANT": -5.501258, "DEFINE_DEVICE": -5.501258, "DEFINE_EVENT": -5.501258, "DEFINE_PROGRAM": -4.808111, "DEFINE_START": -5.501258, "DEFINE_TYPE": -5.501258, "DEFINE_VARIABLE": -5.501258, "INPUT_COMPOSITE": -4.808111, "INPUT_HDMI": -4.402646, "INPUT_SVIDEO": -4.808111, "INPUT_VGA": -4.808111, "LOG_LEVEL_INFO": -5.501258, "MOCK_PROJECTOR": -4.808111, "POWER_STATE_COOLING": -5.501258, "POWER_STATE_OFF": -4.402646, "POWER_STATE_ON": -4.808111, "POWER_STATE_WARMING": -5.501258, "[": -3.555348, "]": -3.555348, "button.input.channel": -5.501258, "button_event": -4.114964, "case": -4.114964, "command": -5.501258, "data.text": -5.501258, "data_event": -5.501258, "define_function": -4.808111, "dvPROJECTOR": -4.808111, "dvTP": -3.709499, "initialize": -4.808111, "input": -4.402646, "integer": -4.114964, "lamp_hours": -5.501258, "offline": -5.501258, "online": -5.501258, "parse_message": -5.501258, "power_state": -4.402646, "print": -5.501258, "proj_": -3.421817, "projector_t": -4.114964, "push": -5.501258, "release": -5.501258, "self": -4.808111, "self.input": -4.808111, "self.lamp_hours": -5.501258, "self.power_state": -5.501258, "string": -5.501258, "struct": -5.501258, "switch": -5.501258, "switch_input": -3.891820, "volatile": -5.501258, "{": -3.016352, "}": -3.016352, }, "NetLinx+ERB": map[string]float64{ "#define": -4.532599, "#end_if": -4.532599, "#if_not_defined": -4.532599, "%": -2.923162, "(": -3.839452, ")": -3.839452, ",": -2.453158, "-": -4.532599, "20": -4.532599, ":": -1.824549, "<": -3.839452, "<%>": -4.532599, "=": -3.146305, ">": -3.433987, "BTN_VID_BLURAY": -4.532599, "BTN_VID_FOH_PC": -4.532599, "BTN_VID_STAGE_PC": -4.532599, "DEFINE_CONSTANT": -4.532599, "DEFINE_DEVICE": -4.532599, "DEFINE_EVENT": -4.532599, "DEFINE_PROGRAM": -4.532599, "DEFINE_START": -4.532599, "DEFINE_TYPE": -4.532599, "DEFINE_VARIABLE": -4.532599, "Sample": -3.839452, "VID_SRC_BLURAY": -4.532599, "VID_SRC_FOH_PC": -4.532599, "VID_SRC_STAGE_PC": -4.532599, "btn": -3.146305, "global_constant_justify": -3.839452, "group": -4.532599, "input": -2.923162, "justify": -3.839452, "name": -4.532599, "print_constant_hash": -4.532599, "video_sources": -4.532599, "video_sources.remap": -3.839452, "{": -2.923162, "|": -3.839452, "}": -2.923162, }, "NetLogo": map[string]float64{ "!": -5.541264, ",": -5.541264, "-": -2.209059, ";": -3.056357, "<": -5.541264, "=": -4.848116, "?": -3.461822, "Starting": -5.541264, "This": -5.541264, "[": -2.708050, "]": -2.708050, "a": -5.541264, "alive": -5.541264, "all": -3.931826, "and": -5.541264, "any": -5.541264, "are": -5.541264, "ask": -3.749504, "ask.": -5.541264, "at": -5.541264, "before": -5.541264, "bgcolor": -5.541264, "birth": -4.154969, "births": -5.541264, "blank": -5.541264, "cell": -3.238678, "cells": -4.848116, "clear": -4.848116, "count": -5.541264, "counts": -5.541264, "death": -3.931826, "deaths": -5.541264, "density": -5.541264, "display": -5.541264, "down": -5.541264, "draw": -5.541264, "each": -4.848116, "end": -3.749504, "ensures": -5.541264, "erasing": -4.848116, "executing": -4.848116, "false": -5.541264, "fgcolor": -5.541264, "finish": -5.541264, "first": -5.541264, "float": -5.541264, "generation": -5.541264, "go": -5.541264, "happen": -5.541264, "here": -5.541264, "how": -5.541264, "if": -4.848116, "ifelse": -4.442651, "in": -4.848116, "indicates": -5.541264, "initial": -5.541264, "is": -5.541264, "keeps": -5.541264, "let": -5.541264, "live": -4.154969, "living": -3.749504, "lockstep.": -5.541264, "many": -5.541264, "mouse": -3.931826, "neighboring": -5.541264, "neighbors": -3.931826, "new": -5.541264, "of": -4.848116, "other": -5.541264, "own": -5.541264, "patch": -4.848116, "patches": -3.595353, "pcolor": -4.848116, "random": -4.848116, "reset": -4.848116, "second": -5.541264, "set": -3.931826, "setup": -4.848116, "so": -5.541264, "start": -5.541264, "synch": -5.541264, "that": -5.541264, "the": -3.749504, "them": -5.541264, "tick": -5.541264, "ticks": -4.848116, "to": -3.749504, "true": -5.541264, "while": -5.541264, "with": -4.848116, "xcor": -4.848116, "ycor": -4.848116, }, "NewLisp": map[string]float64{ "!": -6.055222, "#": -7.153834, "#newlisp": -7.153834, "$": -6.748369, "%": -6.748369, "&": -7.846981, "'": -7.153834, "(": -1.778555, ")": -1.794892, "+": -7.153834, ",": -6.237543, "-": -2.305717, "/": -7.846981, "/QUIT": -7.846981, "/projects/programming/newlisp": -7.846981, "/text": -7.846981, "/usr/bin/env": -7.153834, ":": -4.412994, ";": -3.570315, "<": -7.846981, "<BR>": -6.748369, "<P>": -6.460687, "<br>": -7.846981, "<p>": -7.153834, "=": -3.490272, ">": -6.237543, "?": -5.901071, "@author": -7.846981, "@description": -7.846981, "@module": -7.846981, "@version": -7.846981, "D": -7.153834, "DB": -5.649756, "Date": -5.901071, "FOR": -7.846981, "FUNCTIONS": -7.846981, "H": -7.846981, "HOME": -7.846981, "I": -7.153834, "IP": -7.846981, "IRC": -5.282032, "Icallbacks": -6.460687, "Ichannels": -5.901071, "Iconnected": -6.460687, "Id": -7.153834, "Idle": -7.846981, "Inickname": -6.460687, "Iserver": -5.544396, "Itime": -6.748369, "M": -7.846981, "NOTICE": -7.153834, "NUM": -6.748369, "PRIVMSG": -7.153834, "Referrer": -7.153834, "Request": -7.846981, "Result": -7.153834, "S": -7.846981, "SAFE": -7.846981, "SHEBANG#!newlisp": -7.846981, "SQL": -6.460687, "SQLite": -7.846981, "Size": -7.846981, "Usage": -7.846981, "UserAgent": -7.153834, "UserId": -7.153834, "UserName": -7.846981, "WHERE": -7.846981, "[": -7.153834, "\\": -7.846981, "]": -7.153834, "a": -5.649756, "access": -6.460687, "actually": -7.846981, "add": -6.748369, "against": -7.846981, "alist": -6.748369, "all": -6.237543, "alpha": -7.846981, "apos": -7.846981, "apply": -7.846981, "are": -7.846981, "args": -5.544396, "argument": -7.153834, "arguments": -7.153834, "as": -7.846981, "assoc": -7.846981, "at": -7.846981, "avoid": -7.153834, "basic": -7.846981, "be": -7.153834, "become": -7.846981, "begin": -6.237543, "bot": -7.153834, "buffer": -6.055222, "callback": -4.628105, "callbacks": -5.362074, "catch": -6.748369, "chan": -6.748369, "channel": -5.074392, "character": -7.846981, "chop": -7.153834, "clause": -7.846981, "clean": -7.153834, "close": -6.460687, "code": -7.153834, "command": -5.767539, "cond": -5.901071, "connect": -6.748369, "constant": -7.846981, "context": -6.237543, "context.": -7.153834, "continue": -7.846981, "cormullion": -7.846981, "correct": -7.846981, "create": -6.748369, "ctcp": -7.153834, "current": -7.846981, "d": -7.153834, "data": -5.282032, "database": -6.237543, "date": -6.237543, "day": -7.153834, "db": -6.748369, "dec": -7.846981, "default": -7.846981, "define": -4.668927, "delete": -6.460687, "deregister": -7.846981, "deregistering": -7.846981, "display": -6.748369, "displayln": -5.282032, "do": -5.207924, "dolist": -5.362074, "done": -7.153834, "early": -7.846981, "either": -7.846981, "elements": -7.846981, "empty": -6.460687, "end": -7.153834, "entry": -7.846981, "env": -7.846981, "error": -5.649756, "eval": -7.846981, "event": -7.153834, "example": -7.846981, "exit": -6.460687, "extend": -6.055222, "file": -7.846981, "find": -6.460687, "finished": -7.846981, "first": -5.449086, "for": -6.055222, "format": -5.767539, "func": -7.153834, "function": -6.055222, "have": -6.748369, "i": -6.748369, "identify": -7.846981, "idle": -7.846981, "idx": -6.748369, "if": -5.207924, "in": -5.767539, "index": -6.237543, "init": -7.153834, "injection": -7.153834, "input": -7.846981, "inserting": -7.846981, "integer": -7.846981, "interactive": -7.846981, "into": -6.748369, "irc": -5.901071, "irc/server": -7.846981, "is": -7.153834, "issues": -7.846981, "it": -7.846981, "items": -6.748369, "join": -6.055222, "just": -7.846981, "keep": -7.846981, "keeps": -7.846981, "last": -7.153834, "leading": -7.846981, "leave": -7.153834, "length": -5.767539, "let": -7.153834, "library": -7.846981, "line": -5.767539, "list": -4.291633, "load": -7.846981, "loads": -7.846981, "log": -7.846981, "logic": -7.846981, "lookup": -7.153834, "loop": -6.055222, "macro": -7.153834, "makes": -7.846981, "max": -6.460687, "message": -4.588884, "messages": -7.153834, "module": -7.153834, "monitor": -7.846981, "monitoring": -7.846981, "more": -6.748369, "must": -7.846981, "name": -4.956609, "need": -7.846981, "net": -5.544396, "newlisp": -7.153834, "nil": -6.055222, "no": -7.846981, "non": -7.153834, "not": -6.748369, "notice": -7.846981, "now": -6.460687, "num": -5.649756, "number": -7.846981, "numeric": -7.153834, "obviously": -7.846981, "of": -5.767539, "one": -7.846981, "only": -7.153834, "open": -6.237543, "or": -7.846981, "order": -7.846981, "outgoing": -7.846981, "parse": -6.748369, "parsed": -7.846981, "part": -7.846981, "parts": -7.846981, "password": -7.153834, "peek": -7.153834, "port": -7.153834, "prefix": -7.153834, "print": -6.748369, "println": -5.282032, "privmsg": -7.846981, "process": -6.748369, "processed": -7.846981, "projects/irc.lsp": -7.846981, "push": -6.460687, "put": -7.153834, "q": -6.460687, "query": -4.802459, "quit": -7.846981, "quote": -7.153834, "raw": -6.748369, "re": -7.153834, "read": -5.767539, "receive": -7.846981, "record": -6.055222, "ref": -7.846981, "register": -6.460687, "registering": -7.846981, "replace": -7.153834, "res": -7.846981, "rest": -5.649756, "results": -7.846981, "return": -7.153834, "rf": -7.846981, "room": -7.846981, "run": -7.846981, "s": -6.460687, "safe": -7.153834, "sanitized": -7.846981, "save": -6.748369, "second": -7.153834, "seconds": -7.846981, "send": -5.449086, "sender": -6.460687, "sequence": -7.153834, "server": -6.460687, "session": -6.460687, "set": -4.109311, "setf": -7.846981, "setq": -7.153834, "simple": -7.846981, "since": -7.846981, "sleep": -7.153834, "slice": -7.846981, "so": -7.153834, "solutions": -7.153834, "specified": -7.846981, "sql": -4.514776, "sqlarray": -6.748369, "stamp": -6.748369, "starts": -6.237543, "statements": -7.846981, "str": -6.460687, "string": -5.362074, "strings": -7.846981, "sym": -6.748369, "symbol": -7.153834, "symbols": -6.055222, "table": -5.767539, "target": -6.055222, "temp": -4.514776, "term": -7.153834, "terminal": -7.846981, "text": -5.901071, "than": -7.846981, "that": -7.846981, "the": -4.851249, "them": -7.846981, "they": -7.846981, "this": -6.748369, "time": -6.460687, "to": -5.207924, "trim": -7.153834, "true": -6.748369, "under": -7.846981, "unless": -7.846981, "update": -7.846981, "user": -6.460687, "username": -5.544396, "username/nick": -7.846981, "using": -7.846981, "v": -7.846981, "value": -6.748369, "values": -6.055222, "variants": -7.153834, "was": -7.846981, "we": -6.748369, "when": -6.237543, "while": -6.460687, "will": -7.153834, "with": -6.055222, "you": -7.846981, "zero": -7.846981, "{": -4.668927, "|": -7.153834, "}": -4.668927, }, "Nginx": map[string]float64{ "#add_header": -6.246107, "#fastcgi_param": -6.246107, "$": -3.110613, "(": -3.848211, ")": -3.848211, "*": -5.147494, "+": -4.859812, "-": -4.300197, ".": -4.859812, ".php": -4.859812, "/": -4.300197, "/*": -6.246107, "/.": -6.246107, "/.*": -6.246107, "//": -5.552960, "//big_server_com": -6.246107, "//example.com": -6.246107, "/etc/nginx/fastcgi.conf": -6.246107, "/etc/nginx/proxy.conf": -6.246107, "/etc/ssl/certs/dhparam.pem": -6.246107, "/phpMyAdmin": -6.246107, "/phpmyadmin": -5.552960, "/phpmyadmin/": -5.552960, "/purge": -6.246107, "/srv/www/example.com/htdocs": -6.246107, "/srv/www/example.com/ssl/example.com.crt": -6.246107, "/srv/www/example.com/ssl/example.com.key": -6.246107, "/srv/www/example.com/ssl/unified": -6.246107, "/usr/share/": -5.147494, "/var/log/nginx/example.com.access.log": -6.246107, "/var/log/nginx/example.com.error.log": -6.246107, "/var/run/example.com.sock": -5.552960, "/var/www/virtual/big.server.com/htdocs": -6.246107, "/wp": -6.246107, ":": -3.607049, ";": -1.780199, "=": -4.454347, "HTTPS": -6.246107, "PATH_INFO": -6.246107, "SSL": -6.246107, "Security": -6.246107, "Strict": -6.246107, "TLSv": -5.147494, "Transport": -6.246107, "UTF": -6.246107, "WORDPRESS": -5.552960, "[": -6.246107, "\\": -4.636669, "]": -6.246107, "^": -4.454347, "access.log": -5.552960, "access_log": -4.636669, "admin": -6.246107, "age": -6.246107, "application/octet": -6.246107, "autoindex": -6.246107, "bad_method": -6.246107, "big.server.com": -6.246107, "big_server_com": -6.246107, "charset": -6.246107, "com": -4.859812, "conf/mime.types": -6.246107, "css": -5.552960, "d": -6.246107, "default_type": -6.246107, "domain": -5.552960, "error_log": -5.552960, "events": -6.246107, "example.com": -6.246107, "expires": -6.246107, "fastcgi.conf": -5.552960, "fastcgi_cache": -6.246107, "fastcgi_cache_bypass": -6.246107, "fastcgi_cache_purge": -6.246107, "fastcgi_cache_valid": -6.246107, "fastcgi_index": -5.552960, "fastcgi_no_cache": -6.246107, "fastcgi_param": -6.246107, "fastcgi_pass": -5.147494, "fastcgi_path_info": -6.246107, "fastcgi_script_name": -6.246107, "fastcgi_split_path_info": -6.246107, "flash": -6.246107, "gif": -6.246107, "host": -6.246107, "html": -5.552960, "http": -5.147494, "http_cookie": -6.246107, "ico": -6.246107, "if": -5.147494, "images": -6.246107, "include": -4.454347, "index": -5.147494, "index.htm": -5.147494, "index.html": -5.147494, "index.php": -4.636669, "javascript": -6.246107, "jpeg": -6.246107, "jpg": -6.246107, "js": -5.552960, "last": -6.246107, "listen": -4.454347, "location": -3.848211, "log_format": -6.246107, "logs/access.log": -6.246107, "logs/big.server.access.log": -6.246107, "logs/domain": -5.552960, "logs/error.log": -6.246107, "logs/nginx.pid": -6.246107, "m": -5.147494, "main": -4.636669, "max": -6.246107, "media": -6.246107, "off": -6.246107, "on": -4.454347, "path_info": -5.552960, "permanent": -6.246107, "pid": -6.246107, "png": -6.246107, "proxy_pass": -5.552960, "request_uri": -5.552960, "resolver": -6.246107, "resolver_timeout": -6.246107, "return": -5.552960, "rewrite": -5.552960, "root": -4.454347, "s": -6.246107, "scheme": -5.552960, "sendfile": -6.246107, "server": -4.048882, "server_name": -4.636669, "server_names_hash_bucket_size": -6.246107, "set": -5.147494, "shared": -6.246107, "skip_cache": -4.859812, "snippets/ssl_ciphers_intermediate.conf": -6.246107, "ssl": -6.246107, "ssl.crt": -6.246107, "ssl_certificate": -6.246107, "ssl_certificate_key": -6.246107, "ssl_dhparam": -6.246107, "ssl_prefer_server_ciphers": -6.246107, "ssl_protocols": -6.246107, "ssl_session_cache": -6.246107, "ssl_session_timeout": -6.246107, "ssl_stapling": -6.246107, "ssl_stapling_verify": -6.246107, "ssl_trusted_certificate": -6.246107, "static": -6.246107, "stream": -6.246107, "tcp_nopush": -6.246107, "try_files": -5.552960, "txt": -6.246107, "unix": -5.552960, "upstream": -6.246107, "uri": -6.246107, "uri/": -6.246107, "user": -6.246107, "weight": -5.552960, "worker_connections": -6.246107, "worker_processes": -6.246107, "worker_rlimit_nofile": -6.246107, "www": -5.552960, "www.domain": -5.552960, "www.example.com": -6.246107, "xml": -6.246107, "{": -3.155064, "|": -3.473518, "}": -3.201584, "~": -4.166665, }, "Nim": map[string]float64{ "echo": 0.000000, }, "Nit": map[string]float64{ "!": -6.036051, "##": -8.387426, "##############################################################################": -8.387426, "#B": -8.387426, "#C": -9.080573, "#config_chooser.alpha_size": -9.080573, "#config_chooser.depth_size": -9.080573, "#config_chooser.sample_buffers": -9.080573, "#config_chooser.stencil_size": -9.080573, "#config_chooser.surface_type_egl": -9.080573, "#if": -9.080573, "#include": -6.777988, "#test": -8.387426, "%": -9.080573, "&": -7.694279, "&&": -9.080573, "(": -2.702147, ")": -2.702147, "*": -6.441516, "***": -7.694279, "*c_fds": -9.080573, "*c_string": -9.080573, "*data": -7.981961, "*de": -9.080573, "*dir": -9.080573, "*dir_path": -9.080573, "*disp_gap": -9.080573, "*gap": -9.080573, "*mkey": -8.387426, "*monkey": -9.080573, "+": -5.037522, ",": -2.971326, "-": -4.495606, ".": -9.080573, "./rest/answer": -9.080573, "./rest/meetup/new_pers": -9.080573, "./rest/people": -9.080573, ".add": -9.080573, ".add_class": -7.694279, ".answer": -9.080573, ".as": -9.080573, ".attr": -6.247360, ".environ": -7.981961, ".events": -8.387426, ".fd": -8.387426, ".fibonacci": -8.387426, ".filled_with": -9.080573, ".height": -9.080573, ".is_empty": -9.080573, ".length": -8.387426, ".native_visual_id": -9.080573, ".revents": -8.387426, ".simplify_path.split": -8.387426, ".text": -5.784736, ".to_cstring": -8.387426, ".to_i": -8.387426, ".width": -9.080573, ".write_to_string": -9.080573, "/": -7.288814, "//": -9.080573, "0": -7.694279, "1": -7.981961, "1024": -9.080573, "12": -9.080573, "13": -8.387426, "2": -8.387426, "8": -8.387426, "9": -9.080573, ":": -3.844131, ";": -4.603236, "<": -6.777988, "<(o)>": -9.080573, "</a>": -7.981961, "</button>": -7.981961, "</center>": -5.679376, "</code>": -7.694279, "</div>": -8.387426, "</pre>": -7.471135, "</span>": -7.471135, "</table>": -9.080573, "</td>": -7.288814, "</th>": -7.134663, "</tr>": -7.694279, "</tt>": -9.080573, "<Interface>": -9.080573, "<Method>": -9.080573, "<a>": -7.981961, "<alexis.laf@xymus.net>": -7.471135, "<ans.length;i++){>": -9.080573, "<br/>": -8.387426, "<button>": -7.981961, "<calestar@gmail.com>": -9.080573, "<center>": -5.713277, "<code>": -7.694279, "<dirent.h>": -9.080573, "<div>": -8.387426, "<errno.h>": -9.080573, "<host>": -9.080573, "<in_len;>": -9.080573, "<input>": -9.080573, "<integer>": -9.080573, "<jean@pryen.org>": -7.694279, "<lucasmatthieu@gmail.com>": -7.288814, "<method>": -9.080573, "<morandat@lirmm.fr>": -9.080573, "<poll.h>": -9.080573, "<port>": -8.387426, "<pre>": -7.471135, "<span>": -7.471135, "<stdio.h>": -8.387426, "<stdlib.h>": -9.080573, "<string.h>": -9.080573, "<sys/stat.h>": -9.080573, "<sys/types.h>": -9.080573, "<table>": -9.080573, "<target>": -9.080573, "<td>": -7.288814, "<th>": -7.288814, "<total_len;>": -9.080573, "<tr>": -7.981961, "<tt>": -9.080573, "<unistd.h>": -9.080573, "=": -2.649242, ">": -5.748369, "APACHE": -9.080573, "Accept": -9.080573, "All": -9.080573, "Answer": -8.387426, "Array": -6.247360, "Array_of_Int__index": -7.981961, "Array_of_Int_length": -8.387426, "B": -8.387426, "Batman": -9.080573, "Body": -9.080573, "Bool": -6.036051, "BufferedIStream": -9.080573, "CLNode": -7.288814, "CMonkey": -7.288814, "CMonkey*": -9.080573, "CalculatorContext": -7.134663, "CalculatorGui": -8.387426, "Char": -7.001132, "Chimpanze": -8.387426, "CircularList": -7.471135, "CircularListIterator": -8.387426, "Clock": -6.595667, "Comparable": -8.387426, "Copy": -9.080573, "Curl": -7.694279, "CurlCallbacks": -9.080573, "CurlHTTPRequest": -9.080573, "CurlMailRequest": -9.080573, "CurlMailResponseSuccess": -9.080573, "CurlResponseFailed": -7.981961, "CurlResponseSuccess": -9.080573, "DELETE": -9.080573, "DIR": -9.080573, "Done": -9.080573, "E": -6.372523, "EGLConfigChooser": -9.080573, "EGLContext.none": -9.080573, "EGLSurface.none": -8.387426, "Error": -7.471135, "Extract": -9.080573, "FILE*": -9.080573, "FStream": -7.288814, "FileStat": -6.883349, "FlatBuffer": -9.080573, "FlatText": -9.080573, "Float": -7.981961, "GET": -8.387426, "GET_FILE": -7.981961, "GLFragmentShader": -9.080573, "GLProgram": -9.080573, "GLVertexShader": -9.080573, "GtkButton": -8.387426, "GtkButton.with_label": -7.471135, "GtkCallable": -9.080573, "GtkGrid": -8.387426, "GtkLabel": -8.387426, "GtkWindow": -8.387426, "HTMLPage": -9.080573, "HashMap": -8.387426, "HashSet": -7.981961, "HashSet_of_String": -9.080573, "HashSet_of_String_add": -9.080573, "HashSet_of_String_as_Set_of_String": -9.080573, "HeaderMap": -8.387426, "IFStream": -7.471135, "IFStream.open": -9.080573, "IOError": -6.777988, "IOS": -9.080573, "ISNode": -7.694279, "Index": -9.080573, "IndexedIterator": -9.080573, "Int": -4.817893, "Int.as": -9.080573, "IntStack": -8.387426, "Int__plus": -9.080573, "Int_as_nullable": -8.387426, "Int_fib": -7.981961, "Int_to_s": -9.080573, "LightYellow": -7.981961, "Like": -9.080573, "Line": -5.110281, "Meetup": -8.387426, "Method": -9.080573, "Modify": -9.080573, "Monkey": -7.694279, "MonkeyAction": -7.471135, "MonkeyAction*": -9.080573, "MonkeyActionCallable": -7.694279, "MonkeyActionCallable.wokeUp": -9.080573, "MonkeyActionCallable_incr_ref": -9.080573, "MonkeyActionCallable_wokeUp": -9.080573, "Moo": -9.080573, "MyHttpFetcher": -8.387426, "NULL": -7.981961, "NativeFile": -7.288814, "NativeFile.io_open_read": -8.387426, "NativeFile.io_open_write": -9.080573, "NativeFile.native_stderr": -9.080573, "NativeFile.native_stdin": -9.080573, "NativeFile.native_stdout": -9.080573, "NativeString": -6.682678, "NativeString.to_s": -9.080573, "NativeString_to_s": -9.080573, "NitHomepage": -8.387426, "Note": -9.080573, "OFStream": -7.001132, "OFStream.open": -8.387426, "OStream": -7.981961, "OTHER": -9.080573, "Object": -7.288814, "Object...": -9.080573, "Object_incr_ref": -9.080573, "OpportunityDB": -9.080573, "OpportunityDB.open": -8.387426, "OpportunityHomePage": -9.080573, "OpportunityMeetupPage": -9.080573, "OpportunityPage": -9.080573, "OptionContext": -9.080573, "OptionUserAndGroup.for_dropping_privileges": -9.080573, "Our": -9.080573, "P": -5.148748, "POLLHUP": -8.387426, "POLLIN": -8.387426, "POLLOUT": -9.080573, "POSIX": -8.387426, "POST": -7.471135, "PollableIStream": -8.387426, "Remove": -8.387426, "SDLSystemWindowManagerInfo": -9.080573, "S_ISBLK": -9.080573, "S_ISCHR": -9.080573, "S_ISDIR": -9.080573, "S_ISFIFO": -9.080573, "S_ISLNK": -9.080573, "S_ISREG": -9.080573, "S_ISSOCK": -9.080573, "Sequence": -8.387426, "Set": -8.387426, "Size": -9.080573, "Socket": -9.080573, "Socket.client": -9.080573, "Socket.server": -9.080573, "SocketObserver": -9.080573, "Status": -8.387426, "Stderr": -7.981961, "Stdin": -7.981961, "Stdout": -7.981961, "Stream": -9.080573, "Streamable": -7.981961, "String": -5.148748, "String.to_cstring": -8.387426, "String_to_cstring": -8.387426, "Sys": -9.080573, "Template": -7.694279, "The": -8.387426, "TmplComposer": -7.981961, "TmplComposerDetail": -7.981961, "TmplComposers": -8.387426, "UTF": -9.080573, "Usage": -9.080573, "VertexArray": -9.080573, "WebSocket": -9.080573, "Yes": -9.080573, "Your": -9.080573, "[": -4.190224, "\\": -6.883349, "]": -4.389225, "_": -7.694279, "_buffer.capacity": -9.080573, "_buffer.clear": -8.387426, "_buffer.items": -9.080573, "_buffer.length": -9.080573, "_buffer_pos": -8.387426, "_file": -6.682678, "_file.address_is_null": -6.883349, "_file.file_stat": -9.080573, "_file.fileno": -9.080573, "_file.io_close": -8.387426, "_file.io_read": -9.080573, "_file.io_write": -9.080573, "_hello_triangle": -9.080573, "_is_writable": -6.595667, "_window_handle": -7.981961, "`": -5.129330, "a": -5.497054, "a.length": -9.080573, "a.n_chars": -9.080573, "a.to_s": -9.080573, "a_file": -7.694279, "abort": -8.387426, "abs": -8.387426, "abstract": -7.981961, "action": -8.387426, "add": -5.417012, "add_": -9.080573, "add_all": -8.387426, "add_composer": -9.080573, "add_html": -7.134663, "add_part": -9.080573, "after_point": -6.595667, "after_point.abs": -9.080573, "after_point.to_f": -9.080573, "age": -8.387426, "all": -9.080573, "and": -6.136134, "ans": -9.080573, "answer": -8.387426, "answer_": -9.080573, "answer_mode": -8.387426, "answers": -7.694279, "anything": -9.080573, "app": -9.080573, "apply_last_op_if_any": -8.387426, "args": -7.001132, "args.first.to_i.fibonacci": -9.080573, "args.is_empty": -9.080573, "args.length": -7.981961, "array_sum": -9.080573, "array_sum_alt": -8.387426, "as_operator": -9.080573, "assert": -5.497054, "assert_no_gl_error": -7.288814, "ast": -9.080573, "at": -9.080573, "atan": -9.080573, "atan_with": -8.387426, "atime": -9.080573, "attribs": -9.080573, "awaited": -9.080573, "b": -6.883349, "b.n_chars": -9.080573, "b.to_s": -9.080573, "background": -7.981961, "bar": -8.387426, "basename": -6.682678, "be": -8.387426, "because": -9.080573, "birth": -7.471135, "blue": -9.080573, "body": -8.387426, "body_callback": -9.080573, "boilerplate": -9.080573, "break": -7.694279, "btn": -6.036051, "buf": -8.387426, "buffer": -7.471135, "but": -7.001132, "but.request_size": -8.387426, "but.signal_connect": -8.387426, "but_c": -8.387426, "but_c.request_size": -9.080573, "but_c.signal_connect": -9.080573, "but_dot": -7.981961, "but_dot.request_size": -9.080573, "but_dot.sensitive": -8.387426, "but_dot.signal_connect": -9.080573, "but_eq": -7.981961, "but_eq.request_size": -9.080573, "but_eq.signal_connect": -9.080573, "button": -7.694279, "c": -5.945079, "c.hours": -9.080573, "c.lines": -9.080573, "c.minutes": -9.080573, "c.override_dispc": -9.080573, "c1": -7.288814, "c2": -7.471135, "c3": -9.080573, "c_fds": -6.307985, "c_string": -9.080573, "callback": -9.080573, "callbackFunc": -8.387426, "callback_chimpanze": -9.080573, "callback_monkey": -8.387426, "callbacks": -9.080573, "can": -9.080573, "care": -9.080573, "cbMonkey": -8.387426, "center": -8.387426, "change_answer": -9.080573, "change_temp_answer": -9.080573, "char": -7.981961, "chars.last_index_of": -9.080573, "chars.last_index_of_from": -8.387426, "chdir": -9.080573, "chiffre": -7.981961, "ci": -8.387426, "ci*gap": -9.080573, "ci*size": -9.080573, "circular_list": -9.080573, "class": -5.367001, "class=": -7.471135, "clients": -8.387426, "clock": -8.387426, "clock_more": -9.080573, "close": -6.084841, "closed": -9.080573, "closedir": -9.080573, "code": -7.694279, "color": -6.441516, "composer_details": -8.387426, "composer_details.add": -9.080573, "composers": -8.387426, "composers.add": -9.080573, "config": -7.694279, "config.attribs": -8.387426, "config_chooser": -9.080573, "config_chooser.blue_size": -9.080573, "config_chooser.choose": -9.080573, "config_chooser.close": -9.080573, "config_chooser.green_size": -9.080573, "config_chooser.red_size": -9.080573, "configs": -7.981961, "configs.first": -9.080573, "configs.is_empty": -9.080573, "consider": -9.080573, "container": -7.694279, "container.attach": -7.134663, "content": -9.080573, "context": -6.883349, "context.after_point": -9.080573, "context.current.to_precision_native": -9.080573, "context.is_ok": -9.080573, "context.push_digit": -5.861697, "context.push_op": -6.372523, "context.result.to_precision": -7.288814, "context.result.to_precision_native": -9.080573, "context.switch_to_decimals": -7.694279, "continue": -7.694279, "could": -9.080573, "count": -9.080573, "create": -9.080573, "creating": -9.080573, "cs": -9.080573, "cs.to_s_with_copy": -9.080573, "ctime": -9.080573, "cur": -7.981961, "cur.next": -9.080573, "cur.val": -9.080573, "curl": -6.777988, "curl_http": -9.080573, "curl_mail": -9.080573, "curr": -8.387426, "current": -6.036051, "cwd": -9.080573, "cwd/dest": -9.080573, "cwd/self": -9.080573, "d": -7.001132, "d.is_empty": -9.080573, "d_name": -7.981961, "danger": -8.387426, "data": -7.288814, "date.is_empty": -9.080573, "db": -6.682678, "db.close": -8.387426, "db.find_meetup_by_id": -9.080573, "de": -7.694279, "death": -7.471135, "decided": -9.080573, "decimals": -9.080573, "delete": -9.080573, "delete_": -9.080573, "dest": -7.288814, "destroy": -9.080573, "dev": -7.981961, "digit": -9.080573, "digit.to_f": -8.387426, "dir": -7.981961, "dir_path": -7.981961, "dirent": -9.080573, "dirname": -9.080573, "dirs": -7.981961, "dirs.is_empty": -9.080573, "disp_char": -7.288814, "disp_gap": -7.288814, "disp_size": -7.288814, "disp_size*max_len": -9.080573, "dispc": -8.387426, "display": -8.387426, "do": -4.043621, "dot": -9.080573, "downloadResponse.error_code": -9.080573, "downloadResponse.error_msg": -9.080573, "downloadResponse.size_download": -9.080573, "downloadResponse.status_code": -9.080573, "downloaded": -9.080573, "draw": -9.080573, "draw_operation": -9.080573, "drop_privileges": -9.080573, "e": -7.694279, "egl": -9.080573, "egl_bind_opengl_es_api": -9.080573, "egl_display": -7.471135, "egl_display.create_context": -9.080573, "egl_display.create_window_surface": -9.080573, "egl_display.destroy_context": -9.080573, "egl_display.destroy_surface": -9.080573, "egl_display.error": -7.981961, "egl_display.initialize": -9.080573, "egl_display.is_valid": -8.387426, "egl_display.make_current": -8.387426, "egl_display.swap_buffers": -9.080573, "else": -4.698547, "empty": -9.080573, "end": -3.682411, "end_reached": -7.134663, "ength": -9.080573, "enum": -7.981961, "eof": -8.387426, "eq": -9.080573, "err": -8.387426, "errno": -8.387426, "event": -9.080573, "events": -7.981961, "exists": -9.080573, "exit": -7.694279, "ext": -6.247360, "ext.length": -9.080573, "extension": -8.387426, "extern": -5.713277, "extern_methods": -9.080573, "f": -9.080573, "f.add_composer": -7.981961, "f.write_to": -9.080573, "false": -6.441516, "fd": -5.945079, "fd_to_stream": -7.288814, "fdopen": -9.080573, "fds": -9.080573, "fi": -9.080573, "fib": -7.981961, "fibonacci": -8.387426, "file": -6.247360, "file_chdir": -9.080573, "file_copy_to": -8.387426, "file_delete": -7.694279, "file_exists": -7.694279, "file_extension": -9.080573, "file_getcwd": -9.080573, "file_getcwd.to_s": -9.080573, "file_lstat": -7.694279, "file_mkdir": -9.080573, "file_name": -7.981961, "file_path": -9.080573, "file_path.file_delete": -9.080573, "file_path.file_lstat": -9.080573, "file_path.rmdir": -9.080573, "file_realpath": -9.080573, "file_stat": -7.288814, "file_stdin_poll_in": -9.080573, "fileno": -8.387426, "filepath": -7.694279, "files": -9.080573, "fill_buffer": -9.080573, "first": -9.080573, "first_polled_fd": -7.471135, "firstname": -7.471135, "float": -9.080573, "foo": -9.080573, "footer": -9.080573, "for": -5.497054, "format": -9.080573, "fprintf": -8.387426, "fragment_shader": -8.387426, "fragment_shader.compile": -9.080573, "fragment_shader.delete": -9.080573, "fragment_shader.is_compiled": -9.080573, "fragment_shader.is_ok": -9.080573, "fragment_shader.source": -9.080573, "from": -8.387426, "from.first": -9.080573, "from.is_empty": -9.080573, "from.last.is_empty": -9.080573, "from.length": -9.080573, "from.pop": -9.080573, "from.shift": -9.080573, "from_fd": -8.387426, "from_id": -9.080573, "from_len": -7.981961, "fs": -9.080573, "fs.readset.is_set": -9.080573, "fs.readset.set": -8.387426, "fs.select": -9.080573, "fun": -4.197771, "gap": -9.080573, "getResponse": -7.981961, "getc": -9.080573, "getcwd": -8.387426, "gets": -8.387426, "gets.chars": -8.387426, "gets.to_i": -7.694279, "gl_clear_color": -9.080573, "gl_clear_color_buffer": -9.080573, "gl_error.to_s": -9.080573, "gl_shader_compiler": -9.080573, "gl_viewport": -9.080573, "glesv": -9.080573, "green": -7.471135, "gtk": -9.080573, "gz": -9.080573, "h": -7.134663, "hack": -8.387426, "has_suffix": -8.387426, "head": -7.694279, "head.next": -9.080573, "head.val": -9.080573, "header": -7.981961, "header.page_js": -6.682678, "header_callback": -9.080573, "headers_body": -7.694279, "height": -8.387426, "hour_pos": -8.387426, "hours": -7.471135, "hours*": -9.080573, "href=": -8.387426, "html": -9.080573, "i": -5.037522, "i.add_all": -9.080573, "i.answers": -9.080573, "i.first": -9.080573, "i.id": -6.515624, "i.join": -7.981961, "i.josephus": -9.080573, "i.length": -9.080573, "i.load_answers": -9.080573, "i.pop": -9.080573, "i.push": -9.080573, "i.score": -9.080573, "i.shift": -9.080573, "i.to_cstring": -9.080573, "i.to_s": -8.387426, "i.unshift": -9.080573, "i=": -9.080573, "ib": -9.080573, "id": -7.134663, "id=": -7.694279, "identical": -9.080573, "if": -4.050135, "import": -5.748369, "in": -5.497054, "in_fds": -7.288814, "in_fds.add": -9.080573, "in_len": -7.981961, "index": -7.134663, "ine.len": -9.080573, "init": -6.136134, "init_gtk": -9.080573, "innerHTML": -9.080573, "input": -7.288814, "input.close": -9.080573, "input.eof": -9.080573, "input.read": -9.080573, "int": -6.595667, "int_stack": -9.080573, "interface": -8.387426, "intern_poll": -8.387426, "intrude": -8.387426, "io_close": -9.080573, "io_open_read": -9.080573, "io_open_write": -9.080573, "io_read": -9.080573, "io_write": -9.080573, "irst": -9.080573, "is": -5.584066, "is_blk": -9.080573, "is_chr": -9.080573, "is_dir": -9.080573, "is_empty": -7.981961, "is_fifo": -9.080573, "is_lnk": -9.080573, "is_ok": -9.080573, "is_reg": -9.080573, "is_sock": -9.080573, "is_writable": -8.387426, "isa": -6.682678, "item": -8.387426, "iterator": -9.080573, "j": -9.080573, "j.id": -9.080573, "join": -9.080573, "join_path": -8.387426, "josephus": -9.080573, "k": -7.134663, "keys": -9.080573, "l": -6.190202, "l.pop": -7.981961, "l.push": -7.694279, "l.sumall": -9.080573, "large": -9.080573, "last": -8.387426, "last_error": -6.595667, "last_op": -7.694279, "last_slash": -7.981961, "lastname": -7.288814, "lbl_disp": -7.981961, "lbl_disp.text": -7.981961, "le": -9.080573, "len": -7.288814, "len_a": -8.387426, "len_a.max": -9.080573, "len_b": -8.387426, "len_b.max": -9.080573, "len_res": -7.981961, "length": -6.883349, "line": -7.981961, "line.has_prefix": -9.080573, "line.o.x": -9.080573, "line.o.y": -9.080573, "line.step_x": -9.080573, "line.step_y": -9.080573, "line_": -9.080573, "line_a": -7.981961, "line_a.draw": -9.080573, "line_b": -7.981961, "line_b.draw": -9.080573, "line_res": -7.981961, "line_res.draw": -9.080573, "lines": -7.134663, "lines.add": -9.080573, "lines.append": -9.080573, "list": -7.981961, "list.node": -9.080573, "local_dispc": -7.694279, "log": -9.080573, "long": -8.387426, "loop": -8.387426, "lstat": -8.387426, "m": -7.981961, "m.create": -9.080573, "mail_request": -9.080573, "mail_request.bcc": -9.080573, "mail_request.body": -9.080573, "mail_request.cc": -9.080573, "mail_request.execute": -9.080573, "mail_request.from": -9.080573, "mail_request.headers_body": -9.080573, "mail_request.set_outgoing_server": -9.080573, "mail_request.subject": -9.080573, "mail_request.to": -9.080573, "mail_request.verbose": -9.080573, "make_current_res": -8.387426, "malloc": -7.694279, "manage": -9.080573, "map": -7.001132, "map.length": -7.981961, "max": -8.387426, "max_len": -7.471135, "maxsc": -7.694279, "meetup": -7.471135, "meetup.answer_mode": -9.080573, "meetup.to_html": -9.080573, "message": -6.883349, "method": -9.080573, "methods": -9.080573, "minutes": -6.883349, "mkdir": -9.080573, "mkey": -8.387426, "mnit_linux": -9.080573, "mode": -6.883349, "modify_": -9.080573, "modify_people": -9.080573, "module": -6.084841, "monkey": -7.694279, "monkey.wokeUpAction": -9.080573, "msg": -6.777988, "mtime": -9.080573, "multiple": -8.387426, "myHttpFetcher": -8.387426, "myHttpFetcher.our_body": -9.080573, "n": -6.136134, "n.item": -9.080573, "n.next": -9.080573, "n.prev": -7.694279, "n.strip_extension": -9.080573, "n.to_s": -9.080573, "n_chars": -9.080573, "name": -7.471135, "names": -9.080573, "native": -8.387426, "native_stderr": -8.387426, "native_stdin": -8.387426, "native_stdout": -8.387426, "nb": -7.694279, "new": -3.752697, "new_HashSet_of_String": -9.080573, "new_name": -8.387426, "new_node": -7.694279, "new_node.next": -9.080573, "new_node.prev": -9.080573, "newans_": -9.080573, "newrow": -9.080573, "next": -7.981961, "nit_monkey_callback_func": -8.387426, "nit_string": -8.387426, "node": -8.387426, "none": -7.981961, "not": -6.084841, "ns": -9.080573, "ns.close": -9.080573, "ns.write": -9.080573, "null": -5.296384, "null_Int": -8.387426, "nullable": -6.247360, "o": -7.694279, "o.total_minutes": -8.387426, "object": -9.080573, "object.to_s": -9.080573, "objects": -9.080573, "objects.to_s": -9.080573, "of": -7.001132, "ok": -7.134663, "old_last_node": -8.387426, "old_last_node.next": -9.080573, "on": -9.080573, "once": -9.080573, "onclick=": -7.471135, "one": -9.080573, "only": -8.387426, "oo": -9.080573, "op": -6.682678, "op.to_s": -9.080573, "op_char": -7.981961, "op_char.as_operator": -9.080573, "op_char.to_s": -9.080573, "open": -6.136134, "opendir": -9.080573, "opengles": -9.080573, "operators": -9.080573, "opportunity": -9.080573, "opportunity_model": -9.080573, "opt_ug": -8.387426, "opt_ug.mandatory": -9.080573, "opt_ug.value": -9.080573, "opts": -9.080573, "opts.add_option": -9.080573, "opts.errors": -9.080573, "opts.errors.is_empty": -9.080573, "opts.parse": -9.080573, "opts.usage": -9.080573, "or": -6.883349, "other": -9.080573, "our_body": -9.080573, "out_fds": -7.471135, "out_fds.add": -9.080573, "out_len": -7.694279, "output": -7.471135, "output.close": -9.080573, "output.write": -9.080573, "override_dispc": -9.080573, "page": -8.387426, "page.write_to": -9.080573, "page.write_to_file": -9.080573, "page_js": -9.080573, "participants": -9.080573, "path": -5.713277, "path.add": -8.387426, "path.append": -9.080573, "path.chars": -9.080573, "path.is_empty": -9.080573, "path.to_cstring": -7.981961, "path.to_s.to_cstring.file_mkdir": -9.080573, "perror": -9.080573, "place.is_empty": -9.080573, "placeholder=": -9.080573, "poll": -7.694279, "poll_in": -8.387426, "polled_fd": -7.981961, "pollfd": -8.387426, "pop": -7.981961, "pos": -7.001132, "postDatas": -7.981961, "postResponse.body_str.length": -9.080573, "postResponse.error_code": -9.080573, "postResponse.error_msg": -9.080573, "postResponse.status_code": -9.080573, "pow": -9.080573, "prepare_buffer": -7.694279, "present": -9.080573, "prev": -7.981961, "prev.item": -9.080573, "prev.prev": -9.080573, "prev_prev": -8.387426, "prev_prev.next": -9.080573, "print": -4.252260, "print_arguments": -9.080573, "printf": -9.080573, "printn": -6.682678, "private": -6.036051, "privileges": -9.080573, "procedural_array": -9.080573, "program": -9.080573, "program.attach_shader": -8.387426, "program.bind_attrib_location": -9.080573, "program.delete": -9.080573, "program.info_log": -9.080573, "program.is_linked": -9.080573, "program.is_ok": -9.080573, "program.link": -9.080573, "program.use": -9.080573, "protected": -6.883349, "push": -7.694279, "push_digit": -9.080573, "push_op": -9.080573, "q": -7.694279, "r": -6.036051, "read": -9.080573, "read_only": -8.387426, "readdir": -9.080573, "realpath": -9.080573, "recv": -5.945079, "recv_fib": -8.387426, "recv_plus_fib": -8.387426, "red": -7.471135, "redef": -5.230426, "relpath": -9.080573, "rely": -9.080573, "remove": -9.080573, "remove_people": -9.080573, "rendering": -7.694279, "reopen": -9.080573, "request": -9.080573, "request.delegate": -9.080573, "request.execute": -9.080573, "request.verbose": -9.080573, "res": -7.001132, "res.add": -9.080573, "res.node": -9.080573, "reset": -9.080573, "response": -7.471135, "result": -6.036051, "result.n_chars": -9.080573, "result.to_s": -9.080573, "results": -7.694279, "return": -4.252260, "returned": -9.080573, "revents": -8.387426, "rmdir": -7.981961, "ropes": -9.080573, "rotate": -9.080573, "run_gtk": -9.080573, "s": -4.763085, "s.chars": -8.387426, "s.close": -9.080573, "s.connected": -9.080573, "s.fd": -9.080573, "s.length": -7.981961, "s.length.times": -9.080573, "s.substring": -8.387426, "s.substrings": -9.080573, "s.to_cstring": -9.080573, "s.write": -9.080573, "s/": -5.902519, "scores": -7.471135, "scores.has_key": -9.080573, "sdl_display.destroy": -9.080573, "sdl_wm_info": -9.080573, "sdl_wm_info.x": -9.080573, "see": -8.387426, "self": -5.209372, "self.after_point": -9.080573, "self.birth": -9.080573, "self.chars": -7.981961, "self.curl": -9.080573, "self.curl.destroy": -9.080573, "self.current": -7.981961, "self.death": -9.080573, "self.files": -9.080573, "self.firstname": -9.080573, "self.has_prefix": -9.080573, "self.head": -7.471135, "self.hours": -9.080573, "self.index": -7.981961, "self.is_empty": -8.387426, "self.join_path": -9.080573, "self.last": -9.080573, "self.lastname": -9.080573, "self.list": -9.080573, "self.list.node": -9.080573, "self.name": -9.080573, "self.node": -6.515624, "self.node.item": -8.387426, "self.node.next": -8.387426, "self.node.prev": -9.080573, "self.our_body": -9.080573, "self.path": -7.471135, "self.pop": -9.080573, "self.reset": -9.080573, "self.result": -8.387426, "self.rotate": -9.080573, "self.shift": -9.080573, "self.split_with": -8.387426, "self.total_minutes": -7.001132, "sender": -7.981961, "set": -9.080573, "shift": -9.080573, "should": -9.080573, "sigmask": -9.080573, "signal": -9.080573, "sigset_t": -9.080573, "simplify_path": -9.080573, "size": -6.883349, "sizeof": -7.694279, "sleep": -7.694279, "sock": -9.080573, "sock.accept": -8.387426, "sock.can_read": -9.080573, "sock.close": -9.080573, "sock.connected": -9.080573, "sock.disconnect_client": -9.080573, "sock.listener.eof": -8.387426, "sock.read_line": -9.080573, "sock.write": -9.080573, "socket": -7.288814, "socket.accept": -9.080573, "socket_client": -9.080573, "socket_server": -9.080573, "st_mode": -7.134663, "starts": -9.080573, "stat": -7.694279, "stat*": -9.080573, "stat.free": -9.080573, "stat.is_dir": -9.080573, "stat_element": -7.694279, "status": -8.387426, "stderr": -7.694279, "stdin": -8.387426, "stdout": -7.694279, "step": -8.387426, "step_x": -9.080573, "step_y": -9.080573, "strcmp": -8.387426, "strdup": -9.080573, "stream": -7.288814, "stream.close": -9.080573, "stream_callback": -9.080573, "streams": -7.981961, "strerror": -8.387426, "string_search": -9.080573, "strip_extension": -7.288814, "struct": -7.001132, "style": -9.080573, "style=": -7.471135, "substring": -7.471135, "success": -7.694279, "sum": -7.134663, "sumall": -9.080573, "super": -5.945079, "surface": -7.471135, "surface.attribs": -8.387426, "surface.is_ok": -9.080573, "switch_to_decimals": -9.080573, "symlink": -9.080573, "sys.errno.strerror": -9.080573, "sys.stdin.poll_in": -9.080573, "sys.stdin.read_char.ascii": -9.080573, "sys.stdin.read_line": -9.080573, "sys.stdout.write": -7.981961, "t": -7.981961, "t.add": -5.469655, "table": -9.080573, "take": -9.080573, "tar": -9.080573, "template": -8.387426, "text": -8.387426, "the": -7.001132, "then": -4.146099, "this": -7.288814, "time": -9.080573, "timeout": -9.080573, "tl": -8.387426, "to": -6.883349, "to.first": -9.080573, "to.is_empty": -8.387426, "to.join": -8.387426, "to.last.is_empty": -9.080573, "to.pop": -9.080573, "to.shift": -9.080573, "toCall": -7.288814, "to_cstring": -7.694279, "to_cstring.file_chdir": -9.080573, "to_cstring.file_delete": -9.080573, "to_cstring.file_exists": -9.080573, "to_cstring.file_lstat": -9.080573, "to_cstring.file_realpath": -9.080573, "to_cstring.file_stat": -9.080573, "to_cstring.rmdir": -9.080573, "to_html": -9.080573, "to_program_name": -9.080573, "to_s": -8.387426, "total": -8.387426, "total_len": -7.694279, "total_minutes": -7.694279, "tr": -8.387426, "trailing": -9.080573, "true": -6.084841, "txt": -7.134663, "type": -9.080573, "type=": -7.694279, "typedef": -8.387426, "unlimited": -9.080573, "unmodified": -9.080573, "unshift": -9.080573, "up": -7.981961, "url": -8.387426, "usage": -8.387426, "user_data": -7.471135, "user_group": -8.387426, "user_group.drop_privileges": -9.080573, "usually": -9.080573, "val": -7.471135, "var": -3.743035, "vertex_array": -9.080573, "vertex_array.attrib_pointer": -9.080573, "vertex_array.draw_arrays_triangles": -9.080573, "vertex_array.enable": -9.080573, "vertex_shader": -8.387426, "vertex_shader.compile": -9.080573, "vertex_shader.delete": -9.080573, "vertex_shader.is_compiled": -9.080573, "vertex_shader.is_ok": -9.080573, "vertex_shader.source": -9.080573, "vertices": -8.387426, "void": -7.981961, "w": -7.981961, "warning": -7.981961, "we": -9.080573, "websocket": -9.080573, "websocket_server": -9.080573, "welcome": -9.080573, "while": -6.682678, "width": -8.387426, "will": -9.080573, "win": -8.387426, "win.add": -9.080573, "win.show_all": -9.080573, "window_height": -9.080573, "window_width": -9.080573, "wipe_write": -8.387426, "with": -8.387426, "wokeUp": -8.387426, "wokeUpAction": -9.080573, "writable": -7.981961, "write": -8.387426, "write_native": -7.981961, "write_to": -7.981961, "write_to_file": -8.387426, "x": -5.945079, "x_display": -9.080573, "xs": -7.001132, "xt": -9.080573, "y": -6.883349, "you": -9.080573, "{": -4.776508, "||": -9.080573, "}": -4.776508, "~": -9.080573, "é": -9.080573, "∞": -9.080573, "★": -9.080573, "✔": -6.682678, "✘": -7.694279, "❓": -7.288814, }, "Nix": map[string]float64{ "$": -4.808111, "'": -5.501258, "+": -3.198673, ",": -2.936309, "-": -3.016352, "...": -5.501258, "//github.com/agentzh/headers": -5.501258, "//github.com/arut/nginx": -4.808111, "//github.com/yaoweibin/nginx_syslog_patch.git": -5.501258, ":": -3.891820, ";": -2.035522, "=": -2.035522, "?": -4.114964, "NIX_CFLAGS_COMPILE": -5.501258, "[": -3.891820, "]": -3.891820, "buildInputs": -5.501258, "configureFlags": -5.501258, "dav": -4.808111, "description": -5.501258, "else": -5.501258, "expat": -4.808111, "export": -5.501258, "ext": -3.891820, "false": -4.114964, "fetchgit": -3.891820, "fetchurl": -4.808111, "fullWebDAV": -4.402646, "git": -4.808111, "https": -4.808111, "if": -5.501258, "in": -5.501258, "inherit": -5.501258, "let": -5.501258, "libxml": -4.808111, "libxslt": -4.808111, "mainSrc": -4.808111, "maintainers": -5.501258, "meta": -5.501258, "module.git": -4.402646, "more": -5.501258, "moreheaders": -4.402646, "mv": -5.501258, "name": -5.501258, "nginx": -5.501258, "openssl": -4.808111, "out/bin": -5.501258, "out/sbin": -5.501258, "patches": -5.501258, "pcre": -4.808111, "platforms": -5.501258, "postInstall": -5.501258, "preConfigure": -5.501258, "rec": -5.501258, "rev": -4.114964, "rtmp": -4.114964, "sha": -3.891820, "src": -5.501258, "stdenv": -5.501258, "stdenv.lib.maintainers.raskin": -5.501258, "stdenv.lib.optional": -3.891820, "stdenv.lib.platforms.all": -5.501258, "stdenv.mkDerivation": -5.501258, "syslog": -4.114964, "then": -5.501258, "url": -3.891820, "version": -4.808111, "zlib": -4.808111, "{": -3.421817, "}": -3.421817, }, "Nu": map[string]float64{ "!": -4.828314, "#": -4.828314, "'": -4.828314, "(": -2.189256, ")": -2.189256, ",": -4.135167, "/usr/bin/env": -4.828314, ":": -4.135167, ";": -1.737271, "Aaron": -4.828314, "ApplicationDelegate": -4.828314, "Burks": -4.828314, "Cocoa": -4.828314, "Copyright": -4.828314, "Design": -4.828314, "Entry": -4.828314, "Hillegass": -4.828314, "Inc.": -4.828314, "NSApplication": -4.135167, "NSApplicationMain": -4.828314, "Neon": -4.828314, "Nu": -4.828314, "SHEBANG#!nush": -4.828314, "Technology": -4.828314, "Tim": -4.828314, "YES": -4.828314, "a": -4.828314, "activateIgnoringOtherApps": -4.828314, "alloc": -4.828314, "application": -4.828314, "basics": -4.828314, "c": -4.828314, "cocoa": -4.828314, "definitions": -4.828314, "delegate": -4.828314, "event": -4.828314, "focus": -4.828314, "for": -4.828314, "from": -4.828314, "generation": -4.828314, "init": -4.828314, "it": -4.828314, "it.": -4.828314, "load": -3.442019, "loop": -4.828314, "main": -4.828314, "main.nu": -4.828314, "makes": -4.828314, "menu": -4.828314, "nil": -4.828314, "nush": -4.828314, "point": -4.828314, "program.": -4.828314, "puts": -4.828314, "retain": -4.828314, "run": -4.828314, "set": -4.828314, "setDelegate": -4.828314, "sharedApplication": -4.135167, "started": -4.828314, "t": -4.828314, "take": -4.828314, "terminal": -4.828314, "the": -3.729701, "this": -4.828314, "ve": -4.828314, "we": -4.828314, "when": -4.828314, "window": -4.828314, }, "OCaml": map[string]float64{ "!": -5.795331, "\"": -9.623972, "#fundecl": -9.623972, "$": -8.525360, "%": -5.580921, "&": -8.930825, "&&": -7.426747, "'": -8.525360, "(": -2.934373, ")": -2.930648, "*": -6.532930, "+": -6.915922, ",": -4.044242, "-": -3.431610, ".": -9.623972, ".docv": -9.623972, ".loc": -8.930825, ".name": -8.930825, ".sdocs": -9.623972, ".v": -9.623972, ".version": -9.623972, "/": -7.544531, "0": -5.960410, "0x000A": -9.623972, "0x07FF": -9.623972, "0x10000": -8.930825, "0x3F": -7.832213, "0x3FF": -8.930825, "0x80": -7.832213, "0xC0": -9.623972, "0xD800": -8.930825, "0xDC00": -8.930825, "0xE0": -9.623972, "0xF0": -9.623972, "0xFEFF": -9.623972, "0xFF": -7.832213, "0xFFFE": -9.623972, "0xFFFF": -9.623972, "1": -5.752771, "10": -8.930825, "12": -8.930825, "16": -8.930825, "16BE": -8.930825, "16LE": -9.623972, "18": -9.623972, "2": -6.488478, "3": -7.226077, "4": -7.544531, "6": -8.525360, "8": -7.678062, ":": -4.106519, ";": -3.650162, "<": -6.405096, "<!-->": -9.623972, "<->": -6.256676, "</cmdline>": -9.623972, "</console>": -9.623972, "</currentMemory>": -9.623972, "</devices>": -9.623972, "</disk>": -9.623972, "</domain>": -9.623972, "</interface>": -9.623972, "</kernel>": -9.623972, "</memory>": -9.623972, "</name>": -9.623972, "</on_crash>": -9.623972, "</os>": -9.623972, "</type>": -9.623972, "</vcpu>": -9.623972, "<IP>": -9.623972, "<anil@recoil.org>": -9.623972, "<clock>": -9.623972, "<cmdline>": -9.623972, "<console>": -9.623972, "<currentMemory>": -9.623972, "<devices>": -9.623972, "<disk>": -9.623972, "<domain>": -9.623972, "<driver>": -9.623972, "<http://www.gnu.org/licenses/>": -9.623972, "<kernel>": -9.623972, "<mac>": -9.623972, "<memory>": -9.623972, "<name>": -9.623972, "<on_crash>": -9.623972, "<os>": -9.623972, "<source>": -8.930825, "<static*.*>": -8.525360, "<target>": -8.930825, "<thomas@gazagnaire.org>": -9.623972, "<type>": -9.623972, "<v>": -8.930825, "<vcpu>": -9.623972, "=": -2.894148, ">": -3.473369, "?": -5.839782, "@": -5.752771, "@.": -8.930825, "@timep": -9.623972, "@tm": -8.930825, "All": -9.623972, "Also": -9.623972, "Amap.add": -8.237678, "Amap.empty": -9.623972, "Amap.find": -8.930825, "Amb": -7.832213, "Ambiguous": -8.525360, "An": -9.623972, "App": -6.733600, "Arch": -9.623972, "Arg": -9.623972, "Arg.": -9.623972, "Arg.enum": -9.623972, "Arg.flag": -9.623972, "Arg.info": -8.930825, "Arg.opt": -9.623972, "Arg.some": -9.623972, "Array.to_list": -9.623972, "Await": -7.832213, "BLOCK": -8.930825, "BOM": -7.678062, "Base.List.iter": -9.623972, "Block": -8.930825, "Buffer": -8.237678, "Buffer.add_char": -8.930825, "Buffer.contents": -9.623972, "Buffer.create": -9.623972, "Build": -9.623972, "CHANNEL": -8.930825, "CLOCK": -8.930825, "CONFIGURABLE": -8.930825, "CONSOLE": -8.930825, "Ceq": -9.623972, "Cge": -9.623972, "Cgt": -9.623972, "Channel": -7.059023, "Channel_over_TCP": -8.930825, "Character": -9.623972, "Cle": -9.623972, "Clean": -9.623972, "Clflags.dlcode": -9.623972, "Clock": -8.930825, "Clt": -9.623972, "Cmap.find": -9.623972, "Cmap.fold": -9.623972, "Cmdline.Error": -8.525360, "Cmdline.choose_term": -9.623972, "Cmdline.create": -8.930825, "Cmm": -9.623972, "Cne": -9.623972, "Compiling": -9.623972, "Conduit": -8.237678, "Console": -8.525360, "Crunch": -8.525360, "Crunch.configure": -9.623972, "Crunch.libraries": -8.930825, "Crunch.module_name": -9.623972, "Crunch.packages": -8.930825, "Ctypes": -8.930825, "Custom": -8.237678, "D": -9.623972, "DHCP": -8.237678, "DNS": -6.915922, "Decoders": -9.623972, "Direct_kv_ro": -8.930825, "Dom_html.window##alert": -9.623972, "DragonFly": -9.623972, "ENTROPY": -8.930825, "ETHERNET": -8.930825, "Eliom_content": -9.623972, "Eliom_parameter": -9.623972, "Eliom_registration.App": -9.623972, "Eliom_service.service": -9.623972, "Empty": -8.237678, "Encode": -9.623972, "Encoders": -9.623972, "Encoding": -9.623972, "End": -6.679533, "Entropy": -8.930825, "Err.ambiguous": -8.930825, "Err.pos_excess": -9.623972, "Err.pr_backtrace": -8.930825, "Err.pr_usage": -8.525360, "Err.print": -9.623972, "Err.unknown": -8.930825, "Error": -6.579450, "Ethif": -8.930825, "Example": -9.623972, "Example.register": -9.623972, "Exn": -8.525360, "FAT": -9.623972, "FS": -8.930825, "Failure": -9.623972, "Fat": -8.930825, "Fat.block": -9.623972, "Fat_of_files": -8.930825, "Fat_of_files.dir": -9.623972, "Filename.dirname": -9.623972, "Flag": -8.930825, "Foreign": -6.733600, "Format.err_formatter": -8.930825, "Format.flush_str_formatter": -9.623972, "Format.formatter_of_buffer": -9.623972, "Format.fprintf": -8.930825, "Format.pp_print_char": -9.623972, "Format.pp_print_flush": -9.623972, "Format.pp_print_string": -9.623972, "Format.std_formatter": -8.930825, "Format.str_formatter": -9.623972, "FreeBSD": -9.623972, "Function": -8.525360, "Given": -9.623972, "Groff": -8.525360, "HTTP": -8.014534, "Hashtbl.add": -9.623972, "Hashtbl.create": -8.525360, "Hashtbl.find": -9.623972, "Hashtbl.mem": -9.623972, "Hashtbl.replace": -9.623972, "Help": -7.544531, "Help.pr_version": -9.623972, "Help.print": -8.930825, "Hi": -9.623972, "Html": -9.623972, "I": -8.930825, "IO_PAGE": -8.930825, "IP": -8.930825, "IPV": -7.426747, "Iadd": -8.930825, "Iaddf": -9.623972, "Iand": -9.623972, "Iasr": -9.623972, "Icheckbound": -9.623972, "Icomp": -9.623972, "Iconst_int": -9.623972, "Iconst_symbol": -9.623972, "Idiv": -9.623972, "Idivf": -9.623972, "Ifloatofint": -9.623972, "Ifloattest": -8.930825, "Iintoffloat": -9.623972, "Iintop": -8.525360, "Iintop_imm": -8.930825, "Iinttest": -9.623972, "Ilsl": -9.623972, "Ilsr": -9.623972, "Imod": -9.623972, "Impl": -6.733600, "Impl.clean": -6.733600, "Impl.configure": -6.733600, "Impl.libraries": -6.679533, "Impl.module_name": -6.579450, "Impl.name": -6.097612, "Impl.packages": -6.679533, "Impl.update_path": -6.733600, "Imul": -9.623972, "Imulf": -9.623972, "Io_page": -8.930825, "Io_page.libraries": -9.623972, "Io_page.packages": -9.623972, "Ior": -9.623972, "Ipaddr.V": -7.678062, "Ipaddr.t": -9.623972, "Isub": -9.623972, "Isubf": -9.623972, "Ixor": -9.623972, "JOB": -8.930825, "Job": -9.623972, "Js.string": -9.623972, "KV_RO": -8.930825, "Key": -8.014534, "LF": -9.623972, "Lazy": -9.623972, "Lazy.force": -9.623972, "Left": -8.525360, "List": -8.930825, "List.filter": -9.623972, "List.find": -8.930825, "List.fold_left": -8.237678, "List.hd": -8.525360, "List.iter": -8.930825, "List.length": -9.623972, "List.map": -8.525360, "List.mem": -8.930825, "List.nth": -9.623972, "List.partition": -9.623972, "List.rev": -7.678062, "List.rev_append": -7.832213, "List.rev_map": -8.014534, "List.sort": -8.014534, "List.tl": -8.525360, "Lwt": -9.623972, "Lwt.return": -9.623972, "M": -7.426747, "M.clean": -9.623972, "M.configure": -9.623972, "M.libraries": -9.623972, "M.module_name": -8.525360, "M.name": -9.623972, "M.packages": -9.623972, "M.update_path": -9.623972, "M_choice": -9.623972, "M_main": -9.623972, "MacOSX": -6.328135, "Mach": -9.623972, "Malformed": -8.237678, "Manpage.block": -8.930825, "Manual": -8.930825, "Mirage": -9.623972, "Mirage_misc": -9.623972, "More": -7.832213, "N": -9.623972, "N.name": -9.623972, "NETWORK": -8.930825, "Name": -9.623972, "Name.create": -9.623972, "Name.names": -9.623972, "Name.of_key": -6.679533, "NetBSD": -9.623972, "Network": -8.525360, "Nil": -8.237678, "No": -9.623972, "Node": -7.832213, "None": -5.817310, "Not_found": -7.226077, "Nth": -7.678062, "O": -8.525360, "OS.Main.run": -9.623972, "Ok": -7.321387, "OpenBSD": -9.623972, "Ops": -8.930825, "Opt_vopt": -9.623972, "Option": -9.623972, "Ord.compare": -8.930825, "OrderedType": -9.623972, "Orphan_mark": -8.014534, "P": -7.426747, "Pager": -8.014534, "Parse": -8.525360, "Partial": -9.623972, "Plain": -8.525360, "Please": -9.623972, "Port": -8.930825, "PosixTypes": -8.930825, "Pre": -7.832213, "Printexc.get_backtrace": -8.930825, "Printexc.record_backtrace": -9.623972, "Printf.printf": -8.930825, "Printf.sprintf": -6.679533, "Processing": -9.623972, "RANDOM": -8.930825, "Random": -8.930825, "Reg": -9.623972, "Reloadgen.reload_generic": -9.623972, "Resolver": -8.930825, "Resolver_direct": -8.930825, "Resolver_unix": -8.930825, "Right": -8.525360, "Run": -9.623972, "S": -8.237678, "STACK": -8.930825, "STACKV": -7.139065, "Set.Make": -9.623972, "Simple": -9.623972, "Some": -5.960410, "Stack": -6.532930, "String": -8.930825, "String.capitalize": -6.984915, "String.concat": -8.237678, "String.index": -9.623972, "String.length": -7.321387, "String.lowercase": -9.623972, "String.make": -9.623972, "String.sub": -7.678062, "StringSet": -9.623972, "StringSet.add": -8.930825, "StringSet.elements": -8.930825, "StringSet.empty": -8.930825, "StringSet.of_list": -8.237678, "StringSet.singleton": -8.525360, "StringSet.union": -7.832213, "Sys.argv": -8.237678, "Sys.command": -9.623972, "Sys.file_exists": -8.525360, "Sys.getcwd": -8.525360, "TCP": -8.014534, "TCPV": -9.623972, "TCP_direct": -8.525360, "TCP_direct.clock": -9.623972, "TIME": -8.930825, "TODO": -9.623972, "Tap": -8.237678, "Term": -7.678062, "The": -8.525360, "There": -9.623972, "This": -8.930825, "Time": -8.930825, "Tracing": -9.623972, "Tracing.libraries": -9.623972, "Tracing.packages": -9.623972, "Tracing.size": -9.623972, "Tracing.t": -9.623972, "Trie": -9.623972, "Trie.add": -9.623972, "Trie.ambiguities": -8.237678, "Trie.empty": -9.623972, "Trie.find": -9.623972, "Tries": -9.623972, "Try": -9.623972, "Type": -6.532930, "UDPV": -9.623972, "UDP_direct": -9.623972, "UTF": -7.832213, "UTF_16LE": -9.623972, "UTF_8": -8.930825, "Uchar": -7.544531, "Unix": -6.291768, "Unix.chmod": -9.623972, "Used": -9.623972, "Using": -8.525360, "V": -8.930825, "V.t": -8.930825, "VCHAN_localhost": -8.930825, "VCHAN_xenstore": -8.930825, "Val": -9.623972, "Vchan": -8.525360, "Version": -8.525360, "Xen": -6.328135, "You": -9.623972, "[": -4.640365, "\\": -7.321387, "]": -4.647238, "^": -6.127464, "_": -4.696718, "_build": -9.623972, "_conf": -8.525360, "_config": -8.525360, "_direct": -8.237678, "_direct.console": -8.525360, "_lo": -9.623972, "_socket": -8.237678, "_socket.console": -9.623972, "_with_default_ipv": -9.623972, "_with_dhcp": -9.623972, "_with_static_ipv": -9.623972, "`": -4.221295, "a": -4.795658, "a.": -6.984915, "a.absent": -9.623972, "a.doc": -8.930825, "a.docs": -8.930825, "a.docv": -8.930825, "a.id": -9.623972, "a.o_kind": -8.930825, "a.o_names": -8.930825, "a.p_kind": -9.623972, "a@": -8.930825, "a_onclick": -9.623972, "absent": -8.930825, "acc": -5.795331, "accu": -8.525360, "accum": -8.525360, "add": -7.678062, "add_char": -9.623972, "add_cmd": -8.930825, "add_std_opts": -8.237678, "add_to_ocamlfind_libraries": -9.623972, "add_to_opam_packages": -9.623972, "add_utf_": -8.930825, "address": -8.930825, "adjustment=": -9.623972, "after": -8.930825, "al": -6.628240, "all": -8.014534, "allocate_n": -8.525360, "also": -9.623972, "alts": -8.237678, "alts_str": -9.623972, "ambiguities": -9.623972, "ambiguous": -9.623972, "ambs": -8.237678, "an": -8.930825, "and": -6.915922, "annot": -9.623972, "any": -9.623972, "app": -8.237678, "append": -6.445918, "append_main": -4.741170, "application_name": -9.623972, "are": -9.623972, "arg": -6.579450, "arg.": -6.733600, "arg_converter": -9.623972, "arg_info": -7.678062, "arg_info_indexes": -8.930825, "args": -6.291768, "argument": -8.014534, "arguments": -8.930825, "argv": -7.544531, "argvdoc": -8.930825, "as": -6.984915, "asctime": -8.930825, "assert": -7.678062, "at": -9.623972, "aux": -6.733600, "b": -6.291768, "b.": -9.623972, "b.m": -9.623972, "b.t": -9.623972, "b1": -9.623972, "b2": -8.237678, "b3": -8.014534, "back": -9.623972, "base": -6.532930, "bcount": -7.832213, "be": -8.525360, "begin": -6.790759, "bin_annot": -9.623972, "bindings": -9.623972, "bindings_aux": -8.237678, "blit": -7.832213, "block": -7.139065, "block_file": -8.014534, "block_of_file": -8.525360, "blue_s": -9.623972, "body": -8.525360, "bool": -7.832213, "bounded": -9.623972, "buf": -8.525360, "buffer": -9.623972, "build": -9.623972, "bus=": -9.623972, "but": -8.930825, "by": -8.930825, "byte": -7.544531, "byte_count": -8.237678, "bytes": -8.237678, "c": -5.795331, "candidates": -8.930825, "cannot": -8.525360, "cardinal": -8.237678, "catch": -8.237678, "cd": -9.623972, "chan": -8.930825, "channel": -8.237678, "channel_over_tcp": -9.623972, "character": -9.623972, "check_errno": -8.930825, "choice_names": -9.623972, "choices": -7.678062, "choose": -9.623972, "choose_term": -9.623972, "chosen": -8.525360, "chunk": -9.623972, "cl": -5.886302, "class": -9.623972, "clean": -6.256676, "client": -9.623972, "clock": -6.851383, "close_out": -9.623972, "cmd": -7.678062, "cmdline": -8.014534, "cmp": -8.014534, "cofind": -9.623972, "col": -8.525360, "command": -8.014534, "command_exists": -9.623972, "compare": -7.426747, "compare_aux": -8.525360, "compile_and_dynlink": -9.623972, "conduit": -7.832213, "conduit_client": -9.623972, "conduit_direct": -9.623972, "conduit_server": -8.930825, "config": -7.226077, "config.ml": -8.525360, "config_file": -8.014534, "configuration": -8.525360, "configure": -6.189985, "configure_app": -8.525360, "configure_myocamlbuild_ml": -9.623972, "configured": -8.525360, "cons_enum": -7.321387, "console": -6.851383, "construction": -8.237678, "continuation": -9.623972, "count": -7.678062, "cps": -7.678062, "cr": -9.623972, "create": -7.832213, "create_ipv": -8.525360, "crunch": -9.623972, "current": -8.930825, "custom_console": -9.623972, "d": -4.114584, "decode": -8.014534, "decode_iso_8859_1": -8.525360, "decode_us_ascii": -8.525360, "decode_utf_16be": -7.426747, "decode_utf_16be_lo": -8.525360, "decode_utf_16le": -7.544531, "decode_utf_16le_lo": -8.525360, "decode_utf_8": -7.678062, "decoder": -8.014534, "decoders": -9.623972, "default_clock": -7.832213, "default_console": -9.623972, "default_entropy": -9.623972, "default_io_page": -8.930825, "default_ipv": -8.237678, "default_random": -8.014534, "default_time": -7.832213, "defined": -9.623972, "deletion": -9.623972, "designed": -9.623972, "destination": -9.623972, "dev": -8.930825, "device=": -9.623972, "dir": -8.237678, "direct_kv_ro": -9.623972, "direct_stackv": -8.525360, "direct_tcp": -9.623972, "directory.": -9.623972, "dirname": -8.237678, "dist": -8.930825, "do": -8.237678, "do.": -9.623972, "doc": -8.014534, "docs": -8.525360, "docv": -8.930825, "does": -9.623972, "done": -8.237678, "driver_initialisation_error": -7.226077, "dst": -8.525360, "dummy_fat": -8.525360, "e": -4.887774, "ei": -5.862772, "ei.choices": -8.525360, "ei.main": -8.525360, "ei.term": -7.832213, "ei_choices": -8.525360, "else": -5.146635, "empty": -8.525360, "encode": -9.623972, "encode_fun": -9.623972, "encode_uft_16be": -9.623972, "encode_utf_16be": -8.930825, "encode_utf_16le": -8.930825, "encode_utf_8": -8.930825, "encoded": -9.623972, "encoder": -8.525360, "encoding": -8.525360, "end": -5.404464, "endianness": -9.623972, "entropy": -8.237678, "enum": -9.623972, "enumeration": -8.930825, "eoi": -8.525360, "equal": -9.623972, "equal_aux": -8.525360, "err": -7.226077, "err_argv": -8.930825, "err_empty_list": -8.930825, "err_help": -8.930825, "err_not_opt": -9.623972, "err_not_pos": -9.623972, "error": -8.237678, "ethernet": -8.014534, "etif": -7.678062, "eval": -9.623972, "eval_choice": -9.623972, "eval_info": -8.930825, "eval_kind": -9.623972, "eval_peek_opts": -9.623972, "eval_term": -8.525360, "example": -9.623972, "exception": -8.930825, "excess": -8.930825, "exec": -9.623972, "exist": -9.623972, "explictly": -9.623972, "f": -5.347306, "failwith": -7.544531, "false": -6.579450, "far": -9.623972, "fat": -7.426747, "fat_of_files": -9.623972, "field": -9.623972, "file": -7.059023, "filename": -8.930825, "filter": -9.623972, "find": -9.623972, "find_chosen": -8.930825, "find_node": -8.525360, "find_or_create": -9.623972, "first": -8.930825, "flag": -9.623972, "flow": -8.930825, "flush": -8.525360, "fmt": -7.139065, "fmts": -8.930825, "fn": -7.321387, "fn.fn": -8.930825, "fn.i": -8.930825, "fold": -8.237678, "fold_left": -9.623972, "folder": -9.623972, "following": -9.623972, "for": -7.544531, "force": -9.623972, "foreign": -7.321387, "format": -8.237678, "formatnetwork": -9.623972, "found.": -9.623972, "four": -9.623972, "from": -7.832213, "fs": -7.678062, "fst": -8.014534, "full": -9.623972, "fun": -6.127464, "function": -6.222775, "functor_name": -8.930825, "fundecl": -9.623972, "g": -9.623972, "gateways": -8.930825, "get": -8.930825, "get_config_file": -9.623972, "get_mode": -9.623972, "get_params": -9.623972, "get_state": -9.623972, "getf": -8.930825, "gmake": -9.623972, "guess": -8.930825, "guessed_utf_16": -8.930825, "guessed_utf_8": -9.623972, "guessing": -9.623972, "h": -7.832213, "h_lookup": -8.930825, "handle": -8.525360, "handles": -8.930825, "handling": -9.623972, "hd": -7.832213, "head": -9.623972, "hello_popup": -8.930825, "help": -7.321387, "help_arg": -8.237678, "here": -9.623972, "hi": -6.579450, "hints": -8.237678, "host": -9.623972, "html": -8.930825, "http": -8.014534, "http_server": -9.623972, "http_server_of_channel": -9.623972, "i": -5.465089, "i.name": -9.623972, "i_max": -8.930825, "i_pos": -6.488478, "i_rem": -7.832213, "ids": -8.525360, "if": -5.091373, "ignore": -8.930825, "il": -7.832213, "impl": -5.169625, "implementation": -8.930825, "important": -9.623972, "in": -4.122714, "include": -8.930825, "index": -8.930825, "info": -8.525360, "inherit": -9.623972, "init": -9.623972, "initial": -9.623972, "inlined": -8.237678, "input": -9.623972, "insertion": -9.623972, "int": -6.488478, "interface": -9.623972, "internal": -9.623972, "into": -9.623972, "invalid_arg": -8.014534, "invalid_bounds": -9.623972, "invalid_encode": -9.623972, "io_buffer_size": -9.623972, "io_page": -7.426747, "ip": -6.851383, "ip_config": -9.623972, "ips": -8.930825, "ipv": -6.984915, "is": -7.139065, "is_arg_item": -8.930825, "is_empty": -8.930825, "is_opt": -8.525360, "is_pos": -8.930825, "is_short_opt": -8.930825, "it": -9.623972, "iter": -8.237678, "iterator": -8.930825, "its": -9.623972, "j": -5.229523, "job": -8.014534, "jobs": -8.014534, "join": -9.623972, "k": -4.703991, "k.": -8.930825, "key": -6.068624, "know": -8.930825, "kv_ro": -7.832213, "kv_ro_of_fs": -9.623972, "l": -5.449585, "l.cps": -9.623972, "l.push": -9.623972, "l.value": -8.930825, "l.waiters": -7.678062, "label": -8.930825, "land": -6.445918, "last": -6.851383, "last_cr": -9.623972, "lazy_from_val": -9.623972, "len": -7.426747, "length.": -9.623972, "less": -9.623972, "let": -3.140865, "levenshtein_distance": -9.623972, "libraries": -5.986386, "libvirt": -9.623972, "like": -9.623972, "line": -8.525360, "line.": -9.623972, "list": -6.628240, "ll": -9.623972, "lo": -7.426747, "loading": -9.623972, "localtime": -8.930825, "log": -9.623972, "long_opt": -8.237678, "look": -9.623972, "lookup": -8.237678, "loop": -8.237678, "lor": -6.445918, "ls": -7.059023, "lsr": -6.445918, "m": -5.910400, "machine=": -9.623972, "main": -7.544531, "main.ml": -9.623972, "main_ml": -8.237678, "main_name": -9.623972, "major": -8.930825, "make": -8.930825, "make_arg_label": -9.623972, "make_cmd_items": -9.623972, "malformed": -7.832213, "malformed_pair": -8.930825, "man_format": -9.623972, "map": -7.678062, "mapi": -8.930825, "maps": -9.623972, "mark": -8.237678, "match": -4.905473, "max": -8.237678, "max_int": -9.623972, "max_spec": -6.915922, "maximal": -8.930825, "maybe": -8.014534, "mem": -9.623972, "mentionned": -9.623972, "merge": -8.525360, "merge_items": -8.525360, "merge_orphans": -9.623972, "meta_ips": -8.525360, "meta_ipv": -8.930825, "method": -8.930825, "min": -8.014534, "min_binding": -9.623972, "min_int": -9.623972, "minimum": -9.623972, "minor": -8.930825, "mirage": -9.623972, "missing": -8.237678, "ml": -8.525360, "mli": -8.930825, "mode": -6.127464, "module": -5.205131, "module_name": -5.546435, "module_name_core": -6.790759, "module_names": -8.930825, "more": -8.930825, "mprof_trace": -9.623972, "mutable": -7.678062, "n": -6.189985, "name": -4.689498, "names": -7.226077, "ncol": -9.623972, "ncount": -9.623972, "need": -7.139065, "needs": -9.623972, "net": -7.832213, "net_init_error_msg_fn": -8.930825, "netif": -9.623972, "netmask": -9.623972, "network": -6.790759, "network_config": -8.930825, "new": -8.930825, "newline": -8.930825, "newline_main": -5.960410, "next": -8.930825, "nline": -9.623972, "no": -9.623972, "non": -9.623972, "normalization": -9.623972, "not": -7.426747, "ns": -8.237678, "ns_port": -8.237678, "o": -7.321387, "o_max": -8.930825, "o_pos": -6.628240, "o_rem": -9.623972, "object": -9.623972, "oc": -6.158236, "ocaml_version": -9.623972, "ocamlbuild": -9.623972, "ocamlfind": -9.623972, "of": -6.365876, "of_key": -9.623972, "of_list": -9.623972, "of_string_exn": -9.623972, "on": -9.623972, "one": -8.525360, "only": -8.930825, "ontinue": -9.623972, "op": -7.832213, "open": -6.851383, "open_out": -8.930825, "operation": -9.623972, "opt": -8.525360, "opt_arg": -8.525360, "opti": -6.915922, "option": -6.851383, "options": -9.623972, "optvopt": -8.930825, "or": -8.930825, "org": -9.623972, "orphans": -9.623972, "our": -9.623972, "out_channel": -9.623972, "output": -8.237678, "overlapping": -9.623972, "p": -6.790759, "packages": -5.910400, "pargs": -6.679533, "parse": -8.930825, "parse_args": -8.930825, "parse_opt_arg": -8.237678, "parser": -9.623972, "partial": -9.623972, "partition": -9.623972, "path": -9.623972, "pcdata": -8.237678, "peek_opts": -7.678062, "pic_code": -9.623972, "pkg": -9.623972, "port": -8.930825, "port=": -9.623972, "pos": -9.623972, "pos_arg": -8.930825, "posi": -7.544531, "position": -8.014534, "possible": -9.623972, "post": -8.930825, "pp": -7.139065, "pp_nln_none": -9.623972, "pp_remove_bom": -8.930825, "ppf": -9.623972, "pr": -9.623972, "pr_char": -9.623972, "pr_str": -9.623972, "pr_white_str": -9.623972, "pre_d": -8.525360, "prefix": -8.525360, "present": -9.623972, "print_endline": -9.623972, "process_pos_args": -8.930825, "processed": -9.623972, "processors": -9.623972, "ps": -7.059023, "ptr": -7.426747, "push": -8.237678, "put": -9.623972, "pvd": -9.623972, "quote": -7.544531, "quoted": -8.930825, "r": -6.158236, "r.loc": -9.623972, "r_iso_8859_1": -9.623972, "r_us_ascii": -9.623972, "r_utf_": -8.930825, "r_utf_16": -8.237678, "r_utf_16_lo": -8.237678, "r_utf_8": -8.930825, "raise": -7.678062, "random": -6.915922, "read": -8.014534, "rec": -5.935093, "recognition": -9.623972, "recursive": -9.623972, "ref": -7.544531, "refill": -7.678062, "regexp": -7.832213, "register": -9.623972, "registered": -8.930825, "reload": -8.930825, "reload_operation": -9.623972, "reload_test": -9.623972, "rem": -6.097612, "rem_char": -9.623972, "remove": -8.525360, "remove_exec": -8.237678, "removed_bom": -8.930825, "removes": -9.623972, "repeated": -9.623972, "required": -8.237678, "res": -7.139065, "res.": -8.525360, "res_ns": -8.930825, "res_ns_port": -8.930825, "reset": -9.623972, "resolver": -8.237678, "resolver_dns": -9.623972, "resolver_unix_system": -9.623972, "rest": -8.525360, "result": -9.623972, "ret": -6.790759, "return": -9.623972, "returning": -7.832213, "rev": -7.832213, "rev_alts": -8.525360, "rev_cmp": -9.623972, "rev_compare": -8.525360, "reversed": -9.623972, "rf": -8.525360, "rm": -8.525360, "root": -5.711949, "run": -9.623972, "running": -9.623972, "s": -4.403616, "s.": -8.237678, "s.*": -9.623972, "s...": -9.623972, "s/*": -9.623972, "s/_build": -9.623972, "s/_build/": -9.623972, "s/main.native": -9.623972, "s/main.native.o": -9.623972, "s/mir": -9.623972, "same": -8.930825, "scanned": -9.623972, "seal": -9.623972, "sec": -8.525360, "second": -9.623972, "self": -9.623972, "self#makereg": -7.832213, "server": -8.930825, "service": -9.623972, "set": -7.544531, "set_config_file": -8.930825, "set_main_ml": -9.623972, "set_mode": -9.623972, "set_section": -9.623972, "setp": -7.832213, "setup": -9.623972, "shared": -9.623972, "short_opt": -7.678062, "sig": -7.678062, "sigemptyset": -8.930825, "sigfillset": -8.930825, "sigismember": -8.930825, "signal": -8.930825, "sigset_t": -7.678062, "simple": -9.623972, "size": -8.930825, "snd": -8.237678, "socket_stackv": -9.623972, "socket_tcpv": -9.623972, "spaces": -9.623972, "specified": -9.623972, "specify": -9.623972, "split": -9.623972, "src": -8.930825, "ss": -9.623972, "stack": -8.014534, "stack_subname": -8.014534, "stackp": -7.426747, "stackv": -7.544531, "start": -9.623972, "starting": -9.623972, "stdout": -9.623972, "stopping.": -9.623972, "str": -7.139065, "str_of_pp": -9.623972, "stream": -9.623972, "string": -5.795331, "string_of": -9.623972, "string_of_impl": -8.525360, "string_of_mode": -8.930825, "struct": -5.935093, "structure": -8.930825, "structured": -9.623972, "subname": -7.426747, "subst_docv": -9.623972, "substitution": -9.623972, "succs": -8.014534, "suggest": -8.237678, "suggs": -8.930825, "super": -9.623972, "super#reload_operation": -8.237678, "swapped": -8.930825, "t": -3.368222, "t.block": -7.544531, "t.clock": -7.678062, "t.config": -8.930825, "t.console": -6.733600, "t.dir": -8.525360, "t.impl": -8.014534, "t.io_page": -7.678062, "t.ipv": -8.930825, "t.jobs": -8.525360, "t.name": -8.525360, "t.network": -7.321387, "t.random": -7.544531, "t.regexp": -8.930825, "t.size": -8.930825, "t.succs": -8.525360, "t.time": -7.544531, "t.tracing": -8.930825, "t.v": -8.525360, "t_decode_utf_16be": -8.930825, "t_decode_utf_16be_lo": -9.623972, "t_decode_utf_16le": -8.930825, "t_decode_utf_16le_lo": -9.623972, "t_decode_utf_8": -8.014534, "t_fill": -7.321387, "t_flush": -7.678062, "t_len": -6.291768, "t_max": -8.237678, "t_need": -7.139065, "t_pos": -7.832213, "t_range": -7.832213, "tags": -9.623972, "tail": -9.623972, "take": -7.832213, "tap": -9.623972, "target": -9.623972, "tcp": -7.426747, "tcpv": -7.678062, "tedious": -9.623972, "term": -6.915922, "term_info": -9.623972, "text": -9.623972, "than": -9.623972, "the": -6.984915, "then": -5.135336, "third": -9.623972, "ti": -7.059023, "ti.name": -9.623972, "ti.tdoc": -9.623972, "ti.tdocs": -9.623972, "time": -6.532930, "time_t": -8.237678, "timep": -8.525360, "title": -9.623972, "tl": -7.832213, "tm": -7.426747, "tm_hour": -9.623972, "tm_isdst": -9.623972, "tm_mday": -9.623972, "tm_min": -9.623972, "tm_mon": -8.930825, "tm_sec": -9.623972, "tm_wday": -9.623972, "tm_yday": -9.623972, "tm_year": -8.930825, "to": -6.851383, "to_insert": -7.321387, "to_list": -9.623972, "to_string": -8.525360, "todo": -7.544531, "too": -9.623972, "tracing": -7.321387, "tracking": -9.623972, "true": -6.365876, "try": -6.984915, "ts": -8.014534, "tst": -8.930825, "ty": -7.678062, "typ": -6.579450, "type": -5.008852, "type=": -9.623972, "u": -5.773824, "uchar": -9.623972, "uncaught": -9.623972, "unit": -6.579450, "unix_trace_file": -8.930825, "unsafe_array_get": -9.623972, "unsafe_blit": -8.930825, "unsafe_byte": -7.832213, "unsafe_chr": -8.930825, "unsafe_set_byte": -6.405096, "up": -9.623972, "update_path": -6.189985, "usage": -8.930825, "use": -9.623972, "use.": -9.623972, "used": -8.930825, "utf16": -8.930825, "utf_8_len": -8.930825, "uuid": -7.321387, "uutf": -9.623972, "v": -5.102183, "v_arg": -8.237678, "v_lookup": -8.930825, "val": -6.679533, "value": -7.139065, "values": -8.930825, "values.": -9.623972, "vchan": -7.678062, "vchan_default": -9.623972, "vchan_localhost": -8.525360, "vchan_subname": -8.237678, "vchan_xen": -8.930825, "vers_arg": -8.237678, "version": -8.930825, "version_opt": -8.930825, "vopt": -9.623972, "w": -6.733600, "waiters": -8.237678, "way.": -9.623972, "we": -9.623972, "what": -8.930825, "when": -7.426747, "whithout": -9.623972, "with": -4.682330, "working": -9.623972, "would": -9.623972, "write": -8.525360, "writes": -9.623972, "x": -5.817310, "xapi": -9.623972, "{": -5.135336, "|": -3.660393, "||": -7.832213, "}": -5.135336, "~": -5.795331, }, "Objective-C": map[string]float64{ "!": -5.094599, "##__VA_ARGS__": -8.016224, "#define": -5.787746, "#else": -8.016224, "#endif": -5.867789, "#error": -8.170374, "#if": -6.155471, "#ifdef": -7.882692, "#ifndef": -7.882692, "#import": -5.818999, "#include": -6.743258, "#pragma": -6.704037, "#warning": -9.962134, "%": -8.863521, "&": -6.273254, "&&": -5.580107, "(": -2.563960, ")": -2.563960, "*": -4.537184, "**": -6.704037, "**error": -9.962134, "**keys": -9.962134, "**objects": -9.962134, "*ASIAuthenticationError": -9.962134, "*ASIHTTPRequestRunLoopMode": -9.962134, "*ASIHTTPRequestVersion": -9.268987, "*ASIRequestCancelledError": -9.962134, "*ASIRequestTimedOutError": -9.962134, "*ASITooMuchRedirectionError": -9.962134, "*ASIUnableToCreateRequestError": -9.962134, "*PACFileData": -9.962134, "*PACFileReadStream": -9.962134, "*PACFileRequest": -9.962134, "*PACurl": -9.268987, "*_JKArrayCreate": -9.962134, "*_JKDictionaryCreate": -9.962134, "*_JKDictionaryHashEntry": -9.962134, "*_JKDictionaryHashTableEntryForKey": -9.268987, "*_headerView": -9.962134, "*_tableView": -9.962134, "*a": -9.268987, "*accumulator": -9.962134, "*adapter": -9.962134, "*argv": -9.962134, "*array": -8.352696, "*atCharacterPtr": -9.962134, "*atEntry": -9.962134, "*authenticationCredentials": -9.962134, "*authenticationRealm": -9.962134, "*authenticationScheme": -9.962134, "*b": -9.268987, "*bandwidthThrottlingLock": -9.962134, "*bandwidthUsageTracker": -9.962134, "*c": -9.962134, "*cLength": -9.962134, "*cacheSlot": -8.575839, "*cancelledLock": -9.962134, "*cbInvocation": -9.962134, "*cbSignature": -9.962134, "*cell": -8.016224, "*certificates": -9.962134, "*cfHashes": -9.962134, "*clientCallBackInfo": -9.962134, "*clientCertificates": -9.268987, "*connectionHeader": -9.962134, "*connectionInfo": -9.962134, "*connectionsLock": -9.962134, "*cookie": -9.962134, "*count": -8.352696, "*credentials": -9.962134, "*ctx": -9.962134, "*data": -9.268987, "*dataDecompressor": -9.268987, "*decoder": -9.962134, "*defaultUserAgent": -9.962134, "*dictionary": -8.016224, "*domain": -9.268987, "*downloadDestinationPath": -9.268987, "*encodeState": -7.764909, "*encoding": -9.962134, "*entry": -9.962134, "*entryForKey": -9.962134, "*error": -8.863521, "*error_": -9.962134, "*exception": -9.962134, "*failedRequest": -9.962134, "*fileDownloadOutputStream": -9.962134, "*firstIndexPath": -9.962134, "*firstResponder": -9.962134, "*format": -8.016224, "*header": -9.962134, "*headerView": -8.016224, "*httpVersion": -9.962134, "*i": -8.575839, "*identifier": -9.962134, "*indexPath": -7.564238, "*indexPaths": -9.962134, "*indexPathsToAdd": -9.962134, "*indexPathsToRemove": -9.962134, "*indexes": -9.268987, "*inflatedFileDownloadOutputStream": -9.962134, "*jk_cachedObjects": -9.962134, "*jk_create_dictionary": -9.962134, "*jk_managedBuffer_resize": -9.962134, "*jk_object_for_token": -9.962134, "*jk_parse_array": -9.962134, "*jk_parse_dictionary": -9.962134, "*jsonString": -9.962134, "*keepAliveHeader": -9.962134, "*keyHashes": -9.962134, "*keys": -9.962134, "*lastActivityTime": -9.962134, "*lastIndexPath": -8.352696, "*mainRequest": -9.268987, "*managedBuffer": -8.863521, "*newCookies": -9.962134, "*newCredentials": -9.268987, "*newIndexPath": -9.962134, "*newVisibleIndexPaths": -9.962134, "*ntlmDomain": -9.962134, "*objectPtr": -9.268987, "*objectStack": -8.863521, "*objects": -9.268987, "*oldIndexPath": -9.962134, "*oldStream": -9.962134, "*oldVisibleIndexPaths": -9.962134, "*or": -8.863521, "*originalURL": -9.268987, "*other": -9.962134, "*parseState": -7.189545, "*parser": -9.962134, "*password": -9.268987, "*persistentConnectionsPool": -9.962134, "*postBody": -9.962134, "*postBodyFilePath": -9.962134, "*progressLock": -9.962134, "*proxyAuthenticationRealm": -9.268987, "*proxyAuthenticationScheme": -9.268987, "*proxyCredentials": -9.268987, "*proxyDomain": -9.268987, "*proxyHost": -9.962134, "*proxyPassword": -9.268987, "*proxyType": -9.962134, "*proxyUsername": -9.268987, "*ptr": -9.268987, "*pullDownView": -9.962134, "*rawResponseData": -9.962134, "*redirectURL": -9.962134, "*requestCookies": -9.268987, "*requestCredentials": -9.962134, "*requestHeaders": -9.962134, "*requestID": -9.268987, "*requestMethod": -9.962134, "*responseCookies": -9.268987, "*responseHeaders": -9.268987, "*responseStatusMessage": -9.268987, "*rowInfo": -9.962134, "*runLoopMode": -9.962134, "*s": -8.863521, "*section": -7.764909, "*sections": -9.962134, "*sessionCookies": -9.962134, "*sessionCookiesLock": -9.962134, "*sessionCredentials": -9.962134, "*sessionCredentialsLock": -9.962134, "*sessionCredentialsStore": -9.962134, "*sessionProxyCredentials": -9.962134, "*sessionProxyCredentialsStore": -9.962134, "*sslProperties": -9.268987, "*startForNoSelection": -9.268987, "*statusTimer": -9.962134, "*stop": -8.016224, "*temporaryFileDownloadPath": -9.268987, "*temporaryUncompressedDataDownloadPath": -9.268987, "*theRequest": -9.962134, "*topVisibleIndex": -9.962134, "*ui": -9.962134, "*underlyingError": -9.962134, "*url": -9.268987, "*userAgentString": -9.268987, "*userInfo": -9.268987, "*username": -9.268987, "*v": -9.268987, "*window": -9.268987, "*xpos": -9.962134, "*ypos": -9.962134, "+": -5.117947, ",": -3.272534, "-": -3.870824, "...": -7.564238, ".height": -8.575839, ".key": -8.575839, ".location": -9.962134, ".object": -9.268987, ".offset": -9.268987, ".pinnedToViewport": -9.268987, ".size.height": -9.962134, "/": -8.575839, "//": -8.575839, "//#import": -9.962134, "//#include": -9.962134, "//////////": -8.575839, "////////////////////////////////////////////////////////////////////////": -8.575839, "/////////////////////////////////////////////////////////////////////////////////////////////////": -6.966401, "//If": -9.268987, "//Some": -9.962134, "//block": -7.477227, "//self.variableHeightRows": -9.962134, ":": -3.025791, ";": -2.551182, "<": -6.248562, "<<": -7.189545, "<ASICacheDelegate>": -7.764909, "<ASIHTTPRequestDelegate,>": -9.962134, "<ASIHTTPRequestDelegate>": -9.962134, "<ASIProgressDelegate>": -9.268987, "<ApplicationServices/ApplicationServices.h>": -9.962134, "<AvailabilityMacros.h>": -9.962134, "<CFNetwork/CFNetwork.h>": -9.962134, "<Cocoa/Cocoa.h>": -9.268987, "<CoreFoundation/CFArray.h>": -9.962134, "<CoreFoundation/CFDictionary.h>": -9.962134, "<CoreFoundation/CFNumber.h>": -9.962134, "<CoreFoundation/CFString.h>": -9.962134, "<CoreFoundation/CoreFoundation.h>": -9.962134, "<CoreVideo/CVBase.h>": -9.962134, "<CoreVideo/CVDisplayLink.h>": -9.962134, "<Foundation/Foundation.h>": -8.352696, "<Foundation/NSArray.h>": -9.268987, "<Foundation/NSAutoreleasePool.h>": -9.962134, "<Foundation/NSData.h>": -9.268987, "<Foundation/NSDictionary.h>": -9.268987, "<Foundation/NSError.h>": -9.962134, "<Foundation/NSException.h>": -9.962134, "<Foundation/NSNull.h>": -9.962134, "<Foundation/NSObjCRuntime.h>": -9.268987, "<Foundation/NSString.h>": -9.962134, "<IOKit/graphics/IOGraphicsLib.h>": -9.962134, "<MobileCoreServices/MobileCoreServices.h>": -9.962134, "<NSApplicationDelegate>": -9.962134, "<NSCopying,>": -9.268987, "<NSCopying>": -9.962134, "<NSObject,>": -9.962134, "<NSObject>": -9.962134, "<SystemConfiguration/SystemConfiguration.h>": -9.962134, "<TProtocol>": -9.268987, "<TUITableViewDataSource>": -8.575839, "<TUITableViewDelegate>": -8.575839, "<TargetConditionals.h>": -9.962134, "<UIKit/UIKit.h>": -9.268987, "<assert.h>": -9.962134, "<elmindreda@glfw.org>": -9.962134, "<limits.h>": -8.863521, "<math.h>": -9.962134, "<objc/runtime.h>": -9.962134, "<stddef.h>": -9.962134, "<stdint.h>": -9.268987, "<stdio.h>": -9.268987, "<stdlib.h>": -9.268987, "<string.h>": -9.962134, "<sys/errno.h>": -9.962134, "=": -3.222797, ">": -5.451274, "?": -7.659549, "@": -4.546033, "@catch": -9.962134, "@class": -8.575839, "@end": -6.465626, "@finally": -9.962134, "@implementation": -7.882692, "@interface": -7.017695, "@optional": -9.268987, "@private": -9.268987, "@property": -5.280003, "@protocol": -8.863521, "@required": -9.962134, "@selector": -6.496398, "@synthesize": -8.016224, "@try": -9.962134, "ARC": -9.962134, "ASIAuthenticationDialog": -9.962134, "ASIAuthenticationError": -9.962134, "ASIAuthenticationErrorType": -9.268987, "ASIAuthenticationState": -8.863521, "ASIBasicBlock": -7.397184, "ASICachePolicy": -8.863521, "ASICacheStoragePolicy": -9.268987, "ASICompressionError": -9.962134, "ASIConnectionFailureErrorType": -9.962134, "ASIDataBlock": -8.863521, "ASIDataDecompressor": -8.575839, "ASIFallbackToCacheIfLoadFailsCachePolicy": -9.962134, "ASIFileManagementError": -9.962134, "ASIHTTPAuthenticationNeeded": -9.268987, "ASIHTTPRequest": -6.966401, "ASIHTTPRequest*": -9.962134, "ASIHTTPRequestRunLoopMode": -9.962134, "ASIHeadersBlock": -8.863521, "ASIInputStream": -9.268987, "ASIInternalErrorWhileApplyingCredentialsType": -9.962134, "ASIInternalErrorWhileBuildingRequestType": -8.863521, "ASINetworkErrorType": -9.962134, "ASINetworkQueue": -9.962134, "ASINoAuthenticationNeededYet": -9.962134, "ASIProgressBlock": -8.352696, "ASIProxyAuthenticationNeeded": -9.268987, "ASIRequestCancelledErrorType": -9.962134, "ASIRequestTimedOutErrorType": -9.962134, "ASISizeBlock": -8.352696, "ASITooMuchRedirectionErrorType": -9.268987, "ASIUnableToCreateRequestError": -9.268987, "ASIUnableToCreateRequestErrorType": -9.962134, "ASIUnhandledExceptionError": -8.863521, "ASIWWANBandwidthThrottleAmount": -9.268987, "ASI_DEBUG_LOG": -7.323076, "As": -9.962134, "Automatic": -9.962134, "BOOL": -5.208544, "BUFFER_SIZE": -9.962134, "BitDirectPixels": -8.863521, "C": -8.170374, "CATransaction": -8.863521, "CFArrayGetCount": -9.268987, "CFArrayGetValueAtIndex": -9.268987, "CFArrayRef": -9.268987, "CFDictionaryGetValue": -9.962134, "CFDictionaryGetValueIfPresent": -9.962134, "CFDictionaryRef": -9.268987, "CFEqual": -9.962134, "CFHTTPAuthenticationCreateFromResponse": -9.962134, "CFHTTPAuthenticationRef": -9.268987, "CFHTTPAuthenticationRequiresAccountDomain": -9.962134, "CFHTTPMessageApplyCredentialDictionary": -9.268987, "CFHTTPMessageCopyAllHeaderFields": -9.962134, "CFHTTPMessageCopyResponseStatusLine": -9.962134, "CFHTTPMessageCopyVersion": -9.962134, "CFHTTPMessageCreateRequest": -9.962134, "CFHTTPMessageGetResponseStatusCode": -9.962134, "CFHTTPMessageIsHeaderComplete": -9.962134, "CFHTTPMessageRef": -9.268987, "CFHash": -9.962134, "CFHashCode": -9.962134, "CFIndex": -8.863521, "CFMutableDictionaryRef": -9.962134, "CFOptionFlags": -9.962134, "CFReadStreamCopyProperty": -9.268987, "CFReadStreamCreateForHTTPRequest": -9.962134, "CFReadStreamCreateForStreamedHTTPRequest": -9.962134, "CFReadStreamRef": -8.352696, "CFReadStreamSetProperty": -9.962134, "CFRelease": -7.397184, "CFRetain": -9.268987, "CFSTR": -8.352696, "CFStreamEventType": -9.268987, "CFStringCompare": -8.863521, "CFStringGetCString": -9.962134, "CFStringGetLength": -9.962134, "CFStringGetMaximumSizeForEncoding": -9.962134, "CFStringRef": -8.575839, "CFTypeRef": -9.962134, "CFURLRef": -9.962134, "CGAcquireDisplayFadeReservation": -9.962134, "CGDirectDisplayID": -9.962134, "CGDirectDisplayID*": -9.962134, "CGDisplayBounds": -9.962134, "CGDisplayCopyAllDisplayModes": -9.268987, "CGDisplayCopyDisplayMode": -9.962134, "CGDisplayFade": -9.268987, "CGDisplayFadeReservationToken": -8.863521, "CGDisplayIOServicePort": -9.962134, "CGDisplayIsAsleep": -9.962134, "CGDisplayModeCopyPixelEncoding": -9.268987, "CGDisplayModeGetHeight": -9.962134, "CGDisplayModeGetIOFlags": -9.962134, "CGDisplayModeGetRefreshRate": -9.962134, "CGDisplayModeGetWidth": -9.962134, "CGDisplayModeRef": -8.352696, "CGDisplayModeRelease": -9.962134, "CGDisplayScreenSize": -9.962134, "CGDisplaySetDisplayMode": -9.268987, "CGDisplayUnitNumber": -9.962134, "CGFloat": -6.273254, "CGGetOnlineDisplayList": -9.268987, "CGPoint": -8.016224, "CGRect": -6.298572, "CGRectContainsPoint": -9.962134, "CGRectGetMaxY": -9.268987, "CGRectIntersectsRect": -8.352696, "CGRectMake": -7.882692, "CGRectZero": -8.352696, "CGReleaseDisplayFadeReservation": -9.962134, "CGSize": -8.170374, "CGSizeMake": -8.863521, "CGSizeZero": -9.962134, "CVDisplayLinkCreateWithCGDisplay": -9.268987, "CVDisplayLinkGetNominalOutputVideoRefreshPeriod": -9.962134, "CVDisplayLinkRef": -8.863521, "CVDisplayLinkRelease": -9.962134, "CVTime": -9.962134, "Collection": -9.962134, "ConversionResult": -9.962134, "Core/NSDataAdditions.h": -9.962134, "Counting": -9.962134, "DEBUG": -9.962134, "DEBUG_HTTP_AUTHENTICATION": -7.882692, "DEBUG_PERSISTENT_CONNECTIONS": -8.863521, "DEBUG_REQUEST_STATUS": -8.863521, "DEBUG_THROTTLING": -9.268987, "FALSE": -8.863521, "FOUNDATION_EXPORT": -9.268987, "Foo": -9.268987, "FooAppDelegate": -9.268987, "GLFW_FALSE": -8.352696, "GLFW_PLATFORM_ERROR": -9.268987, "GLFW_TRUE": -8.863521, "GLFWbool": -9.962134, "GLFWvidmode": -8.352696, "GLFWvidmode*": -8.863521, "Garbage": -9.962134, "HEAD": -9.268987, "HEADER_Z_POSITION": -9.268987, "HEADRequest": -9.962134, "HTTP": -9.962134, "Hash": -9.962134, "IBOutlet": -9.962134, "INDEX_PATHS_FOR_VISIBLE_ROWS": -8.575839, "INT_MAX": -9.268987, "INT_MIN": -8.863521, "IO": -8.863521, "IODisplayCreateInfoDictionary": -9.962134, "It": -9.962134, "JKArray": -8.352696, "JKBuffer": -9.268987, "JKClassArray": -9.962134, "JKClassDictionary": -9.962134, "JKClassNull": -9.962134, "JKClassNumber": -9.962134, "JKClassString": -9.962134, "JKClassUnknown": -9.962134, "JKConstBuffer": -9.268987, "JKConstPtrRange": -9.268987, "JKDictionary": -7.764909, "JKDictionaryEnumerator": -9.268987, "JKEncodeCache": -8.170374, "JKEncodeOptionAsData": -9.962134, "JKEncodeOptionAsString": -9.962134, "JKEncodeOptionAsTypeMask": -9.962134, "JKEncodeOptionCollectionObj": -9.962134, "JKEncodeOptionStringObj": -9.962134, "JKEncodeOptionStringObjTrimQuotes": -9.962134, "JKEncodeOptionType": -9.268987, "JKEncodeState": -7.564238, "JKFastClassLookup": -9.268987, "JKFlags": -8.352696, "JKHash": -8.575839, "JKHashTableEntry": -7.764909, "JKManagedBuffer": -8.352696, "JKManagedBufferFlags": -9.962134, "JKManagedBufferLocationMask": -9.962134, "JKManagedBufferLocationShift": -9.962134, "JKManagedBufferMustFree": -9.962134, "JKManagedBufferOnHeap": -9.962134, "JKManagedBufferOnStack": -9.962134, "JKObjCImpCache": -9.268987, "JKObjectStack": -8.352696, "JKObjectStackFlags": -9.962134, "JKObjectStackLocationMask": -9.962134, "JKObjectStackLocationShift": -9.962134, "JKObjectStackMustFree": -9.962134, "JKObjectStackOnHeap": -9.962134, "JKObjectStackOnStack": -9.962134, "JKParseAcceptComma": -9.268987, "JKParseAcceptCommaOrEnd": -9.962134, "JKParseAcceptEnd": -8.575839, "JKParseAcceptValue": -9.268987, "JKParseAcceptValueOrEnd": -9.962134, "JKParseOptionComments": -9.268987, "JKParseOptionFlags": -7.477227, "JKParseOptionLooseUnicode": -9.268987, "JKParseOptionNone": -9.962134, "JKParseOptionPermitTextAfterValidJSON": -9.268987, "JKParseOptionStrict": -9.962134, "JKParseOptionUnicodeNewlines": -9.268987, "JKParseOptionValidFlags": -9.962134, "JKParseState": -7.071762, "JKParseToken": -9.268987, "JKPtrRange": -9.268987, "JKRange": -9.268987, "JKSERIALIZER_BLOCKS_PROTO": -9.962134, "JKSerializeOptionEscapeForwardSlashes": -9.268987, "JKSerializeOptionEscapeUnicode": -9.268987, "JKSerializeOptionFlags": -7.189545, "JKSerializeOptionNone": -9.962134, "JKSerializeOptionPretty": -9.268987, "JKSerializeOptionValidFlags": -9.962134, "JKTokenCache": -9.268987, "JKTokenCacheItem": -9.268987, "JKTokenType": -9.268987, "JKTokenTypeArrayBegin": -9.962134, "JKTokenTypeArrayEnd": -9.268987, "JKTokenTypeComma": -9.962134, "JKTokenTypeFalse": -9.962134, "JKTokenTypeInvalid": -9.962134, "JKTokenTypeNull": -9.962134, "JKTokenTypeNumber": -9.962134, "JKTokenTypeObjectBegin": -9.962134, "JKTokenTypeObjectEnd": -9.962134, "JKTokenTypeSeparator": -9.962134, "JKTokenTypeString": -9.962134, "JKTokenTypeTrue": -9.962134, "JKTokenTypeWhiteSpace": -9.962134, "JKTokenValue": -9.268987, "JKValueType": -9.962134, "JKValueTypeDouble": -9.962134, "JKValueTypeLongLong": -9.962134, "JKValueTypeNone": -9.962134, "JKValueTypeString": -9.962134, "JKValueTypeUnsignedLongLong": -9.962134, "JK_ALIGNED": -9.962134, "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": -9.268987, "JK_ATTRIBUTES": -7.254084, "JK_AT_STRING_PTR": -9.962134, "JK_CACHE_PROBES": -9.962134, "JK_CACHE_SLOTS": -9.962134, "JK_CACHE_SLOTS_BITS": -9.268987, "JK_DEPRECATED_ATTRIBUTE": -8.170374, "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": -9.268987, "JK_ENCODE_CACHE_SLOTS": -9.962134, "JK_END_STRING_PTR": -9.962134, "JK_EXPECTED": -8.575839, "JK_EXPECT_F": -8.170374, "JK_EXPECT_T": -7.564238, "JK_FAST_TRAILING_BYTES": -9.268987, "JK_HASH_INIT": -9.962134, "JK_INIT_CACHE_AGE": -9.962134, "JK_JSONBUFFER_SIZE": -9.962134, "JK_NONNULL_ARGS": -9.962134, "JK_PREFETCH": -9.268987, "JK_STACK_OBJS": -9.962134, "JK_STATIC_INLINE": -7.659549, "JK_TOKENBUFFER_SIZE": -9.962134, "JK_UNUSED_ARG": -9.268987, "JK_UTF": -9.962134, "JK_WARN_UNUSED": -9.962134, "JK_WARN_UNUSED_CONST": -9.962134, "JK_WARN_UNUSED_CONST_NONNULL_ARGS": -9.962134, "JK_WARN_UNUSED_NONNULL_ARGS": -9.962134, "JK_WARN_UNUSED_PURE": -9.962134, "JK_WARN_UNUSED_PURE_NONNULL_ARGS": -9.962134, "JK_WARN_UNUSED_SENTINEL": -9.962134, "JSONData": -8.863521, "JSONDataWithOptions": -8.016224, "JSONDecoder": -9.268987, "JSONKIT_VERSION_MAJOR": -9.962134, "JSONKIT_VERSION_MINOR": -9.962134, "JSONKit": -8.016224, "JSONKitDeserializing": -9.268987, "JSONKitSerializing": -8.863521, "JSONKitSerializingBlockAdditions": -9.268987, "JSONNumberStateError": -9.962134, "JSONNumberStateExponent": -9.962134, "JSONNumberStateExponentPlusMinus": -9.962134, "JSONNumberStateExponentStart": -9.962134, "JSONNumberStateFinished": -9.962134, "JSONNumberStateFractionalNumber": -9.962134, "JSONNumberStateFractionalNumberStart": -9.962134, "JSONNumberStatePeriod": -9.962134, "JSONNumberStateStart": -9.962134, "JSONNumberStateWholeNumber": -9.962134, "JSONNumberStateWholeNumberMinus": -9.962134, "JSONNumberStateWholeNumberStart": -9.962134, "JSONNumberStateWholeNumberZero": -9.962134, "JSONString": -8.863521, "JSONStringStateError": -9.962134, "JSONStringStateEscape": -9.962134, "JSONStringStateEscapedNeedEscapeForSurrogate": -9.962134, "JSONStringStateEscapedNeedEscapedUForSurrogate": -9.962134, "JSONStringStateEscapedUnicode": -8.575839, "JSONStringStateEscapedUnicodeSurrogate": -8.575839, "JSONStringStateFinished": -9.962134, "JSONStringStateParsing": -9.962134, "JSONStringStateStart": -9.962134, "JSONStringWithOptions": -8.016224, "LLONG_MIN": -9.962134, "LONG_BIT": -9.962134, "LONG_MAX": -8.863521, "LONG_MIN": -8.863521, "MAC_OS_X_VERSION_": -9.962134, "MAC_OS_X_VERSION_MAX_ALLOWED": -9.962134, "MainMenuViewController": -9.962134, "Methods": -9.962134, "NO": -6.406786, "NSArray": -6.966401, "NSArray*": -9.962134, "NSCParameterAssert": -8.352696, "NSCoder": -9.268987, "NSComparator": -9.962134, "NSComparisonResult": -9.962134, "NSData": -6.784080, "NSData*": -9.962134, "NSDate": -8.170374, "NSDictionary": -6.966401, "NSDownArrowFunctionKey": -9.962134, "NSEnumerationOptions": -8.575839, "NSEnumerator": -9.962134, "NSError": -6.298572, "NSError**": -9.268987, "NSEvent": -8.863521, "NSEvent*": -9.962134, "NSException": -8.575839, "NSFastEnumeration": -9.268987, "NSFastEnumerationState": -9.962134, "NSHTTPCookie": -8.863521, "NSHTTPCookieStorage": -9.962134, "NSINTEGER_DEFINED": -9.268987, "NSIndexPath": -8.352696, "NSIndexSet": -8.575839, "NSInputStream": -9.268987, "NSInteger": -5.936782, "NSIntegerMax": -8.575839, "NSIntegerMin": -8.863521, "NSInternalInconsistencyException": -9.962134, "NSInvalidArgumentException": -9.268987, "NSInvocation": -9.268987, "NSLocaleIdentifier": -9.962134, "NSLocalizedDescriptionKey": -8.575839, "NSLocalizedFailureReasonErrorKey": -9.962134, "NSLocalizedString": -7.764909, "NSLock": -9.962134, "NSLog": -8.863521, "NSMakeC": -9.962134, "NSMakeCollectable": -8.170374, "NSMenu": -9.962134, "NSMethodSignature": -9.962134, "NSMutableArray": -7.071762, "NSMutableData": -8.863521, "NSMutableDictionary": -7.017695, "NSMutableIndexSet": -8.170374, "NSMutableString": -9.268987, "NSNotFound": -9.962134, "NSNotification": -9.962134, "NSNumber": -8.016224, "NSObject": -8.352696, "NSOperation": -9.962134, "NSOperationQueue": -9.962134, "NSOrderedAscending": -8.575839, "NSOrderedDescending": -8.575839, "NSOrderedSame": -9.962134, "NSOutputStream": -9.268987, "NSParameterAssert": -8.575839, "NSRecursiveLock": -8.352696, "NSResponder": -9.962134, "NSRunLoop": -9.268987, "NSString": -5.327405, "NSString*": -7.882692, "NSStringEncoding": -8.352696, "NSStringFromClass": -8.863521, "NSStringFromSelector": -8.863521, "NSThread": -8.352696, "NSTimeInterval": -7.882692, "NSTimer": -8.863521, "NSUInteger": -5.954801, "NSUIntegerMax": -8.575839, "NSURL": -7.477227, "NSURLCredential": -9.962134, "NSUTF": -9.268987, "NSUnderlyingErrorKey": -9.962134, "NSUpArrowFunctionKey": -9.962134, "NSWindow": -9.268987, "NS_BLOCKS_AVAILABLE": -7.882692, "NS_BUILD_": -9.962134, "NULL": -6.298572, "NetworkRequestErrorDomain": -8.170374, "Objective": -9.268987, "PlaygroundViewController": -9.962134, "Private": -9.962134, "Project": -9.268987, "PullRequest": -8.575839, "ReadStreamClientCallBack": -9.962134, "RedirectBehaviour": -8.863521, "RedirectionLimit": -9.962134, "Reference": -9.962134, "SBJsonParser": -9.268987, "SBJsonStreamParser": -9.268987, "SBJsonStreamParserAccumulator": -9.268987, "SBJsonStreamParserAdapter": -9.268987, "SBJsonStreamParserComplete": -9.962134, "SBJsonStreamParserError": -9.962134, "SBJsonStreamParserWaitingForData": -9.962134, "SEL": -7.071762, "SIZE_MAX": -9.962134, "SSIZE_MAX": -9.962134, "SecIdentityRef": -9.962134, "Siesta.": -9.268987, "SiestaVersionNumber": -9.962134, "SiestaVersionString": -9.962134, "SortCells": -9.962134, "String": -7.564238, "StringEncoding": -9.268987, "StyleView": -9.268987, "StyleView*": -9.268987, "StyleViewController": -9.962134, "TARGET_OS_IPHONE": -7.477227, "TProtocolUtil": -9.268987, "TRUE": -9.268987, "TTCurrentLocale": -9.268987, "TTDASSERT": -9.268987, "TTDCONDITIONLOG": -8.863521, "TTDERROR": -9.962134, "TTDINFO": -9.962134, "TTDPRINT": -7.764909, "TTDPRINTMETHODNAME": -9.962134, "TTDWARNING": -9.962134, "TTImageView": -9.962134, "TTImageView*": -9.962134, "TTLOGLEVEL_ERROR": -9.962134, "TTLOGLEVEL_INFO": -9.962134, "TTLOGLEVEL_WARNING": -9.962134, "TTMAXLOGLEVEL": -9.962134, "TTPathForBundleResource": -9.962134, "TTPathForDocumentsResource": -9.962134, "TTRectInset": -8.863521, "TTSectionedDataSource": -9.962134, "TTStyle*": -8.575839, "TTStyleContext": -9.962134, "TTStyleContext*": -9.962134, "TTStyleSheet": -8.575839, "TTTableTextItem": -6.090933, "TTTableViewController": -9.962134, "TTViewController": -9.962134, "TT_RELEASE_SAFELY": -7.477227, "TType_STOP": -9.962134, "TType_STRING": -9.268987, "TUIFastIndexPath": -5.473497, "TUIFastIndexPath*": -9.962134, "TUIScrollView": -9.962134, "TUIScrollViewDelegate": -9.962134, "TUITableView": -6.743258, "TUITableView*": -9.962134, "TUITableViewCalculateNextIndexPathBlock": -8.863521, "TUITableViewCell": -6.826640, "TUITableViewDataSource": -9.268987, "TUITableViewDelegate": -9.962134, "TUITableViewInsertionMethod": -8.863521, "TUITableViewInsertionMethodAfterIndex": -9.962134, "TUITableViewInsertionMethodAtIndex": -9.962134, "TUITableViewInsertionMethodBeforeIndex": -9.962134, "TUITableViewRowInfo": -8.863521, "TUITableViewScrollPosition": -8.352696, "TUITableViewScrollPositionBottom": -9.962134, "TUITableViewScrollPositionMiddle": -9.962134, "TUITableViewScrollPositionNone": -9.268987, "TUITableViewScrollPositionToVisible": -8.863521, "TUITableViewScrollPositionTop": -9.268987, "TUITableViewSection": -7.189545, "TUITableViewSectionHeader": -8.575839, "TUITableViewStyle": -8.575839, "TUITableViewStyleGrouped": -9.962134, "TUITableViewStylePlain": -9.268987, "TUIView": -7.128920, "TUIViewAutoresizingFlexibleWidth": -9.962134, "Three": -9.268987, "UIApplication": -9.268987, "UIBackgroundTaskIdentifier": -9.962134, "UIBackgroundTaskInvalid": -8.863521, "UIButton": -9.962134, "UIButton*": -9.962134, "UIButtonTypeRoundedRect": -9.962134, "UIColor": -8.863521, "UIControlEventTouchUpInside": -9.962134, "UIControlStateDisabled": -9.962134, "UIControlStateHighlighted": -9.962134, "UIControlStateNormal": -9.962134, "UIControlStateSelected": -9.962134, "UIEdgeInsetsMake": -8.863521, "UIFont": -8.863521, "UILabel": -9.268987, "UILabel*": -9.268987, "UINT_MAX": -8.863521, "UIScrollView": -9.962134, "UIScrollView*": -9.962134, "UITableViewStyleGrouped": -9.962134, "UIViewAutoresizingFlexibleBottomMargin": -8.863521, "UIViewAutoresizingFlexibleHeight": -9.962134, "UIViewAutoresizingFlexibleWidth": -8.575839, "UIViewController": -9.268987, "ULLONG_MAX": -9.962134, "ULONG_MAX": -8.863521, "UNI_MAX_BMP": -9.962134, "UNI_MAX_LEGAL_UTF": -9.962134, "UNI_MAX_UTF": -9.268987, "UNI_REPLACEMENT_CHAR": -9.962134, "UNI_SUR_HIGH_END": -9.962134, "UNI_SUR_HIGH_START": -9.962134, "UNI_SUR_LOW_END": -9.962134, "UNI_SUR_LOW_START": -9.962134, "URL": -6.090933, "UTF": -7.254084, "WORD_BIT": -9.962134, "YES": -6.435773, "[": -3.139936, "\\": -8.352696, "]": -3.142117, "^": -6.629929, "_": -7.189545, "_ASIAuthenticationState": -9.962134, "_ASINetworkErrorType": -9.962134, "_GLFW_REQUIRE_INIT_OR_RETURN": -9.962134, "_GLFWmonitor*": -8.170374, "_GLFWmonitor**": -9.268987, "_JKArrayCreate": -9.962134, "_JKArrayInsertObjectAtIndex": -9.962134, "_JKArrayRemoveObjectAtIndex": -9.962134, "_JKArrayReplaceObjectAtIndexWithObject": -9.962134, "_JKDictionaryAddObject": -9.962134, "_JKDictionaryCapacity": -9.962134, "_JKDictionaryCapacityForCount": -9.962134, "_JKDictionaryHashTableEntryForKey": -9.962134, "_JKDictionaryRemoveObjectWithEntry": -9.962134, "_JKDictionaryResizeIfNeccessary": -9.268987, "_JSONDecoderCleanup": -9.962134, "_JSONKIT_H_": -9.268987, "_LIKE_": -9.962134, "_NSStringObjectFromJSONString": -9.962134, "__": -9.268987, "__APPLE_CC__": -9.268987, "__BLOCKS__": -9.962134, "__GNUC_MINOR__": -9.962134, "__GNUC__": -8.170374, "__IPHONE_": -7.882692, "__IPHONE_OS_VERSION_MAX_ALLOWED": -8.575839, "__LP": -9.268987, "__MAC_": -8.575839, "__OBJC_GC__": -9.962134, "__OBJC__": -9.268987, "__attribute__": -9.268987, "__builtin_expect": -9.962134, "__builtin_prefetch": -9.962134, "__clang_analyzer__": -9.962134, "__cplusplus": -9.268987, "__has_feature": -8.863521, "__inline__": -9.962134, "__title": -7.128920, "__title_isset": -7.477227, "__unsafe_unretained": -9.268987, "_cmd": -8.863521, "_contentHeight": -8.016224, "_currentDragToReorderIndexPath": -9.962134, "_currentDragToReorderInsertionMethod": -9.962134, "_currentDragToReorderLocation": -9.962134, "_currentDragToReorderMouseOffset": -9.962134, "_dataSource": -8.170374, "_delegate": -9.268987, "_dragToReorderCell": -8.352696, "_enqueueReusableCell": -9.268987, "_futureMakeFirstResponderToken": -9.268987, "_glfwAllocMonitor": -9.962134, "_glfwChooseVideoMode": -9.962134, "_glfwCompareVideoModes": -8.863521, "_glfwInputError": -9.268987, "_glfwPlatformGetMonitorPos": -9.962134, "_glfwPlatformGetMonitors": -9.962134, "_glfwPlatformGetVideoMode": -9.962134, "_glfwPlatformGetVideoModes": -9.962134, "_glfwPlatformIsSameMonitor": -9.962134, "_headerView": -7.882692, "_headerView.autoresizingMask": -9.962134, "_headerView.frame": -9.962134, "_headerView.frame.size.height": -9.268987, "_headerView.hidden": -8.575839, "_headerView.layer.zPosition": -9.962134, "_indexPathShouldBeFirstResponder": -9.268987, "_jk_encode_prettyPrint": -9.962134, "_keepVisibleIndexPathForReload": -9.268987, "_lastSize": -9.962134, "_layoutCells": -8.863521, "_layoutSectionHeaders": -9.268987, "_makeRowAtIndexPathFirstResponder": -9.268987, "_preLayoutCells": -9.268987, "_previousDragToReorderIndexPath": -9.962134, "_previousDragToReorderInsertionMethod": -9.962134, "_pullDownView": -8.575839, "_pullDownView.frame": -9.962134, "_pullDownView.frame.size.height": -9.268987, "_pullDownView.hidden": -8.575839, "_relativeOffsetForReload": -9.268987, "_reusableTableCells": -8.352696, "_scrollView": -7.764909, "_scrollView.autoresizingMask": -9.962134, "_sectionInfo": -6.666297, "_selectedIndexPath": -7.764909, "_setupRowHeights": -9.268987, "_style": -7.882692, "_styleDisabled": -8.170374, "_styleHighlight": -8.170374, "_styleSelected": -8.170374, "_styleType": -8.170374, "_t": -8.352696, "_tableFlags": -9.962134, "_tableFlags.animateSelectionChanges": -8.863521, "_tableFlags.dataSourceNumberOfSectionsInTableView": -9.268987, "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": -9.962134, "_tableFlags.derepeaterEnabled": -9.962134, "_tableFlags.didFirstLayout": -9.962134, "_tableFlags.forceSaveScrollPosition": -9.962134, "_tableFlags.layoutSubviewsReentrancyGuard": -8.863521, "_tableFlags.maintainContentOffsetAfterReload": -9.268987, "_tableView": -8.863521, "_tableView.dataSource": -8.863521, "_tableView.delegate": -9.962134, "_topVisibleIndexPath": -9.962134, "_updateDerepeaterViews": -9.268987, "_updateSectionInfo": -9.268987, "_visibleItems": -7.323076, "_visibleSectionHeaders": -8.170374, "a": -7.882692, "a.frame.origin.y": -9.268987, "aBytesReceivedBlock": -9.962134, "aBytesSentBlock": -9.962134, "aCompletionBlock": -9.962134, "aDownloadSizeIncrementedBlock": -9.962134, "aFailedBlock": -9.962134, "aKey": -7.397184, "aNotification": -9.962134, "aProxyAuthenticationBlock": -9.962134, "aReceivedBlock": -9.268987, "aRedirectBlock": -9.962134, "aStartedBlock": -9.962134, "about": -9.962134, "acceptsFirstResponder": -9.962134, "accumulator": -9.962134, "accumulator.value": -9.962134, "action": -9.962134, "activity": -9.962134, "adapter": -9.962134, "adapter.delegate": -9.962134, "addBasicAuthenticationHeaderWithUsername": -9.268987, "addHeader": -8.575839, "addImageView": -8.575839, "addIndex": -8.863521, "addObject": -8.575839, "addOperation": -9.962134, "addRequestHeader": -9.962134, "addSessionCookie": -9.268987, "addSubview": -7.882692, "addTarget": -9.962134, "addText": -8.575839, "addTextView": -8.575839, "addTimer": -9.962134, "addToSize": -9.962134, "addView": -8.575839, "advanceBy": -9.962134, "agent": -9.268987, "aligned": -9.962134, "allKeys": -9.962134, "allValues": -9.962134, "alloc": -6.871091, "alloc_size": -9.962134, "allowCompressedResponse": -8.863521, "allowResumeForFileDownloads": -9.268987, "alpha": -8.863521, "already": -9.962134, "always_inline": -9.962134, "amount": -8.170374, "an": -9.962134, "anAuthenticationBlock": -9.962134, "anObject": -7.882692, "anUploadSizeIncrementedBlock": -9.962134, "and": -8.170374, "andCachePolicy": -9.962134, "andKeys": -9.962134, "andPassword": -9.268987, "andResponseEncoding": -9.962134, "animateSelectionChanges": -8.863521, "animated": -6.704037, "appendFormat": -9.962134, "appendPostData": -9.962134, "appendPostDataFromFile": -9.962134, "appendString": -9.268987, "applicationDidFinishLaunching": -9.962134, "applyAuthorizationHeader": -9.268987, "applyCookieHeader": -9.962134, "applyCredentials": -9.268987, "applyProxyCredentials": -9.962134, "architectures.": -9.962134, "are": -8.863521, "arg": -7.659549, "argc": -9.962134, "argumentNumber": -9.962134, "array": -8.016224, "arrayIdx": -8.352696, "arrayState": -9.962134, "arrayWithCapacity": -9.268987, "as": -8.352696, "askDelegateForCredentials": -9.268987, "askDelegateForProxyCredentials": -9.268987, "assign": -5.834999, "ast": -9.268987, "atEntry": -7.128920, "atIndex": -8.352696, "atScrollPosition": -8.863521, "attemptToApplyCredentialsAndResume": -9.268987, "attemptToApplyProxyCredentialsAndResume": -9.268987, "attr": -8.863521, "authentication": -8.863521, "authenticationCredentials": -8.863521, "authenticationDelegate": -7.071762, "authenticationNeeded": -8.863521, "authenticationNeededBlock": -8.575839, "authenticationNeededForRequest": -8.863521, "authenticationRetryCount": -9.268987, "authenticationScheme": -8.575839, "autorelease": -7.477227, "autorelease_stub": -9.962134, "averageBandwidthUsedPerSecond": -9.268987, "b": -9.268987, "b.frame.origin.y": -9.268987, "backgroundTask": -8.016224, "bandwidth": -9.962134, "base": -9.962134, "be": -8.575839, "beforeDate": -9.962134, "begin": -9.962134, "beginBackgroundTaskWithExpirationHandler": -9.962134, "beginFadeReservation": -9.268987, "behaviour": -9.962134, "best": -8.575839, "bit": -9.962134, "bits": -9.962134, "block": -7.189545, "blue": -8.863521, "bounds": -9.268987, "bounds.origin.x": -9.962134, "bounds.origin.y": -9.962134, "break": -7.189545, "bringSubviewToFront": -9.962134, "buildPostBody": -9.268987, "buildRequestHeaders": -8.863521, "bundle": -9.268987, "button": -8.352696, "button.frame": -9.268987, "buttonWithType": -9.962134, "by": -9.962134, "bytes": -8.170374, "bytesReadSoFar": -8.863521, "bytesReceivedBlock": -8.575839, "bytesSentBlock": -9.962134, "c": -8.170374, "cLength": -9.268987, "cache": -8.575839, "cachePolicy": -8.863521, "cacheStoragePolicy": -9.268987, "calculateNextIndexPath": -8.575839, "callback": -8.863521, "callerToRetain": -8.170374, "calloc": -8.352696, "can": -9.962134, "canMoveRowAtIndexPath": -9.268987, "canUseCachedDataForRequest": -9.268987, "cancel": -9.962134, "cancelAuthentication": -9.268987, "cancelled": -9.962134, "cancelledLock": -7.477227, "capacity": -7.764909, "case": -7.659549, "cbInvocation": -8.352696, "cbSignature": -9.962134, "cell": -7.254084, "cell.frame": -9.962134, "cell.layer.zPosition": -9.962134, "cell.reuseIdentifier": -9.962134, "cellForRowAtIndexPath": -7.764909, "cellRect": -8.352696, "cellRect.origin.y": -9.268987, "cellRect.size.height": -9.962134, "certificates": -9.962134, "char": -7.017695, "char*": -9.268987, "characterAtIndex": -9.962134, "charactersIgnoringModifiers": -9.962134, "checkRequestStatus": -9.962134, "class": -7.323076, "cleanup": -9.962134, "clearCache": -9.962134, "clearDelegatesAndCancel": -9.962134, "clearSession": -9.962134, "clientCallBackInfo": -9.962134, "clientCertificateIdentity": -8.863521, "clientCertificates": -9.962134, "close": -9.268987, "code": -8.016224, "colorWithRed": -8.863521, "commit": -9.962134, "compare": -8.863521, "complete": -8.016224, "completes": -9.962134, "completionBlock": -9.962134, "componentsSeparatedByString": -9.962134, "compressedPostBody": -9.268987, "concurrency": -9.962134, "cond": -7.477227, "configureProxies": -9.962134, "connecting": -9.962134, "connection": -9.268987, "connectionCanBeReused": -8.863521, "connectionHeader": -9.268987, "connectionInfo": -7.477227, "connectionsLock": -9.268987, "const": -6.406786, "constrainedToSize": -9.268987, "containsValueForKey": -9.962134, "contentLength": -8.016224, "contentType": -9.962134, "context": -8.575839, "context.delegate": -9.962134, "context.font": -9.962134, "context.frame": -9.962134, "continue": -8.575839, "conversionOK": -9.962134, "cookie": -9.268987, "cookiesWithResponseHeaderFields": -9.962134, "copy": -8.575839, "count": -6.594838, "countByEnumeratingWithState": -9.962134, "credentials": -7.764909, "current": -8.863521, "currentHash": -9.962134, "currentRunLoop": -9.268987, "d": -7.764909, "data": -7.882692, "dataReceivedBlock": -9.962134, "dataSource": -9.268987, "dataSourceNumberOfSectionsInTableView": -9.962134, "dataSourceWithObjects": -9.962134, "dataUsingEncoding": -9.268987, "date": -9.962134, "dateFromRFC": -9.962134, "dateWithTimeIntervalSinceNow": -9.962134, "dc": -8.863521, "dealloc": -8.575839, "dealloc_stub": -9.962134, "debugTestAction": -9.962134, "decodeObjectForKey": -9.962134, "decoder": -8.575839, "decoderWithParseOptions": -9.962134, "default": -9.268987, "defaultCache": -9.962134, "defaultResponseEncoding": -9.268987, "defaultTimeOutSeconds": -9.962134, "defaultUserAgentString": -9.962134, "defined": -7.882692, "delegate": -7.254084, "delegateOrBlockWillHandleAuthentication": -7.659549, "delegateTableViewWillDisplayCellForRowAtIndexPath": -9.962134, "deprecated": -9.962134, "depthChange": -9.268987, "dequeueReusableCellWithIdentifier": -9.268987, "derepeaterEnabled": -9.962134, "description": -9.962134, "deselectRowAtIndexPath": -8.863521, "desired": -9.962134, "destroyReadStream": -9.268987, "detection": -9.962134, "dictionary": -7.764909, "dictionaryWithCapacity": -9.268987, "dictionaryWithObjectsAndKeys": -8.575839, "didClickRowAtIndexPath": -9.962134, "didCreateTemporaryPostDataFile": -9.962134, "didDeselectRowAtIndexPath": -8.863521, "didFailSelector": -9.268987, "didFinishSelector": -9.268987, "didFirstLayout": -9.962134, "didReceiveBytes": -9.268987, "didReceiveDataSelector": -9.268987, "didReceiveResponseHeadersSelector": -9.268987, "didSelectRowAtIndexPath": -8.863521, "didStartSelector": -9.268987, "didUseCachedResponse": -9.268987, "dispatch_async": -9.962134, "dispatch_get_main_queue": -9.962134, "displayCount": -8.016224, "displayID": -9.962134, "displayNameForKey": -9.962134, "displays": -7.764909, "distantFuture": -9.962134, "dm": -8.016224, "does": -9.268987, "double": -8.575839, "download": -9.962134, "downloadCache": -7.882692, "downloadComplete": -9.962134, "downloadProgressDelegate": -7.764909, "downloadSizeIncrementedBlock": -9.962134, "else": -6.496398, "encodeObject": -9.962134, "encodeOption": -9.268987, "encodeWithCoder": -9.962134, "encoder": -9.268987, "encoding": -8.863521, "endBackgroundTask": -9.962134, "endFadeReservation": -9.268987, "entry": -7.564238, "entryForKey": -9.268987, "enum": -7.128920, "enumerateIndexPathsFromIndexPath": -8.575839, "enumerateIndexPathsUsingBlock": -9.268987, "enumerateIndexPathsWithOptions": -9.268987, "enumerateIndexesUsingBlock": -9.962134, "enumeratedCount": -8.575839, "error": -5.867789, "errorIsPrev": -9.962134, "errorWithDomain": -8.352696, "error_": -9.268987, "es": -8.863521, "event": -7.882692, "exception": -8.863521, "execute": -8.575839, "expect": -8.863521, "expiryDateForRequest": -9.962134, "extern": -8.575839, "f": -8.352696, "failAuthentication": -9.268987, "failWithError": -8.170374, "failedRequest": -8.575839, "fails": -9.962134, "failureBlock": -9.962134, "false": -8.863521, "fieldID": -8.352696, "fieldName": -9.268987, "fieldType": -8.170374, "fieldValue": -9.268987, "file": -9.962134, "findCredentials": -9.268987, "findProxyCredentials": -9.962134, "findSessionAuthenticationCredentials": -9.962134, "finished": -9.268987, "first": -8.863521, "firstByteMark": -9.962134, "firstIndexPath": -8.575839, "firstResponder": -8.863521, "flags": -8.352696, "flashScrollIndicators": -9.962134, "for": -6.298572, "forControlEvents": -9.962134, "forEvent": -8.863521, "forKey": -7.128920, "forMode": -9.962134, "forRowAtIndexPath": -9.268987, "forState": -8.575839, "forURL": -9.268987, "forceSaveScrollPosition": -9.962134, "format": -7.564238, "found": -7.882692, "foundValidNextRow": -8.575839, "frame": -6.435773, "frame.origin.x": -8.863521, "frame.origin.y": -7.189545, "frame.size.height": -7.254084, "frame.size.width": -8.575839, "free": -8.863521, "fromContentType": -9.962134, "fromIndexPath": -8.170374, "fromIndexPath.row": -9.962134, "fromIndexPath.section": -9.962134, "fromPath": -9.962134, "futureMakeFirstResponderRequestToken": -9.962134, "generate": -9.962134, "generated": -9.962134, "get": -9.268987, "getDisplayName": -9.962134, "getObjects": -9.962134, "globalStyleSheet": -8.575839, "green": -8.863521, "h": -8.863521, "handle": -9.962134, "handleBytesAvailable": -9.962134, "handleNetworkEvent": -9.268987, "handleStreamComplete": -9.962134, "handleStreamError": -9.962134, "handlers": -9.962134, "handling": -8.575839, "hash": -7.882692, "have": -9.962134, "haveBuiltPostBody": -9.268987, "haveBuiltRequestHeaders": -9.962134, "header": -9.268987, "header.frame.size.height": -9.962134, "headerFrame": -8.575839, "headerFrame.size.height": -9.962134, "headerHeight": -8.575839, "headerView": -7.477227, "headerViewForSection": -8.170374, "headerViewRect": -8.863521, "headers": -8.863521, "headersReceivedBlock": -9.962134, "height": -7.189545, "heightForRowAtIndexPath": -9.268987, "hideNetworkActivityIndicator": -9.962134, "host": -9.962134, "http": -9.962134, "httpVersion": -9.962134, "i": -5.851260, "id": -5.166343, "identifier": -8.016224, "idx": -8.575839, "if": -4.448705, "imageFrame": -9.268987, "imageFrame.size": -9.962134, "in": -7.323076, "inProgress": -8.863521, "inProtocol": -7.882692, "inSection": -7.564238, "includeQuotes": -8.575839, "incrementBandwidthUsedInLastSecond": -9.962134, "incrementDownloadSizeBy": -8.863521, "incrementUploadSizeBy": -9.268987, "incremented": -9.268987, "index": -8.352696, "indexAtPosition": -9.268987, "indexOfSectionWithHeaderAtPoint": -9.268987, "indexOfSectionWithHeaderAtVerticalOffset": -9.268987, "indexPath": -6.133492, "indexPath.row": -9.962134, "indexPath.section": -8.863521, "indexPathForCell": -9.268987, "indexPathForFirstRow": -9.268987, "indexPathForFirstVisibleRow": -9.268987, "indexPathForLastRow": -9.268987, "indexPathForLastVisibleRow": -9.268987, "indexPathForRow": -7.564238, "indexPathForRowAtPoint": -9.268987, "indexPathForRowAtVerticalOffset": -9.268987, "indexPathForSelectedRow": -8.575839, "indexPathWithIndexes": -9.962134, "indexPaths": -9.268987, "indexPathsForRowsInRect": -8.863521, "indexPathsForVisibleRows": -9.268987, "indexPathsToAdd": -9.268987, "indexPathsToRemove": -9.268987, "indexes": -8.575839, "indexesOfSectionHeadersInRect": -9.268987, "indexesOfSectionsInRect": -9.268987, "info": -8.352696, "information": -9.962134, "init": -7.017695, "initWithBytes": -9.962134, "initWithCapacity": -9.962134, "initWithCoder": -9.962134, "initWithFrame": -7.564238, "initWithJKDictionary": -9.962134, "initWithNibName": -9.268987, "initWithNumberOfRows": -9.268987, "initWithObjectsAndKeys": -9.962134, "initWithParseOptions": -9.962134, "initWithTitle": -9.962134, "initWithURL": -9.962134, "initialize": -9.962134, "inputStreamWithData": -9.268987, "int": -6.050111, "int*": -8.575839, "intValue": -8.863521, "invocation": -8.863521, "invocationWithMethodSignature": -9.962134, "irow": -8.863521, "is": -8.352696, "isARepeat": -9.962134, "isBandwidthThrottled": -9.268987, "isCancelled": -8.352696, "isConcurrent": -9.962134, "isEqual": -8.575839, "isEqualToString": -7.477227, "isExecuting": -9.962134, "isFinished": -9.962134, "isKindOfClass": -8.863521, "isMainThread": -8.575839, "isMultitaskingSupported": -9.268987, "isNetworkInUse": -9.962134, "isNetworkReachableViaWWAN": -9.962134, "isPACFileRequest": -9.268987, "isResponseCompressed": -8.863521, "isSynchronous": -8.575839, "itemWithText": -6.090933, "itemsPtr": -9.962134, "its": -9.962134, "j": -7.659549, "jk_cache_age": -9.962134, "jk_calculateHash": -9.962134, "jk_e": -9.962134, "jk_encode_add_atom_to_buffer": -9.962134, "jk_encode_error": -9.962134, "jk_encode_object_hash": -9.962134, "jk_encode_printf": -9.962134, "jk_encode_updateCache": -9.962134, "jk_encode_write": -8.170374, "jk_encode_writePrettyPrintWhiteSpace": -9.962134, "jk_encode_writen": -9.962134, "jk_error": -9.962134, "jk_error_parse_accept_or": -9.962134, "jk_managedBuffer_release": -9.962134, "jk_managedBuffer_setToStackBuffer": -9.962134, "jk_max": -9.962134, "jk_min": -9.962134, "jk_objectStack_release": -9.962134, "jk_objectStack_resize": -9.962134, "jk_objectStack_setToStackBuffer": -9.962134, "jk_parse_is_newline": -9.962134, "jk_parse_next_token": -9.962134, "jk_parse_number": -9.962134, "jk_parse_skip_newline": -9.962134, "jk_parse_skip_whitespace": -9.962134, "jk_parse_string": -9.962134, "jk_set_parsed_token": -9.962134, "jsonData": -8.170374, "jsonText": -9.962134, "kCFAllocatorDefault": -8.863521, "kCFHTTPAuthenticationAccountDomain": -9.962134, "kCFHTTPAuthenticationPassword": -9.268987, "kCFHTTPAuthenticationSchemeBasic": -8.863521, "kCFHTTPAuthenticationUsername": -9.268987, "kCFHTTPVersion": -8.863521, "kCFNull": -9.962134, "kCFStreamEventEndEncountered": -9.962134, "kCFStreamEventErrorOccurred": -9.962134, "kCFStreamEventHasBytesAvailable": -9.962134, "kCFStreamPropertyHTTPRequestBytesWrittenCount": -9.962134, "kCFStreamPropertyHTTPResponseHeader": -9.962134, "kCFStreamPropertySSLSettings": -9.962134, "kCFStreamSSLAllowsAnyRoot": -9.962134, "kCFStreamSSLAllowsExpiredCertificates": -9.962134, "kCFStreamSSLPeerName": -9.962134, "kCFStreamSSLValidatesCertificateChain": -9.962134, "kCFStringEncodingUTF": -9.268987, "kCGDisplayBlendNormal": -9.268987, "kCGDisplayBlendSolidColor": -9.268987, "kCGDisplayFadeReservationInvalidToken": -9.268987, "kCGErrorSuccess": -9.962134, "kCGNullDirectDisplay": -9.962134, "kCVTimeIsIndefinite": -9.962134, "kDisplayModeInterlacedFlag": -9.962134, "kDisplayModeSafeFlag": -9.962134, "kDisplayModeStretchedFlag": -9.962134, "kDisplayModeValidFlag": -9.962134, "kDisplayProductName": -9.962134, "kElementSpacing": -8.863521, "kFramePadding": -8.016224, "kGroupSpacing": -8.352696, "kIODisplayOnlyPreferredName": -9.962134, "kImageStyleType": -9.268987, "kNetworkEvents": -9.962134, "kTextStyleType": -9.268987, "kViewStyleType": -9.268987, "key": -8.016224, "keyEntry": -9.268987, "keyEnumerator": -9.962134, "keyHash": -8.170374, "keychain": -9.962134, "keys": -8.863521, "label": -8.170374, "label.font": -8.863521, "label.frame": -8.575839, "label.frame.size.height": -9.268987, "label.numberOfLines": -9.268987, "label.text": -9.268987, "lastBytesRead": -9.268987, "lastBytesSent": -9.268987, "lastIndexPath": -7.882692, "lastIndexPath.row": -9.268987, "lastIndexPath.section": -9.268987, "lastObject": -9.962134, "layoutSubviews": -8.575839, "layoutSubviewsReentrancyGuard": -9.962134, "len": -8.863521, "length": -6.784080, "let": -9.962134, "limit": -9.962134, "linguistConstants": -9.962134, "link": -7.764909, "ll": -9.962134, "loadView": -9.268987, "localeIdentifier": -9.962134, "lock": -8.016224, "logic": -9.962134, "long": -5.973150, "longer": -9.268987, "lowercaseString": -9.268987, "main": -8.170374, "mainDocumentURL": -9.962134, "mainRequest": -7.128920, "maintainContentOffsetAfterReload": -8.863521, "makeFirstResponderIfNotAlreadyInResponderChain": -9.962134, "mark": -6.704037, "markAsFinished": -9.268987, "max": -8.575839, "maxAge": -8.863521, "maxBandwidthPerSecond": -9.268987, "maxDepth": -9.268987, "maxUploadReadLength": -9.962134, "md": -9.962134, "measurement": -9.962134, "menuForRowAtIndexPath": -9.962134, "message": -7.882692, "methodSignatureForSelector": -9.962134, "mime": -9.962134, "mimeType": -9.962134, "mimeTypeForFileAtPath": -9.962134, "miscellany": -9.962134, "mode": -7.659549, "modeIsGood": -9.268987, "modes": -7.764909, "monitor": -6.784080, "monitors": -8.575839, "moveRowAtIndexPath": -9.268987, "ms": -8.352696, "mutableCollection": -8.863521, "mutableCollections": -9.962134, "mutableCopy": -9.268987, "mutableObjectFromJSONData": -9.962134, "mutableObjectFromJSONDataWithParseOptions": -9.268987, "mutableObjectFromJSONString": -9.962134, "mutableObjectFromJSONStringWithParseOptions": -9.268987, "mutableObjectWithData": -9.268987, "mutableObjectWithUTF": -9.268987, "mutations": -9.268987, "mutationsPtr": -9.962134, "n": -8.863521, "name": -7.397184, "names": -8.575839, "native": -8.352696, "need": -9.962134, "needsRedirect": -9.268987, "network": -9.962134, "newCookie": -9.962134, "newCookies": -8.863521, "newCount": -9.962134, "newCredentials": -7.189545, "newDelegate": -8.575839, "newIndexPath": -8.170374, "newObject": -9.268987, "newSize": -9.962134, "newURL": -8.352696, "newValue": -9.268987, "newVisibleIndexPaths": -9.268987, "nextConnectionNumberToCreate": -9.962134, "nil": -5.408257, "nn": -8.575839, "no": -9.268987, "noCurrentSelection": -9.268987, "nonatomic": -7.254084, "nonnull": -8.170374, "not": -9.268987, "ns.displayID": -7.659549, "ns.previousMode": -8.170374, "ns.unitNumber": -8.863521, "ntlmComponents": -8.575839, "ntlmDomain": -8.016224, "number": -9.962134, "numberOfRows": -7.397184, "numberOfRowsInSection": -7.764909, "numberOfSections": -7.659549, "numberOfSectionsInTableView": -8.863521, "numberOfTimesToRetryOnTimeout": -9.268987, "numberWithBool": -8.863521, "numberWithInt": -9.962134, "objc_arc": -9.962134, "object": -7.254084, "objectAtIndex": -7.764909, "objectForKey": -6.784080, "objectFromJSONData": -9.962134, "objectFromJSONDataWithParseOptions": -9.268987, "objectFromJSONString": -9.962134, "objectFromJSONStringWithParseOptions": -9.268987, "objectIndex": -8.863521, "objectStack.index": -9.268987, "objectStack.objects": -9.962134, "objectWithData": -8.352696, "objectWithString": -8.352696, "objectWithUTF": -9.268987, "objects": -8.575839, "of": -9.962134, "ofTotal": -8.863521, "offset": -6.826640, "offsetsFromUTF": -9.962134, "oldIndexPath": -9.962134, "oldStream": -8.575839, "oldVisibleIndexPaths": -9.268987, "on": -9.962134, "onProtocol": -9.268987, "onTarget": -8.352696, "onThread": -8.575839, "one": -9.962134, "option.": -9.962134, "optionFlags": -9.962134, "options": -8.170374, "orData": -9.962134, "other": -8.575839, "outProtocol": -8.016224, "p": -9.268987, "parse": -9.962134, "parseJSONData": -9.268987, "parseMimeType": -9.962134, "parseOptionFlags": -7.564238, "parseState": -8.352696, "parseStringEncodingFromHeaders": -9.268987, "parseUTF": -9.268987, "parsedArray": -9.962134, "parser": -9.962134, "parser.delegate": -9.962134, "parser.error": -9.962134, "parser.maxDepth": -9.962134, "parsing": -9.962134, "partialDownloadSize": -7.882692, "pass": -8.170374, "password": -8.016224, "path": -9.962134, "performBlockOnMainThread": -9.962134, "performInvocation": -9.962134, "performKeyAction": -9.268987, "performSelector": -7.659549, "performSelectorOnMainThread": -8.170374, "performThrottling": -9.268987, "persistentConnectionTimeoutSeconds": -8.575839, "persistentConnectionsPool": -9.268987, "pinnedHeader": -9.962134, "pinnedHeader.frame": -9.268987, "pinnedHeader.frame.origin.y": -9.962134, "pinnedHeaderFrame": -9.268987, "pinnedHeaderFrame.origin.y": -9.962134, "point": -8.352696, "point.y": -9.268987, "policy": -9.962134, "port": -9.268987, "postBody": -8.575839, "postBodyReadStream": -9.962134, "postLength": -8.352696, "prepareForReuse": -9.962134, "presentAuthenticationDialogForRequest": -9.962134, "previously": -9.962134, "progress": -9.962134, "proposedPath": -9.962134, "protocol": -9.962134, "proxy": -9.962134, "proxyAuthentication": -8.170374, "proxyAuthenticationNeededBlock": -8.575839, "proxyAuthenticationNeededForRequest": -8.863521, "proxyAuthenticationRealm": -9.962134, "proxyAuthenticationRetryCount": -9.268987, "proxyAuthenticationScheme": -9.962134, "proxyDomain": -9.962134, "proxyHost": -9.268987, "proxyPassword": -9.268987, "proxyPort": -8.863521, "proxyUsername": -9.268987, "ptr": -8.863521, "pullDownRect": -8.575839, "pullDownView": -9.962134, "pullDownViewIsVisible": -8.863521, "pure": -9.268987, "queue": -8.016224, "r": -8.863521, "r.origin.y": -9.962134, "r.size.height": -8.575839, "raise": -8.863521, "rand": -9.268987, "rangeOfString": -9.962134, "raw": -9.962134, "rawResponseData": -9.268987, "re": -9.962134, "reachability": -9.962134, "read": -9.962134, "readFieldBeginReturningName": -9.962134, "readFieldEnd": -9.962134, "readResponseHeaders": -9.962134, "readStream": -8.352696, "readString": -9.962134, "readStructBeginReturningName": -9.962134, "readStructEnd": -9.962134, "readonly": -7.017695, "readwrite": -9.962134, "realm": -9.962134, "reason": -9.962134, "received": -8.863521, "rect": -7.764909, "rectForHeaderOfSection": -8.575839, "rectForRowAtIndexPath": -8.016224, "rectForSection": -8.863521, "redirectCount": -9.962134, "redirectToURL": -9.962134, "redirections": -9.962134, "relativeOffset": -8.352696, "release": -9.268987, "releaseState": -9.962134, "release_stub": -8.863521, "releasingObject": -9.962134, "reloadData": -8.863521, "reloadDataMaintainingVisibleIndexPath": -9.268987, "reloadLayout": -9.268987, "removeAllIndexes": -9.268987, "removeAllObjects": -9.962134, "removeAuthenticationCredentialsFromSessionStore": -9.962134, "removeFromSuperview": -8.575839, "removeIndex": -9.962134, "removeLastObject": -9.962134, "removeObject": -9.268987, "removeObjectForKey": -9.962134, "removeObjectsInArray": -9.268987, "removeProxyAuthenticationCredentialsFromSessionStore": -9.962134, "repeats": -9.962134, "reportFailure": -9.268987, "repr": -8.352696, "request": -6.629929, "requestAuthentication": -9.268987, "requestHeaders": -9.962134, "requestID": -9.962134, "requestMethod": -9.268987, "requestReceivedResponseHeaders": -9.962134, "requestRedirected": -9.962134, "requestRedirectedBlock": -9.962134, "requestWithURL": -8.863521, "required.": -9.962134, "requires": -8.575839, "respectively.": -9.962134, "respondsToSelector": -7.477227, "response": -9.962134, "responseCode": -8.016224, "responseData": -8.863521, "responseEncoding": -8.863521, "responseHeader": -8.863521, "responseHeaders": -7.882692, "responseStatusCode": -8.352696, "responseString": -9.268987, "result": -8.352696, "result.blueBits": -9.268987, "result.greenBits": -9.268987, "result.height": -9.962134, "result.redBits": -9.268987, "result.refreshRate": -8.863521, "result.width": -9.962134, "retain": -6.200934, "retain_stub": -8.575839, "retryCount": -9.268987, "retryUsingNewConnection": -9.962134, "retryUsingSuppliedCredentials": -9.962134, "return": -4.874537, "reused": -9.962134, "roundf": -9.268987, "row": -6.496398, "rowCount": -8.863521, "rowHeight": -9.268987, "rowInfo": -8.016224, "rowLowerBound": -9.268987, "rowUpperBound": -8.863521, "rowsInSection": -8.016224, "runLoopMode": -9.268987, "runMode": -9.962134, "running": -9.268987, "s": -7.128920, "s.height": -8.863521, "same": -8.863521, "save": -9.962134, "saveProxyCredentialsToKeychain": -9.962134, "savedCredentialsForProxy": -9.962134, "scheme": -8.863521, "scrollPosition": -7.764909, "scrollRectToVisible": -9.268987, "scrollToRowAtIndexPath": -8.863521, "sec": -8.863521, "second": -9.268987, "secondsSinceLastActivity": -9.962134, "secondsToCache": -8.863521, "section": -6.010890, "section.headerView": -7.659549, "section.headerView.frame": -9.962134, "section.headerView.superview": -9.962134, "section.sectionOffset": -9.962134, "sectionHeight": -7.764909, "sectionIndex": -6.826640, "sectionLowerBound": -9.268987, "sectionOffset": -7.882692, "sectionRowOffset": -9.268987, "sectionUpperBound": -8.863521, "sections": -8.575839, "selectRowAtIndexPath": -8.863521, "selectValidIndexPath": -8.863521, "selector": -7.564238, "self": -3.924263, "self.animateSelectionChanges": -9.962134, "self.bounds.size.width": -8.352696, "self.contentInset.bottom": -9.962134, "self.contentInset.top*": -9.962134, "self.contentSize": -8.863521, "self.dataSource": -9.962134, "self.delegate": -7.659549, "self.error": -8.863521, "self.headerView": -9.268987, "self.headerView.frame.size.height": -9.962134, "self.maxDepth": -9.268987, "self.nsWindow": -8.863521, "self.tableViewStyle": -9.962134, "self.title": -9.268987, "self.view": -8.575839, "self.view.bounds": -9.268987, "sent": -9.962134, "sentinel": -9.962134, "serializeObject": -9.962134, "serializeOptions": -7.323076, "serializeUnsupportedClassesUsingBlock": -8.575839, "serializeUnsupportedClassesUsingDelegate": -8.575839, "sessionCredentials": -8.575839, "sessionProxyCredentials": -8.170374, "setAnimateSelectionChanges": -9.962134, "setAnimationsEnabled": -9.962134, "setArgument": -8.575839, "setAuthenticationNeeded": -9.268987, "setAuthenticationNeededBlock": -9.962134, "setAuthenticationRetryCount": -9.962134, "setAuthenticationScheme": -9.962134, "setBytesReceivedBlock": -9.962134, "setBytesSentBlock": -9.962134, "setComplete": -9.268987, "setCompletionBlock": -9.962134, "setConnectionCanBeReused": -9.268987, "setConnectionInfo": -9.268987, "setContentLength": -9.962134, "setContentOffset": -9.268987, "setContentSize": -9.962134, "setCookies": -9.962134, "setDataReceivedBlock": -9.962134, "setDataSource": -9.962134, "setDefaultCache": -9.962134, "setDefaultUserAgentString": -9.962134, "setDelegate": -9.268987, "setDidUseCachedResponse": -9.962134, "setDisableActions": -9.962134, "setDownloadCache": -9.962134, "setDownloadProgressDelegate": -9.962134, "setDownloadSizeIncrementedBlock": -9.962134, "setError": -9.268987, "setFailedBlock": -9.962134, "setFrame": -9.268987, "setHeadersReceivedBlock": -9.962134, "setInProgress": -8.863521, "setLastActivityTime": -9.962134, "setLastBytesRead": -9.962134, "setMaintainContentOffsetAfterReload": -9.962134, "setMaxBandwidthPerSecond": -9.962134, "setMaxValue": -9.268987, "setNeedsDisplay": -9.268987, "setNeedsLayout": -8.863521, "setObject": -7.189545, "setPostBody": -9.962134, "setPostBodyReadStream": -9.268987, "setPostLength": -9.962134, "setProxyAuthenticationNeededBlock": -9.962134, "setProxyAuthenticationScheme": -9.962134, "setProxyCredentials": -9.962134, "setReadStream": -9.268987, "setRequestMethod": -9.962134, "setRequestRedirectedBlock": -9.962134, "setResponseCookies": -9.962134, "setResponseHeaders": -9.962134, "setResponseStatusCode": -9.962134, "setResponseStatusMessage": -9.962134, "setRunLoopMode": -9.962134, "setSelected": -9.268987, "setSelector": -9.962134, "setShouldUpdateNetworkActivityIndicator": -9.962134, "setShowAccurateProgress": -9.268987, "setStartedBlock": -9.962134, "setStatusTimer": -9.268987, "setSynchronous": -9.962134, "setTarget": -9.962134, "setTitle": -8.863521, "setTotalBytesSent": -9.962134, "setURL": -9.962134, "setUpdatedProgress": -9.962134, "setUploadProgressDelegate": -9.962134, "setUploadSizeIncrementedBlock": -9.962134, "setter": -9.962134, "setup": -9.962134, "sharedApplication": -9.268987, "sharedHTTPCookieStorage": -9.962134, "sharedQueue": -9.268987, "shouldAttemptPersistentConnection": -8.863521, "shouldCompressRequestBody": -8.863521, "shouldContinueWhenAppEntersBackground": -8.863521, "shouldPresentAuthenticationDialog": -9.962134, "shouldPresentCredentialsBeforeChallenge": -8.863521, "shouldPresentProxyAuthenticationDialog": -8.863521, "shouldRedirect": -8.863521, "shouldResetDownloadProgress": -8.170374, "shouldResetUploadProgress": -8.863521, "shouldSelectRowAtIndexPath": -8.863521, "shouldStreamPostDataFromDisk": -9.962134, "shouldThrottleBandwidthForWWANOnly": -9.962134, "shouldTimeOut": -9.962134, "shouldUpdate": -9.962134, "shouldUseRFC": -8.863521, "shouldWaitToInflateCompressedResponses": -8.863521, "showAccurateProgress": -7.882692, "showAuthenticationDialog": -9.962134, "showNetworkActivityIndicator": -9.962134, "showProxyAuthenticationDialog": -9.268987, "size": -7.397184, "size.height": -9.268987, "size.width": -9.268987, "sizeToFit": -9.962134, "sizeWithFont": -9.268987, "size_t": -6.917611, "sizeof": -8.575839, "skipType": -9.268987, "slow": -9.268987, "so": -9.962134, "sortedArrayUsingComparator": -9.962134, "sortedArrayUsingSelector": -9.962134, "sortedVisibleCells": -9.268987, "sourceExhausted": -9.962134, "sourceIllegal": -9.962134, "ssize_t": -9.268987, "sslProperties": -9.268987, "stackbuf": -8.575839, "start": -9.962134, "startAsynchronous": -9.268987, "startForNoSelection": -9.962134, "startRequest": -9.962134, "startSynchronous": -9.268987, "startedBlock": -9.962134, "startingAtIndex": -8.575839, "startingObjectIndex": -8.575839, "starts": -9.962134, "state": -7.128920, "static": -5.671674, "status": -9.962134, "statusTimer": -9.962134, "stop": -8.863521, "storeAuthenticationCredentialsInSessionStore": -9.962134, "storeProxyAuthenticationCredentialsInSessionStore": -9.962134, "strdup": -9.962134, "stream": -9.268987, "streamSuccessfullyOpened": -9.962134, "string": -7.882692, "stringBuffer.bytes.length": -9.962134, "stringBuffer.bytes.ptr": -9.268987, "stringEncoding": -9.962134, "stringWithFormat": -8.575839, "stringWithString": -9.268987, "strong": -8.863521, "strtoull": -9.962134, "struct": -6.966401, "stuff": -9.962134, "style": -6.871091, "styleType": -9.962134, "styleWithSelector": -8.575839, "successfully": -9.962134, "super": -6.917611, "superview": -9.962134, "support": -9.268987, "switch": -8.575839, "systemFontOfSize": -9.268987, "systemFontSize": -9.962134, "t": -9.268987, "table": -9.962134, "tableRowOffset": -9.268987, "tableView": -6.155471, "tableViewDidReloadData": -8.863521, "tableViewWillReloadData": -8.863521, "tag": -9.268987, "target": -9.268987, "targetExhausted": -9.962134, "targetIndexPathForMoveFromRowAtIndexPath": -9.962134, "text": -7.882692, "text.autoresizingMask": -9.962134, "text.backgroundColor": -9.962134, "text.frame": -9.962134, "text.style": -9.962134, "text.text": -9.962134, "textFrame": -8.863521, "textFrame.size": -9.962134, "that": -9.962134, "the": -7.659549, "theData": -9.962134, "theError": -8.352696, "thePassword": -9.962134, "theRequest": -7.564238, "theUsername": -9.962134, "them": -9.268987, "there": -9.962134, "they": -9.962134, "this": -8.575839, "threadForRequest": -8.352696, "threading": -9.962134, "throttleBandwidthForWWANUsingLimit": -9.962134, "throttling": -9.962134, "time": -9.962134, "time.flags": -9.962134, "time.timeScale": -9.962134, "time.timeValue": -9.962134, "timeIntervalSinceNow": -9.962134, "timeOutSeconds": -8.863521, "timer": -9.962134, "timerWithTimeInterval": -9.962134, "title": -8.016224, "titleIsSet": -9.962134, "tmp": -8.863521, "to": -7.477227, "toIndexPath": -7.477227, "toIndexPath.row": -9.962134, "toIndexPath.section": -9.962134, "toProposedIndexPath": -9.962134, "toRemove": -9.962134, "token": -7.564238, "topVisibleIndex": -9.268987, "total": -9.962134, "totalBytesRead": -8.575839, "totalBytesSent": -8.170374, "totalSize": -9.268987, "trailingBytesForUTF": -9.962134, "true": -8.575839, "type": -8.016224, "type.": -9.268987, "typedef": -6.111986, "types": -9.268987, "ui": -9.962134, "uint": -8.352696, "uncompressData": -9.962134, "underlyingError": -9.962134, "unlock": -8.016224, "unsafe_unretained": -9.268987, "unsetTitle": -9.962134, "unsigned": -5.991842, "unsignedLongLongValue": -9.962134, "unused": -9.962134, "updateDownloadProgress": -8.863521, "updateExpiryForRequest": -9.962134, "updateProgressIndicator": -8.863521, "updateProgressIndicators": -9.962134, "updateStatus": -9.962134, "updateUploadProgress": -8.863521, "updatedProgress": -9.268987, "upload": -9.962134, "upload/download": -9.962134, "uploadBufferSize": -8.863521, "uploadProgressDelegate": -8.016224, "uploadSizeIncrementedBlock": -9.962134, "url": -7.659549, "use": -9.962134, "useCookiePersistence": -8.863521, "useDataFromCache": -9.268987, "useHTTPVersionOne": -8.863521, "useKeychainPersistence": -8.863521, "useSessionPersistence": -8.352696, "user": -7.659549, "userInfo": -8.016224, "username": -8.170374, "using": -9.962134, "usingBlock": -8.170374, "usingCache": -9.268987, "v": -8.352696, "v.size.height": -9.268987, "valid": -9.962134, "validate": -9.962134, "validatesSecureCertificate": -8.863521, "value": -7.254084, "valueForKey": -9.268987, "version": -9.268987, "vidmodeFromCGDisplayMode": -9.268987, "view": -8.170374, "view.autoresizingMask": -9.268987, "view.backgroundColor": -9.268987, "view.frame": -9.268987, "view.image.size": -9.962134, "view.style": -9.268987, "view.urlPath": -9.962134, "viewDidAppear": -9.962134, "viewDidUnload": -9.962134, "viewFrame": -8.575839, "visible": -8.352696, "visible.size.width": -8.863521, "visibleCells": -8.863521, "visibleCellsNeedRelayout": -8.352696, "visibleRect": -8.863521, "void": -4.856188, "void**": -9.962134, "waitUntilDone": -7.659549, "want": -9.962134, "warn_unused_result": -7.764909, "was": -9.268987, "we": -8.352696, "when": -7.882692, "while": -8.170374, "willAskDelegateForCredentials": -9.962134, "willAskDelegateForProxyCredentials": -9.962134, "willDisplayCell": -9.268987, "willRedirect": -9.268987, "willRedirectSelector": -9.268987, "window": -9.962134, "withEvent": -9.268987, "withObject": -7.189545, "withOptions": -8.575839, "withProgress": -8.863521, "write": -9.962134, "writeFieldBeginWithName": -9.962134, "writeFieldEnd": -9.962134, "writeFieldStop": -9.962134, "writeString": -9.962134, "writeStructBeginWithName": -9.962134, "writeStructEnd": -9.962134, "x": -8.016224, "xpos": -9.268987, "y": -7.659549, "yOffset": -6.324548, "you": -9.962134, "ypos": -9.268987, "{": -3.811531, "|": -7.397184, "||": -6.200934, "}": -3.817948, }, "Objective-C++": map[string]float64{ "!": -4.626372, "\"": -8.518193, "#define": -8.518193, "#endif": -6.033286, "#if": -6.572283, "#ifdef": -7.825046, "#ifndef": -7.825046, "#import": -7.419580, "#include": -5.260096, "#pragma": -8.518193, "$": -8.518193, "%": -5.745604, "&": -5.810142, "&&": -6.320968, "(": -2.524231, ")": -2.536778, "*": -5.879135, "**results": -8.518193, "**tablesWithNaturalJoin": -8.518193, "*/": -8.518193, "*EventHandler": -7.825046, "*aColumnName": -8.518193, "*adaptor": -7.419580, "*childMetaData": -8.518193, "*classes": -7.825046, "*documentView": -8.518193, "*e": -8.518193, "*event": -6.120297, "*joinValues": -8.518193, "*kOOExecSQL": -8.518193, "*kOOInsert": -8.518193, "*kOOObject": -8.518193, "*kOOUpdate": -8.518193, "*metaData": -7.825046, "*parentMetaData": -8.518193, "*pasteboard": -8.518193, "*record": -8.518193, "*recordClassName": -7.825046, "*self": -8.518193, "*sql": -7.131898, "*subview": -8.518193, "*superview": -8.518193, "*tableName": -8.518193, "*target": -8.518193, "*view": -8.518193, "*windowView": -8.518193, "+": -4.880607, ",": -4.475141, "-": -4.018383, "...": -7.419580, ".get": -8.518193, ".path": -8.518193, ".protocolIs": -7.825046, "/": -7.419580, "/*": -8.518193, "0": -7.825046, ":": -3.025131, ";": -2.784851, "<": -7.825046, "<<": -8.518193, "<Class>": -7.825046, "<Clipboard>": -8.518193, "<FrameView*>": -8.518193, "<IMP>": -8.518193, "<KeyboardEvent>": -8.518193, "<NSEvent>": -7.131898, "<NSNumber>": -7.825046, "<NSValue>": -8.518193, "<OODatabase>": -8.518193, "<OOMetaData>": -7.825046, "<OORecord>": -8.518193, "<OOString>": -8.518193, "<Widget>": -8.518193, "<columns>": -8.518193, "<commonColumns>": -8.518193, "<id>": -5.299317, "<lines>": -8.518193, "<metaData->": -8.518193, "<nchanged>": -8.518193, "<ncols>": -8.518193, "<numClasses>": -8.518193, "<objc/objc-runtime.h>": -8.518193, "<objc/runtime.h>": -8.518193, "<tablesWithNaturalJoin>": -8.518193, "<transaction>": -8.518193, "<wtf/StdLibExtras.h>": -8.518193, "=": -3.605538, ">": -4.174387, "?": -6.908755, "@": -5.299317, "@_": -8.518193, "@end": -7.419580, "@implementation": -7.825046, "@interface": -8.518193, "@selector": -6.908755, "A": -8.518193, "AK": -8.518193, "ASSERT": -6.320968, "AXObjectCache": -8.518193, "AltKey": -8.518193, "Any": -8.518193, "BEGIN_BLOCK_OBJC_EXCEPTIONS": -6.572283, "BOOL": -7.131898, "CONTEXT_MENUS": -8.518193, "Class": -6.215608, "Clipboard": -8.518193, "ClipboardMac": -8.518193, "ClipboardWritable": -8.518193, "Create": -8.518193, "CtrlKey": -7.825046, "CurrentEventScope": -5.879135, "DASHBOARD_SUPPORT": -8.518193, "DEFINE_STATIC_LOCAL": -8.518193, "DRAG_SUPPORT": -7.419580, "Decode": -8.518193, "Document*": -8.518193, "DragAndDrop": -8.518193, "ENABLE": -6.908755, "END_BLOCK_OBJC_EXCEPTIONS": -6.215608, "Encode": -8.518193, "Error": -8.518193, "EventHandler": -5.427150, "Frame*": -7.131898, "FrameView*": -6.908755, "HitTestResult*": -8.518193, "IMP": -6.908755, "Invalid": -7.825046, "KeyboardAccessFull": -8.518193, "KeyboardAccessTabsToLinks": -7.825046, "KeyboardEvent": -7.825046, "KeyboardEvent*": -8.518193, "KeyboardUIMode": -8.518193, "LIKE": -8.518193, "Method": -7.419580, "MouseEventWithHitTestResults": -7.131898, "Mutable": -8.518193, "NDEBUG": -7.825046, "NO": -7.419580, "NS": -7.825046, "NSApp": -7.825046, "NSArray": -8.518193, "NSBundle": -8.518193, "NSData": -7.825046, "NSDate": -7.825046, "NSDictionary": -7.825046, "NSDragPboard": -8.518193, "NSEnumerator": -8.518193, "NSEvent": -5.745604, "NSKeyDown": -7.825046, "NSKeyUp": -7.825046, "NSKeyedArchiver": -8.518193, "NSKeyedUnarchiver": -8.518193, "NSLeftMouseDown": -8.518193, "NSLeftMouseUp": -8.518193, "NSLog": -7.825046, "NSMouseMoved": -8.518193, "NSMutableString": -7.825046, "NSNotFound": -8.518193, "NSNumber": -6.726433, "NSObject": -7.825046, "NSPasteboard": -7.825046, "NSScrollView": -7.825046, "NSScrollWheel": -8.518193, "NSString": -5.473670, "NSUTF8StringEncoding": -8.518193, "NSValue": -7.825046, "NSView": -6.572283, "NSView*": -8.518193, "NULL": -7.131898, "Node*": -8.518193, "OBJC_API_VERSION": -7.825046, "ODatabase": -8.518193, "OID": -8.518193, "OOAdaptor": -7.825046, "OOArray": -5.627821, "OODB": -8.518193, "OODEBUG": -8.518193, "OODEBUG_SQL": -7.825046, "OODatabase": -5.382698, "OODictionary": -7.419580, "OODocument": -8.518193, "OOExtras": -7.825046, "OOFile": -7.825046, "OOFormat": -6.438751, "OOMetaData": -5.573754, "OONil": -8.518193, "OONull": -6.908755, "OOOODatabase": -8.518193, "OOPattern": -8.518193, "OORecord": -7.419580, "OORef": -8.518193, "OOReference": -8.518193, "OOReplace": -8.518193, "OOString": -6.215608, "OOStringArray": -6.908755, "OOValueDictionary": -7.419580, "OOView": -8.518193, "OOWarn": -7.825046, "OO_ARC": -7.825046, "OO_AUTORELEASE": -7.419580, "OO_AUTORETURNS": -7.825046, "OO_RELEASE": -6.572283, "OO_RETAIN": -8.518193, "OO_RETURNS": -8.518193, "Page*": -6.726433, "PassRefPtr": -7.825046, "PlatformKeyboardEvent": -6.726433, "PlatformMouseEvent": -6.908755, "PlatformWheelEvent": -7.825046, "Prepare": -8.518193, "ROWID": -8.518193, "RawKeyDown": -8.518193, "Register": -8.518193, "RenderObject*": -7.825046, "RetainPtr": -7.131898, "SEL": -7.131898, "SQL": -8.518193, "SQLITE_BLOB": -8.518193, "SQLITE_FLOAT": -8.518193, "SQLITE_INTEGER": -8.518193, "SQLITE_NULL": -8.518193, "SQLITE_TEXT": -8.518193, "Send": -8.518193, "Settings*": -8.518193, "Sql": -8.518193, "String": -8.518193, "Superclass": -8.518193, "TextDragDelay": -8.518193, "Unknown": -8.518193, "WTF_MAKE_NONCOPYABLE": -8.518193, "WebCore": -8.518193, "Widget*": -7.825046, "XML": -8.518193, "YES": -8.518193, "[": -3.382394, "\\": -6.033286, "]": -3.394229, "_": -8.518193, "_ROWID_": -8.518193, "_nsScrollViewScrollWheelShouldRetainSelf": -7.419580, "a": -6.572283, "aClass": -6.438751, "abstract": -8.518193, "accessKeyModifiers": -8.518193, "accessibilityEnhancedUserInterfaceEnabled": -8.518193, "adaptor": -8.518193, "adding": -8.518193, "after": -8.518193, "allKeys": -8.518193, "alloc": -5.953243, "an": -7.825046, "and": -8.518193, "any": -7.825046, "applicationIsSafari": -8.518193, "archived": -7.131898, "archivedDataWithRootObject": -8.518193, "are": -8.518193, "argp": -6.033286, "arguments": -7.419580, "array": -7.825046, "as": -7.419580, "atStart": -8.518193, "before": -8.518193, "benefit": -8.518193, "between": -8.518193, "bind": -8.518193, "bindCols": -8.518193, "bindNulls": -8.518193, "bindRecord": -8.518193, "bindResultsIntoInstancesOfClass": -8.518193, "bindToView": -8.518193, "bindings": -8.518193, "blob": -7.825046, "bool": -5.573754, "boxed": -7.825046, "break": -6.320968, "bytes": -7.131898, "c": -5.522460, "c=": -8.518193, "cOOString": -6.120297, "cOOStringArray": -8.518193, "cOOValueDictionary": -7.131898, "can": -8.518193, "case": -5.427150, "changedCols": -8.518193, "char": -7.825046, "characters": -8.518193, "childMetaData": -7.419580, "chrome": -6.726433, "class": -5.745604, "classNamed": -8.518193, "classNames": -6.908755, "class_getInstanceMethod": -7.825046, "class_getName": -6.726433, "class_getSuperclass": -7.825046, "classes": -5.745604, "clause": -8.518193, "clickCount": -6.908755, "client": -8.518193, "column": -8.518193, "columnName": -7.131898, "columnSel": -8.518193, "columns": -7.825046, "commaQuote": -8.518193, "commit": -6.726433, "commitTransaction": -7.825046, "commonColumns": -7.419580, "const": -5.879135, "context": -7.825046, "continue": -7.825046, "convert": -8.518193, "convertPoint": -8.518193, "convertScreenToBase": -8.518193, "copyJoinKeysFrom": -8.518193, "count": -8.518193, "create": -7.131898, "createDraggingClipboard": -8.518193, "createTableSQL": -8.518193, "creation": -8.518193, "currentEvent": -8.518193, "currentKeyboardEvent": -8.518193, "currentNSEvent": -6.908755, "currentNSEventSlot": -6.726433, "currentPlatformMouseEvent": -6.438751, "d": -8.518193, "data": -8.518193, "database": -6.726433, "dateWithTimeIntervalSince1970": -8.518193, "dates": -7.131898, "dbtype": -7.419580, "declareTypes": -8.518193, "decode": -8.518193, "default": -7.419580, "defaultView": -7.825046, "defined": -8.518193, "delay": -8.518193, "delegate": -7.131898, "delete": -7.131898, "deleteArray": -7.825046, "delim": -7.131898, "delimiter": -7.131898, "description": -8.518193, "determine": -8.518193, "dictionary": -7.825046, "dictionaryWithValuesForKeys": -8.518193, "do": -8.518193, "document": -6.572283, "documentView": -7.825046, "double": -8.518193, "doubleValue": -8.518193, "e": -8.518193, "else": -6.908755, "encode": -7.419580, "encoded": -8.518193, "encoding": -8.518193, "endif": -7.825046, "errcode": -8.518193, "errmsg": -8.518193, "escape": -8.518193, "etc": -8.518193, "event": -5.150897, "event.eventNumber": -8.518193, "eventActivatedView": -8.518193, "eventHandler": -6.726433, "eventMayStartDrag": -7.825046, "eventNumber": -8.518193, "exec": -6.215608, "export": -8.518193, "exportTo": -8.518193, "fakeEvent": -7.825046, "false": -5.185988, "file": -7.825046, "file.save": -8.518193, "file.string": -8.518193, "findViewInSubviews": -7.825046, "fmt": -6.320968, "focusController": -8.518193, "focusDocumentView": -8.518193, "focusNSView": -8.518193, "for": -5.427150, "forKey": -8.518193, "format": -8.518193, "frame": -7.419580, "frameHasPlatformWidget": -7.131898, "frameView": -7.131898, "free": -8.518193, "from": -6.908755, "fromView": -8.518193, "h": -6.908755, "hack": -7.825046, "handleMouseDoubleClickEvent": -8.518193, "handleMouseMoveEvent": -7.419580, "handleMousePressEvent": -7.825046, "handleMouseReleaseEvent": -7.419580, "handleWheelEvent": -7.825046, "handlingOptionTab": -7.131898, "hierarchy": -7.131898, "hitTest": -8.518193, "hoveredNode": -7.131898, "i": -5.116995, "i=": -7.419580, "id": -5.222356, "if": -4.148745, "ifdef": -7.825046, "import": -7.825046, "importFrom": -8.518193, "in": -5.573754, "indate": -7.131898, "index": -8.518193, "init": -7.419580, "initClass": -6.726433, "initPath": -7.419580, "initWithBytes": -7.419580, "initWithDouble": -8.518193, "initWithFormat": -7.419580, "initWithLongLong": -8.518193, "initiatingEvent": -7.131898, "inline": -7.419580, "insert": -6.572283, "insertArray": -7.419580, "insertWithParent": -8.518193, "insertion": -8.518193, "instances": -8.518193, "int": -5.382698, "into": -8.518193, "intoClass": -6.120297, "is": -7.131898, "isFrameView": -7.825046, "isInsert": -8.518193, "isKeyboardOptionTab": -8.518193, "isKindOfClass": -8.518193, "isMainThread": -7.419580, "isNSData": -8.518193, "isNSDate": -8.518193, "isOORef": -8.518193, "isWidget": -7.825046, "islower": -8.518193, "ivar": -7.825046, "ivarInfo": -7.131898, "ivar_getName": -8.518193, "ivar_getTypeEncoding": -8.518193, "ivars": -7.825046, "join": -8.518193, "joinFrom": -6.033286, "joinValues": -6.908755, "joinableColumns": -8.518193, "kOOExecSQL": -8.518193, "key": -5.473670, "keyEvent": -7.825046, "keyboardUIMode": -6.908755, "l": -8.518193, "lastEventIsMouseUp": -8.518193, "length": -7.825046, "list": -7.419580, "loader": -8.518193, "location": -7.825046, "locationInWindow": -8.518193, "m": -7.419580, "m_activationEventNumber": -8.518193, "m_event": -7.419580, "m_frame": -5.473670, "m_mouseDownMayStartDrag": -8.518193, "m_mouseDownView": -7.825046, "m_mouseDownWasInSubframe": -7.419580, "m_mousePressed": -7.825046, "m_savedCurrentEvent": -7.419580, "m_sendingEventToSubview": -5.879135, "mainBundle": -8.518193, "malloc": -8.518193, "mark": -8.518193, "metaData": -5.953243, "metaDataByClass": -7.825046, "metaDataForClass": -8.518193, "method": -6.908755, "method_getImplementation": -8.518193, "method_imp": -7.825046, "method_setImplementation": -7.825046, "mev": -6.726433, "mev.event": -7.419580, "modifierFlags": -7.825046, "mouseDown": -8.518193, "mouseDownViewIfStillGood": -8.518193, "mouseDragged": -8.518193, "mouseEventWithType": -8.518193, "mouseLocation": -8.518193, "mouseMoved": -7.825046, "mouseUp": -8.518193, "n": -6.215608, "name": -6.438751, "namespace": -8.518193, "naturalJoinTo": -7.825046, "needsKeyboardEventDisambiguationQuirks": -7.825046, "nextObject": -8.518193, "nil": -5.684979, "no": -8.518193, "node": -7.419580, "nodeView": -6.726433, "nodes": -8.518193, "not": -8.518193, "nsScrollViewScrollWheelShouldRetainSelf": -7.825046, "numClasses": -7.131898, "numberWithDouble": -8.518193, "numberWithInt": -8.518193, "nwhere": -8.518193, "objCType": -8.518193, "objc_getClassList": -7.825046, "objc_getRequiredClass": -8.518193, "object": -6.215608, "objectAtIndex": -8.518193, "objectEnumerator": -8.518193, "objects": -6.908755, "of": -6.438751, "oi": -7.825046, "on": -7.825046, "ooArcRetain": -7.825046, "ooOrderBy": -7.825046, "ooTableName": -7.825046, "ooTableSql": -7.825046, "ooTableTitle": -7.419580, "or": -8.518193, "order": -8.518193, "originalNSScrollViewScrollWheel": -7.131898, "out": -7.131898, "outcols": -8.518193, "owner": -8.518193, "page": -5.340139, "parent": -5.879135, "parentMetaData": -7.131898, "passMouseMoveEventToSubframe": -8.518193, "passMousePressEventToSubframe": -8.518193, "passMouseReleaseEventToSubframe": -8.518193, "passSubframeEventToSubframe": -7.419580, "passWheelEventToWidget": -8.518193, "passWidgetMouseDownEventToWidget": -7.825046, "passed": -8.518193, "pasteboard": -7.825046, "pasteboardWithName": -8.518193, "path": -6.908755, "placed": -8.518193, "platformEvent": -7.825046, "platformEvent.disambiguateKeyDownEvent": -8.518193, "platformPageClient": -7.131898, "platformWidget": -7.419580, "pointer": -8.518193, "pointerValue": -8.518193, "poll": -8.518193, "postEvent": -8.518193, "prefix": -7.131898, "prepare": -8.518193, "prepareSql": -7.419580, "present": -8.518193, "pressure": -8.518193, "private": -8.518193, "providing": -8.518193, "public": -8.518193, "qualifyNulls": -7.419580, "quote": -8.518193, "rangeOfString": -8.518193, "raw": -8.518193, "ready": -8.518193, "real": -8.518193, "record": -5.684979, "recordClass": -5.684979, "recordClassName": -8.518193, "recordSuperClass": -7.419580, "records": -8.518193, "ref": -8.518193, "reformat": -7.825046, "registerSubclassesOf": -8.518193, "registerTableClassesNamed": -8.518193, "registered": -8.518193, "reinterpret_cast": -8.518193, "relationships": -8.518193, "release": -8.518193, "renderer": -6.572283, "resetMultipleFormSubmissionProtection": -8.518193, "respondsToSelector": -6.908755, "result": -8.518193, "results": -6.908755, "results.": -8.518193, "retain": -7.419580, "retainIMP": -7.131898, "retainSEL": -7.131898, "return": -3.781994, "returned": -8.518193, "rollback": -7.131898, "rowid": -8.518193, "rows": -7.825046, "s": -6.572283, "scope": -6.726433, "scrollWheel": -7.825046, "sel_getUid": -7.825046, "select": -5.382698, "selectRecordsRelatedTo": -7.825046, "selected": -8.518193, "selector": -7.419580, "self": -4.529209, "selfRetainingNSScrollViewScrollWheel": -7.419580, "sendContextMenuEvent": -7.825046, "setFocusedFrame": -8.518193, "setNSScrollViewScrollWheelShouldRetainSelf": -7.419580, "setNilValueForKey": -8.518193, "setValue": -8.518193, "setValuesForKeysWithDictionary": -8.518193, "settings": -6.908755, "sharedColumns": -6.572283, "sharedInstance": -4.880607, "sharedInstanceForPath": -7.825046, "shouldRetain": -7.825046, "shouldRetainSelf": -7.419580, "sizeof": -8.518193, "so": -7.825046, "sql": -5.745604, "sqlite": -8.518193, "sqlite3_column_blob": -8.518193, "sqlite3_column_bytes": -7.825046, "sqlite3_column_double": -8.518193, "sqlite3_column_int64": -8.518193, "sqlite3_column_name": -8.518193, "sqlite3_column_text": -8.518193, "sqlite3_column_type": -7.825046, "startingAt": -8.518193, "static": -5.745604, "static_cast": -8.518193, "stmt": -6.320968, "store": -8.518193, "string": -8.518193, "stringForSql": -8.518193, "stringValue": -8.518193, "structure": -8.518193, "subframe": -6.120297, "subview": -7.419580, "subviews": -8.518193, "super": -7.825046, "superClass": -6.215608, "superclass": -7.825046, "superview": -7.419580, "switch": -7.419580, "t": -6.726433, "tableClass": -7.825046, "tableMetaDataByClassName": -7.825046, "tableMetaDataForClass": -6.572283, "tableName": -8.518193, "tableOfTables": -7.825046, "tableTitle": -8.518193, "tables": -8.518193, "tablesRelatedByNaturalJoinFrom": -7.825046, "tablesWithNaturalJoin": -6.726433, "tabsToAllFormControls": -8.518193, "taken": -7.825046, "target": -6.908755, "targetNode": -7.419580, "text": -7.825046, "the": -6.120297, "them": -7.825046, "timeIntervalSince1970": -8.518193, "timestamp": -7.825046, "tmpResults": -8.518193, "to": -6.572283, "toRenderWidget": -7.825046, "toTable": -7.419580, "toView": -8.518193, "tprimary": -8.518193, "transaction": -7.825046, "true": -5.522460, "type": -6.320968, "types": -8.518193, "unarchiveObjectWithData": -8.518193, "unbox": -7.131898, "unsigned": -7.825046, "until": -8.518193, "update": -7.131898, "upsert": -7.131898, "url": -7.825046, "use": -8.518193, "usesDashboardBackwardCompatibilityMode": -8.518193, "using": -7.825046, "v": -6.726433, "va_end": -7.419580, "va_list": -7.419580, "va_start": -7.419580, "value": -5.052457, "values": -5.116995, "valuesForNextRow": -8.518193, "view": -6.120297, "viewClasses": -6.726433, "views": -8.518193, "void": -5.745604, "way": -8.518193, "wheelEvent": -6.908755, "wheelEvent.isAccepted": -8.518193, "where": -8.518193, "whereClauseFor": -8.518193, "while": -7.131898, "widget": -6.320968, "window": -8.518193, "windowNumber": -7.825046, "windowView": -7.825046, "with": -7.825046, "zeroForNull": -7.131898, "{": -3.933225, "|": -7.825046, "||": -5.953243, "}": -3.974898, "~": -7.825046, }, "Objective-J": map[string]float64{ "!": -6.586861, "'": -7.973155, "(": -3.003342, ")": -3.003342, "+": -4.977423, ",": -3.348183, "-": -4.417807, "/": -6.027245, "//a": -7.973155, "//bring": -7.973155, "//create": -7.973155, "//each": -7.973155, "//finally": -7.973155, "//get": -7.973155, "//information": -7.973155, "//remove": -7.973155, "//repeat": -7.973155, "//set": -7.973155, "//setting": -7.973155, "//the": -7.280008, "//these": -7.973155, "//this": -6.874543, "//we": -6.874543, ":": -2.471897, ";": -2.720882, "</center>": -7.280008, "</p>": -7.280008, "<AppKit/AppKit.j>": -7.973155, "<AppKit/CPButton.j>": -7.973155, "<AppKit/CPView.j>": -7.973155, "<AppKit/CPWebView.j>": -7.973155, "<Foundation/CPObject.j>": -7.280008, "<Foundation/Foundation.j>": -7.973155, "<center>": -7.280008, "<img>": -7.973155, "<p>": -7.280008, "=": -3.753648, "@": -7.280008, "@end": -5.893714, "@implementation": -5.893714, "@import": -5.893714, "@selector": -6.586861, "AddToolbarItemIdentifier": -6.874543, "AppController": -6.874543, "BOOL": -6.874543, "CGPointMake": -6.874543, "CGRect": -7.280008, "CGRectCreateCopy": -7.973155, "CGRectGetHeight": -5.775931, "CGRectGetMaxY": -7.973155, "CGRectGetWidth": -6.027245, "CGRectInset": -7.973155, "CGRectMake": -5.082784, "CGRectMakeCopy": -7.973155, "CGRectMakeZero": -6.586861, "CGSizeMake": -5.334098, "CPArray": -6.874543, "CPBezierPath": -7.973155, "CPBorderlessBridgeWindowMask": -7.280008, "CPBundle": -6.586861, "CPButton": -7.973155, "CPCollectionView": -6.181396, "CPCollectionViewItem": -6.874543, "CPColor": -5.265105, "CPDictionary": -7.973155, "CPFont": -7.973155, "CPHUDBackgroundWindowMask": -7.280008, "CPImage": -5.575260, "CPImageLoadStatusCompleted": -7.973155, "CPImageView": -6.874543, "CPIndexSet": -6.874543, "CPJSONPConnection": -6.586861, "CPNotFound": -7.973155, "CPNotification": -6.874543, "CPObject": -6.874543, "CPPanel": -6.874543, "CPResizableWindowMask": -7.973155, "CPScaleProportionally": -7.973155, "CPScrollView": -7.280008, "CPSizeMake": -5.893714, "CPSlider": -7.973155, "CPString": -6.027245, "CPTextField": -6.027245, "CPToolbar": -6.874543, "CPToolbarFlexibleSpaceItemIdentifier": -7.973155, "CPToolbarItem": -7.280008, "CPURLRequest": -7.280008, "CPView": -5.575260, "CPViewHeightSizable": -6.181396, "CPViewMaxXMargin": -7.280008, "CPViewMinYMargin": -7.973155, "CPViewWidthSizable": -6.181396, "CPWebView": -7.973155, "CPWindow": -7.280008, "CPWindowBelow": -7.280008, "CreateLabel": -7.973155, "JSObject": -7.280008, "LOBoard": -7.973155, "LOInfoView": -7.280008, "MAX": -7.973155, "NO": -7.973155, "PhotoCell": -6.874543, "PhotoResizeView": -7.280008, "PhotosListCell": -7.280008, "RemoveToolbarItemIdentifier": -6.874543, "SliderToolbarItemIdentifier": -6.874543, "YES": -6.363718, "[": -2.345534, "]": -2.345534, "_bgImage": -7.280008, "_board": -6.363718, "_buttonImage": -7.280008, "_buttonPressImage": -7.280008, "_iconImage": -7.280008, "_iconView": -6.874543, "_infoContent": -6.874543, "_infoView": -6.874543, "_resetButton": -6.027245, "_webView": -6.874543, "a": -6.027245, "aCollectionView": -7.280008, "aConnection": -7.280008, "aFlag": -7.973155, "aFrame": -6.027245, "aNotification": -6.874543, "aString": -5.893714, "aToolbar": -6.586861, "actual": -7.280008, "add": -7.280008, "addImageList": -7.280008, "addSubview": -5.139942, "adjustImageSize": -7.280008, "alert": -7.973155, "allKeys": -6.586861, "alloc": -4.362238, "alpha": -6.874543, "anImage": -7.280008, "anItemIdentifier": -6.363718, "anObject": -6.586861, "and": -6.874543, "another": -7.973155, "appear": -7.973155, "appendBezierPathWithRoundedRect": -7.973155, "applicationDidFinishLaunching": -6.874543, "are": -7.973155, "array": -7.973155, "as": -6.363718, "bezierPath": -7.973155, "blackColor": -7.280008, "blue": -7.973155, "blueColor": -7.280008, "bounds": -5.265105, "by": -7.973155, "callback": -7.280008, "called": -7.973155, "cell": -7.973155, "cells": -7.280008, "choosing": -7.973155, "class": -7.973155, "collection": -5.893714, "collectionViewDidChangeSelection": -7.973155, "colorWithCalibratedWhite": -7.280008, "colorWithRed": -7.973155, "column": -7.973155, "connection": -6.874543, "content": -6.874543, "contentArea": -6.586861, "contentView": -5.139942, "copy": -7.280008, "create": -7.280008, "creating": -7.973155, "data": -6.874543, "data.photos.photo": -7.973155, "delegate": -6.363718, "didFailWithError": -7.973155, "didReceiveData": -7.973155, "different": -7.973155, "display": -7.280008, "do": -7.973155, "drawRect": -7.973155, "duplicate": -7.973155, "else": -6.363718, "encodeURIComponent": -7.973155, "error": -6.874543, "fill": -7.973155, "first": -7.973155, "firstIndex": -7.280008, "flag": -6.586861, "flickr": -7.973155, "flickr.": -7.973155, "flickr_labelWithText": -6.874543, "for": -6.586861, "forKey": -7.973155, "forward": -7.973155, "frame": -7.280008, "from": -7.280008, "full": -7.973155, "function": -7.280008, "gameWindow": -6.363718, "given": -7.973155, "grayColor": -7.973155, "green": -7.973155, "greenColor": -7.973155, "highlightView": -5.334098, "highlighted": -6.586861, "id": -6.586861, "identifier": -7.973155, "if": -5.408206, "image": -5.670570, "imageDidLoad": -7.973155, "imageView": -5.575260, "images": -7.280008, "indexOfObject": -7.280008, "indexSet": -7.973155, "indexSetWithIndex": -7.280008, "infoWindow": -6.181396, "init": -7.280008, "initInfoWindow": -7.280008, "initWithContentRect": -6.586861, "initWithContentsOfFile": -5.775931, "initWithFrame": -4.837661, "initWithItemIdentifier": -7.973155, "inside": -7.973155, "interesting": -7.973155, "is": -6.874543, "it": -6.363718, "item": -6.874543, "itemForItemIdentifier": -7.973155, "its": -7.973155, "javascript": -7.973155, "key": -7.280008, "label": -4.605860, "lastIdentifier": -6.586861, "list": -7.973155, "listCollectionView": -5.082784, "listIndex": -6.874543, "listScrollView": -6.363718, "ll": -7.280008, "loadHTMLString": -7.973155, "loadStatus": -7.973155, "mainBundle": -6.586861, "make": -7.973155, "manages": -7.973155, "many": -7.973155, "metaDataArea": -6.586861, "method": -7.280008, "methods": -6.874543, "most": -7.973155, "navigationArea": -6.363718, "need": -7.973155, "needs": -7.973155, "network": -7.280008, "new": -7.973155, "newSize": -6.363718, "nextIndex": -7.280008, "nil": -7.280008, "objectAtIndex": -7.973155, "objectForKey": -7.973155, "occurred": -7.973155, "of": -7.280008, "on": -7.280008, "one": -7.973155, "orderFront": -6.363718, "our": -6.874543, "path": -6.874543, "pathForResource": -6.586861, "photo": -6.363718, "photo.farm": -7.280008, "photo.id": -7.280008, "photo.secret": -7.280008, "photo.server": -7.280008, "photoItem": -6.874543, "photos": -6.874543, "photosCollectionView": -5.488249, "photosListItem": -6.874543, "photosets": -5.893714, "place": -7.973155, "positioned": -7.280008, "process": -7.973155, "prompt": -7.280008, "prototype": -6.874543, "put": -7.973155, "r": -7.973155, "redColor": -7.973155, "relativeTo": -7.280008, "remove": -7.280008, "removeFromSuperview": -7.280008, "removeImageListWithIdentifier": -7.280008, "removeObjectForKey": -7.973155, "represent": -7.973155, "request": -6.181396, "requestWithURL": -7.280008, "resetBoard": -7.280008, "return": -5.775931, "returned": -7.280008, "returns": -7.973155, "returns.": -7.973155, "rootWindow": -6.874543, "s": -7.973155, "screen": -7.280008, "scroll": -7.973155, "scrollView": -6.181396, "select": -7.973155, "selectionIndexes": -7.280008, "self": -4.507420, "sendRequest": -7.280008, "sender": -6.586861, "set": -7.973155, "setAction": -6.586861, "setAlternateImage": -6.874543, "setAutohidesScrollers": -7.280008, "setAutoresizingMask": -5.775931, "setBackgroundColor": -5.893714, "setBordered": -7.973155, "setContent": -6.874543, "setDelegate": -6.586861, "setDocumentView": -7.973155, "setFill": -7.973155, "setFloatingPanel": -7.280008, "setFont": -7.973155, "setFrame": -7.973155, "setFrameOrigin": -6.874543, "setHasShadow": -7.973155, "setImage": -5.893714, "setImageScaling": -7.973155, "setIntValue": -7.973155, "setItemPrototype": -7.280008, "setLabel": -6.874543, "setMaxItemSize": -6.874543, "setMaxNumberOfColumns": -7.973155, "setMaxSize": -6.874543, "setMaxValue": -7.973155, "setMinItemSize": -6.874543, "setMinSize": -6.874543, "setMinValue": -7.973155, "setObject": -7.973155, "setRepresentedObject": -7.280008, "setSelected": -7.280008, "setSelectionIndexes": -6.874543, "setStringValue": -7.280008, "setTarget": -6.874543, "setTextColor": -7.280008, "setTextShadowColor": -6.586861, "setTextShadowOffset": -7.280008, "setTitle": -7.973155, "setVerticalMargin": -7.973155, "setView": -6.874543, "setting": -7.973155, "should": -7.973155, "show": -7.973155, "single": -7.280008, "size": -5.893714, "sizeToFit": -7.280008, "slider": -6.181396, "so": -7.973155, "string": -6.586861, "styleMask": -6.586861, "super": -7.973155, "systemFontOfSize": -7.973155, "tag": -7.973155, "take": -7.973155, "tell": -7.973155, "that": -7.973155, "the": -4.837661, "theWindow": -6.586861, "then": -7.973155, "thing": -7.973155, "this": -6.874543, "thumbForFlickrPhoto": -7.280008, "time": -7.973155, "times": -7.973155, "to": -6.363718, "toolbar": -6.586861, "toolbarAllowedItemIdentifiers": -7.973155, "toolbarDefaultItemIdentifiers": -7.280008, "toolbarItem": -4.977423, "two": -7.973155, "up": -7.280008, "urlForFlickrPhoto": -7.973155, "urls": -7.973155, "use": -7.973155, "user": -7.973155, "value": -7.973155, "var": -4.539168, "vertical": -7.973155, "view": -5.893714, "view.": -7.973155, "void": -5.139942, "want": -7.973155, "we": -6.586861, "what": -7.973155, "when": -7.973155, "which": -7.973155, "whiteColor": -6.363718, "will": -6.363718, "willBeInsertedIntoToolbar": -7.973155, "window": -7.280008, "with": -7.280008, "withIdentifier": -7.280008, "xRadius": -7.973155, "yRadius": -7.973155, "{": -4.188966, "|": -6.027245, "}": -4.188966, }, "Omgrofl": map[string]float64{ "!": -4.094345, ",": -4.094345, "Hello": -4.094345, "World": -4.094345, "brb": -4.094345, "iz": -1.696449, "liek": -4.094345, "lmao": -4.094345, "lol": -1.455287, "lool": -2.484907, "loool": -2.302585, "rofl": -1.529395, "stfu": -4.094345, "t": -4.094345, "w": -4.094345, "wtf": -4.094345, }, "Opa": map[string]float64{ "(": -2.420368, ")": -2.420368, ",": -2.197225, "-": -3.806662, "/h": -3.113515, ":": -3.113515, "<": -2.420368, "=": -3.806662, ">": -2.197225, "Hello": -3.113515, "Server.http": -3.806662, "Server.one_page_server": -3.806662, "Server.start": -3.806662, "function": -3.806662, "h": -3.113515, "page": -3.806662, "server": -3.806662, "title": -3.806662, "world": -3.113515, "{": -3.113515, "}": -3.113515, }, "Opal": map[string]float64{ "+": -2.484907, ",": -1.098612, "=": -2.197225, "[": -2.197225, "]": -2.197225, "alert": -3.583519, "finishes": -3.583519, "finishes.sample": -3.583519, "middles": -3.583519, "middles.sample": -3.583519, "qualifiers": -3.583519, "qualifiers.sample": -3.583519, "starts": -3.583519, "starts.sample": -3.583519, }, "OpenCL": map[string]float64{ "#define": -4.412798, "#endif": -5.105945, "#ifndef": -5.105945, "(": -2.215574, ")": -2.215574, "*": -3.496508, "*x": -5.105945, "+": -3.719651, ",": -3.026504, "-": -5.105945, "/": -5.105945, ":": -3.719651, ";": -2.621039, "<": -5.105945, "=": -3.314186, ">": -5.105945, "CLK_LOCAL_MEM_FENCE": -5.105945, "FFTW_ESTIMATE": -5.105945, "FFTW_FORWARD": -5.105945, "FOO": -5.105945, "ZERO": -4.007333, "\\": -5.105945, "__global": -5.105945, "__kernel": -5.105945, "__local": -5.105945, "barrier": -5.105945, "cl": -4.412798, "const": -3.719651, "d": -5.105945, "double": -4.007333, "fftwf_complex": -4.412798, "fftwf_destroy_plan": -5.105945, "fftwf_execute": -5.105945, "fftwf_plan": -5.105945, "fftwf_plan_dft_": -5.105945, "float": -4.007333, "foo": -5.105945, "foo_t": -4.007333, "for": -5.105945, "if": -5.105945, "int": -4.007333, "n": -3.719651, "nops": -4.007333, "op": -4.007333, "p": -4.007333, "realTime": -4.412798, "return": -5.105945, "run_fftw": -5.105945, "t": -3.719651, "typedef": -5.105945, "uint": -5.105945, "void": -5.105945, "x": -3.496508, "y": -3.719651, "{": -3.719651, "}": -3.719651, }, "OpenEdge ABL": map[string]float64{ "&": -4.440482, "(": -3.233881, ")": -3.233881, "+": -2.805068, ",": -4.467150, "-": -3.067433, ".": -3.829573, "/": -7.384921, ":": -3.274047, "=": -3.265884, ">": -8.078068, "?": -4.900014, "ABLDateTimeToEmail": -6.286308, "ABLTimeZoneToString": -7.384921, "ABSOLUTE": -8.078068, "ALERT": -8.078068, "AND": -6.979456, "AS": -3.545468, "ASSIGN": -3.524191, "AVAILABLE": -7.384921, "BASE": -8.078068, "BEGINS": -6.979456, "BOX.": -8.078068, "BREAK": -5.680173, "BY": -5.593161, "BYTES": -7.384921, "CAN": -5.439011, "CAST": -7.384921, "CHARACTER": -3.873375, "CHARACTER.": -8.078068, "CHR": -6.691774, "CLASS": -7.384921, "CLASS.": -7.384921, "CLOSE.": -8.078068, "CONSTRUCTOR": -8.078068, "CONSTRUCTOR.": -8.078068, "COPY": -6.691774, "CR": -7.384921, "CREATE": -5.305479, "ConvertDataToBase": -6.979456, "DATETIME": -5.880843, "DAY": -8.078068, "DEFAULT_MIME_BOUNDARY": -7.384921, "DEFINE": -4.271405, "DELETE": -8.078068, "DESTRUCTOR": -8.078068, "DESTRUCTOR.": -8.078068, "DO": -4.819971, "Data": -5.775483, "Data.": -7.384921, "EACH": -5.513119, "ECHO.": -8.078068, "ELSE": -5.513119, "ENCODE": -8.078068, "END": -4.316868, "END.": -4.364496, "EQ": -5.033545, "ERROR": -5.880843, "ERROR.": -6.691774, "EXTENT": -8.078068, "Email": -7.384921, "EmailClient.Util": -8.078068, "Encode": -6.468630, "Encode.": -8.078068, "FALSE.": -8.078068, "FIELD": -5.244855, "FILE": -4.900014, "FINAL": -8.078068, "FIND": -5.439011, "FIRST": -5.305479, "FOR": -5.513119, "FROM": -6.691774, "FULL": -5.880843, "FUNCTION": -8.078068, "FUNCTION.": -8.078068, "GET": -6.286308, "HAS": -6.691774, "IF": -3.950933, "IMPORT": -8.078068, "INDEX": -5.775483, "INFO": -5.370018, "INITIAL": -5.680173, "INPUT": -4.206867, "INTEGER": -6.286308, "INTEGER.": -8.078068, "INTERFACE": -8.078068, "INTERFACE.": -8.078068, "IXPK_ttBCCRecipients": -8.078068, "IXPK_ttCCRecipients": -8.078068, "IXPK_ttDeliveryReceiptRecipients": -8.078068, "IXPK_ttReadReceiptRecipients": -8.078068, "IXPK_ttReplyToRecipients": -8.078068, "IXPK_ttSenders": -8.078068, "IXPK_ttToRecipients": -8.078068, "LAST": -5.680173, "LENGTH": -6.979456, "LF": -6.979456, "LOB": -6.691774, "LOGICAL": -6.979456, "LOGICAL.": -8.078068, "LONGCHAR": -5.775483, "MEMPTR": -6.979456, "MESSAGE": -6.468630, "METHOD": -4.440482, "METHOD.": -4.522720, "MODULO": -8.078068, "MONTH": -8.078068, "MTIME": -8.078068, "NAME": -6.979456, "NE": -5.305479, "NEW": -7.384921, "NO": -4.316868, "NOT": -4.819971, "OBJECT": -6.132158, "OPSYS": -8.078068, "Object": -8.078068, "PARAMETER": -6.979456, "PATHNAME": -5.880843, "POOL": -7.384921, "PRIVATE": -4.987025, "PROCEDURE": -7.384921, "PROCEDURE.": -7.384921, "PUBLIC": -4.389188, "PUT": -8.078068, "Progress.Lang.*.": -6.979456, "QUOTES": -4.644081, "READ": -8.078068, "RECORDS": -6.691774, "RETURN": -4.987025, "RETURN.": -8.078068, "RETURNS": -8.078068, "ReadSocketResponse": -8.078068, "SCOPED": -6.691774, "SELF": -6.691774, "SET": -6.468630, "SIZE": -6.468630, "STATIC": -6.468630, "STATUS": -6.286308, "STRING": -6.132158, "SUBSTRING": -8.078068, "SUPER": -8.078068, "TABLE": -5.593161, "TEMP": -5.593161, "THEN": -3.950933, "THIS": -8.078068, "THROUGH": -8.078068, "TIMEZONE": -8.078068, "TO": -6.468630, "TRUE.": -7.384921, "TRUNCATE": -7.384921, "TYPE": -6.979456, "TZ": -5.998626, "UNDO": -5.998626, "UNDO.": -4.676871, "UNFORMATTED": -8.078068, "USE": -7.384921, "USING": -6.979456, "VALID": -8.078068, "VARIABLE": -4.676871, "VIEW": -8.078068, "VOID": -4.819971, "WHERE": -5.439011, "WIDGET": -7.384921, "WRITE": -8.078068, "YEAR": -8.078068, "[": -7.384921, "]": -7.384921, "addAttachment": -8.078068, "addBCCRecipient": -7.384921, "addCCRecipient": -7.384921, "addDeliveryReceiptRecipient": -7.384921, "addReadReceiptRecipient": -7.384921, "addReplyToRecipient": -7.384921, "addSender": -7.384921, "addTextAttachment": -8.078068, "addToRecipient": -7.384921, "ascii": -7.384921, "cEmailAddress": -6.132158, "cEmailAddress.": -6.132158, "cFileName": -8.078068, "cHostname": -8.078068, "cHostname.": -7.384921, "cImportance": -6.691774, "cMimeBoundary": -6.132158, "cMonthMap": -7.384921, "cNewLine": -5.187696, "cNewLine.": -5.998626, "cPriority": -6.691774, "cRealName": -6.132158, "cRecipients": -5.133629, "cRecipients.": -8.078068, "cReturnData": -3.545468, "cReturnData.": -8.078068, "cSensitivity": -6.691774, "cSubject": -6.979456, "dttmtzExpireDate": -6.691774, "dttmtzReplyByDate": -6.691774, "dttmtzSentDate": -6.691774, "email.Email": -7.384921, "email.LongcharWrapper": -6.691774, "email.SendEmailAlgorithm": -6.691774, "email.SendEmailSocket": -8.078068, "email.Util": -6.468630, "getHeaders": -8.078068, "getHostname": -8.078068, "getLongchar": -7.384921, "getPayload": -8.078068, "getRecipients": -8.078068, "handleResponse": -8.078068, "hostname": -8.078068, "i": -6.979456, "ipcBodyFile": -7.384921, "ipcBodyFile.": -8.078068, "ipcBodyText": -8.078068, "ipcBodyText.": -8.078068, "ipcEmailAddress": -4.522720, "ipcEmailAddress.": -6.132158, "ipcFileName": -6.286308, "ipcFileName.": -7.384921, "ipcImportance": -8.078068, "ipcImportance.": -8.078068, "ipcMimeBoundary": -8.078068, "ipcMimeBoundary.": -8.078068, "ipcPriority": -8.078068, "ipcPriority.": -8.078068, "ipcRealName": -6.132158, "ipcRealName.": -6.132158, "ipcSensitivity": -8.078068, "ipcSensitivity.": -8.078068, "ipcSubject": -8.078068, "ipcSubject.": -8.078068, "ipdtDateTime": -7.384921, "ipdttmtzExpireDate": -8.078068, "ipdttmtzExpireDate.": -8.078068, "ipdttmtzReplyByDate": -8.078068, "ipdttmtzReplyByDate.": -8.078068, "ipdttmtzSentDate": -8.078068, "ipdttmtzSentDate.": -8.078068, "ipdttzDateTime": -6.286308, "ipiTimeZone": -6.979456, "iplBase": -7.384921, "iplcBodyText": -8.078068, "iplcBodyText.": -8.078068, "iplcNonEncodedData": -7.384921, "ipobjEmail": -8.078068, "ipobjSendEmailAlgorithm": -6.979456, "ipobjSendEmailAlgorithm.": -8.078068, "lBase": -8.078068, "lBodyIsBase": -6.691774, "lcBody": -5.998626, "lcData": -8.078068, "lcPostBase": -6.691774, "lcPreBase": -6.691774, "lcReturnData": -5.305479, "lcReturnData.": -7.384921, "lcTemp": -6.286308, "mptrAttachments": -8.078068, "mptrPostBase": -6.691774, "newState": -7.384921, "newState.": -8.078068, "objSendEmailAlg": -7.384921, "objSendEmailAlgorithm": -6.691774, "pstring": -6.691774, "pstring.": -8.078068, "send": -8.078068, "sendEmail": -7.384921, "setBodyEncoding": -8.078068, "setBodyFile": -8.078068, "setBodyText": -7.384921, "setExpireDate": -8.078068, "setImportance": -8.078068, "setMimeBoundary": -8.078068, "setPriority": -8.078068, "setReplyByDate": -8.078068, "setSendEmailAlgorithm": -8.078068, "setSensitivity": -8.078068, "setSentDate": -8.078068, "setSubject": -8.078068, "str": -6.979456, "ttAttachments": -6.691774, "ttAttachments.": -7.384921, "ttAttachments.cFileName": -7.384921, "ttAttachments.lBase": -6.979456, "ttAttachments.lcData": -6.286308, "ttBCCRecipients": -6.468630, "ttBCCRecipients.": -7.384921, "ttBCCRecipients.cEmailAddress": -5.775483, "ttBCCRecipients.cEmailAddress.": -6.979456, "ttBCCRecipients.cRealName": -7.384921, "ttCCRecipients": -6.468630, "ttCCRecipients.": -7.384921, "ttCCRecipients.cEmailAddress": -5.775483, "ttCCRecipients.cEmailAddress.": -6.979456, "ttCCRecipients.cRealName": -7.384921, "ttDeliveryReceiptRecipients": -6.468630, "ttDeliveryReceiptRecipients.": -7.384921, "ttDeliveryReceiptRecipients.cEmailAddress": -6.132158, "ttDeliveryReceiptRecipients.cEmailAddress.": -8.078068, "ttDeliveryReceiptRecipients.cRealName": -6.979456, "ttReadReceiptRecipients": -6.468630, "ttReadReceiptRecipients.": -7.384921, "ttReadReceiptRecipients.cEmailAddress": -6.132158, "ttReadReceiptRecipients.cEmailAddress.": -8.078068, "ttReadReceiptRecipients.cRealName": -6.979456, "ttReplyToRecipients": -6.468630, "ttReplyToRecipients.": -7.384921, "ttReplyToRecipients.cEmailAddress": -6.132158, "ttReplyToRecipients.cEmailAddress.": -8.078068, "ttReplyToRecipients.cRealName": -6.979456, "ttSenders": -6.468630, "ttSenders.": -7.384921, "ttSenders.cEmailAddress": -5.775483, "ttSenders.cEmailAddress.": -7.384921, "ttSenders.cRealName": -6.468630, "ttToRecipients": -6.468630, "ttToRecipients.": -7.384921, "ttToRecipients.cEmailAddress": -5.880843, "ttToRecipients.cEmailAddress.": -7.384921, "ttToRecipients.cRealName": -6.468630, "us": -7.384921, "v": -8.078068, "vState": -7.384921, "vbuffer": -5.880843, "vlength": -6.468630, "vstate": -8.078068, "vstatus": -8.078068, "{": -4.551707, "}": -4.551707, "~": -6.691774, }, "OpenRC runscript": map[string]float64{ "!": -3.871201, "#": -3.871201, "$": -3.178054, "(": -3.178054, ")": -3.178054, "-": -1.925291, "/sbin/openrc": -3.871201, "=": -2.261763, "?": -3.871201, "HUP": -3.871201, "SHEBANG#!openrc": -3.871201, "command": -3.178054, "command_args": -3.871201, "daemon": -3.871201, "depend": -3.871201, "description": -3.871201, "ebegin": -3.871201, "eend": -3.871201, "exec": -3.871201, "extra_started_commands": -3.871201, "localmount": -3.871201, "logger": -3.871201, "need": -3.871201, "reload": -3.871201, "run": -3.871201, "signal": -3.871201, "start": -3.871201, "start_stop_daemon_args": -3.871201, "stop": -3.871201, "use": -3.871201, "{": -3.178054, "}": -3.178054, }, "OpenSCAD": map[string]float64{ "$": -4.553877, "(": -2.155982, ")": -2.155982, ",": -1.781288, ";": -2.762117, "=": -2.155982, "[": -2.944439, "]": -2.944439, "center": -3.455265, "cube": -4.553877, "cylinder": -3.860730, "difference": -4.553877, "fn": -4.553877, "h": -3.860730, "r": -2.944439, "sphere": -3.860730, "translate": -3.167583, "true": -3.455265, "union": -4.553877, "{": -3.860730, "}": -3.860730, }, "Org": map[string]float64{ "!": -6.023448, "#": -3.458498, "%": -5.330300, "(": -3.625552, ")": -3.625552, "*": -4.924835, "**": -6.023448, "+": -3.458498, ",": -4.637153, "-": -2.765351, ".": -6.023448, ".to_html": -6.023448, ":": -2.285778, "<": -6.023448, "=": -3.458498, ">": -6.023448, "?": -6.023448, "@": -6.023448, "@page.status": -6.023448, "A": -6.023448, "AUTHOR": -6.023448, "B": -6.023448, "BEGIN_EXAMPLE": -5.330300, "Back": -6.023448, "Brian": -6.023448, "C": -6.023448, "CANCELED": -6.023448, "CATEGORY": -6.023448, "Check": -6.023448, "Create": -6.023448, "Currently": -6.023448, "DONE": -6.023448, "Description": -6.023448, "Dewey": -6.023448, "EMAIL": -6.023448, "END_EXAMPLE": -6.023448, "Filters.register": -6.023448, "Fix": -6.023448, "Fixed": -6.023448, "For": -6.023448, "H": -6.023448, "HIDE": -6.023448, "HTML": -5.330300, "HTML.": -6.023448, "Helpful": -6.023448, "History": -6.023448, "INPROGRESS": -6.023448, "In": -6.023448, "LANGUAGE": -6.023448, "LaTeX": -6.023448, "Make": -6.023448, "OPTIONS": -6.023448, "Orgmode": -6.023448, "PRIORITIES": -6.023448, "Parser.new": -6.023448, "Proper": -6.023448, "Ruby": -6.023448, "SEQ_TODO": -6.023448, "STARTUP": -6.023448, "See": -6.023448, "Status": -6.023448, "TAGS": -6.023448, "TITLE": -6.023448, "TODO": -6.023448, "TeX": -6.023448, "The": -4.924835, "This": -5.330300, "Under": -6.023448, "Update": -6.023448, "Version": -6.023448, "WAITING": -6.023448, "Webby": -4.924835, "Worg": -6.023448, "Write": -6.023448, "You": -6.023448, "\\": -6.023448, "^": -6.023448, "a": -4.637153, "align": -6.023448, "all": -6.023448, "already": -6.023448, "as": -6.023448, "bdewey@gmail.com": -6.023448, "bugs": -6.023448, "bullet.": -6.023448, "c": -6.023448, "c@": -6.023448, "cannot": -6.023448, "class": -6.023448, "code": -6.023448, "content.": -5.330300, "conversion": -6.023448, "conversion.": -6.023448, "convert": -6.023448, "create": -6.023448, "created": -6.023448, "created_at": -6.023448, "creates": -6.023448, "customize": -6.023448, "d": -5.330300, "development": -6.023448, "do": -5.330300, "does": -6.023448, "easy.": -6.023448, "en": -6.023448, "end": -6.023448, "erb": -6.023448, "example": -6.023448, "extracting": -6.023448, "f": -5.330300, "file": -6.023448, "files": -6.023448, "files.": -6.023448, "filter": -4.924835, "first": -6.023448, "fold": -6.023448, "folder": -6.023448, "for": -4.924835, "from": -6.023448, "gem": -6.023448, "gets": -6.023448, "handle": -6.023448, "have": -6.023448, "hidestars": -6.023448, "i": -6.023448, "in": -5.330300, "indented": -6.023448, "input": -4.924835, "install": -6.023448, "installed": -6.023448, "into": -6.023448, "is": -4.414010, "it": -6.023448, "items.": -6.023448, "last": -6.023448, "lib/": -6.023448, "library": -6.023448, "list": -6.023448, "lognotestate": -6.023448, "makes": -6.023448, "mode": -5.330300, "most": -6.023448, "much": -6.023448, "multi": -6.023448, "n": -6.023448, "need": -6.023448, "new": -5.330300, "nil": -4.637153, "nodlcheck": -6.023448, "not": -6.023448, "now": -6.023448, "num": -6.023448, "oddeven": -6.023448, "of": -5.330300, "opposed": -6.023448, "optimized": -6.023448, "org": -3.720862, "orgfile": -6.023448, "orgmode": -4.924835, "orgmode.rb": -6.023448, "output": -5.330300, "paragraph": -5.330300, "parser": -6.023448, "parsing": -6.023448, "part": -6.023448, "register": -6.023448, "require": -6.023448, "routines": -6.023448, "ruby": -4.231688, "rubygems": -5.330300, "s": -6.023448, "significant": -6.023448, "site": -6.023448, "site.": -6.023448, "skip": -6.023448, "status": -6.023448, "sudo": -6.023448, "supplied": -6.023448, "support": -6.023448, "sure": -6.023448, "t": -3.720862, "tags": -5.330300, "textile": -6.023448, "textile.": -6.023448, "that": -6.023448, "the": -4.231688, "there": -6.023448, "thing": -5.330300, "this": -5.330300, "to": -3.944006, "toc": -5.330300, "today": -6.023448, "translate": -6.023448, "u": -6.023448, "use": -6.023448, "ve": -6.023448, "w": -6.023448, "w@": -6.023448, "will": -6.023448, "worg": -6.023448, "wouldn": -6.023448, "you": -5.330300, "your": -5.330300, "{": -6.023448, "|": -4.637153, }, "Ox": map[string]float64{ "!": -6.367329, "#include": -6.367329, "&": -6.367329, "&&": -7.060476, "'": -7.060476, "(": -2.306886, ")": -2.306886, "*": -5.674182, "*AV": -7.060476, "*CV": -6.367329, "*M_PI": -7.060476, "*upper": -7.060476, "+": -4.575570, ",": -2.571840, "-": -3.693181, ".": -5.961864, ".*stayout": -7.060476, ".Inf": -6.367329, ".NaN": -7.060476, "/": -6.367329, "//encode": -7.060476, "//free": -7.060476, "//receive": -7.060476, "//time": -7.060476, "//timeall": -7.060476, "//timelik": -7.060476, "/mhdet": -7.060476, "/sigu": -7.060476, ":": -3.210329, ";": -2.571840, "<": -5.268717, "</DD>": -7.060476, "</pre>": -7.060476, "<DD>": -7.060476, "<br>": -7.060476, "<pre>": -7.060476, "=": -2.797796, ">": -4.116037, "?": -5.961864, "ANY_TAG": -7.060476, "BDP": -6.367329, "BayesianDP": -7.060476, "Buffer": -4.981035, "CV": -5.114566, "CreateSpaces": -7.060476, "CstrServer": -5.961864, "DONOTUSECLIENT": -6.367329, "DataN": -7.060476, "DataSet": -7.060476, "DataT": -7.060476, "Decode": -7.060476, "Determined": -7.060476, "EM": -5.961864, "Encode": -5.961864, "EndogenousStates": -7.060476, "Execute": -5.674182, "FALSE": -7.060476, "FeasA": -6.367329, "FirmEntry": -5.268717, "Free": -7.060476, "GenerateSample": -6.367329, "GetData": -7.060476, "ID": -6.367329, "ImaiJainChing": -7.060476, "Initialize": -5.961864, "K": -5.961864, "KN": -7.060476, "KP": -4.421419, "Kapital": -5.674182, "Kb": -5.451038, "Kbar*vals/": -7.060476, "Kbe": -6.367329, "Kparams": -7.060476, "L": -6.367329, "LOUD": -7.060476, "LaggedAction": -7.060476, "Lagrangian": -7.060476, "Loop": -6.367329, "N": -5.451038, "Negative": -7.060476, "Nparams": -5.268717, "ObjClient": -5.674182, "ObjServer": -5.114566, "P": -5.674182, "PDF": -7.060476, "ParallelObjective": -7.060476, "ParticleLogLikeli": -7.060476, "Positive": -5.674182, "Print": -7.060476, "Probability": -7.060476, "QUIET": -6.367329, "Reachable": -6.367329, "Recv": -7.060476, "Run": -7.060476, "Rust": -7.060476, "STOP_TAG": -7.060476, "SepServer": -5.961864, "Server": -7.060476, "SetDelta": -7.060476, "SigU": -6.367329, "Simulate": -7.060476, "StDeviations": -7.060476, "StateVariable": -7.060476, "TRUE": -7.060476, "Tag": -7.060476, "Transit": -7.060476, "Utility": -7.060476, "ValueIteration": -7.060476, "Vec": -7.060476, "Volume": -5.961864, "[": -3.841601, "]": -3.841601, "^": -5.961864, "actual": -6.367329, "array": -7.060476, "basetag": -6.367329, "const": -5.674182, "d": -6.367329, "data": -5.674182, "decl": -5.961864, "delta": -7.060476, "determinant": -7.060476, "dws": -5.961864, "dws/m_cPar": -7.060476, "ecost": -5.961864, "ending": -7.060476, "ent": -5.451038, "ent*CV": -7.060476, "entrant": -4.981035, "exit": -6.367329, "exit.pos": -7.060476, "exp": -7.060476, "fg": -7.060476, "for": -7.060476, "fy": -7.060476, "greater": -7.060476, "if": -5.451038, "iml": -7.060476, "imod": -7.060476, "invert": -7.060476, "ip": -7.060476, "is": -7.060476, "isclass": -7.060476, "it": -5.451038, "it.": -7.060476, "kcoef": -5.961864, "length": -7.060476, "log": -6.367329, "loglikeli": -5.674182, "mData": -5.674182, "m_asY": -7.060476, "m_cMS": -7.060476, "m_cPar": -5.674182, "m_cS": -7.060476, "m_cSS": -7.060476, "m_cX": -7.060476, "m_cY": -7.060476, "m_mMSbE.": -6.367329, "m_mSSbE": -7.060476, "m_oApprox.FastInterpolate": -7.060476, "m_vSss": -7.060476, "m_vXss": -7.060476, "mbas": -7.060476, "mhdet": -6.367329, "mhi": -5.961864, "ms": -4.981035, "mss": -5.961864, "mx": -5.114566, "mxm": -7.060476, "mxsl": -7.060476, "mxsu": -7.060476, "my": -5.674182, "new": -4.116037, "nldge": -7.060476, "no": -7.060476, "nxtmsgsz": -6.367329, "obj": -4.170105, "obj.K": -7.060476, "obj.Kvar": -7.060476, "obj.Kvar.v": -7.060476, "obj.L": -7.060476, "obj.NvfuncTerms": -6.367329, "obj.cur": -7.060476, "obj.cur.V": -7.060476, "obj.nfree": -7.060476, "obj.nstruct": -6.367329, "obj.p": -6.367329, "ones": -7.060476, "outer": -7.060476, "oxwarning": -7.060476, "p": -6.367329, "param": -7.060476, "parameter": -7.060476, "println": -6.367329, "probn": -6.367329, "rann": -7.060476, "resample": -7.060476, "return": -4.757891, "rows": -7.060476, "sige": -6.367329, "sigu": -6.367329, "sizer": -7.060476, "sqrt": -7.060476, "stayout": -5.961864, "sumc": -7.060476, "than": -7.060476, "the": -7.060476, "this.KP": -7.060476, "this.entrant": -7.060476, "this.exit": -7.060476, "this.obj": -6.367329, "time": -6.367329, "timeall": -7.060476, "timefun": -7.060476, "timeint": -7.060476, "timelik": -7.060476, "timer": -5.961864, "timeran": -7.060476, "timeres": -7.060476, "tprob": -5.451038, "tprob.*": -7.060476, "u": -6.367329, "upper": -5.961864, "v": -6.367329, "vals": -7.060476, "vector": -7.060476, "vfunc": -6.367329, "vw": -5.268717, "vw/dws": -7.060476, "vwi": -5.674182, "vxm": -7.060476, "vxs": -7.060476, "zeros": -5.674182, "{": -3.969434, "|": -7.060476, "}": -3.969434, "~": -6.367329, }, "Oxygene": map[string]float64{ "$": -3.832980, "(": -3.832980, ")": -3.832980, "-": -4.056123, ".": -4.749271, "/": -3.650658, ";": -4.749271, "</AllowGlobals>": -5.442418, "</AllowLegacyCreate>": -5.442418, "</AllowLegacyOutParams>": -5.442418, "</ApplicationIcon>": -5.442418, "</AssemblyName>": -5.442418, "</Configuration>": -5.442418, "</DefineConstants>": -5.442418, "</EmbeddResource>": -5.442418, "</EnableAsserts>": -5.442418, "</GenerateMDB>": -5.442418, "</GeneratePDB>": -5.442418, "</Generator>": -4.749271, "</HintPath>": -3.832980, "</ItemGroup>": -4.749271, "</None>": -5.442418, "</OutputPath>": -4.749271, "</OutputType>": -5.442418, "</Private>": -5.442418, "</Project>": -5.442418, "</ProjectGuid>": -5.442418, "</PropertyGroup>": -4.343805, "</Reference>": -3.832980, "</RootNamespace>": -5.442418, "<AllowGlobals>": -5.442418, "<AllowLegacyCreate>": -5.442418, "<AllowLegacyOutParams>": -5.442418, "<ApplicationIcon>": -5.442418, "<AssemblyName>": -5.442418, "<Compile>": -4.056123, "<Configuration>": -5.442418, "<Content>": -5.442418, "<DefineConstants>": -5.442418, "<EmbeddResource>": -5.442418, "<EnableAsserts>": -5.442418, "<GenerateMDB>": -5.442418, "<GeneratePDB>": -5.442418, "<Generator>": -4.749271, "<HintPath>": -3.832980, "<Import>": -5.442418, "<ItemGroup>": -4.749271, "<None>": -5.442418, "<OutputPath>": -4.749271, "<OutputType>": -5.442418, "<Private>": -5.442418, "<Project>": -5.442418, "<ProjectGuid>": -5.442418, "<PropertyGroup>": -4.343805, "<Reference>": -3.832980, "<RootNamespace>": -5.442418, "=": -2.552046, ">": -2.609204, "App.ico": -5.442418, "Assemblies": -5.442418, "B": -5.442418, "BD": -5.442418, "C": -4.343805, "CAF": -5.442418, "CEE": -5.442418, "Condition": -4.343805, "Configuration": -4.749271, "D": -5.442418, "DEBUG": -5.442418, "Debug": -4.749271, "DefaultTargets": -5.442418, "E": -5.442418, "False": -4.056123, "Framework": -3.832980, "Include": -2.957511, "Loops": -4.749271, "Microsoft": -5.442418, "Oxygene": -4.749271, "ProgramFiles": -5.442418, "Project": -5.442418, "Properties": -5.442418, "Reference": -5.442418, "Release": -4.343805, "RemObjects": -5.442418, "ResXFileCodeGenerator": -5.442418, "SettingsSingleFileGenerator": -5.442418, "Software": -5.442418, "System.Core.dll": -5.442418, "System.Data.dll": -5.442418, "System.Xml.dll": -5.442418, "System.dll": -5.442418, "TRACE": -5.442418, "True": -4.343805, "\\": -2.803360, "bin": -4.749271, "exe": -5.442418, "mscorlib.dll": -5.442418, "targets": -5.442418, "v": -5.442418, "xmlns": -5.442418, "xmlns=": -5.442418, "{": -5.442418, "}": -5.442418, }, "Oz": map[string]float64{ "(": -3.449988, ")": -3.449988, "-": -4.143135, ":": -4.836282, "=": -2.533697, "@RevList": -4.143135, "Acc": -2.890372, "E": -4.143135, "L": -4.143135, "N": -2.351375, "NewCell": -4.836282, "Prime": -4.836282, "PrimeAcc": -3.449988, "RevList": -3.737670, "Reverse": -4.836282, "Sum": -4.143135, "SumAux": -3.737670, "declare": -4.836282, "div": -4.836282, "do": -4.836282, "else": -3.737670, "elseif": -4.836282, "end": -2.351375, "false": -4.143135, "for": -4.836282, "fun": -3.226844, "if": -3.737670, "in": -3.449988, "local": -3.737670, "mod": -4.836282, "nil": -4.836282, "then": -3.449988, "true": -4.836282, "{": -2.533697, "|": -4.836282, "}": -2.533697, }, "P4": map[string]float64{ "!": -6.863803, "#else": -5.765191, "#endif": -4.298854, "#ifdef": -5.765191, "#ifndef": -4.561218, "(": -2.689416, ")": -2.689416, ",": -3.398067, ".etherType": -6.170656, ":": -2.874819, ";": -2.003991, "=": -5.254365, "EGRESS_BD_MAPPING_TABLE_SIZE": -6.863803, "FABRIC_DEVICE_MULTICAST": -6.170656, "FABRIC_ENABLE": -6.170656, "FALSE": -6.863803, "IFINDEX_BIT_WIDTH": -6.170656, "IFINDEX_FLOOD": -6.863803, "INGRESS_MIRROR_ACL_TABLE_SIZE": -6.863803, "IPV": -6.863803, "L": -4.465908, "LEARN_NOTIFY_TABLE_SIZE": -6.863803, "MAC_LEARN_RECEIVER": -6.863803, "MAC_TABLE_SIZE": -6.170656, "NEXTHOP_TYPE_ECMP": -6.863803, "NEXTHOP_TYPE_SIMPLE": -6.863803, "OPENFLOW_ENABLE": -6.863803, "SPANNING_TREE_TABLE_SIZE": -6.863803, "STP_GROUP_NONE": -6.863803, "TRUE": -4.917893, "VALIDATE_PACKET_TABLE_SIZE": -6.863803, "VLAN_DECAP_TABLE_SIZE": -6.863803, "[": -4.917893, "]": -4.917893, "_BROADCAST": -6.863803, "_DISABLE": -4.917893, "_MULTICAST": -6.170656, "_UNICAST": -6.170656, "__": -5.765191, "__TARGET_BMV": -5.765191, "_da": -6.863803, "_metadata": -6.863803, "_metadata.bd_stats_idx": -5.765191, "_metadata.ipv": -6.170656, "_metadata.l": -4.561218, "_metadata.learning_enabled": -6.863803, "_metadata.lkp_ip_ttl": -6.863803, "_metadata.lkp_ip_type": -6.863803, "_metadata.lkp_ip_version": -6.863803, "_metadata.lkp_ipv": -5.477509, "_metadata.lkp_mac_da": -6.170656, "_metadata.lkp_mac_sa": -5.477509, "_metadata.lkp_pkt_type": -5.254365, "_metadata.same_if_check": -6.170656, "_metadata.stp_group": -6.170656, "_metadata.stp_state": -6.170656, "_metadata_t": -6.170656, "_nexthop": -5.765191, "_nexthop_type": -5.765191, "_redirect": -5.765191, "_sa": -5.254365, "_src_is_link_local": -5.072044, "_src_miss": -5.765191, "_src_move": -5.765191, "action": -3.868071, "actions": -4.784362, "add_to_field": -5.765191, "apply": -4.917893, "bd_stats_idx": -6.863803, "bit_xor": -6.170656, "clone_ingress_pkt_to_egress": -6.863803, "control": -5.072044, "dmac": -6.170656, "dmac_drop": -6.170656, "dmac_hit": -6.170656, "dmac_miss": -6.170656, "dmac_multicast_hit": -6.170656, "dmac_redirect_ecmp": -6.170656, "dmac_redirect_nexthop": -6.170656, "drop": -6.863803, "drop_reason": -6.170656, "ecmp_index": -6.170656, "egress_bd_map": -6.170656, "egress_metadata.bd": -6.863803, "ethernet.etherType": -6.170656, "exact": -4.917893, "fabric_metadata.dst_device": -6.170656, "field_list": -6.863803, "fields": -6.863803, "generate_digest": -6.863803, "generate_learn_notify": -6.170656, "header_type": -6.863803, "if": -5.765191, "ifindex": -5.254365, "ingress_metadata.bd": -5.765191, "ingress_metadata.bd_label": -6.863803, "ingress_metadata.drop_flag": -6.170656, "ingress_metadata.drop_reason": -6.863803, "ingress_metadata.egress_ifindex": -6.170656, "ingress_metadata.if_label": -6.863803, "ingress_metadata.ifindex": -5.765191, "ingress_metadata.lkp_ip_proto": -6.863803, "ingress_metadata.lkp_ipv": -6.170656, "ingress_metadata.lkp_mac_da": -6.863803, "ingress_metadata.lkp_mac_sa": -6.863803, "ingress_metadata.lkp_mac_type": -6.863803, "intrinsic_metadata.mcast_grp": -6.863803, "ipv": -5.072044, "l": -3.126134, "learn_notify": -6.170656, "learning_enabled": -6.863803, "lkp_mac_da": -6.863803, "lkp_mac_sa": -6.863803, "lkp_mac_type": -6.863803, "lkp_pkt_type": -6.863803, "mac_learn_digest": -6.170656, "mask": -5.765191, "mc_index": -6.170656, "metadata": -6.863803, "mirror_acl": -6.863803, "modify_field": -3.685750, "nexthop_index": -6.170656, "nop": -4.917893, "openflow_apply": -6.863803, "openflow_miss": -6.863803, "port_vlan_mapping_miss": -6.863803, "process_egress_bd": -6.863803, "process_mac": -6.863803, "process_mac_learning": -6.863803, "process_spanning_tree": -6.863803, "process_validate_packet": -6.863803, "process_vlan_decap": -6.863803, "reads": -4.784362, "remove_header": -5.765191, "remove_vlan_double_tagged": -6.170656, "remove_vlan_single_tagged": -6.170656, "same_if_check": -6.863803, "session_id": -6.170656, "set_broadcast": -6.170656, "set_egress_bd_properties": -6.170656, "set_malformed_packet": -6.170656, "set_mirror_id": -6.170656, "set_multicast": -6.170656, "set_multicast_and_ipv": -6.170656, "set_stp_state": -6.170656, "set_unicast": -6.170656, "set_unicast_and_ipv": -6.170656, "size": -4.784362, "smac": -6.170656, "smac_hit": -6.170656, "smac_miss": -6.170656, "spanning_tree": -6.170656, "stp_group": -6.863803, "stp_state": -5.765191, "support_timeout": -6.863803, "table": -4.784362, "ternary": -3.819281, "true": -6.863803, "valid": -6.170656, "validate_packet": -6.170656, "vlan_decap": -6.170656, "vlan_tag_": -4.917893, "{": -2.838452, "}": -2.838452, }, "PAWN": map[string]float64{ "!": -6.749346, "#define": -4.374440, "#else": -8.135640, "#elseif": -8.135640, "#endif": -4.916764, "#error": -8.135640, "#if": -4.839803, "#include": -8.135640, "#undef": -8.135640, "%": -4.397970, "&": -8.135640, "&&": -8.135640, "(": -2.862640, ")": -2.862640, "*": -7.037028, "*/": -8.135640, "+": -5.650733, ",": -0.695493, "-": -5.363051, "...": -6.749346, "/": -7.442493, "//FIXES_gsVehicleLocked": -8.135640, ":": -3.716799, ";": -4.041295, "<": -7.442493, "<(File:a,>": -8.135640, "<<": -7.442493, "<Description>": -7.442493, "<List>": -8.135640, "<Optional>": -7.442493, "<Person>": -8.135640, "<Short>": -8.135640, "<_ALS>": -7.037028, "<a_samp>": -8.135640, "=": -3.901533, ">": -6.056198, "AddPlayerClass": -8.135640, "BAD_IsPlayerConnected": -8.135640, "BODY_PART_GROIN": -8.135640, "BODY_PART_HEAD": -8.135640, "BODY_PART_LEFT_ARM": -8.135640, "BODY_PART_LEFT_LEG": -8.135640, "BODY_PART_RIGHT_ARM": -8.135640, "BODY_PART_RIGHT_LEG": -8.135640, "BODY_PART_TORSO": -8.135640, "CAM_MODE_": -8.135640, "CAM_MODE_AIMWEAPON": -8.135640, "CAM_MODE_AIMWEAPON_FROMCAR": -8.135640, "CAM_MODE_BEHINDBOAT": -8.135640, "CAM_MODE_BEHINDCAR": -8.135640, "CAM_MODE_CAMERA": -8.135640, "CAM_MODE_CAM_ON_A_STRING": -8.135640, "CAM_MODE_DISCONNECTED": -8.135640, "CAM_MODE_DW_HELI_CHASE": -8.135640, "CAM_MODE_FIXED": -8.135640, "CAM_MODE_FOLLOWPED": -8.135640, "CAM_MODE_NONE": -8.135640, "CAM_MODE_ROCKETLAUNCHER": -8.135640, "CAM_MODE_ROCKETLAUNCHER_HS": -8.135640, "CAM_MODE_SNIPER": -8.135640, "CallRemoteFunction": -7.442493, "E_FIXES_WORLDBOUND_DATA": -7.442493, "E_FIXES_WORLDBOUND_DATA_LX": -8.135640, "E_FIXES_WORLDBOUND_DATA_LY": -8.135640, "E_FIXES_WORLDBOUND_DATA_PX": -8.135640, "E_FIXES_WORLDBOUND_DATA_PY": -8.135640, "E_FIXES_WORLDBOUND_DATA_PZ": -8.135640, "E_FIXES_WORLDBOUND_DATA_UX": -8.135640, "E_FIXES_WORLDBOUND_DATA_UY": -8.135640, "FIXES_DetermineOrder": -8.135640, "FIXES_GT_STYLE_COUNT": -6.749346, "FIXES_IsPlayerConnected": -7.442493, "FIXES_Single": -6.056198, "FIXES_gsAnimTimer": -8.135640, "FIXES_gsClassAnimName": -8.135640, "FIXES_gsCurrentMenu": -8.135640, "FIXES_gsDialogID": -8.135640, "FIXES_gsDriveByWeapon": -8.135640, "FIXES_gsGTStyle": -6.189730, "FIXES_gsGTTimer": -8.135640, "FIXES_gsLastCash": -8.135640, "FIXES_gsPGTStyle": -8.135640, "FIXES_gsPlayerAnimLibs": -8.135640, "FIXES_gsPlayerBools": -8.135640, "FIXES_gsPlayerIP": -8.135640, "FIXES_gsPlayerPGTShown": -8.135640, "FIXES_gsPlayerSkin": -8.135640, "FIXES_gsPlayerWeapon": -8.135640, "FIXES_gsPlayersIterator": -8.135640, "FIXES_gsSettings": -8.135640, "FIXES_gsVehicleSeatData": -8.135640, "FIXES_gsWorldbounds": -8.135640, "FIXES_gscAnimIndexes": -8.135640, "FIXES_gscAnimLib": -8.135640, "FIXES_gscDetermineOrder": -7.037028, "FIXES_gscDot": -8.135640, "FIXES_gscFixesError": -8.135640, "FIXES_gscMenuProperty": -8.135640, "FIXES_gscNoGMProperty": -7.037028, "FIXES_gscOrderProperty": -7.442493, "FIXES_gscSetPlayerMenu": -8.135640, "FIXES_gscSetRaceCheckpoint": -8.135640, "FIXES_gscSpace": -6.526202, "FIXES_gscSpec@": -7.037028, "FIXES_gscSpec@ai": -8.135640, "FIXES_gscSpec@i": -8.135640, "FIXES_gscSpec@ifff": -8.135640, "FIXES_gscSpec@iffff": -8.135640, "FIXES_gscSpec@ii": -8.135640, "FIXES_gscSpec@iifff": -8.135640, "FIXES_gscSpec@iifffffff": -8.135640, "FIXES_gscSpec@iii": -8.135640, "FIXES_gscSpec@iiiii": -8.135640, "FIXES_gscSpec@iiiiii": -8.135640, "FIXES_gscSpec@iiiis": -8.135640, "FIXES_gscSpec@is": -8.135640, "FIXES_gscSpec@isii": -8.135640, "FIXES_gscTempName": -8.135640, "FIXES_gscVehicleMods": -8.135640, "FIXES_pvarCurrentDialog": -8.135640, "FIXES_pvarKick": -8.135640, "FIXES_pvarNotNewPlayer": -8.135640, "FIXES_pvarPlayerCheckpoint": -8.135640, "FIXES_pvarPlayerInterior": -8.135640, "FIXES_pvarPlayerSkin": -8.135640, "FIX_AllowInteriorWeapons": -8.135640, "FIX_ApplyAnimation": -7.442493, "FIX_ApplyAnimation_": -6.749346, "FIX_BODYPARTS": -8.135640, "FIX_CAMERAMODES": -8.135640, "FIX_FileMaths": -8.135640, "FIX_GameText": -6.343880, "FIX_GameTextStyles": -8.135640, "FIX_GetGravity": -8.135640, "FIX_GetPlayerMenu": -8.135640, "FIX_IsPlayerConnected": -8.135640, "FIX_IsValidVehicle": -8.135640, "FIX_KEY_AIM": -8.135640, "FIX_OnPlayerDisconnect": -8.135640, "FIX_OnVehicleMod": -8.135640, "FIX_SPECIAL_ACTION_PISSING": -8.135640, "FIX_SetPlayerWorldBounds": -7.442493, "FIX_TogglePlayerControllable": -8.135640, "FIX_gpci": -8.135640, "File": -4.184396, "Float": -5.833055, "GetGravity": -8.135640, "GetTickCount": -7.037028, "INVALID_DIALOG_ID": -7.442493, "INVALID_MENU": -8.135640, "INVALID_PLAYER_ID": -8.135640, "IsPlayerConnected": -7.037028, "IsValidVehicle": -8.135640, "KEY_AIM": -8.135640, "MAX_PLAYERS": -5.091117, "MAX_PLAYER_ATTACHED_OBJECTS": -8.135640, "MAX_VEHICLES": -8.135640, "Menu": -7.442493, "OnGameModeInit": -8.135640, "OneSecTimer": -7.442493, "PlayerText": -8.135640, "SPECIAL_ACTION_PISSING": -8.135640, "STPERSON": -8.135640, "SendClientMessageToAll": -8.135640, "SetGameModeText": -8.135640, "SetTimer": -8.135640, "Text": -7.442493, "TextDrawAlignment": -6.526202, "TextDrawBackgroundColor": -6.526202, "TextDrawBoxColor": -6.526202, "TextDrawColor": -6.526202, "TextDrawCreate": -6.343880, "TextDrawFont": -6.526202, "TextDrawLetterSize": -6.526202, "TextDrawSetOutline": -6.526202, "TextDrawSetProportional": -6.526202, "TextDrawSetShadow": -6.526202, "TextDrawTextSize": -6.526202, "TextDrawUseBox": -6.526202, "[": -3.930947, "\\": -6.056198, "]": -3.930947, "_": -5.363051, "_ALS": -6.526202, "_ALS_IsPlayerConnected": -7.037028, "_ALS_go": -8.135640, "_ALS_x": -7.442493, "_ALS_x0": -7.442493, "_ALS_x1": -7.442493, "_ALS_x2": -8.135640, "_ALS_x3": -8.135640, "_FIXES_ATTACHMENTS": -8.135640, "_FIXES_CEILDIV": -7.037028, "_FIXES_CreateGameTextDraws": -8.135640, "_FIXES_DetermineOrder": -8.135640, "_FIXES_FOREACH": -8.135640, "_FIXES_FORWARD": -8.135640, "_FIXES_INFINITY": -8.135640, "_FIXES_IN_RANGE": -7.442493, "_FIXES_IS_IN_CHARGE": -7.442493, "_FIXES_IS_PLAYER_CONNECTED": -7.442493, "_FIXES_IS_UNSET": -8.135640, "_FIXES_KEY_AIM": -7.442493, "_FIXES_NO_RANGE": -8.135640, "_FIXES_N_INFINITY": -8.135640, "_FIXES_SPECIAL_ACTION_PISSING": -7.442493, "_FIX_Menus": -8.135640, "a": -4.839803, "add": -8.135640, "and": -8.135640, "applicable": -7.442493, "at": -8.135640, "b": -4.916764, "be": -8.135640, "bool": -5.570691, "called": -8.135640, "cellbits": -7.037028, "cellmin": -6.749346, "const": -8.135640, "defined": -6.749346, "deleteproperty": -7.442493, "depends": -8.135640, "e_FIXES_BOOLS": -7.442493, "e_FIXES_BOOLS_BLOCK": -8.135640, "e_FIXES_BOOLS_CONNECTED": -8.135640, "e_FIXES_BOOLS_CP_DELAYED": -8.135640, "e_FIXES_BOOLS_DRIVE_BY": -8.135640, "e_FIXES_BOOLS_FIRST_CLASS": -8.135640, "e_FIXES_BOOLS_FIRST_SPAWN": -8.135640, "e_FIXES_BOOLS_INTERIOR": -8.135640, "e_FIXES_BOOLS_KICKED": -8.135640, "e_FIXES_BOOLS_NONE": -8.135640, "e_FIXES_BOOLS_ON_PLAYER_CONNECT": -8.135640, "e_FIXES_BOOLS_PUT_IN_TRAIN": -8.135640, "e_FIXES_BOOLS_PUT_IN_VEHICLE": -8.135640, "e_FIXES_BOOLS_RACE_CP_DELAYED": -8.135640, "e_FIXES_BOOLS_SPECTATING": -8.135640, "e_FIXES_BOOLS_TELEPORT": -8.135640, "e_FIXES_BOOLS_UNCONTROLLABLE": -8.135640, "e_FIXES_BOOLS_WORLDBOUNDS": -8.135640, "e_FIXES_SETTINGS": -8.135640, "e_FIXES_SETTINGS_ADMIN_TELEPORT": -8.135640, "e_FIXES_SETTINGS_DROP_ALL_DATA": -8.135640, "e_FIXES_SETTINGS_ENDED": -8.135640, "e_FIXES_SETTINGS_ENDING": -8.135640, "e_FIXES_SETTINGS_INTERIOR": -8.135640, "e_FIXES_SETTINGS_IN_CHARGE": -7.442493, "e_FIXES_SETTINGS_MENU_SET": -8.135640, "e_FIXES_SETTINGS_NONE": -8.135640, "e_FIXES_SETTINGS_NO_GAME_TEXT": -8.135640, "e_FIXES_SETTINGS_SECOND_USE": -8.135640, "enum": -7.037028, "exists": -8.135640, "fix": -7.442493, "fixes.inc": -8.135640, "for": -8.135640, "format": -8.135640, "forward": -4.669904, "functions": -7.442493, "gpci": -8.135640, "if": -7.037028, "it": -8.135640, "lasttick": -6.526202, "main": -8.135640, "maxlen": -8.135640, "native": -6.749346, "new": -6.749346, "of": -8.135640, "official": -8.135640, "on": -8.135640, "only": -8.135640, "operator": -4.957586, "operator*": -7.442493, "operator/": -7.037028, "original": -8.135640, "playerid": -6.343880, "post": -8.135640, "print": -6.526202, "problem": -8.135640, "public": -6.749346, "relevant": -8.135640, "remove": -8.135640, "required": -8.135640, "return": -6.526202, "right": -8.135640, "sText": -6.526202, "serial": -8.135640, "setproperty": -8.135640, "since": -8.135640, "sizeof": -8.135640, "solution": -8.135640, "static": -7.442493, "stock": -8.135640, "t": -4.008506, "the": -7.037028, "this": -8.135640, "time.": -8.135640, "to": -7.442493, "true": -6.526202, "vehicleid": -8.135640, "version": -8.135640, "when": -8.135640, "where": -7.442493, "wrote": -8.135640, "{": -5.139908, "||": -6.056198, "}": -5.245268, }, "PHP": map[string]float64{ "!": -4.814522, "#": -8.716495, "$": -2.038782, "&": -7.212417, "&&": -5.439350, "'": -9.004177, "(": -2.531315, ")": -2.529772, "*": -7.704894, "*/": -10.102789, "+": -7.058267, ",": -3.511115, "-": -3.220352, ".": -5.683949, ".*": -9.004177, "../PHPMailerAutoload.php": -10.102789, "/": -8.311030, "/**": -9.004177, "//////////////////////////////////": -9.409642, "//TODO": -10.102789, "//api.drupal.org/api/group/form_api/": -10.102789, "//drupal.org": -10.102789, "//drupal.org/handbook/customization/php": -10.102789, "//send": -10.102789, "/h": -10.102789, "/usr/bin/env": -9.004177, "/usr/bin/php": -10.102789, "0": -8.493351, "1": -10.102789, "10": -10.102789, "2": -10.102789, "2005": -8.716495, "2008": -10.102789, "2012": -8.716495, "3": -10.102789, "5": -10.102789, "9": -9.409642, ":": -5.078909, ";": -3.118073, "<": -7.463732, "</a>": -8.156879, "</code>": -8.493351, "</comment>": -8.156879, "</dd>": -10.102789, "</div>": -10.102789, "</dl>": -10.102789, "</dt>": -10.102789, "</em>": -10.102789, "</error>": -10.102789, "</info>": -8.156879, "</li>": -7.800204, "</p>": -8.023348, "</pre>": -9.409642, "</strong>": -9.409642, "</ul>": -9.409642, "<<": -9.409642, "<?>": -10.102789, "<?php>": -7.394739, "<SubFolder>": -10.102789, "<a>": -8.156879, "<base>": -10.102789, "<code>": -8.493351, "<comment>": -8.156879, "<dariusz.ruminski@gmail.com>": -9.409642, "<dd>": -10.102789, "<div>": -10.102789, "<dl>": -10.102789, "<dt>": -10.102789, "<em>": -10.102789, "<error>": -10.102789, "<extra>": -9.409642, "<fabien@symfony.com>": -9.004177, "<field>": -10.102789, "<info>": -8.156879, "<li>": -7.800204, "<p>": -8.023348, "<pre>": -9.409642, "<segment>": -10.102789, "<strong>": -9.409642, "<ul>": -9.409642, "=": -2.860707, ">": -3.012712, "?": -6.341589, "@drupal": -10.102789, "@formapi": -10.102789, "@php": -10.102789, "@return": -10.102789, "A": -10.102789, "API": -10.102789, "ARE": -9.409642, "About": -10.102789, "Add": -10.102789, "Additional": -10.102789, "App": -6.519270, "AppModel": -10.102789, "Application": -8.716495, "ArgvInput": -9.409642, "Array": -6.844693, "ArrayAccess": -10.102789, "ArrayInput": -9.004177, "Autogenerated": -10.102789, "Automatically": -10.102789, "Base": -9.409642, "Be": -10.102789, "BehaviorCollection": -10.102789, "Behaviors": -9.004177, "Block": -10.102789, "Blog": -10.102789, "Boolean": -8.716495, "BrowserKit": -10.102789, "CS": -8.716495, "Cake": -8.156879, "CakeEvent": -7.905565, "CakeEventListener": -8.716495, "CakeEventManager": -8.716495, "CakePHP": -8.311030, "CakeRequest": -9.004177, "CakeResponse": -10.102789, "ChoiceFormField": -9.409642, "ClassRegistry": -8.716495, "Client": -10.102789, "Command": -8.311030, "Compiler": -10.102789, "Component": -6.924735, "ComponentCollection": -10.102789, "Components": -9.409642, "Config": -9.409642, "ConnectionManager": -10.102789, "Consider": -10.102789, "Console": -7.269576, "ConsoleOutput": -9.409642, "ConsoleOutputInterface": -9.409642, "Contact": -10.102789, "Controller": -8.716495, "Controllers": -10.102789, "CookieJar": -9.409642, "Copyright": -8.493351, "Crawler": -9.409642, "Create": -10.102789, "Creating": -10.102789, "Custom": -10.102789, "DBO": -9.409642, "DO": -10.102789, "DOING": -10.102789, "DOMDocument": -10.102789, "DOMNode": -9.004177, "DOMXPath": -10.102789, "Dariusz": -9.409642, "Develop": -10.102789, "Development": -9.409642, "DialogHelper": -10.102789, "Doe": -10.102789, "DomCrawler": -8.493351, "Drupal": -9.004177, "Drupal.org": -10.102789, "EDIT": -10.102789, "EOF": -8.716495, "EXTR_OVERWRITE": -9.004177, "E_USER_WARNING": -10.102789, "Each": -10.102789, "ErrorInfo": -10.102789, "Evaluate": -10.102789, "Even": -10.102789, "Event": -8.311030, "Exception": -7.905565, "Executes": -10.102789, "Experimenting": -10.102789, "FALSE": -10.102789, "Fabien": -8.156879, "Field": -7.905565, "FileFormField": -9.004177, "Filter": -10.102789, "Finder": -9.409642, "First": -9.409642, "Fixer": -9.409642, "Fixer.": -9.409642, "For": -10.102789, "Form": -8.493351, "FormField": -9.004177, "FormFieldRegistry": -9.409642, "FormatterHelper": -10.102789, "Foundation": -8.716495, "Framework": -9.409642, "Global": -10.102789, "HelpCommand": -10.102789, "Helper": -9.004177, "HelperSet": -9.409642, "History": -9.409642, "I": -10.102789, "If": -9.004177, "Implements": -10.102789, "Inc": -8.716495, "Inflector": -9.004177, "Input": -8.311030, "InputArgument": -10.102789, "InputDefinition": -10.102789, "InputFormField": -9.409642, "InputInterface": -9.004177, "InputOption": -10.102789, "InvalidArgumentException": -8.023348, "Isabelle": -10.102789, "John": -10.102789, "KNOW": -10.102789, "LICENSE.": -9.409642, "LLC": -10.102789, "Last": -9.409642, "License": -8.716495, "Licensed": -9.409642, "Link": -9.004177, "ListCommand": -10.102789, "LogicException": -8.716495, "MIT": -8.311030, "Malformed": -10.102789, "MissingModelException": -10.102789, "Model": -8.493351, "ModelBehavior": -10.102789, "NOT": -10.102789, "NULL": -10.102789, "Network": -10.102789, "Notes": -10.102789, "Object": -8.716495, "Output": -8.493351, "OutputInterface": -8.493351, "P": -8.716495, "PHP": -6.668802, "PHPMailer": -9.004177, "PHPMailerAutoload": -10.102789, "PHP_EOL": -10.102789, "PHP_URL_HOST": -10.102789, "PHP_URL_PATH": -10.102789, "PHP_URL_SCHEME": -10.102789, "Photos": -10.102789, "PhpCsFixer": -8.716495, "PhpProcess": -9.409642, "Plugins": -10.102789, "Potencier": -8.156879, "Process": -10.102789, "Project": -9.409642, "Protocol": -8.716495, "Provides": -10.102789, "PullRequest": -9.409642, "ROOT": -10.102789, "Rapid": -9.409642, "Redistributions": -9.409642, "ReflectionMethod": -10.102789, "Remember": -10.102789, "Remove": -10.102789, "Request": -9.004177, "Router": -8.716495, "Rumi": -9.409642, "RuntimeException": -9.409642, "SHEBANG#!php": -8.716495, "SITE_DIR": -8.493351, "SITE_DIR.": -9.004177, "SQL": -10.102789, "STDIN": -9.004177, "STOP": -10.102789, "STRING": -9.004177, "SURE": -10.102789, "Scaffold": -10.102789, "Set": -8.023348, "SimpleXMLElement": -10.102789, "Software": -8.493351, "Splits": -10.102789, "Statements": -10.102789, "String": -8.493351, "Symfony": -6.806952, "TApplicationException": -9.409642, "TBase": -9.409642, "TBinaryProtocolAccelerated": -9.409642, "TException": -9.409642, "THAT": -10.102789, "TMessageType": -9.409642, "TProtocol": -9.409642, "TProtocolException": -9.409642, "TRUE": -9.004177, "TType": -8.311030, "Test": -10.102789, "TextareaFormField": -10.102789, "The": -9.004177, "These": -10.102789, "This": -7.537840, "Thrift": -7.269576, "To": -10.102789, "Type": -8.716495, "UNLESS": -10.102789, "Use": -10.102789, "User": -10.102789, "Using": -10.102789, "Utility": -8.311030, "VERBOSITY_QUIET": -10.102789, "VERBOSITY_VERBOSE": -10.102789, "Validation": -10.102789, "View": -9.409642, "WHAT": -10.102789, "While": -10.102789, "With": -10.102789, "Xml": -9.409642, "YII_DEBUG": -9.409642, "YOU": -9.004177, "Yii": -9.004177, "You": -9.004177, "[": -3.769510, "\\": -5.119183, "]": -3.773068, "^": -9.004177, "_": -10.102789, "_GET": -9.409642, "_SERVER": -9.409642, "_TSPEC": -8.311030, "__DIR__": -8.493351, "__backAssociation": -8.156879, "__call": -10.102789, "__construct": -8.311030, "__d": -10.102789, "__isset": -10.102789, "_afterScaffoldSave": -10.102789, "_afterScaffoldSaveError": -10.102789, "_associations": -10.102789, "_beforeScaffold": -10.102789, "_clearCache": -9.409642, "_collectForeignKeys": -9.409642, "_constructLinkedModel": -10.102789, "_deleteDependent": -9.004177, "_deleteLinks": -9.004177, "_eventManager": -8.493351, "_filterResults": -10.102789, "_findCount": -10.102789, "_findFirst": -10.102789, "_findList": -10.102789, "_getScaffold": -10.102789, "_id": -9.409642, "_isPrivateAction": -10.102789, "_mergeControllerVars": -10.102789, "_mergeParent": -9.004177, "_mergeUses": -9.004177, "_mergeVars": -9.409642, "_normalizeXmlData": -9.004177, "_parseBeforeRedirect": -9.409642, "_php_filter_tips": -10.102789, "_prepareUpdateFields": -9.409642, "_responseClass": -10.102789, "_return": -9.004177, "_saveMulti": -9.409642, "_scaffoldError": -10.102789, "_schema": -8.311030, "_setAliasData": -9.409642, "_stop": -10.102789, "_whitelist": -8.716495, "a": -6.637053, "aMenuLinks": -10.102789, "abbrev": -8.716495, "abbrevs": -6.735493, "ability": -10.102789, "about": -10.102789, "above": -9.409642, "abstract": -9.409642, "access": -10.102789, "accidentally": -10.102789, "action": -9.004177, "add": -8.023348, "addChoice": -10.102789, "addCommands": -10.102789, "addContent": -10.102789, "adding": -10.102789, "admin": -10.102789, "administrators": -10.102789, "after": -10.102789, "afterFilter": -10.102789, "afterScaffoldSave": -9.409642, "afterScaffoldSaveError": -9.409642, "alias": -5.943906, "aliases": -8.023348, "all": -8.156879, "allNamespaces": -9.004177, "allValues": -10.102789, "alternatives": -7.800204, "am": -10.102789, "an": -10.102789, "and": -7.704894, "another": -10.102789, "appVars": -8.311030, "appendChild": -9.004177, "application": -8.716495, "are": -8.493351, "arg": -9.409642, "around": -10.102789, "array": -4.585336, "arrayOp": -9.409642, "array_combine": -10.102789, "array_diff": -9.409642, "array_filter": -9.409642, "array_flip": -10.102789, "array_intersect": -10.102789, "array_key_exists": -7.800204, "array_keys": -8.156879, "array_map": -10.102789, "array_merge": -6.735493, "array_pop": -10.102789, "array_search": -10.102789, "array_shift": -8.493351, "array_slice": -10.102789, "array_unique": -8.716495, "array_unshift": -10.102789, "array_values": -8.493351, "as": -5.883281, "asort": -10.102789, "assoc": -6.413910, "assocKey": -8.493351, "association": -6.252642, "associationForeignKey": -8.493351, "associations": -7.905565, "attach": -9.409642, "autoExit": -8.716495, "autoLayout": -9.409642, "autoRender": -8.716495, "autoload": -10.102789, "automatic": -10.102789, "availability": -10.102789, "avoid": -10.102789, "aware": -10.102789, "back": -9.409642, "backed": -9.409642, "base": -7.905565, "based": -10.102789, "basic": -9.409642, "be": -8.493351, "before": -9.409642, "beforeFilter": -10.102789, "beforeRedirect": -10.102789, "beforeRender": -10.102789, "beforeScaffold": -9.409642, "begin": -9.409642, "belongsTo": -8.311030, "block": -7.537840, "block.": -10.102789, "blocks": -10.102789, "blocks.": -10.102789, "body": -9.409642, "bool": -8.493351, "boolean": -8.716495, "bootstrap": -10.102789, "break": -7.394739, "breakOn": -8.716495, "browser": -10.102789, "buildQuery": -9.409642, "bundled": -9.409642, "business": -10.102789, "button": -8.311030, "by": -8.311030, "c": -8.023348, "cache": -9.004177, "cacheAction": -10.102789, "cacheSources": -9.004177, "cakefoundation": -8.716495, "cakephp": -8.716495, "calculate": -9.409642, "call_user_func": -9.409642, "callback": -8.156879, "callbacks": -8.716495, "camelize": -9.409642, "can": -9.409642, "cascade": -7.800204, "case": -8.493351, "catch": -9.409642, "catchExceptions": -8.716495, "changeHistory": -8.716495, "check": -9.409642, "class": -7.463732, "className": -7.537840, "class_exists": -9.409642, "clear": -9.409642, "click": -10.102789, "clone": -10.102789, "code": -7.463732, "code.": -8.716495, "codes": -9.004177, "colType": -8.716495, "collectReturn": -10.102789, "collection": -9.004177, "cols": -8.156879, "column": -7.800204, "columns": -8.493351, "com": -7.905565, "combine": -10.102789, "command": -6.668802, "commands": -6.883913, "commit": -9.409642, "compact": -8.311030, "components": -10.102789, "compromise": -9.409642, "cond": -8.493351, "conditions": -6.465203, "conf": -8.311030, "config": -8.716495, "console": -8.716495, "contacts": -10.102789, "content": -8.023348, "content.": -10.102789, "contents.html": -10.102789, "context": -8.493351, "continue": -8.311030, "controller": -9.409642, "cookieJar": -7.905565, "copyright": -8.493351, "correctly": -10.102789, "corrupt": -10.102789, "count": -6.967295, "crawler": -8.156879, "create": -7.212417, "createCrawlerFromContent": -9.409642, "createElement": -10.102789, "created": -8.156879, "creating": -10.102789, "ctools_context_required": -10.102789, "ctools_template_identifier": -10.102789, "current": -9.004177, "currentUri": -8.156879, "custom": -8.716495, "dangerous": -10.102789, "data": -4.949498, "database": -8.716495, "date": -7.905565, "dateFields": -8.493351, "db": -6.465203, "dbMulti": -8.311030, "deconstruct": -9.409642, "default": -8.311030, "defaults": -8.311030, "define": -9.004177, "defined": -8.716495, "definition": -9.004177, "delete": -7.905565, "deleteAll": -9.409642, "deleted": -10.102789, "delta": -9.409642, "deploying": -10.102789, "describe": -10.102789, "described": -10.102789, "description": -10.102789, "descriptorspec": -9.409642, "directly": -10.102789, "disableCache": -9.409642, "disabled": -10.102789, "dispatch": -8.156879, "dispatchMethod": -10.102789, "display": -9.409642, "do": -10.102789, "do.": -10.102789, "doRequest": -9.409642, "doRequestInProcess": -9.409642, "doRun": -9.409642, "document": -8.311030, "doesn": -10.102789, "double": -10.102789, "drupal_get_path": -10.102789, "dynamic": -9.409642, "e": -8.156879, "each": -10.102789, "echo": -8.493351, "editing": -10.102789, "else": -5.959654, "elseif": -6.844693, "embed": -10.102789, "embedded": -9.409642, "embedding": -9.409642, "empty": -5.614153, "endQuote": -8.716495, "endpoint": -10.102789, "entity_uri": -10.102789, "errors": -9.004177, "escapeField": -8.311030, "evaluator": -10.102789, "event": -6.770585, "events": -10.102789, "example": -8.493351, "exclude": -9.409642, "exclusive": -9.409642, "execute": -10.102789, "executes.": -10.102789, "exists": -8.311030, "exit": -8.156879, "experience": -9.409642, "explode": -8.023348, "expression": -10.102789, "ext": -10.102789, "extends": -8.716495, "extra": -10.102789, "extract": -8.493351, "extractNamespace": -8.156879, "fInfo": -8.716495, "fabien": -8.493351, "false": -5.274475, "fcgi": -10.102789, "fclose": -9.409642, "feature": -10.102789, "fid": -8.716495, "field": -5.898097, "fieldList": -10.102789, "fieldName": -8.311030, "fieldOp": -7.704894, "fieldSet": -9.004177, "fieldValue": -8.156879, "fields": -6.341589, "file": -6.967295, "file_entity_file_display_content_type_edit_form": -10.102789, "file_entity_file_display_content_type_render": -10.102789, "file_view_file": -10.102789, "filename": -10.102789, "files": -8.156879, "filter": -9.409642, "filterKey": -9.409642, "filterRequest": -9.409642, "filterResponse": -9.409642, "filters": -10.102789, "find": -7.394739, "findAlternativeCommands": -9.409642, "findAlternativeNamespace": -9.409642, "findAlternatives": -9.004177, "findMethods": -9.409642, "findNamespace": -9.409642, "findQueryType": -9.409642, "fkQuoted": -9.004177, "flash": -10.102789, "flexible": -10.102789, "fname": -9.004177, "followRedirect": -8.716495, "followRedirects": -8.493351, "following": -9.409642, "fopen": -10.102789, "for": -7.905565, "foreach": -5.928402, "foreignKey": -7.704894, "foreignKeys": -9.004177, "form": -7.905565, "form_state": -9.409642, "format": -8.716495, "format_username": -10.102789, "forms": -10.102789, "forward": -9.409642, "found": -8.716495, "from": -10.102789, "from@example.com": -10.102789, "ftype": -8.311030, "fully": -10.102789, "function": -4.978825, "function_exists": -9.004177, "functionality": -10.102789, "functions": -10.102789, "generated": -10.102789, "get": -7.617882, "getAbbreviationSuggestions": -8.716495, "getAbbreviations": -8.716495, "getAbsoluteUri": -9.409642, "getAliases": -9.004177, "getAssociated": -8.716495, "getAttribute": -7.800204, "getCode": -10.102789, "getColumnType": -8.716495, "getColumnTypes": -10.102789, "getCommandName": -10.102789, "getContent": -9.409642, "getCookieJar": -10.102789, "getCrawler": -10.102789, "getDataSource": -7.537840, "getDefaultCommands": -10.102789, "getDefaultHelperSet": -10.102789, "getDefaultInputDefinition": -10.102789, "getDefinition": -9.409642, "getDescription": -10.102789, "getErrorOutput": -9.409642, "getEventManager": -8.023348, "getFiles": -9.004177, "getFormNode": -10.102789, "getHeader": -9.409642, "getHelp": -10.102789, "getHelperSet": -9.004177, "getHistory": -10.102789, "getID": -9.409642, "getInputStream": -10.102789, "getLongVersion": -9.004177, "getMethod": -8.311030, "getName": -7.704894, "getNamespaces": -9.004177, "getOptions": -10.102789, "getOutput": -9.004177, "getParameters": -10.102789, "getPhpFiles": -9.409642, "getPhpValues": -9.409642, "getRawUri": -10.102789, "getRequest": -10.102789, "getResponse": -10.102789, "getScript": -9.409642, "getSegments": -8.716495, "getServer": -10.102789, "getServerParameter": -10.102789, "getShortcut": -9.409642, "getSttyColumns": -10.102789, "getUri": -8.023348, "getValue": -9.409642, "getValues": -9.004177, "getVersion": -9.004177, "getVirtualField": -10.102789, "get_class_vars": -9.409642, "github": -9.409642, "global": -10.102789, "greets": -10.102789, "gt": -10.102789, "h": -10.102789, "h3": -10.102789, "has": -8.156879, "hasAndBelongsToMany": -6.967295, "hasAny": -10.102789, "hasAttribute": -10.102789, "hasField": -8.716495, "hasMany": -9.409642, "hasMethod": -9.409642, "hasOne": -9.409642, "hasParameterOption": -8.156879, "hasValue": -10.102789, "have": -10.102789, "header": -7.905565, "help": -10.102789, "helpCommand": -9.004177, "helperSet": -8.311030, "helpers": -10.102789, "history": -7.394739, "hook_help": -10.102789, "href": -9.004177, "http": -7.394739, "httpCodes": -9.004177, "http_build_query": -9.004177, "i": -7.011747, "id": -5.840109, "idField": -9.004177, "ids": -8.023348, "if": -4.211145, "images/phpmailer_mini.png": -10.102789, "implementedEvents": -10.102789, "implements": -9.004177, "implode": -8.311030, "importNode": -9.409642, "improperly.": -10.102789, "in": -8.023348, "in_array": -6.883913, "include": -10.102789, "included": -9.004177, "includes": -10.102789, "including": -9.409642, "index": -8.716495, "info": -8.493351, "init": -10.102789, "initialize": -9.409642, "inoperable": -10.102789, "input": -6.770585, "inputStream": -9.409642, "insertMulti": -10.102789, "inside": -9.409642, "instance": -10.102789, "instanceof": -8.311030, "instead": -10.102789, "insulate": -10.102789, "insulated": -8.156879, "into": -9.409642, "intval": -8.716495, "invalidFields": -10.102789, "is": -7.158350, "isDisabled": -9.409642, "isEmpty": -9.409642, "isEnabled": -10.102789, "isKeySet": -10.102789, "isPublic": -10.102789, "isStopped": -9.004177, "isSuccessful": -10.102789, "isUUID": -8.493351, "isVirtualField": -9.409642, "is_array": -6.735493, "is_null": -10.102789, "is_numeric": -8.716495, "is_object": -9.409642, "is_resource": -10.102789, "is_string": -8.156879, "is_subclass_of": -9.409642, "isset": -5.708340, "it": -9.409642, "item": -8.023348, "its": -10.102789, "j": -9.409642, "join": -7.011747, "joinModel": -8.023348, "joined": -8.493351, "k": -8.156879, "keepExisting": -9.004177, "key": -6.151545, "keyInfo": -8.716495, "keyPresentAndEmpty": -9.409642, "keys": -7.212417, "knowledge": -10.102789, "ksort": -9.409642, "layout": -9.004177, "layoutPath": -10.102789, "layouts": -10.102789, "len": -8.716495, "lev": -8.311030, "levenshtein": -9.409642, "license": -8.023348, "licenses": -9.409642, "limit": -9.004177, "line": -9.409642, "link": -7.800204, "links": -8.716495, "list": -7.011747, "listing": -10.102789, "load": -10.102789, "loadModel": -10.102789, "logic": -9.409642, "lowercase": -10.102789, "lst": -8.716495, "lt": -10.102789, "mail": -8.311030, "mapper": -9.409642, "mapping": -10.102789, "may": -8.493351, "me": -10.102789, "merge": -7.905565, "mergeParent": -9.409642, "message": -7.330200, "message.": -10.102789, "messages": -9.004177, "method": -6.770585, "method_exists": -8.716495, "methods": -8.716495, "migrated": -10.102789, "mistake": -10.102789, "mit": -9.409642, "modParams": -10.102789, "model": -6.924735, "modelClass": -7.330200, "modelName": -9.004177, "models": -9.409642, "module": -9.004177, "module.": -10.102789, "more": -10.102789, "must": -9.004177, "n": -7.905565, "name": -5.235255, "named": -10.102789, "names": -9.409642, "namespace": -7.269576, "namespace.substr": -10.102789, "namespacedCommands": -8.493351, "namespaces": -8.716495, "need": -10.102789, "new": -6.170963, "newData": -8.493351, "newJoins": -8.156879, "newValues": -8.023348, "node": -6.465203, "nodeName": -7.537840, "not": -9.004177, "notEmpty": -8.716495, "notice": -9.409642, "null": -5.340615, "number": -10.102789, "numeric": -10.102789, "object": -8.311030, "objects": -9.409642, "of": -7.107057, "off": -10.102789, "offers": -10.102789, "offsetExists": -10.102789, "offsetGet": -10.102789, "offsetSet": -10.102789, "offsetUnset": -10.102789, "old": -9.409642, "oldJoin": -8.716495, "oldLinks": -8.716495, "on": -8.716495, "one": -7.463732, "only": -10.102789, "op": -7.905565, "opensource": -9.409642, "option": -8.493351, "options": -5.660138, "or": -7.394739, "order": -9.004177, "org": -7.800204, "organization": -10.102789, "output": -6.491871, "own": -10.102789, "p": -9.004177, "package": -8.493351, "paginate": -9.004177, "panel_args": -10.102789, "parameters": -9.004177, "params": -7.269576, "parent": -7.905565, "parentNode": -10.102789, "parse_str": -9.409642, "parse_url": -9.004177, "part": -7.330200, "parts": -8.716495, "passedArgs": -9.409642, "path": -6.967295, "path.": -10.102789, "pause": -9.409642, "performing": -10.102789, "photo": -10.102789, "php": -7.269576, "php_code": -10.102789, "php_eval": -10.102789, "php_help": -9.409642, "php_permission": -10.102789, "piece": -10.102789, "pipes": -8.716495, "plain": -10.102789, "plugin": -7.463732, "pluginController": -7.905565, "pluginDot": -8.716495, "pluginName": -10.102789, "pluginSplit": -8.493351, "pluginVars": -9.004177, "pluralized": -10.102789, "pos": -9.004177, "posix_isatty": -10.102789, "post": -9.004177, "postConditions": -10.102789, "posting": -10.102789, "posts": -9.409642, "posts.": -10.102789, "powerful": -10.102789, "prefix": -9.409642, "prefixed": -10.102789, "prefixes": -8.716495, "preg_match": -9.409642, "preg_replace": -9.409642, "primaryAdded": -9.004177, "primaryKey": -6.668802, "print": -8.716495, "private": -6.967295, "privateAction": -8.716495, "proc_close": -10.102789, "proc_open": -10.102789, "process": -7.704894, "production": -10.102789, "properties": -8.716495, "protected": -6.439227, "provide": -10.102789, "provided": -10.102789, "public": -5.098843, "qs": -8.716495, "query": -5.720762, "queryString": -9.409642, "r": -10.102789, "rather": -9.409642, "read": -9.004177, "readFieldBegin": -10.102789, "readFieldEnd": -10.102789, "readString": -10.102789, "readStructBegin": -10.102789, "readStructEnd": -10.102789, "record": -7.800204, "recordData": -9.409642, "records": -8.311030, "recursive": -8.023348, "redirect": -8.311030, "redirection": -10.102789, "register": -10.102789, "register_globals": -10.102789, "registered": -10.102789, "registry": -8.716495, "relation": -8.156879, "relational": -9.409642, "reload": -10.102789, "remove": -8.716495, "render": -9.409642, "renderException": -9.409642, "rendering": -10.102789, "replyto@example.com": -10.102789, "request": -6.170963, "requestFromRequest": -8.716495, "require": -8.716495, "resetAssociations": -10.102789, "resource": -10.102789, "resources": -10.102789, "resp": -8.311030, "response": -6.883913, "restart": -10.102789, "restricted": -10.102789, "result": -7.107057, "results": -7.394739, "retain": -9.004177, "return": -4.638957, "reverse": -10.102789, "risk": -10.102789, "rollback": -9.409642, "root": -8.716495, "row": -7.269576, "run": -8.716495, "runningCommand": -9.004177, "s": -10.102789, "sample": -10.102789, "save": -7.905565, "saveAll": -10.102789, "saveAssociated": -8.493351, "saveField": -10.102789, "saveMany": -9.004177, "saved": -7.212417, "savedAssociatons": -9.004177, "saving.": -10.102789, "scaffold": -10.102789, "scaffoldError": -9.409642, "schema": -7.800204, "scope": -9.409642, "script": -9.409642, "searchName": -7.537840, "security": -10.102789, "security.": -10.102789, "segment": -10.102789, "segments": -7.704894, "selects": -10.102789, "self": -8.493351, "semicolons.": -10.102789, "send": -9.409642, "sending": -9.409642, "sent": -10.102789, "sep": -10.102789, "sep.": -10.102789, "separate": -10.102789, "server": -7.107057, "serves": -10.102789, "session_write_close": -10.102789, "set": -6.883913, "setApplication": -9.409642, "setAutoExit": -10.102789, "setCatchExceptions": -10.102789, "setCommand": -10.102789, "setDecorated": -9.409642, "setFinder": -9.409642, "setHelperSet": -10.102789, "setInteractive": -9.409642, "setName": -10.102789, "setNode": -10.102789, "setRequest": -10.102789, "setRiskyAllowed": -9.409642, "setRules": -9.409642, "setServerParameter": -10.102789, "setServerParameters": -9.409642, "setValue": -10.102789, "setValues": -9.409642, "setVerbosity": -9.409642, "setVersion": -10.102789, "should": -9.004177, "shows": -9.409642, "shutdownProcess": -10.102789, "significant": -10.102789, "significantly": -10.102789, "simple": -10.102789, "since": -9.409642, "single": -10.102789, "site": -8.716495, "site.": -9.409642, "ski": -9.409642, "skip": -9.409642, "small": -10.102789, "snippets": -9.004177, "some": -9.004177, "sortCommands": -10.102789, "source": -8.716495, "specific": -9.409642, "sprintf": -7.212417, "startQuote": -8.716495, "state": -7.905565, "statement": -10.102789, "static": -8.023348, "status": -7.394739, "statusCode": -7.463732, "stdClass": -10.102789, "stdin": -10.102789, "str_replace": -9.409642, "stream_get_contents": -10.102789, "string": -9.004177, "strlen": -8.493351, "strpos": -7.617882, "strrpos": -9.409642, "strtotime": -10.102789, "strtoupper": -9.004177, "subject": -9.409642, "submit": -9.409642, "substr": -8.493351, "substr_count": -10.102789, "subtype": -10.102789, "success": -7.800204, "such": -10.102789, "suggestions": -9.409642, "supporting": -10.102789, "switch": -8.716495, "symfony": -8.493351, "syntax": -10.102789, "sys_get_temp_dir": -9.409642, "system": -10.102789, "system.": -10.102789, "t": -7.330200, "table": -9.409642, "tables": -10.102789, "tags.": -10.102789, "target": -7.107057, "template.php": -10.102789, "terminated": -10.102789, "test": -9.004177, "text": -9.409642, "than": -9.409642, "that": -8.311030, "the": -6.883913, "their": -10.102789, "theme": -10.102789, "theme_default": -10.102789, "then": -10.102789, "this": -3.582168, "throw": -7.394739, "time": -9.004177, "timeFields": -9.409642, "tips": -10.102789, "title": -7.905565, "title_link": -10.102789, "tm": -8.311030, "to": -7.617882, "toArray": -10.102789, "tokenize": -10.102789, "transactionBegun": -8.716495, "trigger_error": -10.102789, "trim": -10.102789, "true": -5.227592, "trusted": -10.102789, "try": -9.409642, "turned": -10.102789, "two": -9.409642, "type": -6.606282, "types": -10.102789, "ucfirst": -9.409642, "uid": -10.102789, "under": -9.409642, "underscore": -10.102789, "understand": -10.102789, "unfamiliar": -10.102789, "unserialize": -10.102789, "unset": -7.905565, "update": -9.409642, "updateAll": -9.004177, "updateCol": -8.311030, "updateCounterCache": -8.311030, "updateFromResponse": -10.102789, "uri": -6.967295, "url": -7.463732, "usage": -10.102789, "use": -6.389217, "useDbConfig": -9.409642, "useNewDate": -9.409642, "useTable": -8.716495, "used": -8.716495, "user": -8.493351, "uses": -6.113805, "using": -8.493351, "uuid": -9.004177, "v": -7.269576, "val": -6.806952, "validate": -8.156879, "validateAssociated": -8.493351, "validateMany": -8.716495, "validates": -6.008445, "validationErrors": -6.296127, "vals": -8.493351, "value": -6.806952, "values": -6.113805, "var": -9.409642, "variables": -10.102789, "vendor": -9.409642, "version": -8.023348, "versions": -10.102789, "view": -9.409642, "viewClass": -10.102789, "viewPath": -10.102789, "viewVars": -10.102789, "views": -10.102789, "virtualFields": -8.311030, "visitors": -10.102789, "walk": -9.004177, "wantHelps": -8.716495, "web": -10.102789, "when": -8.716495, "which": -10.102789, "while": -8.493351, "whitelist": -7.537840, "who": -10.102789, "whoto@example.com": -10.102789, "will": -10.102789, "with": -7.463732, "withModel": -8.716495, "within": -8.716495, "would": -10.102789, "wrapper": -10.102789, "write": -10.102789, "writeFieldBegin": -10.102789, "writeFieldEnd": -10.102789, "writeFieldStop": -10.102789, "writeString": -10.102789, "writeStructBegin": -10.102789, "writeStructEnd": -10.102789, "writeln": -10.102789, "www": -8.716495, "x": -8.716495, "xfer": -7.269576, "xml": -9.409642, "xpath": -9.409642, "y": -9.409642, "yii": -9.004177, "yii2": -10.102789, "yiiframework": -9.409642, "yiisoft": -10.102789, "you": -9.004177, "your": -7.800204, "{": -3.465531, "|": -10.102789, "||": -6.170963, "}": -3.466843, "ń": -9.409642, }, "PLSQL": map[string]float64{ "!": -7.124478, "%": -6.025866, "(": -2.670131, ")": -2.670131, "*": -6.025866, "+": -5.045037, ",": -3.513560, "-": -4.639572, "..": -7.124478, ".video_name": -7.124478, "/": -4.485421, "1": -7.124478, "9": -7.124478, ":": -3.627971, ";": -2.312294, "<": -5.738184, "<!--[if>": -7.124478, "<!DOCTYPE>": -7.124478, "<![endif]-->": -7.124478, "</a>": -7.124478, "</body>": -7.124478, "</div>": -6.025866, "</head>": -7.124478, "</html>": -7.124478, "</nav>": -7.124478, "</script>": -5.738184, "</table>": -7.124478, "</td>": -5.515040, "</th>": -5.515040, "</title>": -7.124478, "</tr>": -6.431331, "<a>": -7.124478, "<body>": -7.124478, "<div>": -6.025866, "<head>": -7.124478, "<html>": -7.124478, "<link>": -7.124478, "<meta>": -6.025866, "<nav>": -7.124478, "<script>": -5.738184, "<table>": -7.124478, "<td>": -5.515040, "<th>": -5.515040, "<title>": -7.124478, "<tr>": -6.431331, "=": -3.410906, "AS": -5.738184, "AUTHID": -5.738184, "BEGIN": -5.332719, "BLOB": -6.431331, "BODY": -7.124478, "BOOLEAN": -6.431331, "CHAR": -6.431331, "CLOB": -6.431331, "CONSTANT": -7.124478, "CONSTRAINT": -7.124478, "CREATE": -5.515040, "CURSOR": -7.124478, "Compare": -7.124478, "DATE": -5.515040, "DEFAULT": -6.431331, "DEFINER": -5.738184, "ELSE": -7.124478, "END": -4.821893, "FALSE": -7.124478, "FOREIGN": -7.124478, "FUNCTION": -5.045037, "IE": -7.124478, "IF": -5.738184, "IS": -5.332719, "KEY": -6.025866, "LINE": -7.124478, "LOOP": -6.431331, "LTRIM": -7.124478, "N": -7.124478, "NULL": -6.025866, "NUMBER": -4.927254, "OBJECT": -7.124478, "OR": -6.025866, "OUT": -5.738184, "PACKAGE": -6.431331, "PRIMARY": -6.431331, "PROCEDURE": -6.025866, "REFERENCES": -7.124478, "REPLACE": -6.025866, "RETURN": -4.927254, "ROWTYPE": -7.124478, "RTRIM": -7.124478, "SQL": -6.431331, "SUBSTR": -7.124478, "SYSDATE": -7.124478, "TABLE": -6.431331, "THEN": -7.124478, "TIMESTAMP": -6.431331, "TRUE": -7.124478, "VARCHAR": -4.821893, "_videos.COUNT": -7.124478, "a": -6.431331, "all": -6.431331, "as": -6.025866, "asktom": -7.124478, "b_primes": -5.738184, "b_primes.exists": -6.431331, "based": -7.124478, "basic": -6.025866, "begin": -5.178568, "body": -6.431331, "boolean": -7.124478, "bordered": -7.124478, "bulk": -7.124478, "by": -6.431331, "c": -5.515040, "call_stack": -5.738184, "caller_t": -6.025866, "case": -5.738184, "ceil": -6.431331, "change": -7.124478, "chr": -7.124478, "close": -7.124478, "cnt": -5.738184, "collect": -7.124478, "content=": -6.431331, "create": -4.927254, "created_date": -7.124478, "credit_change_date": -7.124478, "dbms_output.put_line": -6.431331, "dbms_utility.format_call_stack": -7.124478, "default": -6.025866, "depth": -6.025866, "description": -7.124478, "dual": -7.124478, "else": -5.178568, "elsif": -5.738184, "email": -7.124478, "end": -3.757182, "exception": -7.124478, "exit": -6.025866, "false": -6.431331, "fetch": -7.124478, "few": -6.431331, "final": -7.124478, "first_name": -7.124478, "for": -6.431331, "found_stack": -6.431331, "from": -5.515040, "function": -4.485421, "href=": -6.431331, "htp.prn": -6.025866, "i": -6.431331, "i_candidate": -5.738184, "i_num": -4.927254, "i_prime": -6.025866, "if": -4.180039, "in": -5.332719, "index": -6.431331, "initial": -7.124478, "instantiable": -7.124478, "instr": -6.431331, "into": -6.431331, "invalid_argument_error": -6.431331, "is": -4.821893, "is_prime": -6.025866, "k_constant": -7.124478, "l_index": -5.178568, "l_next": -5.332719, "l_num": -5.738184, "l_prime": -4.726583, "l_result": -5.515040, "l_videos": -6.025866, "last_name": -7.124478, "length": -5.515040, "like": -5.332719, "line": -4.351890, "lineno": -6.431331, "linguistpackage": -5.738184, "loop": -4.821893, "ltrim": -6.431331, "m_name": -7.124478, "map": -7.124478, "member": -6.431331, "mod": -7.124478, "more": -6.431331, "myarray": -6.431331, "myobject": -6.431331, "n": -4.351890, "name": -6.431331, "navbar": -6.431331, "next": -6.025866, "not": -5.738184, "nth": -5.738184, "null": -5.738184, "number": -4.726583, "nvl": -7.124478, "of": -5.515040, "open": -7.124478, "or": -4.821893, "owner": -6.431331, "p_bool": -6.431331, "p_false_value": -6.431331, "p_main": -6.025866, "p_true_value": -6.431331, "p_user_name": -6.431331, "package": -5.738184, "param": -5.045037, "parts": -7.124478, "password": -7.124478, "pls_integer": -5.515040, "plsqlguide": -5.738184, "prime": -6.431331, "prime#": -6.431331, "print_bool": -6.431331, "print_user_videos": -6.431331, "proc_": -6.431331, "procedure": -5.515040, "prompt": -7.124478, "raise": -7.124478, "replace": -5.045037, "rest": -7.124478, "return": -4.180039, "row": -7.124478, "row.description": -7.124478, "row.name": -7.124478, "row.pid": -7.124478, "row.price": -7.124478, "row.quantity": -7.124478, "rowtype": -7.124478, "rtrim": -6.431331, "scale": -7.124478, "select": -6.025866, "set": -7.124478, "static": -7.124478, "substr": -5.332719, "t_primes": -6.431331, "t_user_videos": -6.431331, "table": -5.738184, "then": -4.291265, "to": -5.738184, "toString": -7.124478, "to_number": -7.124478, "top": -7.124478, "total_credits": -7.124478, "true": -6.431331, "type": -5.332719, "types": -6.431331, "upload_date": -7.124478, "upper": -7.124478, "use": -6.431331, "user_name": -5.738184, "users": -7.124478, "users.user_name": -7.124478, "users_videos": -6.025866, "v": -6.025866, "varchar": -4.639572, "version": -7.124478, "video_id": -6.431331, "video_name": -7.124478, "when": -5.515040, "where": -7.124478, "while": -6.431331, "who_called_me": -6.431331, "||": -4.821893, }, "PLpgSQL": map[string]float64{ "$": -2.534893, "(": -2.666159, ")": -2.666159, "*": -5.356272, "+": -5.761737, ",": -3.844814, ":": -4.172502, ";": -2.033637, "=": -4.038970, "AS": -5.119883, "BEGIN": -7.371175, "CREATE": -7.371175, "DISTINCT": -8.064322, "DROP": -7.371175, "ELSIF": -7.371175, "END": -6.965710, "EXISTS": -7.371175, "FROM": -5.761737, "FUNCTION": -6.678028, "IF": -6.678028, "LANGUAGE": -7.371175, "MESSAGE_TEXT": -7.371175, "NULL": -6.454884, "ON": -8.064322, "OR": -7.371175, "PG_EXCEPTION_DETAIL": -7.371175, "PG_EXCEPTION_HINT": -7.371175, "QUERY": -6.678028, "REPLACE": -7.371175, "RETURN": -6.678028, "RETURNED_SQLSTATE": -7.371175, "RETURNS": -7.371175, "SELECT": -5.666427, "ST_ASGeoJSON": -8.064322, "TABLE": -7.371175, "THEN": -6.965710, "WHERE": -6.965710, "[": -5.356272, "]": -5.356272, "_abs": -8.064322, "_exception": -6.678028, "_exception.detail": -7.371175, "_exception.hint": -7.371175, "_exception.message": -7.371175, "_exception.state": -7.371175, "_exception_type": -6.678028, "_rel": -8.064322, "a": -5.068590, "array_agg": -6.678028, "array_to_json": -6.678028, "as": -3.874667, "b": -5.068590, "begin": -4.132496, "c": -5.761737, "character": -8.064322, "create": -3.801642, "date": -6.965710, "declare": -4.480803, "detail": -6.454884, "dg": -5.984880, "dg.mistake": -6.965710, "dg.status": -6.965710, "diagnostic_info_type": -6.272562, "diagnostics": -7.371175, "drop": -4.038970, "end": -3.459152, "exception": -7.371175, "f": -3.067110, "false": -4.400760, "fc": -7.371175, "feat": -7.371175, "feat_col": -7.371175, "features": -8.064322, "for": -5.761737, "from": -5.356272, "func": -6.678028, "function": -3.302148, "g": -4.508974, "geometry": -8.064322, "get": -7.371175, "get_observations": -7.371175, "if": -3.707613, "in": -5.761737, "int": -4.094030, "integer": -7.371175, "json": -6.965710, "kind": -6.678028, "language": -3.953448, "list_sites": -7.371175, "load": -5.579415, "loc": -8.064322, "loc.geom": -8.064322, "location": -8.064322, "loop": -5.068590, "message": -6.454884, "new_id": -6.454884, "notice": -5.068590, "o": -7.371175, "obs": -6.272562, "observation_date": -6.965710, "or": -4.630335, "others": -7.371175, "out": -5.068590, "oxygen": -6.965710, "plpgsql": -4.094030, "prop": -7.371175, "properties": -8.064322, "r": -3.889935, "r.c": -5.356272, "raise": -5.068590, "record": -4.806225, "replace": -4.630335, "return": -6.454884, "returns": -4.038970, "row_count": -6.965710, "row_to_json": -6.454884, "select": -3.801642, "set": -6.454884, "setof": -6.454884, "site_id": -6.678028, "sql": -5.761737, "stacked": -7.371175, "state": -7.371175, "status": -6.965710, "t": -5.356272, "table": -6.454884, "temp": -8.064322, "text": -5.356272, "then": -4.350750, "type": -6.118412, "update": -6.454884, "value": -6.965710, "varchar": -8.064322, "varying": -8.064322, "void": -4.235681, "when": -7.371175, }, "POV-Ray SDL": map[string]float64{ "#declare": -6.272016, "#default": -10.315067, "#else": -8.705629, "#end": -6.530878, "#for": -9.621920, "#if": -6.982863, "#ifndef": -9.621920, "#include": -7.270545, "#local": -6.704149, "#macro": -8.012482, "#version": -7.830161, "#while": -9.621920, "(": -5.366307, ")": -5.373425, "*": -8.369157, "*Chair_Plate_Thickness": -10.315067, "*Gamma": -10.315067, "*TestGreen": -10.315067, "*sin": -8.928773, "*x": -7.542479, "*y": -6.881080, "*z": -6.363824, "+": -6.553867, ",": -0.955790, "-": -1.666846, ".": -10.315067, "/": -8.705629, "//": -9.621920, "//eval": -10.315067, "/Steps": -8.705629, "/cos": -9.621920, "/vlength": -9.621920, "0": -9.216455, "2": -8.369157, "31541": -10.315067, "35592": -10.315067, "35616": -10.315067, ";": -6.187933, "<": -2.051992, "<-Chair_Leg_Depth,>": -10.315067, "<-Chair_Plate_Depth,>": -8.012482, "<-Chair_Plate_Depth-Chair_Plate_Curve_Rad,>": -10.315067, "<BrightStripeBW(TargetColor.red),BrightStripeBW(TargetColor.green),BrightStripeBW(TargetColor.blue)>": -10.315067, "<DarkStripeBW(TargetColor.red),DarkStripeBW(TargetColor.green),DarkStripeBW(TargetColor.blue)>": -10.315067, "<Nbr)>": -10.315067, "<chris_hormann@gmx.de>": -10.315067, "<pow(C.red,G),pow(C.green,G),pow(C.blue,G),pow(C.filter,G),pow(C.transmit,G)>": -10.315067, "=": -5.730100, ">": -2.052766, "AreaLight": -9.621920, "Balustrade": -9.216455, "Base": -9.621920, "Box": -9.621920, "Box_Iso": -9.216455, "BrightStripeBW": -10.315067, "BrightStripeRGB": -9.621920, "C": -9.216455, "CPig": -8.117843, "CameraDepth": -10.315067, "CameraDist": -9.216455, "CameraFocus": -9.216455, "CameraTilt": -10.315067, "Ceiling": -9.621920, "Ceiling_Segment": -7.917172, "Chair_Back": -9.216455, "Chair_Back_Plate": -9.621920, "Chair_Base": -9.621920, "Chair_Leg": -8.705629, "Chair_Leg_Angle": -8.705629, "Chair_Leg_Angle*y": -9.621920, "Chair_Leg_AngleA": -10.315067, "Chair_Leg_AngleA*x": -9.621920, "Chair_Leg_Depth": -8.928773, "Chair_Leg_Depth*x": -10.315067, "Chair_Plate": -9.621920, "Chair_Plate_Curve_Rad": -6.383242, "Chair_Plate_Depth": -10.315067, "Chair_Plate_Height": -8.705629, "Chair_Plate_Height*cos": -9.216455, "Chair_Plate_Thickness": -6.508405, "Chair_Plate_UAngle": -8.705629, "Chair_Plate_UAngle*x": -8.523308, "Chair_Plate_UWidth": -8.117843, "Chair_Plate_UWidth*y": -9.621920, "Chair_Plate_Width": -8.235626, "Chair_Plate_Width/": -7.137013, "Chair_Tube_Curve_Rad": -7.750118, "Chair_Tube_Curve_Rad*": -9.216455, "Chair_Tube_Curve_Rad*z": -8.928773, "Chair_Tube_Rad": -8.117843, "Chair_Tube_Rad*": -9.621920, "ClCol": -7.319335, "Cnt": -8.235626, "Cnt*": -10.315067, "Cnt=": -10.315067, "Color": -8.928773, "Content_Shape": -9.621920, "DarkStripeBW": -10.315067, "DarkStripeRGB": -9.621920, "G": -10.315067, "Gamma": -9.216455, "GammaAdjust": -9.216455, "Glass": -9.621920, "I": -8.523308, "I*": -9.216455, "Large_Column": -9.621920, "LightSource": -8.928773, "M_Watx": -9.621920, "Mat_Glass": -9.216455, "Mat_Liquid": -9.621920, "Nbr": -10.315067, "P": -9.621920, "P*Color": -10.315067, "P_Clouds": -9.621920, "Photons": -9.621920, "Pos": -8.117843, "RMF": -9.621920, "Radiosity": -9.621920, "Radius": -9.216455, "Rotate": -10.315067, "Rotate*x": -10.315067, "Round_Box_Merge": -9.621920, "Round_Box_Union": -8.117843, "Round_Cylinder_Merge": -8.369157, "Round_Cylinder_Union": -9.621920, "Small_Column": -9.621920, "Small_Column_part": -9.621920, "Split": -9.621920, "Steps": -9.621920, "StripedPigment": -9.621920, "Stripes": -9.216455, "T_Stone": -10.315067, "Table": -9.621920, "Table_Cloth": -9.621920, "Table_Height": -8.369157, "TargetBrightness": -8.928773, "TargetBrightness*": -9.621920, "TargetColor": -8.117843, "Terrain": -9.216455, "TestBlue": -8.928773, "TestGreen": -9.216455, "TestLight": -9.621920, "TestRed": -8.928773, "TestSphere": -8.369157, "Tex_Box_Metal": -9.621920, "Tex_Dark_Wood": -8.523308, "Tex_Floor": -9.621920, "Tex_Floor_A": -9.621920, "Tex_Floor_B": -9.621920, "Tex_Sky": -9.621920, "Tex_Stone": -8.012482, "Tex_Table_Foot": -8.928773, "Tex_Table_Foot_Bottom": -8.928773, "Tex_Terrain": -9.621920, "Tex_Vegetation": -9.621920, "Walls": -9.621920, "ZP": -2.773384, "ZS": -10.315067, "[": -6.171933, "]": -6.171933, "abs": -8.523308, "accuracy": -8.928773, "adaptive": -10.315067, "adc_bailout": -9.621920, "agate": -10.315067, "ambient": -7.224025, "angle": -10.315067, "area_light": -9.621920, "assumed_gamma": -9.621920, "box": -7.830161, "bozo": -8.705629, "brightness": -9.621920, "brilliance": -10.315067, "camera": -9.621920, "checker": -10.315067, "circular": -9.621920, "collect": -10.315067, "color": -6.272016, "color_map": -7.917172, "conserve_energy": -8.705629, "contained_by": -9.621920, "count": -9.621920, "cylinder": -7.179573, "difference": -8.928773, "diffuse": -7.224025, "direction": -9.621920, "distance": -10.315067, "end": -9.621920, "error_bound": -9.621920, "f_ridged_mf": -10.315067, "f_superellipsoid": -10.315067, "fade_color": -8.928773, "fade_distance": -8.928773, "fade_power": -8.928773, "falloff": -10.315067, "false": -10.315067, "finish": -7.224025, "fn_Rad": -9.621920, "fog": -10.315067, "fog_alt": -10.315067, "fog_offset": -10.315067, "fog_type": -10.315067, "fresnel": -8.705629, "function": -8.117843, "global_settings": -9.621920, "gradient": -9.216455, "granite": -8.369157, "gray_threshold": -9.621920, "height_field": -10.315067, "hollow": -9.216455, "image_height*CameraDepth*y/z": -10.315067, "interior": -8.369157, "intersection": -8.117843, "ior": -8.369157, "isosurface": -9.621920, "jitter": -9.621920, "lambda": -9.216455, "light_source": -9.216455, "local": -10.315067, "location": -9.621920, "look_at": -10.315067, "low_error_factor": -9.621920, "material": -8.369157, "max_gradient": -9.621920, "max_trace_level": -9.621920, "merge": -8.928773, "mesh": -10.315067, "metallic": -8.117843, "min": -9.621920, "minimum_reuse": -9.621920, "mod": -10.315067, "nearest_count": -9.621920, "no_shadow": -10.315067, "normal": -8.012482, "nx": -9.621920, "nx*ny": -10.315067, "ny": -9.621920, "object": -6.272016, "octaves": -9.216455, "off": -9.621920, "omega": -9.621920, "on": -7.224025, "orient": -9.621920, "photons": -8.705629, "pigment": -6.982863, "pigment_map": -9.621920, "plane": -7.481854, "point_at": -10.315067, "pow": -9.216455, "pretrace_end": -9.621920, "pretrace_start": -9.621920, "quilted": -10.315067, "radians": -8.117843, "radiosity": -9.621920, "radius": -10.315067, "recursion_limit": -9.621920, "reflection": -7.676010, "refraction": -9.621920, "rgb": -6.486426, "rgbft": -10.315067, "rgbt": -7.750118, "right": -9.621920, "rotate": -6.237530, "roughness": -7.750118, "scale": -6.651506, "show_Building": -9.621920, "show_Chair": -9.621920, "show_Fog": -9.621920, "show_Table": -9.621920, "show_TableCloth": -9.216455, "show_Table_Stuff": -9.621920, "show_Terrain": -9.621920, "show_Water": -9.621920, "sin": -10.315067, "sky": -10.315067, "slope": -10.315067, "spacing": -10.315067, "specular": -7.424696, "sphere": -8.117843, "spotlight": -10.315067, "sqrt": -9.621920, "sturm": -10.315067, "target": -9.621920, "texture": -6.464920, "texture_map": -10.315067, "torus": -7.750118, "translate": -6.038401, "triangle_wave": -9.621920, "true": -7.750118, "turbulence": -8.012482, "union": -7.096191, "up": -9.216455, "uv_mapping": -10.315067, "version": -8.012482, "vertex_vectors": -9.621920, "warp": -8.523308, "water_level": -10.315067, "wood": -10.315067, "x": -8.117843, "x*": -10.315067, "x*CameraTilt": -9.621920, "x*image_width/image_height": -9.621920, "x*vlength": -10.315067, "x*x": -9.216455, "y": -7.830161, "y*Radius": -9.621920, "y*vlength": -10.315067, "y*y": -9.621920, "z": -7.319335, "z*": -7.607017, "z*CameraDepth": -10.315067, "z*Table_Height": -10.315067, "z*z": -10.315067, "{": -4.440137, "}": -4.442949, }, "Pan": map[string]float64{ "#This": -5.049856, "(": -2.970414, ")": -2.970414, "+": -4.356709, ",": -4.356709, "-": -5.049856, ";": -1.584120, "<<": -5.049856, "=": -1.830980, "?": -4.356709, "ARGV": -5.049856, "E": -5.049856, "EOF": -4.356709, "HERE": -5.049856, "PKG_ARCH_DEFAULT": -5.049856, "SELF": -5.049856, "STUFF": -5.049856, "TEST": -4.356709, "This": -5.049856, "[": -4.356709, "]": -4.356709, "again.": -5.049856, "an": -5.049856, "awesome": -5.049856, "be": -5.049856, "config": -5.049856, "demonstrates": -5.049856, "e": -5.049856, "else": -5.049856, "error": -5.049856, "example": -5.049856, "false": -4.356709, "file": -5.049856, "foreach": -5.049856, "function": -5.049856, "heredoc": -5.049856, "highlighted": -5.049856, "i": -5.049856, "if": -5.049856, "in": -5.049856, "include": -5.049856, "line": -5.049856, "main": -5.049856, "mything": -4.356709, "normally": -5.049856, "null": -5.049856, "object": -5.049856, "pantest": -5.049856, "pkg_repl": -4.356709, "return": -4.356709, "should": -5.049856, "show_things_view_for_stuff": -5.049856, "small": -5.049856, "style": -5.049856, "template": -5.049856, "thing": -4.356709, "to_string": -5.049856, "true": -4.356709, "undef": -5.049856, "value": -5.049856, "variable": -3.663562, "{": -3.440418, "}": -3.440418, }, "Papyrus": map[string]float64{ "!": -5.811141, "(": -2.200223, ")": -2.200223, "*": -6.504288, "+": -3.613916, ",": -2.893370, "-": -3.413246, ":": -6.504288, ";": -3.939339, "<": -5.405676, "=": -2.026951, "Actor": -4.307064, "ActorBase": -6.504288, "Auto": -4.558378, "Bool": -5.811141, "CAMTEST_CameraActor": -5.811141, "CAMTEST_OverShoulderME": -6.504288, "CHANGE": -6.504288, "Camera": -5.405676, "Camera.EnableAI": -6.504288, "Camera.GetAngleZ": -5.811141, "Camera.GetHeadingAngle": -5.811141, "Camera.SetLookAt": -6.504288, "Camera.SetScale": -6.504288, "Camera.SplineTranslateTo": -5.811141, "Camera.TranslateTo": -6.504288, "CheckForExtras": -5.811141, "CheckForOrphans": -6.504288, "Debug.MessageBox": -6.504288, "Debug.Trace": -3.613916, "DelayedStart": -5.811141, "DisablePlayerControls": -6.504288, "Do": -6.504288, "DoInit": -5.811141, "DoUpgrade": -5.811141, "DoUpkeep": -5.811141, "Else": -5.405676, "ElseIf": -6.504288, "EnablePlayerControls": -6.504288, "EndEvent": -4.558378, "EndFunction": -4.712529, "EndIf": -4.558378, "Event": -4.558378, "Events": -5.811141, "FIXME": -6.504288, "False": -4.424847, "Float": -4.106393, "Fog": -6.504288, "ForceFirstPerson": -6.504288, "ForceThirdPerson": -6.504288, "Function": -4.712529, "Functions": -5.811141, "Game": -5.811141, "GetVersionString": -5.405676, "Hidden": -5.811141, "If": -4.558378, "Import": -5.117994, "Imports": -5.811141, "Int": -5.117994, "Major": -5.117994, "Math.Floor": -6.504288, "Message": -5.811141, "Minor": -5.117994, "Mist": -6.504288, "ModName": -5.405676, "ModVersion": -4.201703, "ObjectReference": -5.811141, "OnGameReloaded": -6.504288, "OnInit": -5.811141, "OnReset": -6.504288, "Play": -6.504288, "Player": -4.712529, "Player.PlaceActorAtMe": -6.504288, "Player.X": -5.405676, "Player.Y": -5.405676, "Player.Z": -5.405676, "PlayerRef": -5.405676, "PosX": -6.504288, "PosY": -6.504288, "PosZ": -6.504288, "Properties": -5.811141, "Property": -4.558378, "Quest": -5.811141, "RandomFloat": -6.504288, "Return": -5.811141, "Scriptname": -5.405676, "SetCameraTarget": -5.811141, "SetHUDCartMode": -5.811141, "SetInChargen": -5.811141, "SetPlayerAIDriven": -5.811141, "SpeedMult": -6.504288, "String": -5.117994, "THIS": -6.504288, "Target": -6.504288, "True": -4.558378, "UPDATING": -6.504288, "UpdateConfig": -5.811141, "Utility": -5.811141, "Variables": -5.811141, "WHEN": -6.504288, "Wait": -5.117994, "_CurrentVersion": -4.201703, "_EndTime": -6.504288, "_Running": -5.117994, "_ScriptLatency": -6.504288, "_StartTime": -6.504288, "_sCurrentVersion": -5.405676, "abActivate": -6.504288, "abCamSwitch": -6.504288, "abFighting": -6.504288, "abJournalTabs": -6.504288, "abLooking": -6.504288, "abMenu": -6.504288, "abMovement": -6.504288, "abSneaking": -6.504288, "activemagiceffect": -6.504288, "akCaster": -5.811141, "akTarget": -5.811141, "and": -6.504288, "as": -5.405676, "camera": -6.504288, "effects": -6.504288, "extends": -5.405676, "fVersion": -5.405676, "false": -6.504288, "for": -6.504288, "initialization": -6.504288, "onEffectFinish": -6.504288, "onEffectStart": -6.504288, "onUpdate": -6.504288, "sErrorMessage": -6.504288, "scripts": -6.504288, "track": -6.504288, "true": -4.558378, "vMFX_FXPlugin": -6.504288, "vSCM_MetaQuestScript": -6.504288, "vSCM_ModLoadedMSG": -6.504288, "vSCM_ModLoadedMSG.Show": -6.504288, "vSCM_ModUpdatedMSG": -6.504288, "vSCM_ModUpdatedMSG.Show": -6.504288, "variables": -6.504288, "with": -6.504288, "{": -5.811141, "}": -5.811141, }, "Parrot Assembly": map[string]float64{ "!": -2.484907, "#": -2.484907, ".pcc_sub": -2.484907, "/usr/bin/env": -2.484907, ":": -1.791759, "SHEBANG#!parrot": -2.484907, "end": -2.484907, "main": -1.791759, "parrot": -2.484907, "say": -2.484907, }, "Parrot Internal Representation": map[string]float64{ "!": -2.302585, "#": -2.302585, ".end": -2.302585, ".sub": -2.302585, "/usr/bin/env": -2.302585, ":": -2.302585, "SHEBANG#!parrot": -2.302585, "main": -2.302585, "parrot": -2.302585, "say": -2.302585, }, "Pascal": map[string]float64{ "!": -8.890686, "#": -8.197539, "$": -4.998866, "'": -8.890686, "(": -3.035614, ")": -3.024218, "*": -5.946247, "**": -6.811244, "*****************************************************************************": -8.890686, "*.res": -8.890686, "+": -5.019485, ",": -3.510789, "-": -4.533977, ".Category": -8.890686, ".PushBack": -8.890686, ".VCurrency": -8.890686, ".VExtended": -8.890686, ".VInt": -8.890686, ".VInteger": -8.890686, ".VType": -8.890686, "/": -6.811244, "//Writeln": -8.890686, "/usr/bin/instantfpc": -8.890686, "0": -5.307167, "1": -5.799643, ":": -2.519074, ";": -2.231392, "<": -6.588101, "<(a:>": -7.504392, "<String,TConfigValues,TStrHashCaseInsensitive>": -8.890686, "<String>": -8.890686, "=": -3.021389, ">": -6.000314, "?": -8.197539, "@APATH": -8.890686, "@APath": -8.890686, "@test": -8.890686, "A": -8.197539, "ACaption": -7.792074, "ADescr": -7.792074, "ADescr.LazPackage": -8.890686, "ADescription": -7.792074, "AFormClass": -6.405779, "AFormClass.ClassName": -8.890686, "ANY": -8.890686, "APackage": -6.405779, "AUnit": -7.792074, "AUnitName": -7.792074, "Ahwnd": -8.890686, "Application.CreateForm": -8.890686, "Application.Initialize": -8.890686, "Application.MainFormOnTaskbar": -8.890686, "Application.Run": -8.890686, "Author": -8.890686, "B": -7.504392, "BIOS": -8.890686, "BoolToStr": -8.197539, "Boolean": -7.281248, "Break": -8.890686, "BullCow": -8.890686, "C": -8.890686, "CFGDLLHandle": -7.792074, "CFGDllHandle": -8.890686, "COPYING.FPC": -8.890686, "CSIDL_ADMINTOOLS": -8.890686, "CSIDL_APPDATA": -8.890686, "CSIDL_CDBURN_AREA": -8.890686, "CSIDL_COMMON_ADMINTOOLS": -8.890686, "CSIDL_COMMON_APPDATA": -8.890686, "CSIDL_COMMON_DESKTOPDIRECTORY": -8.890686, "CSIDL_COMMON_DOCUMENTS": -8.890686, "CSIDL_COMMON_FAVORITES": -8.890686, "CSIDL_COMMON_MUSIC": -8.890686, "CSIDL_COMMON_PICTURES": -8.890686, "CSIDL_COMMON_PROGRAMS": -8.890686, "CSIDL_COMMON_STARTMENU": -8.890686, "CSIDL_COMMON_STARTUP": -8.890686, "CSIDL_COMMON_TEMPLATES": -8.890686, "CSIDL_COMMON_VIDEO": -8.890686, "CSIDL_COOKIES": -8.890686, "CSIDL_DESKTOPDIRECTORY": -8.890686, "CSIDL_FAVORITES": -8.890686, "CSIDL_FLAG_CREATE": -8.197539, "CSIDL_HISTORY": -8.890686, "CSIDL_INTERNET_CACHE": -8.890686, "CSIDL_LOCAL_APPDATA": -8.890686, "CSIDL_MYMUSIC": -8.890686, "CSIDL_MYPICTURES": -8.890686, "CSIDL_MYVIDEO": -8.890686, "CSIDL_NETHOOD": -8.890686, "CSIDL_PERSONAL": -8.890686, "CSIDL_PRINTHOOD": -8.890686, "CSIDL_PROFILE": -8.890686, "CSIDL_PROFILES": -8.890686, "CSIDL_PROGRAMS": -8.890686, "CSIDL_PROGRAM_FILES": -8.890686, "CSIDL_PROGRAM_FILES_COMMON": -8.890686, "CSIDL_RECENT": -8.890686, "CSIDL_SENDTO": -8.890686, "CSIDL_STARTMENU": -8.890686, "CSIDL_STARTUP": -8.890686, "CSIDL_SYSTEM": -8.890686, "CSIDL_TEMPLATES": -8.890686, "CSIDL_WINDOWS": -8.890686, "Caption": -8.890686, "Category": -8.890686, "Char": -8.890686, "Class": -8.197539, "Classes": -8.197539, "Component": -8.890686, "ConfigLine": -6.588101, "ConfigName": -7.098926, "ConfigStorage": -6.811244, "ConfigStorage.Contains": -7.792074, "ConfigStorage.Free": -8.890686, "ConfigStrings": -7.792074, "ConfigStrings.Free": -8.890686, "ConfigStrings.LoadFromFile": -8.890686, "ConfigValue": -7.792074, "ConfigValues": -7.792074, "ConfigValues.DelimitedText": -8.890686, "ConfigValues.Delimiter": -8.890686, "ConfigValues.Free": -8.890686, "ConfigValues.StrictDelimiter": -8.890686, "Const": -7.281248, "Constructor": -7.792074, "Convert": -8.890686, "Copy": -8.197539, "Copyright": -8.197539, "Could": -8.890686, "Count": -8.197539, "Create": -7.281248, "Csidl": -8.890686, "CustomFormList": -7.281248, "CustomFormList.Add": -8.890686, "CustomFormList.Count": -8.197539, "D": -6.811244, "D.Category": -8.890686, "D.UnitName": -8.890686, "DS": -8.890686, "DWord": -8.890686, "Delete": -8.890686, "Descr": -7.792074, "Description": -8.890686, "Destroy": -8.197539, "Does": -8.197539, "Don": -8.890686, "DoneCustomForms": -8.197539, "Double": -5.394178, "E": -7.792074, "Exit": -6.405779, "FAuthor": -7.792074, "FCL": -8.890686, "FCaption": -7.504392, "FCategory": -7.504392, "FDescription": -7.504392, "FFormClass": -7.504392, "FFormDescr": -7.792074, "FFormDescr.Author": -8.197539, "FFormDescr.Caption": -8.197539, "FFormDescr.Description": -8.890686, "FFormDescr.FFormClass": -8.890686, "FFormDescr.UnitName": -8.890686, "FITNESS": -8.890686, "FLazPackage": -7.504392, "FOR": -8.890686, "FPC": -8.890686, "FUnitName": -7.504392, "False": -8.197539, "Finalization": -8.197539, "Finally": -8.890686, "Flags": -8.890686, "For": -7.792074, "Form": -8.197539, "FormClass": -8.890686, "FormDescr": -8.890686, "Format": -8.197539, "Forms": -8.197539, "Francesco": -8.890686, "Free": -8.197539, "FreeAndNil": -8.890686, "FreeLibrary": -8.890686, "Function": -6.405779, "Get": -8.890686, "GetGuess": -7.504392, "GetInterfaceUsesSection": -8.197539, "GetLocalizedDescription": -8.890686, "GetLocalizedName": -8.890686, "GetPage": -8.890686, "GetUnixMangaImageURL": -8.890686, "GetVal": -8.890686, "GetWindowsSpecialDir": -8.890686, "Guess": -6.693461, "GuessScore": -8.197539, "H": -8.197539, "HRESULT": -8.890686, "HWND": -8.890686, "I": -7.504392, "ID": -8.197539, "If": -7.281248, "Inc": -8.197539, "IncludeTrailingPathDelimiter": -8.890686, "Infinity": -7.792074, "Inherited": -8.890686, "InitCustomForms": -8.197539, "InitDLL": -8.197539, "Initialization": -8.197539, "Initialize": -8.890686, "IntToStr": -7.792074, "Integer": -4.600226, "IsNan": -8.197539, "It": -8.197539, "It.Free": -8.890686, "It.Next": -8.890686, "It.Value.Free": -8.890686, "Iterator": -8.890686, "L": -7.792074, "L.Add": -8.890686, "L.Count": -8.890686, "L.Duplicates": -8.890686, "L.Free": -8.890686, "L.Sorted": -8.890686, "LazPackage": -8.890686, "Length": -4.145754, "Library": -8.890686, "LineEnding": -8.890686, "Load": -8.890686, "Lombardi": -8.890686, "MAX_PATH": -8.890686, "MERCHANTABILITY": -8.890686, "Make": -8.197539, "MakeNumber": -7.792074, "Mantis": -8.890686, "Math": -8.890686, "Must": -8.890686, "N": -7.281248, "NaN": -7.792074, "Name": -8.890686, "NegInfinity": -7.504392, "NewItemIntf": -8.890686, "Nil": -8.197539, "Nintendo": -8.890686, "Num": -6.693461, "OnTag": -8.890686, "OnText": -8.890686, "Ord": -8.890686, "Otherwise": -8.890686, "PARTICULAR": -8.890686, "PChar": -8.197539, "PFNSHGetFolderPath": -8.197539, "PURPOSE.": -8.890686, "Parser": -8.890686, "Parser.Exec": -8.890686, "Parser.Free": -8.890686, "Parser.OnFoundTag": -8.890686, "Parser.OnFoundText": -8.890686, "Pascal": -8.890686, "Path": -8.890686, "Pos": -7.504392, "Procedure": -6.405779, "Program": -8.890686, "ProjectIntf": -8.890686, "Property": -6.811244, "Public": -8.890686, "R": -8.890686, "RandomRange": -8.890686, "Randomize": -8.890686, "Read": -6.811244, "ReadLn": -8.890686, "Register": -8.197539, "RegisterCustomForm": -6.811244, "RegisterNewItemCategory": -8.890686, "RegisterProjectFileDescriptor": -8.890686, "Represent": -8.890686, "RequiredPackages": -8.197539, "ResourceClass": -8.890686, "Result": -5.201806, "SAppFrameWork": -8.197539, "SHEBANG#!instantfpc": -8.890686, "SHGetFolderPath": -7.504392, "SHGetFolderPathA": -8.890686, "SInstanceOf": -8.197539, "S_ISBLK": -8.890686, "S_ISCHR": -8.890686, "S_ISDIR": -8.890686, "S_ISFIFO": -8.890686, "S_ISLNK": -8.890686, "S_ISREG": -8.890686, "S_ISSOCK": -8.890686, "S_OK": -8.890686, "See": -8.890686, "Self.Terminated": -8.890686, "SeparatorPos": -6.811244, "SetLength": -4.796341, "Size": -8.890686, "StrPas": -8.890686, "StrToFourDigit": -7.792074, "StrToInt": -8.890686, "String": -5.558481, "SysUtils": -7.792074, "TConfigStorage": -8.197539, "TConfigStorage.Create": -8.890686, "TConfigStorage.Destroy": -8.890686, "TConfigValues": -8.890686, "TConfigValues.Create": -8.890686, "TCustomFormDescr": -6.325737, "TCustomFormDescr.Create": -7.504392, "TCustomFormFileDescriptor": -7.792074, "TCustomFormFileDescriptor.Create": -8.197539, "TCustomFormFileDescriptor.GetInterfaceUsesSection": -8.890686, "TCustomFormFileDescriptor.GetLocalizedDescription": -8.890686, "TCustomFormFileDescriptor.GetLocalizedName": -8.890686, "TFileDescPascalUnitWithResource": -8.890686, "TForm": -8.890686, "TFormClass": -6.588101, "TFourDigit": -6.325737, "TFourDigit.": -8.890686, "THTMLParser.Create": -8.890686, "THandle": -8.197539, "THashMap": -8.890686, "TIterator": -8.890686, "TMatrix": -4.007884, "TNewIDEItemCategory.Create": -8.890686, "TObject": -8.890686, "TObjectList": -8.890686, "TObjectList.Create": -8.890686, "TStrHashCaseInsensitive": -8.890686, "TStrHashCaseInsensitive.hash": -8.890686, "TStringList": -8.197539, "TStringList.Create": -7.281248, "TStrings": -8.890686, "TVector": -4.671178, "Tentative": -7.792074, "This": -8.197539, "Token": -8.890686, "Trim": -7.792074, "True": -7.281248, "Try": -8.890686, "Turns": -7.281248, "Type": -7.792074, "U": -7.281248, "Unit": -8.890686, "UnitName": -8.890686, "UpCase": -7.792074, "Upcase": -8.890686, "Var": -7.281248, "WARRANTY": -8.890686, "WITHOUT": -8.890686, "WellFormed": -7.792074, "While": -8.890686, "Wins": -8.197539, "Write": -6.588101, "WriteFourDigit": -8.197539, "WriteLn": -6.325737, "Writeln": -8.890686, "[": -3.790819, "\\": -8.890686, "]": -3.790819, "^": -7.792074, "_IFBLK": -8.890686, "_IFCHR": -8.890686, "_IFDIR": -8.890686, "_IFIFO": -8.890686, "_IFLNK": -8.890686, "_IFMT": -6.944776, "_IFREG": -8.890686, "_IFSOCK": -8.890686, "__errno": -8.890686, "a": -3.439647, "about": -8.890686, "an": -4.628006, "and": -6.251629, "are": -8.890686, "array": -7.504392, "as": -7.792074, "avoid": -8.890686, "b": -3.617686, "be": -7.792074, "begin": -3.772692, "bn": -5.489489, "boolean": -6.944776, "break": -8.890686, "bull.": -8.890686, "bulls": -7.281248, "bulls.": -8.890686, "but": -8.890686, "by": -8.197539, "byrow": -7.504392, "c": -6.118097, "case": -7.504392, "cdecl": -8.890686, "char": -8.890686, "check": -7.792074, "class": -7.504392, "const": -6.944776, "constructor": -7.792074, "contnrs": -8.890686, "copyright.": -8.890686, "cows": -7.098926, "current": -7.281248, "custforms": -8.890686, "cwindirs": -8.890686, "data": -6.118097, "defined": -8.890686, "destructor": -8.197539, "details": -8.890686, "determine": -8.890686, "development": -8.890686, "digits": -8.890686, "digits.": -8.890686, "distributed": -8.890686, "distribution": -8.890686, "ditch.": -8.890686, "div": -8.197539, "do": -4.508659, "dupIgnore": -8.890686, "each": -8.890686, "else": -6.492791, "end": -3.766722, "end.": -6.944776, "endif": -8.890686, "error": -8.890686, "even": -8.890686, "export": -8.890686, "fd": -8.197539, "file": -8.197539, "following.": -8.890686, "for": -4.546880, "formed": -8.890686, "formed.": -8.890686, "fpc": -8.890686, "fpc_fullversion": -8.890686, "full": -8.890686, "function": -5.846163, "functions": -8.890686, "get": -8.890686, "gets": -8.890686, "ghashmap": -8.890686, "global": -7.792074, "gmail": -8.890686, "greater": -8.890686, "guess": -7.792074, "guess.": -8.197539, "gvector": -8.890686, "hash": -8.890686, "hope": -8.890686, "i": -3.231204, "if": -5.227124, "implementation": -8.197539, "implied": -8.890686, "in": -6.944776, "included": -8.890686, "indices": -8.890686, "inherited": -8.197539, "inline": -6.811244, "input": -7.281248, "integer": -6.693461, "interface": -8.197539, "is": -7.792074, "it": -7.792074, "it.": -8.890686, "j": -5.594849, "keeping": -8.890686, "l": -7.792074, "l.Free": -8.197539, "l.Text": -8.890686, "large": -8.890686, "len": -7.098926, "line": -8.890686, "longint": -6.811244, "m": -5.456699, "manager.container.Manager.retryConnect": -8.890686, "manager.container.PageContainerLinks": -8.890686, "manager.container.PageLinks": -8.890686, "math": -8.890686, "math.max": -7.098926, "matrix": -5.632589, "max": -7.504392, "mod": -5.894954, "mode": -7.792074, "n": -3.743191, "ncol": -6.405779, "new": -8.890686, "nil": -6.944776, "no": -8.890686, "not": -7.098926, "nrow": -6.492791, "number.": -8.890686, "objFPC": -8.890686, "objfpc": -8.197539, "of": -6.492791, "operator": -4.998866, "operator*": -6.811244, "operator**": -6.693461, "operator/": -6.811244, "or": -7.281248, "order": -8.890686, "out": -8.890686, "override": -7.504392, "p": -7.504392, "parse": -7.504392, "parse.Count": -8.197539, "parse.Free": -8.197539, "part": -8.890686, "path": -8.890686, "pathBuf": -8.890686, "pathLength": -8.890686, "plongint": -8.890686, "power": -8.890686, "prevent": -8.890686, "private": -8.197539, "procedure": -7.792074, "program": -7.792074, "public": -8.890686, "random": -8.890686, "randymnity.": -8.890686, "rep": -7.792074, "repeat": -8.890686, "repeating": -8.890686, "required": -8.890686, "res": -3.492523, "result": -6.811244, "rn": -5.632589, "s": -6.182636, "same": -8.890686, "score": -8.197539, "secred": -8.890686, "sentence.": -8.890686, "shfolder.dll": -8.197539, "sign": -7.504392, "specialize": -8.197539, "spoofing": -8.890686, "stdcall": -8.890686, "string": -6.811244, "string.": -8.890686, "strings": -8.890686, "supplied": -8.890686, "sysutils": -8.890686, "team": -8.890686, "tell": -8.890686, "test": -8.197539, "that": -8.197539, "the": -6.000314, "them": -8.890686, "then": -5.177114, "this": -8.890686, "times": -7.504392, "tlist": -8.197539, "to": -4.546880, "true": -7.792074, "trunc": -8.197539, "trying": -8.890686, "turn.": -8.890686, "type": -7.504392, "unit": -7.792074, "until": -7.792074, "useful": -8.890686, "user": -7.792074, "uses": -6.811244, "using": -8.890686, "uw": -8.197539, "var": -4.600226, "vector": -7.098926, "vtCurrency": -8.890686, "vtExtended": -8.890686, "vtInt": -8.890686, "vtInteger": -8.890686, "warranty": -8.890686, "well": -8.197539, "while": -8.890686, "will": -8.890686, "win": -8.890686, "windows": -8.890686, "with": -8.890686, "without": -8.890686, "won": -8.890686, "workCounter": -8.197539, "would": -8.890686, "writeln": -8.890686, "x": -7.504392, "{": -5.394178, "}": -5.424950, }, "Pep8": map[string]float64{ "'": -7.740012, "(": -5.542787, ")": -5.542787, "*": -7.740012, "+": -5.488720, ",": -2.346384, "-": -3.933350, ".ADDRSS": -7.740012, ".ASCII": -7.334547, ".BLOCK": -4.626497, ".END": -6.487249, ".EQUATE": -4.769598, ".WORD": -5.725109, "/NULL": -8.433159, ":": -2.677417, ";": -2.459350, "<": -7.740012, "=": -7.740012, ">": -8.433159, "A": -5.031962, "ADDA": -5.437427, "ADDSP": -5.542787, "ADDX": -6.353718, "ANDX": -8.433159, "API": -8.433159, "ASLA": -7.046865, "ASLX": -8.433159, "Address": -5.948253, "All": -7.740012, "Allocates": -7.740012, "Any": -8.433159, "Arguments": -7.740012, "BR": -5.599946, "BREQ": -6.035264, "BRGE": -6.487249, "BRGT": -8.433159, "BRLE": -8.433159, "BRLT": -6.353718, "BRNE": -7.334547, "Base": -6.353718, "CALL": -4.671959, "CHARI": -8.433159, "CHARO": -5.660570, "CPA": -5.214283, "CPX": -6.487249, "Calling": -7.740012, "Columns": -8.433159, "Compute": -8.433159, "Computes": -6.823721, "Consider": -8.433159, "Contains": -7.334547, "Copies": -8.433159, "Copy": -8.433159, "Creates": -7.740012, "Current": -7.046865, "DECI": -6.487249, "DECO": -5.948253, "Destination": -7.740012, "Dividend": -8.433159, "Divider": -8.433159, "Divides": -8.433159, "Element": -6.487249, "Error": -7.334547, "Errors": -8.433159, "Example": -8.433159, "Except": -8.433159, "Fills": -8.433159, "Finally": -8.433159, "First": -8.433159, "For": -8.433159, "Formatting": -8.433159, "Gets": -6.823721, "Head": -8.433159, "Holds": -8.433159, "Identifier": -7.334547, "If": -7.334547, "In": -8.433159, "Index": -6.487249, "Input": -8.433159, "Keep": -7.740012, "LDA": -3.911371, "LDBYTEA": -7.046865, "LDX": -4.521136, "LIBRARY": -8.433159, "Left": -7.334547, "Length": -6.641400, "Limitation": -8.433159, "Linked": -7.740012, "List": -8.433159, "Magic": -8.433159, "Maximum": -8.433159, "Muliplies": -8.433159, "NEGX": -7.740012, "NOTA": -8.433159, "Next": -8.433159, "No": -7.740012, "Node": -8.433159, "Non": -7.046865, "Note": -8.433159, "Number": -8.433159, "Offset": -7.334547, "Old": -8.433159, "Out": -8.433159, "Parameters": -5.065863, "Partitions": -8.433159, "Pass": -8.433159, "Pivot": -8.433159, "Pointer": -5.488720, "Position": -7.334547, "Prints": -7.046865, "Quotient": -8.433159, "REQUIRES": -7.046865, "RET": -4.967423, "Read": -7.740012, "Reads": -7.334547, "Reference": -8.433159, "Register": -7.334547, "Registers": -7.740012, "Remain": -8.433159, "Removes": -8.433159, "Result": -8.433159, "Return": -6.823721, "Returns": -5.388637, "Right": -7.334547, "Row": -8.433159, "SP": -5.542787, "STA": -3.933350, "STBYTEA": -7.334547, "STOP": -6.035264, "STRO": -7.334547, "STX": -5.388637, "SUBA": -6.353718, "SUBSP": -5.488720, "SUBX": -8.433159, "Sets": -7.334547, "Side": -7.334547, "Simple": -7.740012, "Since": -8.433159, "Size": -5.948253, "Sorts": -7.740012, "Source": -7.740012, "Square": -6.823721, "Start": -7.740012, "Stdin": -8.433159, "Stops": -8.433159, "String": -8.433159, "Sum": -6.130574, "TESTS": -8.433159, "Temporary": -7.334547, "Test": -8.433159, "Tests": -7.740012, "The": -5.794102, "Then": -8.433159, "Total": -8.433159, "Unshifts": -8.433159, "Unsorted": -8.433159, "Uses": -8.433159, "When": -7.740012, "X": -5.137322, "Y": -7.740012, "\\": -7.334547, "_start": -7.740012, "`": -5.660570, "a": -4.425826, "added": -8.433159, "address": -5.794102, "aformented": -8.433159, "algorithm": -8.433159, "algorithm.": -8.433159, "all": -8.433159, "allocate": -7.740012, "allocated": -7.740012, "allocation": -8.433159, "also": -8.433159, "altered": -8.433159, "an": -6.130574, "analogous": -8.433159, "and": -6.130574, "another": -8.433159, "anti": -7.334547, "antidiagonal": -7.334547, "any": -7.740012, "are": -7.046865, "arguments": -7.740012, "arr": -7.046865, "array": -6.353718, "as": -6.235935, "assumption": -7.334547, "at": -6.235935, "available": -7.334547, "base": -8.433159, "based": -7.334547, "basis": -8.433159, "be": -5.255105, "before": -8.433159, "being": -8.433159, "below": -8.433159, "bound": -7.046865, "bounds": -7.046865, "buffer": -5.948253, "buflen": -7.046865, "by": -6.823721, "byte": -7.740012, "bytes": -7.740012, "call": -7.334547, "call.": -8.433159, "capped": -8.433159, "capsule": -8.433159, "cdecl": -8.433159, "cdiaglp": -7.740012, "cdiagsum": -7.740012, "cdout": -7.740012, "cdsm": -7.740012, "cdsqaddr": -7.334547, "cdsqsz": -7.334547, "cdsum": -6.823721, "cdtmpx": -6.823721, "cdtmpy": -6.823721, "character.": -8.433159, "chars": -7.740012, "check": -8.433159, "clsdecpt": -7.740012, "clsmloop": -7.740012, "clsmout": -7.740012, "clsmsqad": -7.740012, "clsmsqsz": -7.046865, "clsmyp": -6.353718, "clsmyp_": -8.433159, "clssmlp": -7.740012, "cnt": -7.740012, "code": -7.334547, "codes": -8.433159, "colout": -7.740012, "colsum": -7.740012, "colsums": -7.740012, "column": -6.130574, "command": -8.433159, "compared": -7.740012, "compute": -7.740012, "computed": -8.433159, "computes": -8.433159, "concerning": -7.740012, "contain": -6.641400, "content": -7.046865, "convention": -7.740012, "conventions": -7.740012, "copy": -8.433159, "corner": -7.740012, "correctness": -8.433159, "counter": -8.433159, "cpylen": -7.740012, "csclsqad": -7.334547, "csclsqsz": -7.046865, "csclsum": -6.823721, "csclxpos": -6.823721, "cscolid": -6.823721, "curra": -7.046865, "d": -3.550357, "data": -7.740012, "debugging": -8.433159, "defined": -7.740012, "determine": -8.433159, "dglp": -7.740012, "dglpout": -7.740012, "dgsm": -6.641400, "dgsum": -8.433159, "diagonal": -6.130574, "diagsum": -7.740012, "digit": -8.433159, "digits": -7.046865, "div": -7.740012, "dividend": -7.740012, "divider": -7.334547, "divlp": -7.740012, "divout": -7.740012, "do": -8.433159, "does": -7.740012, "dsqaddr": -7.334547, "dsqsz": -7.046865, "dstbuf": -8.433159, "dtsbuf": -8.433159, "during": -7.740012, "dynamic": -8.433159, "dynamically.": -8.433159, "each": -7.046865, "effects": -7.334547, "el": -8.433159, "elemat": -6.823721, "element": -5.794102, "elements": -6.235935, "elsqaddr": -6.823721, "empty": -7.046865, "encounter": -8.433159, "enter": -8.433159, "entries": -8.433159, "error": -6.353718, "euclidian": -8.433159, "every": -8.433159, "exceeds": -8.433159, "execution": -7.740012, "fastcall": -8.433159, "fetch": -8.433159, "fgets": -7.740012, "fgetslp": -7.740012, "field": -8.433159, "fields": -8.433159, "filloop": -7.740012, "fillout": -7.740012, "fillsq": -7.740012, "first": -7.046865, "follow": -8.433159, "following": -7.046865, "for": -5.660570, "form": -8.433159, "fout": -7.334547, "from": -6.130574, "function": -7.740012, "functions": -8.433159, "further": -8.433159, "get": -8.433159, "getoob": -7.740012, "getstrob": -7.740012, "given": -7.740012, "handle": -8.433159, "head": -7.334547, "heap": -6.130574, "higher": -8.433159, "hpptr": -6.353718, "i": -3.422524, "identified": -7.334547, "if": -7.046865, "implementation": -7.740012, "in": -5.297665, "include": -8.433159, "index": -6.353718, "indexed": -7.740012, "indexes": -7.334547, "initial": -8.433159, "input": -8.433159, "inputs": -8.433159, "integer": -8.433159, "integers": -6.487249, "ints": -8.433159, "is": -5.342117, "it": -6.823721, "it.": -8.433159, "iterate": -8.433159, "its": -6.823721, "keyboard": -8.433159, "last": -8.433159, "left": -7.740012, "lencpt": -6.823721, "length": -7.334547, "lenode": -6.487249, "lenout": -7.740012, "library": -8.433159, "linked": -8.433159, "list": -4.999172, "list.length": -8.433159, "listlen": -7.740012, "llenlp": -7.740012, "local": -8.433159, "locally": -8.433159, "lower": -7.334547, "lremid": -8.433159, "lremlp": -8.433159, "lremnd": -8.433159, "lremobst": -8.433159, "lrempnd": -8.433159, "lshflp": -7.046865, "lshfnhd": -8.433159, "lshfohd": -7.046865, "lstget": -7.740012, "lstgetst": -7.334547, "lsthead": -6.823721, "lstlen": -7.740012, "lstset": -7.740012, "lstsetel": -7.334547, "lstsetin": -7.334547, "lstsetlp": -7.334547, "lstsetnp": -7.334547, "lstsetrt": -7.740012, "lstsetst": -7.740012, "lstshft": -7.740012, "lstunshf": -8.433159, "made": -7.046865, "magic": -7.740012, "main": -6.823721, "match": -8.433159, "max": -6.823721, "maximum": -7.334547, "maxrows": -7.046865, "memcplp": -7.740012, "memcpout": -7.740012, "memcpy": -8.433159, "memory": -8.433159, "mentionned": -8.433159, "message": -8.433159, "method": -8.433159, "mnelmt": -7.740012, "mnlst": -6.487249, "muloop": -7.740012, "mulout": -7.740012, "mult": -6.641400, "multiplication": -7.334547, "multmp": -7.046865, "must": -7.334547, "n": -6.641400, "n.": -8.433159, "namely": -8.433159, "ndacurri": -6.823721, "ndagez": -7.740012, "ndaind": -6.823721, "ndalp": -7.334547, "ndalst": -7.046865, "ndalstln": -7.334547, "ndanode": -6.823721, "ndaout": -7.740012, "necessary.": -8.433159, "need": -7.740012, "negative": -7.740012, "neither": -8.433159, "new": -5.948253, "newlst": -7.740012, "newnode": -7.740012, "next": -7.740012, "no": -6.823721, "node": -6.353718, "nodeat": -7.046865, "nodeelmt": -6.823721, "nodeln": -7.740012, "nodenxt": -6.823721, "nor": -7.740012, "not": -7.046865, "not.": -8.433159, "number": -6.487249, "numbers": -8.433159, "of": -3.629138, "old": -8.433159, "on": -5.794102, "one": -7.334547, "only": -6.823721, "operation": -7.046865, "or": -7.046865, "otherwise": -7.740012, "out": -7.334547, "output": -8.433159, "parameter": -7.046865, "parrlp": -8.433159, "parrout": -8.433159, "part": -7.046865, "passed": -7.046865, "pattern": -8.433159, "pivot": -7.046865, "position": -8.433159, "positive": -8.433159, "presented": -8.433159, "priloop": -7.334547, "printarr": -7.740012, "printed": -8.433159, "prints": -7.334547, "printsq": -8.433159, "priout": -7.740012, "produce": -8.433159, "produced": -8.433159, "program": -7.046865, "program.": -8.433159, "purposes": -7.740012, "qsarradd": -8.433159, "qsarrlb": -7.740012, "qsarrrb": -7.740012, "qsort": -7.046865, "qsortout": -7.740012, "qsortp": -8.433159, "quicksort": -7.334547, "quot": -7.740012, "ranging": -7.740012, "read": -6.353718, "reading": -7.740012, "recursive": -8.433159, "register": -7.740012, "registers": -7.046865, "rem": -7.740012, "remove": -7.740012, "remove_at": -8.433159, "removed": -7.740012, "restored": -7.740012, "return": -8.433159, "returned": -8.433159, "returns": -7.740012, "right": -7.740012, "rightmost": -8.433159, "row": -6.487249, "rowid": -6.641400, "rows": -7.740012, "rowssqad": -7.334547, "rowsum": -7.334547, "rowsums": -7.740012, "rules": -7.740012, "rules.": -8.433159, "rwbsqadr": -7.334547, "rwinccpt": -7.740012, "rwsmslp": -7.740012, "rwsmsout": -7.740012, "rwsqsz": -7.046865, "rwsum": -6.823721, "rwsumlp": -7.740012, "rwsumout": -7.740012, "rwxpos": -7.046865, "rwypos": -6.823721, "s": -3.769720, "same": -7.046865, "saved": -7.334547, "saved.": -7.740012, "scratch": -8.433159, "sderror": -7.334547, "sequentially": -8.433159, "set": -7.334547, "sf": -8.433159, "shfterr": -7.740012, "shfterrm": -8.433159, "shftest": -7.334547, "shift": -8.433159, "should": -8.433159, "side": -5.868210, "sidelen": -6.641400, "sidesz": -6.823721, "size": -6.823721, "slice": -8.433159, "sorted.": -8.433159, "specific": -8.433159, "specified": -7.334547, "sqaddr": -6.823721, "sqlen": -7.740012, "sqmaxa": -7.046865, "square": -4.501334, "srcbuf": -7.740012, "stack": -7.740012, "stack.": -7.740012, "state": -7.740012, "statically": -7.740012, "stderr": -7.740012, "stdin": -7.046865, "stdout": -8.433159, "stdout.": -8.433159, "stops": -7.740012, "stored": -8.433159, "stri": -8.433159, "string": -6.235935, "strinlrg": -7.740012, "strolp": -7.740012, "strout": -7.740012, "structure": -6.487249, "ststro": -7.740012, "sum": -5.794102, "supposed": -6.641400, "sx": -6.641400, "sxf": -5.725109, "temporary": -8.433159, "terminates": -8.433159, "termination": -8.433159, "test": -7.740012, "testing": -8.433159, "than": -7.740012, "that": -8.433159, "the": -3.229153, "then": -8.433159, "there": -8.433159, "they": -7.334547, "this": -8.433159, "tmprwsm": -7.334547, "tmpsum": -6.823721, "to": -4.390108, "true": -8.433159, "two": -7.046865, "unshift": -8.433159, "upon": -7.334547, "upper": -7.740012, "use": -8.433159, "used": -7.740012, "user": -8.433159, "ushftest": -7.740012, "using": -7.334547, "value": -5.868210, "values": -6.823721, "variable": -8.433159, "variables": -8.433159, "variety": -8.433159, "via": -8.433159, "visited": -8.433159, "void": -6.035264, "was": -7.740012, "well": -8.433159, "went": -8.433159, "when": -7.334547, "whether": -7.740012, "which": -8.433159, "will": -5.488720, "with": -7.740012, "work": -8.433159, "written": -8.433159, "x": -6.235935, "xpos": -6.353718, "y": -7.740012, "ypos": -6.130574, "zag": -8.433159, "zig": -8.433159, "⁻": -8.433159, }, "Perl": map[string]float64{ "!": -3.973273, "#": -5.394658, "#.": -8.382022, "#.*#": -10.173782, "#/": -10.173782, "#I": -7.976557, "#line": -10.173782, "#use": -10.173782, "$": -2.528862, "%": -5.843048, "&": -6.677274, "&&": -6.148430, "'": -9.480635, "(": -3.291344, ")": -3.291344, "*": -7.688875, "*/": -10.173782, "*CORE": -10.173782, "*I": -10.173782, "*STDERR": -10.173782, "*STDIN": -9.480635, "*STDOUT": -8.382022, "+": -5.428850, ",": -3.294426, "-": -3.279112, ".": -5.080032, ".#": -8.564344, ".*": -8.094340, ".*//": -10.173782, "..": -8.227872, "...": -8.382022, "./": -9.075170, ".EXT": -9.480635, ".EXTENSION": -9.480635, "._": -9.075170, ".ackrc": -9.480635, ".bar": -10.173782, ".foo": -10.173782, ".gz": -10.173782, ".join": -8.787487, ".js": -9.075170, ".pod": -10.173782, ".rdf": -10.173782, ".svn": -9.480635, ".swp": -9.075170, ".tar": -10.173782, ".wango": -10.173782, "/": -5.641182, "/#.": -9.480635, "/./": -9.480635, "/.ackrc": -9.480635, "//": -8.382022, "//g": -9.480635, "/MSWin": -9.480635, "/_.": -10.173782, "/access.log": -10.173782, "/chr": -10.173782, "/core": -9.480635, "/eg": -9.480635, "/eig": -10.173782, "/eval": -10.173782, "/g": -9.075170, "/ge": -10.173782, "/i": -9.480635, "/m": -10.173782, "/my": -10.173782, "/path/to/access.log": -10.173782, "/seg": -10.173782, "/sprintf": -10.173782, "/usr/bin/ack": -9.480635, "/usr/bin/env": -10.173782, "/usr/bin/perl": -9.075170, "/usr/local/bin/perl": -9.480635, "1": -10.173782, ":": -3.241334, ";": -3.031745, "<": -7.129259, "<#*#>": -10.173782, "<$fh>": -8.787487, "<$filename>": -10.173782, "<$one>": -10.173782, "<$ors>": -10.173782, "<$regex>": -10.173782, "<--A>": -10.173782, "<--B>": -10.173782, "<--C>": -10.173782, "<--[no]ignore-dir>": -10.173782, "<--all>": -10.173782, "<--bar>": -10.173782, "<--color-filename>": -10.173782, "<--color-lineno>": -10.173782, "<--color-match>": -10.173782, "<--color>": -8.787487, "<--column>": -10.173782, "<--count>": -10.173782, "<--eiffel>": -10.173782, "<--env>": -10.173782, "<--files-with-matches>": -10.173782, "<--files-without-matches>": -10.173782, "<--flush>": -9.480635, "<--follow>": -10.173782, "<--group>": -9.075170, "<--help>": -9.480635, "<--ignore-case>": -10.173782, "<--ignore-dir>": -9.480635, "<--invert-match>": -10.173782, "<--line>": -10.173782, "<--literal>": -10.173782, "<--man>": -10.173782, "<--match>": -10.173782, "<--no-filename>": -9.480635, "<--no-recurse>": -9.480635, "<--no-smart-case>": -10.173782, "<--nocolor>": -9.480635, "<--noeiffel>": -10.173782, "<--noenv>": -8.382022, "<--nofollow>": -10.173782, "<--nogroup>": -9.480635, "<--noignore-dir>": -10.173782, "<--noperl>": -10.173782, "<--passthru>": -10.173782, "<--perl>": -10.173782, "<--quiet>": -10.173782, "<--recurse>": -10.173782, "<--show-types>": -10.173782, "<--silent>": -10.173782, "<--smart-case>": -10.173782, "<--sort-files>": -10.173782, "<--thpppppt>": -10.173782, "<--thpppt>": -10.173782, "<--type-add>": -9.075170, "<--type-set>": -8.787487, "<--type>": -10.173782, "<--unrestricted>": -10.173782, "<--version>": -10.173782, "<--with-filename>": -10.173782, "<--word-regexp>": -10.173782, "<-A>": -10.173782, "<-B>": -10.173782, "<-C>": -10.173782, "<-G>": -8.227872, "<-H>": -10.173782, "<-L>": -10.173782, "<-Q>": -8.787487, "<-R>": -10.173782, "<-a>": -8.564344, "<-c>": -10.173782, "<-f>": -7.976557, "<-g>": -7.976557, "<-h>": -9.480635, "<-i>": -8.564344, "<-l>": -8.787487, "<-m>": -10.173782, "<-n>": -9.480635, "<-o>": -10.173782, "<-p>": -10.173782, "<-r>": -10.173782, "<-u>": -8.787487, "<-v>": -8.787487, "<-w>": -9.075170, "<.EXTENSION>": -9.480635, "<.ackrc>": -7.465732, "<.perl>": -10.173782, "<.svn/props>": -10.173782, "<.vimrc>": -10.173782, "<.xs>": -10.173782, "<.xyz>": -10.173782, "</</g;>": -10.173782, "</>": -9.075170, "</PRE>": -10.173782, "</a>": -9.480635, "</app>": -10.173782, "</blockquote>": -10.173782, "</div>": -10.173782, "</p>": -10.173782, "</strong>": -10.173782, "</table>": -10.173782, "</td>": -8.787487, "</tr>": -9.480635, "<<": -7.976557, "<?xml>": -9.480635, "<@ARGV>": -10.173782, "<A>": -10.173782, "<ACKRC>": -10.173782, "<ACK_COLOR_FILENAME>": -9.480635, "<ACK_PAGER>": -8.787487, "<ACK_PAGER_COLOR>": -8.564344, "<AElig>": -10.173782, "<BR>": -9.480635, "<CAN>": -10.173782, "<CGI::Simple::Cookie>": -10.173782, "<CONFIG>": -10.173782, "<CVS>": -10.173782, "<Catalyst::Request>": -10.173782, "<Content-Length>": -10.173782, "<DIRNAME>": -9.480635, "<File::Next>": -10.173782, "<GET>": -10.173782, "<HEAD>": -10.173782, "<HTML>": -10.173782, "<HTTP::Engine>": -10.173782, "<HTTP::Headers>": -9.480635, "<HTTP::Request>": -10.173782, "<HTTP_HOST>": -10.173782, "<Hash::MultiValue>": -8.227872, "<IMG>": -10.173782, "<If>": -10.173782, "<LI>": -10.173782, "<Location>": -10.173782, "<NOT>": -8.787487, "<NUM>": -7.775887, "<P>": -10.173782, "<PATH_INFO>": -9.480635, "<POST>": -10.173782, "<PRE>": -10.173782, "<Plack::App::URLMap>": -10.173782, "<Plack::Request::Upload>": -10.173782, "<Plack::Request>": -9.480635, "<Plack::Response>": -9.075170, "<QUERY_STRING>": -10.173782, "<REGEX>": -8.227872, "<REMOTE_ADDR>": -10.173782, "<REMOTE_HOST>": -10.173782, "<REMOTE_USER>": -10.173782, "<SCRIPT_NAME>": -9.075170, "<SERVER_NAME>": -10.173782, "<SERVER_PORT>": -10.173782, "<\\/A>": -10.173782, "<\\b>": -10.173782, "<a>": -9.480635, "<aacute>": -10.173782, "<ack-grep>": -10.173782, "<ack.el>": -10.173782, "<ack>": -6.536196, "<address>": -10.173782, "<always>": -10.173782, "<andy>": -10.173782, "<blib>": -10.173782, "<blockquote>": -10.173782, "<body_parameters>": -9.075170, "<body_params>": -10.173782, "<br\\>": -10.173782, "<cc>": -10.173782, "<code>": -10.173782, "<color>": -9.075170, "<content>": -9.480635, "<content_length>": -10.173782, "<cookie>": -10.173782, "<cookies>": -10.173782, "<core.\\d+>": -10.173782, "<description>": -10.173782, "<div>": -10.173782, "<does>": -10.173782, "<domain>": -10.173782, "<eiffel>": -10.173782, "<endtime>": -10.173782, "<eth>": -10.173782, "<examples/benchmarks/fib.pir>": -10.173782, "<expires>": -9.480635, "<expr>": -9.480635, "<foo.pod>": -10.173782, "<foo.wango>": -10.173782, "<foo/bar>": -10.173782, "<get_all>": -10.173782, "<get_one>": -10.173782, "<grep>": -7.871197, "<hostname>": -10.173782, "<http://annocpan.org/dist/ack>": -10.173782, "<http://betterthangrep.com/>": -10.173782, "<http://cpanratings.perl.org/d/ack>": -10.173782, "<http://groups.google.com/group/ack-users>": -9.480635, "<http://plackperl.org/#frameworks>": -10.173782, "<http://search.cpan.org/dist/ack>": -10.173782, "<http://www.shellarchive.co.uk/content/emacs.html>": -10.173782, "<http>": -10.173782, "<httponly>": -10.173782, "<https://github.com/petdance/ack/issues>": -9.075170, "<https://github.com/petdance/ack>": -10.173782, "<https>": -10.173782, "<less>": -10.173782, "<line>": -10.173782, "<mixed>": -10.173782, "<more>": -10.173782, "<most>": -10.173782, "<n>": -10.173782, "<not>": -10.173782, "<oacute>": -10.173782, "<oslash>": -10.173782, "<ouml>": -10.173782, "<p>": -10.173782, "<param>": -10.173782, "<parameters>": -9.480635, "<params>": -10.173782, "<path>": -10.173782, "<path_info>": -8.787487, "<perl>": -10.173782, "<program>": -9.480635, "<psgi.input>": -10.173782, "<psgix.logger>": -10.173782, "<psgix.session.options>": -10.173782, "<psgix.session>": -10.173782, "<query_parameters>": -9.075170, "<query_params>": -10.173782, "<raw_uri>": -10.173782, "<read-only>": -10.173782, "<redirect>": -10.173782, "<scalar>": -10.173782, "<secure>": -10.173782, "<smartcase>": -10.173782, "<starttime>": -10.173782, "<strings>": -10.173782, "<strong>": -10.173782, "<sudo>": -10.173782, "<system>": -10.173782, "<table>": -10.173782, "<td>": -8.787487, "<tr>": -9.480635, "<traditional>": -10.173782, "<troublesome.gif>": -10.173782, "<undef>": -10.173782, "<uploads>": -9.075170, "<uri>": -10.173782, "<url_scheme>": -10.173782, "<value>": -9.480635, "<xargs>": -10.173782, "<xml>": -10.173782, "<~>": -10.173782, "=": -3.080377, ">": -3.361437, "?": -5.568612, "@": -6.281962, "@ARGV": -7.871197, "@ISA": -9.480635, "@MON": -10.173782, "@WDAY": -10.173782, "@_": -6.281962, "@args": -7.775887, "@array": -10.173782, "@before": -8.094340, "@cookie": -8.227872, "@dirs": -8.787487, "@exts": -8.382022, "@fields": -10.173782, "@files": -7.976557, "@lines": -7.082739, "@newfiles": -8.564344, "@obj": -9.075170, "@params": -8.227872, "@queue": -8.787487, "@regexes": -9.480635, "@rest": -8.227872, "@results": -8.094340, "@ret": -7.871197, "@t_descr": -9.480635, "@typedef": -8.094340, "@types": -9.075170, "@uniq": -9.480635, "@uploads": -9.075170, "@values": -10.173782, "@what": -8.227872, "@whats": -8.564344, "A": -8.787487, "ACK": -9.480635, "ACKNOWLEDGEMENTS": -10.173782, "ACKRC": -9.480635, "ACK_COLOR_FILENAME": -8.564344, "ACK_COLOR_LINENO": -8.787487, "ACK_COLOR_MATCH": -8.564344, "ACK_OPTIONS": -8.382022, "ACK_PAGER": -8.382022, "ACK_PAGER_COLOR": -8.227872, "ACK_PAGER_COLOR.": -10.173782, "AJ": -10.173782, "ALSO": -9.075170, "ANSI": -9.075170, "ANSIColor": -8.787487, "API": -9.480635, "API.": -10.173782, "ARGV": -8.564344, "ARRAY": -10.173782, "AUTHOR": -9.480635, "AUTHORS": -10.173782, "Accessor": -10.173782, "Ack": -5.428850, "Adam": -10.173782, "Add/Remove": -10.173782, "All": -9.075170, "Also": -10.173782, "Anderson": -10.173782, "Andy": -9.480635, "AnnoCPAN": -10.173782, "Annotated": -10.173782, "Apache": -9.480635, "App": -5.473301, "Apr": -10.173782, "ArnfjE": -10.173782, "Artistic": -9.480635, "Ask": -10.173782, "Aug": -10.173782, "Avtalion": -10.173782, "B": -5.856294, "BASE_DIR": -10.173782, "BEGIN": -8.227872, "BUGS": -10.173782, "Bar": -10.173782, "Base": -10.173782, "Basename": -9.075170, "Basic": -8.094340, "Benchmark": -10.173782, "Bertrand": -10.173782, "Bill": -8.787487, "Bin": -9.075170, "Binary": -9.480635, "BjE": -10.173782, "Bjarmason": -10.173782, "Blix": -10.173782, "Bo": -10.173782, "Body": -9.480635, "Borgerson": -10.173782, "Boyens": -10.173782, "Broeren": -10.173782, "Builtin": -9.480635, "By": -9.480635, "C": -6.241956, "CAVEAT": -10.173782, "CGI": -8.227872, "CGI.pm": -9.480635, "COLOR": -9.075170, "COMMAND": -10.173782, "COMMAND.": -10.173782, "CONFIG": -9.480635, "CONFIG_FILE": -9.480635, "CONTENT": -10.173782, "CONTENT_LENGTH": -9.480635, "CONTENT_TYPE": -9.480635, "COOKIE": -10.173782, "COPYRIGHT": -8.382022, "CORE": -8.564344, "CPAN": -9.075170, "CVS": -8.787487, "Calculates": -10.173782, "Can": -10.173782, "Cancels": -10.173782, "Cannot": -8.787487, "Carlsson": -10.173782, "Carp": -7.340568, "CarpLevel": -10.173782, "Case": -10.173782, "Cat": -9.480635, "Cawley": -10.173782, "Chamarty": -10.173782, "Checks": -10.173782, "Christian": -10.173782, "Christopher": -10.173782, "Code": -10.173782, "Coleda": -10.173782, "Config": -8.564344, "Console": -9.480635, "Content": -9.480635, "Cookie": -9.480635, "Copyright": -10.173782, "Creates": -9.480635, "DEBUGGING": -10.173782, "DEBUGLEVEL": -9.075170, "DEBUGOUTPUT": -8.094340, "DEBUG_LOG_FILE": -9.480635, "DEBUG_TIMESTAMP": -8.564344, "DESCRIPTION": -8.787487, "DIRECTORY...": -10.173782, "DISPATCHING": -10.173782, "DZT": -10.173782, "Dan": -10.173782, "Data": -10.173782, "David": -9.480635, "Dec": -10.173782, "Default": -9.480635, "Dewoestine": -10.173782, "Die": -10.173782, "Diephouse": -10.173782, "Dies": -9.480635, "Directories": -10.173782, "Display": -9.480635, "Do": -10.173782, "Doing": -10.173782, "Dubois": -10.173782, "Dumper": -9.480635, "Dyck": -10.173782, "E": -10.173782, "END_OF_HELP": -9.075170, "END_OF_VERSION": -10.173782, "ENHANCEMENTS": -10.173782, "ENV": -6.460210, "EXPAND_FILENAMES_SCOPE": -10.173782, "EXTENSION": -9.480635, "Elias": -10.173782, "Elliot": -10.173782, "Emacs": -8.787487, "Eric": -10.173782, "Escape": -8.564344, "Etheridge": -10.173782, "Example": -10.173782, "Exclude": -9.480635, "Exit": -9.480635, "Ext_Request": -10.173782, "F": -7.038288, "F.": -10.173782, "FAIL": -7.688875, "FAQ": -10.173782, "FCGI": -10.173782, "FILE": -9.480635, "FILE...": -10.173782, "FILES": -9.075170, "FILEs": -10.173782, "FUNCTIONS": -10.173782, "Fast": -9.075170, "Feb": -10.173782, "Fibonacci": -9.480635, "File": -6.562864, "Files": -9.075170, "FindBin": -10.173782, "Fish": -10.173782, "Fisher": -10.173782, "Flush": -10.173782, "Follow": -10.173782, "Foo": -7.775887, "For": -8.227872, "Force": -10.173782, "Fredric": -10.173782, "Fri": -10.173782, "G": -8.094340, "G.": -10.173782, "GE": -10.173782, "GET": -10.173782, "GIF": -10.173782, "GLOBAL": -10.173782, "GLOB_TILDE": -9.480635, "Gay": -10.173782, "GetAttributes": -10.173782, "Getopt": -8.382022, "Gets": -9.075170, "Git": -10.173782, "Github": -9.075170, "Glob": -9.480635, "Go": -10.173782, "Golden": -10.173782, "Guttman": -10.173782, "H": -8.564344, "HASH": -10.173782, "HIDDEN": -10.173782, "HOME": -8.787487, "HOSTNAME": -9.480635, "HTML": -9.480635, "HTTP": -7.401193, "HTTPS": -10.173782, "HTTP_COOKIE": -10.173782, "HTTP_HOST": -10.173782, "Hagan": -10.173782, "Handle": -9.480635, "Handy": -10.173782, "Hansen": -10.173782, "Hash": -7.871197, "Headers": -8.094340, "Hendricks": -10.173782, "Highlight": -10.173782, "Highlighting": -10.173782, "Hooey": -10.173782, "How": -10.173782, "I": -5.829976, "I#": -10.173782, "IO": -9.480635, "IP.": -10.173782, "If": -7.340568, "Ignore": -8.382022, "Ignored": -9.480635, "Ignores": -10.173782, "Include": -9.480635, "Ingmar": -10.173782, "Internal": -9.480635, "Invert": -10.173782, "It": -9.480635, "J.": -10.173782, "JR": -10.173782, "Jackson": -9.480635, "Jaeger": -10.173782, "James": -10.173782, "Jan": -9.480635, "Jason": -10.173782, "Jerry": -10.173782, "Jiang": -10.173782, "Jjgod": -10.173782, "Join": -10.173782, "Jr": -10.173782, "Jul": -10.173782, "Jun": -10.173782, "K/": -10.173782, "Karen": -10.173782, "Kazuhiro": -10.173782, "Kent": -10.173782, "Kevin": -10.173782, "Klausner": -10.173782, "Kyle": -10.173782, "L": -6.772584, "LASTCHECK": -10.173782, "LICENSE": -9.480635, "Leighton": -10.173782, "Lester": -10.173782, "Lester.": -10.173782, "Lewis": -10.173782, "License": -9.480635, "Lite": -10.173782, "Long": -8.382022, "Lutfallah": -10.173782, "M": -9.480635, "MAIN": -10.173782, "METHODS": -9.480635, "MOD_PERL": -10.173782, "MON": -10.173782, "MUST": -10.173782, "Madsen": -10.173782, "Man": -10.173782, "Mar": -10.173782, "Mark": -9.480635, "Marq": -10.173782, "Matsuno": -9.480635, "Matt": -10.173782, "Matthew": -9.480635, "May": -9.480635, "Melo": -9.480635, "Mengue": -10.173782, "Merijn": -10.173782, "Metheringham": -10.173782, "Method": -10.173782, "Michael": -9.480635, "Mike": -9.480635, "Minified": -9.075170, "Minor": -10.173782, "Miscellaneous": -10.173782, "Miyagawa": -9.480635, "Mojolicious": -10.173782, "Mon": -10.173782, "More": -10.173782, "Morearty": -10.173782, "Most": -10.173782, "MultiValue": -8.094340, "Multiple": -10.173782, "N": -9.480635, "NAME": -8.564344, "NOT": -10.173782, "NUM": -7.608832, "Nested": -10.173782, "Next": -7.401193, "Nick": -10.173782, "Niebur": -10.173782, "Nigel": -10.173782, "Nilson": -10.173782, "No": -8.564344, "Note": -8.227872, "Nothing.": -10.173782, "Nov": -10.173782, "Now": -10.173782, "Number": -10.173782, "O": -8.382022, "OPTION": -9.480635, "OTHER": -10.173782, "OUTPUT": -9.075170, "Oct": -10.173782, "Olivier": -10.173782, "Only": -7.871197, "Optimized": -10.173782, "Ori": -10.173782, "Osawa": -10.173782, "Output": -10.173782, "Outputs": -10.173782, "PATH_INFO": -9.075170, "PATTERN": -7.283410, "PATTERN.": -10.173782, "PERFDATA": -9.075170, "POSIX": -10.173782, "POST": -10.173782, "PROBLEMS": -10.173782, "PSGI": -8.564344, "PSGI.": -10.173782, "Packy": -10.173782, "Parameters": -10.173782, "Parrot.": -10.173782, "Parser": -8.787487, "Patches": -10.173782, "Pedro": -9.480635, "Perl": -7.775887, "Peter": -10.173782, "Phil": -9.480635, "Piers": -10.173782, "Pipes": -10.173782, "Plack": -6.995728, "Please": -9.480635, "Plugin": -9.480635, "Pod": -8.787487, "Porritt": -10.173782, "Portable": -9.480635, "Print": -7.688875, "Print/search": -10.173782, "Prints": -8.787487, "Put": -9.480635, "Q": -8.382022, "QUERY_STRING": -9.075170, "Quote": -9.480635, "R": -10.173782, "RCS": -9.480635, "REGEX": -9.075170, "REGEX.": -10.173782, "REMOTE_ADDR": -10.173782, "REMOTE_HOST": -10.173782, "REMOTE_USER": -10.173782, "REQUEST_METHOD": -10.173782, "REQUEST_URI": -9.480635, "Ratings": -10.173782, "Reads": -10.173782, "Recognized": -9.480635, "Recurse": -9.480635, "Remove": -10.173782, "Removes": -10.173782, "Repository": -8.227872, "Request": -7.775887, "Resource": -8.564344, "Response": -7.465732, "Return": -10.173782, "Returns": -7.688875, "Richard": -10.173782, "Rick": -10.173782, "Ricker": -10.173782, "Riggle": -10.173782, "Running": -10.173782, "Ryan": -10.173782, "S": -9.480635, "SCCS": -9.480635, "SCRIPT_NAME": -9.480635, "SEE": -9.075170, "SERVER_NAME": -10.173782, "SERVER_PORT": -9.480635, "SERVER_PROTOCOL": -10.173782, "SERVICEDESCR": -9.075170, "SERVICESTATE": -9.480635, "SHEBANG#!perl": -8.382022, "SIG": -8.787487, "STDERR": -9.075170, "STDIN": -8.787487, "SUPPORT": -10.173782, "SYNOPSIS": -8.564344, "SYSTEM": -10.173782, "Same": -8.787487, "Sample": -10.173782, "Santos": -10.173782, "Sat": -10.173782, "Scalar": -9.480635, "Schneider": -10.173782, "Schuster": -10.173782, "Schwern": -10.173782, "Scott": -9.480635, "Search": -9.075170, "Searching": -10.173782, "See": -9.480635, "Send": -10.173782, "Sep": -10.173782, "Set": -9.480635, "Sets": -9.480635, "Setter": -9.480635, "Shank": -10.173782, "Share": -10.173782, "Shell": -9.480635, "Shlomi": -10.173782, "Shortcut": -8.382022, "Show": -8.787487, "Simple": -10.173782, "Sitaram": -10.173782, "So": -10.173782, "Some": -9.480635, "Sort": -10.173782, "Sorts": -10.173782, "Spec": -7.871197, "Specifies": -8.787487, "Specify": -9.480635, "Standard": -10.173782, "Steneker": -10.173782, "Stephen": -10.173782, "Stop": -9.480635, "Strict": -10.173782, "Sully": -9.480635, "Sun": -10.173782, "Support": -10.173782, "Suppress": -9.480635, "SzabE": -10.173782, "Szymanski": -10.173782, "T": -9.480635, "TEXT": -8.094340, "TM_ERROR_FD": -9.075170, "TOOLS": -10.173782, "TOTAL_COUNT_SCOPE": -10.173782, "TYPE": -8.564344, "TYPE.": -9.480635, "Take": -10.173782, "Tar": -9.480635, "Tatsuhiko": -9.480635, "TempBuffer": -9.480635, "Term": -9.075170, "Test": -9.075170, "Text": -9.075170, "TextMate": -9.480635, "Thanks": -10.173782, "That": -10.173782, "The": -6.954906, "There": -9.480635, "This": -6.841577, "Thomas": -10.173782, "Thread": -9.480635, "Thu": -10.173782, "To": -10.173782, "Tod": -10.173782, "Tokuhiro": -9.480635, "Torsten": -10.173782, "True/False": -10.173782, "Tue": -10.173782, "Type": -9.480635, "U": -10.173782, "URI": -7.871197, "USERPROFILE": -9.480635, "Unable": -10.173782, "Underline": -10.173782, "Unix": -9.075170, "Unknown": -9.480635, "Unless": -10.173782, "Unlike": -10.173782, "Upload": -9.480635, "Uri": -10.173782, "Usage": -8.382022, "Use": -8.564344, "Users": -10.173782, "Using": -9.075170, "Util": -9.075170, "Uwe": -10.173782, "V": -10.173782, "VERSION": -7.401193, "VMS": -10.173782, "Van": -10.173782, "Vanhassel": -10.173782, "Version": -10.173782, "Vi": -9.075170, "Vim": -9.075170, "Voelker": -10.173782, "WDAY": -10.173782, "Wed": -10.173782, "What": -10.173782, "Why": -9.480635, "Wickline": -10.173782, "Wild": -10.173782, "Will": -10.173782, "Win": -8.382022, "Windows": -9.075170, "Works": -10.173782, "Wouldn": -10.173782, "Wrap": -9.075170, "Writing": -10.173782, "X": -9.480635, "XML": -9.480635, "XS": -9.480635, "You": -8.787487, "Z": -10.173782, "Za": -10.173782, "[": -4.905924, "\\": -4.964296, "]": -4.916286, "^": -6.677274, "_": -5.696445, "_//": -10.173782, "_BAR": -10.173782, "_MTN": -9.480635, "__DATA__": -10.173782, "__DIE__": -10.173782, "__END__": -9.480635, "_bake_cookie": -9.480635, "_bar": -9.480635, "_body": -9.480635, "_build": -9.480635, "_candidate_files": -10.173782, "_darcs": -9.480635, "_date": -9.480635, "_deprecated": -8.094340, "_exe": -10.173782, "_finalize_cookies": -9.480635, "_get_thpppt": -9.480635, "_key": -9.075170, "_listify": -9.480635, "_make_upload": -9.480635, "_match": -8.787487, "_my_program": -9.075170, "_parse_request_body": -9.075170, "_sgbak": -9.480635, "_stop": -8.787487, "_thpppt": -9.480635, "_uri_base": -9.075170, "`": -8.382022, "a": -5.779333, "a.": -10.173782, "aa.bb.cc.dd": -10.173782, "abort": -7.038288, "about": -8.564344, "above": -10.173782, "access": -9.480635, "accessing": -10.173782, "accessor": -10.173782, "account": -10.173782, "ack": -6.281962, "ack.": -9.480635, "across": -10.173782, "actions": -10.173782, "actionscript": -9.480635, "actually": -10.173782, "ada": -8.787487, "adb": -9.480635, "add": -7.871197, "address": -9.480635, "admiral": -10.173782, "ads": -9.480635, "advantage": -10.173782, "after": -7.608832, "after_context": -7.688875, "against": -10.173782, "alias.": -9.480635, "all": -7.178050, "allow": -10.173782, "allows": -9.480635, "alone": -10.173782, "also": -8.094340, "alt": -10.173782, "alternative": -10.173782, "always": -8.382022, "amp": -10.173782, "an": -7.340568, "and": -5.897116, "and/or": -9.480635, "any": -8.227872, "any_output": -8.382022, "app_or_middleware": -10.173782, "appear": -10.173782, "append": -9.480635, "application": -7.871197, "application/xml": -10.173782, "applies": -9.075170, "apply": -9.480635, "appropriate": -10.173782, "archive": -8.382022, "are": -6.772584, "aren": -10.173782, "arg": -7.976557, "args": -6.677274, "argument": -10.173782, "argument.": -10.173782, "arguments": -9.480635, "arguments.": -10.173782, "argv": -8.382022, "around": -10.173782, "array": -8.382022, "artist_name": -9.480635, "as": -6.647421, "ascending": -10.173782, "asm": -8.787487, "associates": -10.173782, "assume": -9.480635, "at": -7.775887, "at.": -10.173782, "attention.": -10.173782, "attr": -9.075170, "attributes": -9.480635, "autoflush": -10.173782, "avoid": -10.173782, "away": -10.173782, "b": -9.075170, "back": -8.787487, "background": -10.173782, "backticks.": -10.173782, "backup": -8.564344, "backup=": -10.173782, "bak": -9.480635, "bar": -9.075170, "bas": -9.480635, "base": -7.871197, "based": -9.480635, "basename": -7.871197, "bat": -9.480635, "batch": -9.480635, "be": -6.915685, "be.": -10.173782, "because": -9.075170, "before": -9.075170, "before_context": -7.608832, "before_starts_at_line": -8.564344, "behavior": -9.075170, "being": -9.480635, "between": -9.075170, "big": -10.173782, "binary": -9.075170, "black": -9.480635, "bless": -8.227872, "blessed": -10.173782, "blib": -9.480635, "blink": -10.173782, "blue": -10.173782, "body": -6.772584, "body.": -10.173782, "body_parameters": -9.075170, "body_params": -10.173782, "body_str": -10.173782, "bold": -9.075170, "bor": -10.173782, "both": -9.075170, "break": -7.871197, "bsd_glob": -9.075170, "buffer": -7.976557, "bugs": -10.173782, "build_regex": -8.564344, "builtin": -9.480635, "but": -8.564344, "by": -7.534725, "byte": -9.480635, "c": -8.564344, "c.": -10.173782, "call": -10.173782, "called": -9.480635, "caller": -10.173782, "caller_info": -9.480635, "can": -6.954906, "cannot": -9.480635, "canonical": -9.480635, "carp": -9.480635, "case": -8.094340, "case.": -9.480635, "catdir": -9.075170, "catfile": -9.075170, "cc=": -10.173782, "cellpadding=": -10.173782, "cellspacing=": -10.173782, "certainly": -10.173782, "cgi": -9.075170, "changed.": -9.480635, "characters.": -10.173782, "charset": -9.480635, "check_regex": -9.075170, "checked": -10.173782, "checked.": -10.173782, "chomp": -8.787487, "chunk": -8.787487, "cl": -8.094340, "class": -8.094340, "class=": -10.173782, "cleanup": -10.173782, "clear": -9.480635, "clone": -10.173782, "close": -7.401193, "closedir": -10.173782, "cls": -9.480635, "cmd": -9.480635, "cmp": -10.173782, "code": -8.094340, "code.": -9.075170, "codebases": -10.173782, "codesets": -10.173782, "color": -6.877945, "color.": -9.480635, "colored": -9.075170, "coloring": -9.075170, "colour": -10.173782, "column": -8.564344, "columns": -10.173782, "com": -10.173782, "comma": -10.173782, "command": -7.608832, "compatibility": -9.480635, "compatible": -10.173782, "compiled": -10.173782, "concealed": -10.173782, "confess": -9.480635, "config": -6.113339, "configure": -8.787487, "conjunction": -10.173782, "consider": -10.173782, "consistent": -10.173782, "constant": -9.480635, "contain": -9.480635, "container": -10.173782, "containing": -8.382022, "contains": -9.480635, "content": -8.787487, "content_encoding": -8.564344, "content_encoding.": -10.173782, "content_length": -8.787487, "content_length.": -10.173782, "content_type": -8.564344, "content_type.": -10.173782, "contents": -9.480635, "context": -8.382022, "context.": -9.480635, "context_overall_output_count": -8.787487, "contributed": -10.173782, "conv": -9.480635, "convenience": -10.173782, "convenient": -10.173782, "convert": -10.173782, "cookie": -8.382022, "cookies": -7.976557, "copy": -9.075170, "copyright": -9.075170, "core": -8.382022, "coredump": -10.173782, "coredumps": -10.173782, "correct": -10.173782, "corresponding": -10.173782, "could": -9.075170, "could_be_binary": -8.787487, "count": -7.129259, "create": -9.480635, "creating": -9.075170, "croak": -9.075170, "ct": -9.075170, "ctl": -9.480635, "current": -10.173782, "cut": -6.708046, "cwd": -10.173782, "d": -7.871197, "d/": -10.173782, "dark": -10.173782, "data": -8.787487, "date": -9.480635, "day": -10.173782, "dealing": -10.173782, "debug": -6.562864, "decoding": -10.173782, "def_types_from_ARGV": -8.564344, "default": -7.340568, "default.": -9.480635, "defaults": -7.608832, "define": -10.173782, "defined": -6.281962, "defines": -10.173782, "definition": -10.173782, "definitions": -10.173782, "delete": -8.094340, "delete_type": -9.075170, "dependency": -9.480635, "depending": -10.173782, "deprecated": -10.173782, "descend_filter": -8.227872, "descend_filter.": -10.173782, "descending": -10.173782, "designed": -9.480635, "detect.": -10.173782, "deterministic": -10.173782, "developers": -9.075170, "dh": -8.787487, "die": -6.562864, "different": -10.173782, "dir": -7.082739, "dir_sep_chars": -8.094340, "directly": -10.173782, "directories": -8.227872, "directories.": -9.480635, "directory": -8.564344, "dirs": -10.173782, "dispatch": -10.173782, "display_filename": -8.382022, "display_htmltemplate": -10.173782, "display_line_no": -9.480635, "display_name": -8.564344, "displaying": -10.173782, "distinctions": -9.480635, "distribute": -10.173782, "do": -7.976557, "documentation": -10.173782, "does": -7.608832, "does.": -9.480635, "doesn": -8.227872, "domain": -9.075170, "don": -9.480635, "doubt": -10.173782, "down.": -10.173782, "driven": -10.173782, "dsa_name": -9.480635, "dtd": -9.480635, "duck": -10.173782, "dummy": -9.480635, "dumps": -9.075170, "e": -7.401193, "e.g.": -10.173782, "e/": -10.173782, "each": -7.340568, "earlier": -10.173782, "easily": -9.480635, "easy": -9.480635, "editor.": -10.173782, "efficiency.": -10.173782, "eiffel": -10.173782, "eiffel=": -9.480635, "either": -9.480635, "else": -6.130731, "elsif": -7.082739, "empty.": -10.173782, "encoding": -9.480635, "encouraged": -10.173782, "end": -9.075170, "enhancement": -10.173782, "enhancement.": -10.173782, "enhancements": -10.173782, "enhancements.": -10.173782, "ent": -9.480635, "entire": -9.075170, "env": -6.030647, "env_is_usable": -10.173782, "environment": -8.564344, "environments.": -10.173782, "epoch": -10.173782, "eq": -6.148430, "equivalent": -9.480635, "error": -8.564344, "error_fd": -10.173782, "error_handler": -9.480635, "errors": -10.173782, "etc": -10.173782, "etc.": -10.173782, "eval": -7.871197, "evaluation": -10.173782, "even": -8.787487, "event": -9.480635, "every": -10.173782, "everyone": -10.173782, "everything": -10.173782, "exact": -10.173782, "example": -8.227872, "examples": -10.173782, "examples/benchmarks/fib.pl": -10.173782, "except": -10.173782, "exception_handler": -10.173782, "exist": -8.787487, "existing": -9.480635, "exists": -6.877945, "exit": -7.229343, "exit_from_ack": -8.564344, "exitval": -9.480635, "expand_filenames": -9.075170, "expanded": -10.173782, "expecting": -10.173782, "experimental": -10.173782, "expires": -8.227872, "explicit": -10.173782, "explicitly": -10.173782, "explicitly.": -9.480635, "expr": -9.480635, "expression": -8.564344, "expression.": -9.480635, "ext": -7.340568, "ext_list": -8.564344, "extension": -10.173782, "extensions": -10.173782, "exts": -8.382022, "f": -7.129259, "f/": -10.173782, "false": -10.173782, "feature": -10.173782, "fh": -7.229343, "fib": -8.787487, "field": -9.480635, "file": -6.484902, "file.": -9.075170, "file_filter": -8.564344, "file_matching": -9.480635, "filename": -5.883322, "filename.": -10.173782, "filenames": -7.976557, "files": -6.302581, "files.": -8.094340, "files/directories": -10.173782, "filetype": -10.173782, "filetype.": -10.173782, "filetype_setup": -9.075170, "filetypes": -7.976557, "filetypes.": -9.480635, "filetypes_supported": -8.382022, "filetypes_supported_set": -8.564344, "filter": -8.227872, "finalize": -8.564344, "find": -10.173782, "finder": -10.173782, "finding": -10.173782, "finds": -9.480635, "first": -8.787487, "first.": -10.173782, "five": -10.173782, "flags.": -10.173782, "flatten": -9.075170, "flush": -8.564344, "follow": -8.227872, "follow_symlinks": -8.787487, "following": -10.173782, "foo": -7.871197, "foo=": -10.173782, "for": -5.804334, "foreach": -7.976557, "foreground": -10.173782, "forgotten": -10.173782, "format": -10.173782, "format.": -10.173782, "formats": -10.173782, "found": -8.094340, "found.": -9.075170, "framework": -9.480635, "framework.": -10.173782, "frameworks": -9.480635, "free": -9.075170, "frm": -9.480635, "from": -7.340568, "from_mixed": -9.480635, "front": -10.173782, "full": -10.173782, "fullpath": -8.382022, "functions": -9.480635, "g": -8.564344, "g/": -10.173782, "g_regex": -9.480635, "g_regex/": -9.075170, "generation": -10.173782, "get": -9.480635, "get_all": -9.480635, "get_command_line_options": -9.075170, "get_copyright": -9.480635, "get_iterator": -9.480635, "get_starting_points": -9.075170, "get_total_count": -9.480635, "get_version_statement": -9.480635, "getc": -10.173782, "getchar": -10.173782, "getopt_specs": -8.382022, "getoptions": -8.787487, "gets": -9.480635, "getting": -10.173782, "given": -7.608832, "gives": -9.480635, "glob.": -10.173782, "globs": -10.173782, "gmtime": -10.173782, "gn": -9.075170, "go": -10.173782, "goes": -10.173782, "going": -10.173782, "good": -10.173782, "graph_iteration": -8.227872, "graph_name": -7.283410, "greater": -10.173782, "greatest": -10.173782, "green": -9.480635, "grep": -7.534725, "grep.": -9.480635, "grepprg": -10.173782, "group": -10.173782, "grouping": -9.075170, "groups": -10.173782, "gt": -10.173782, "gzip": -10.173782, "h": -8.564344, "had": -10.173782, "handed": -10.173782, "handle": -10.173782, "handling": -10.173782, "has": -10.173782, "has.": -10.173782, "has_lines": -8.787487, "has_stat": -9.075170, "hash": -7.775887, "have": -8.564344, "head": -5.883322, "head2": -10.173782, "header": -8.227872, "header.": -9.480635, "header_field_names": -10.173782, "headers": -6.148430, "headers.": -10.173782, "heading": -7.534725, "help": -8.564344, "help_arg": -9.480635, "helpful": -9.480635, "here": -10.173782, "here.": -10.173782, "higher": -10.173782, "highlight": -10.173782, "highlighting": -9.480635, "homepage": -10.173782, "host_and_descr_found": -9.075170, "host_regex": -8.564344, "host_regex/i": -10.173782, "hosted": -10.173782, "hostname": -10.173782, "hostname_regex": -8.787487, "hour": -9.480635, "housekeeping": -10.173782, "how": -10.173782, "html": -10.173782, "htmlize": -10.173782, "httponly": -10.173782, "i": -6.708046, "i.e.": -9.075170, "id": -8.382022, "idea": -10.173782, "ideal": -10.173782, "if": -4.605437, "ignore": -8.094340, "ignore.": -10.173782, "ignore_dirs": -7.465732, "ignored": -8.564344, "ignoredir_filter": -8.787487, "ignores": -9.480635, "immediately": -10.173782, "important": -10.173782, "important.": -10.173782, "in": -6.460210, "include": -8.787487, "included": -10.173782, "includes": -10.173782, "including": -10.173782, "inclusion/exclusion": -10.173782, "indent": -10.173782, "ineval": -9.075170, "information": -9.480635, "input": -7.976557, "input_from_pipe": -8.094340, "insert_value": -7.871197, "inside.": -10.173782, "instead": -8.787487, "instead.": -10.173782, "int": -9.480635, "integer": -10.173782, "integrates": -10.173782, "integration": -9.075170, "intended": -10.173782, "interactively": -9.075170, "interactively.": -10.173782, "internal": -10.173782, "into": -8.227872, "invert": -9.480635, "invert_file_match": -8.564344, "invert_flag": -9.480635, "invocant": -10.173782, "invoked": -10.173782, "io": -10.173782, "is": -5.954274, "is_binary": -9.075170, "is_cygwin": -8.787487, "is_interesting": -9.075170, "is_match": -8.787487, "is_searchable": -8.227872, "is_windows": -7.775887, "isn": -10.173782, "issues": -9.075170, "it": -7.129259, "it.": -10.173782, "item": -6.281962, "iter": -7.465732, "iteration_id": -9.075170, "iterator": -10.173782, "its": -9.075170, "itself.": -9.480635, "javascript": -9.075170, "join": -8.094340, "js": -9.480635, "just": -9.075170, "k": -8.787487, "keep_context": -8.564344, "key": -7.688875, "keys": -7.465732, "kind": -9.480635, "know": -8.787487, "knowledge": -10.173782, "l": -7.038288, "large": -10.173782, "last": -7.871197, "last_output_line": -8.787487, "lc": -8.787487, "lc_basename": -8.094340, "leading": -10.173782, "least": -10.173782, "length": -9.075170, "let": -10.173782, "level": -9.075170, "level.": -10.173782, "lexically.": -9.480635, "lib": -9.480635, "library": -10.173782, "like": -7.608832, "line": -7.038288, "line.": -8.787487, "line_counter": -9.480635, "line_no": -8.382022, "lineno": -10.173782, "lines": -7.038288, "lines.": -8.382022, "link": -10.173782, "list": -7.401193, "list.": -10.173782, "listings": -10.173782, "literal": -9.480635, "literal.": -10.173782, "ln": -10.173782, "load_colors": -10.173782, "loading": -10.173782, "local": -9.075170, "localtime": -9.480635, "location": -8.787487, "location.": -10.173782, "log": -9.075170, "logger": -10.173782, "logo.": -10.173782, "long_error_loc": -10.173782, "longer": -10.173782, "longmess": -9.075170, "look": -9.480635, "looking": -10.173782, "looks": -10.173782, "lot": -10.173782, "low": -10.173782, "m": -7.082739, "m/": -7.775887, "magenta": -10.173782, "mailing": -9.075170, "main": -9.480635, "mak": -9.480635, "make": -9.480635, "man": -10.173782, "manual": -10.173782, "map": -8.094340, "mappings": -6.841577, "mason": -10.173782, "match": -7.129259, "match.": -8.787487, "match_end": -9.480635, "match_start": -9.075170, "matched": -10.173782, "matches": -7.871197, "matching": -7.283410, "matter": -10.173782, "max": -8.094340, "maxlen": -8.564344, "may": -8.227872, "mday": -9.480635, "me": -10.173782, "mean": -10.173782, "means": -9.480635, "mess": -8.094340, "message": -9.480635, "metacharacters": -9.075170, "method": -8.227872, "method.": -10.173782, "methods": -9.075170, "middleware": -10.173782, "middlewares.": -10.173782, "min": -8.227872, "mk": -9.480635, "mod_perl": -10.173782, "mode.": -10.173782, "modify": -9.075170, "modifying": -10.173782, "module": -9.480635, "modules": -10.173782, "mon": -9.480635, "more": -9.480635, "most": -10.173782, "mounted.": -10.173782, "msg": -9.075170, "msg.": -9.480635, "multi": -10.173782, "multiple": -8.227872, "multiplexed": -10.173782, "must": -8.787487, "mxml": -9.480635, "my": -4.145503, "n": -7.340568, "n/": -10.173782, "nError": -10.173782, "nOo_/": -10.173782, "name": -6.345140, "name.": -10.173782, "named": -9.480635, "names": -10.173782, "nargs": -9.480635, "ne": -7.775887, "near": -10.173782, "need": -9.075170, "needs_line_scan": -8.094340, "never": -10.173782, "new": -6.222538, "new_response": -8.787487, "newline.": -10.173782, "next": -8.382022, "next_resource": -8.787487, "next_text": -8.564344, "nexted": -9.075170, "nick": -10.173782, "nmatches": -6.460210, "no": -6.995728, "no//": -9.480635, "nobreak": -10.173782, "noenv": -10.173782, "noenv.": -10.173782, "nofoo": -10.173782, "nogroup": -10.173782, "noheading": -10.173782, "non": -9.480635, "nopager": -10.173782, "noperl": -9.480635, "normal": -9.480635, "normalize": -10.173782, "normally": -10.173782, "not": -6.222538, "noted": -10.173782, "now": -10.173782, "nowledgements": -10.173782, "null": -9.480635, "number": -9.075170, "numbers.": -10.173782, "o": -7.229343, "object": -8.382022, "object.": -8.787487, "objects": -9.480635, "objects.": -10.173782, "of": -6.113339, "off": -8.227872, "off.": -9.480635, "older": -10.173782, "on": -6.995728, "on_black": -10.173782, "on_blue": -10.173782, "on_color": -10.173782, "on_cyan": -10.173782, "on_green": -10.173782, "on_magenta": -10.173782, "on_red": -10.173782, "on_white.": -10.173782, "on_yellow": -9.480635, "once": -10.173782, "one": -7.688875, "ones": -9.480635, "only": -7.340568, "op": -9.480635, "open": -8.094340, "opendir": -10.173782, "opened": -10.173782, "opt": -4.731364, "option": -8.564344, "option.": -10.173782, "options": -8.227872, "options.": -8.564344, "opts": -10.173782, "or": -6.184798, "ord": -9.480635, "order": -9.480635, "orig_confline": -10.173782, "ors": -7.775887, "other": -8.564344, "otherwise": -9.480635, "our": -6.806486, "out": -9.480635, "output": -6.562864, "output.": -10.173782, "output_func": -8.787487, "output_to_pipe": -7.688875, "over": -9.480635, "overload": -10.173782, "overrides": -9.480635, "overriding": -10.173782, "p": -8.564344, "package": -7.465732, "packagers": -10.173782, "packages": -10.173782, "page": -10.173782, "pager": -7.340568, "pager.": -10.173782, "param": -7.871197, "parameters": -8.094340, "parameters.": -9.075170, "params": -10.173782, "parent": -8.564344, "parms": -7.976557, "parse": -10.173782, "parse_perfdata": -10.173782, "parser": -7.688875, "part": -10.173782, "parts": -10.173782, "pass": -10.173782, "passing": -10.173782, "passthru": -7.976557, "patches": -10.173782, "path": -6.954906, "path.": -10.173782, "path_escape_class": -9.480635, "path_info": -8.787487, "path_query": -10.173782, "paths": -9.075170, "pattern": -8.787487, "per": -9.480635, "perfdata": -10.173782, "perhaps": -10.173782, "perl": -7.178050, "perl=": -9.075170, "perllib": -10.173782, "perlpath": -10.173782, "petdance": -10.173782, "petdance.com": -10.173782, "php": -10.173782, "pipe": -9.480635, "pipe.": -10.173782, "piping": -9.075170, "placed": -10.173782, "plain": -9.480635, "pod": -9.480635, "pop": -10.173782, "port": -10.173782, "possible": -10.173782, "posted": -10.173782, "prefer": -10.173782, "prefixing": -9.480635, "presentation": -10.173782, "previous": -10.173782, "print": -5.999395, "print_blank_line": -9.480635, "print_column_no": -9.480635, "print_count": -8.564344, "print_filename": -9.480635, "print_files": -9.075170, "print_files_with_matches": -9.075170, "print_first_filename": -9.480635, "print_line_no": -9.480635, "print_match_or_context": -8.564344, "print_matches": -9.075170, "print_separator": -9.480635, "print_version_statement": -9.075170, "printed": -10.173782, "printing": -10.173782, "prints": -9.480635, "problem": -10.173782, "program": -8.227872, "programmer": -10.173782, "programmers": -10.173782, "pronounce": -10.173782, "properly": -10.173782, "protocol": -10.173782, "provide": -10.173782, "provides": -10.173782, "psgi_handler": -10.173782, "pt": -10.173782, "push": -6.618434, "push_header": -10.173782, "put": -10.173782, "python": -10.173782, "q": -8.564344, "qq": -7.465732, "qr/": -8.227872, "query": -8.787487, "query_form": -10.173782, "query_parameters": -9.480635, "query_params": -10.173782, "quote": -9.480635, "quotemeta": -8.382022, "qw": -6.590263, "r": -7.775887, "rE": -10.173782, "rather": -9.480635, "raw_uri": -10.173782, "rc": -7.775887, "re": -9.075170, "read": -8.787487, "read_ackrc": -9.075170, "read_config": -9.075170, "readdir": -10.173782, "reading": -10.173782, "readline": -10.173782, "realdie": -9.480635, "realwarn": -10.173782, "recognize": -9.480635, "recognized": -9.075170, "recommended": -10.173782, "record": -10.173782, "recurse": -9.480635, "red": -10.173782, "redirect": -10.173782, "redirected": -10.173782, "redirected.": -9.480635, "redistribute": -9.480635, "ref": -6.877945, "reference": -7.976557, "reference.": -10.173782, "references": -10.173782, "referer": -9.075170, "referer.": -10.173782, "regardless": -10.173782, "regex": -6.708046, "regex/": -8.564344, "regex/Term": -10.173782, "regex/go": -10.173782, "regex/m": -10.173782, "regex_is_lc": -9.480635, "regex_str": -9.480635, "regex_string": -10.173782, "regex_string/": -9.480635, "regex_template": -9.075170, "regex_what": -9.480635, "regexes": -8.564344, "regexp": -10.173782, "regular": -9.075170, "relative": -10.173782, "remember.": -10.173782, "remote_host": -9.480635, "remove": -10.173782, "remove_dir_sep": -8.227872, "removes": -10.173782, "replacement": -10.173782, "replaces": -10.173782, "repo": -7.976557, "report": -10.173782, "repository": -10.173782, "req": -6.841577, "request": -7.688875, "request.": -10.173782, "request_uri": -10.173782, "requests": -9.075170, "require": -7.608832, "required": -9.480635, "res": -6.367119, "research": -10.173782, "reset": -8.787487, "reset.": -10.173782, "reset_total_count": -9.480635, "reslash": -9.480635, "response": -8.564344, "response.": -10.173782, "responsible": -10.173782, "result": -9.075170, "results": -8.787487, "results.": -10.173782, "resx": -9.480635, "ret_backtrace": -9.480635, "return": -5.169836, "return_arrayref_of_values_passed": -10.173782, "return_html": -8.787487, "return_html.": -9.480635, "returned": -9.480635, "returned.": -10.173782, "returns": -8.787487, "reverse": -10.173782, "rewind": -10.173782, "rm": -10.173782, "rn": -10.173782, "root": -10.173782, "route": -10.173782, "rrd_filename": -9.480635, "rrd_updates": -7.688875, "rrdarchive": -10.173782, "rrdarchive/g": -10.173782, "rrdarchive_filename": -9.075170, "rrdarchive_filename.": -9.075170, "rrdcreatetemplate": -9.075170, "rrdtool_cmdline": -7.871197, "rrdtool_cmdline.": -10.173782, "ruby": -10.173782, "run": -10.173782, "run_as_cgi": -10.173782, "runs": -10.173782, "s": -6.510220, "s*": -10.173782, "s*#/": -9.480635, "s/": -6.772584, "s/foo/bar/g": -10.173782, "s/tm_die/die/g": -10.173782, "sage": -9.480635, "same": -10.173782, "say": -10.173782, "scalar": -10.173782, "scalars": -10.173782, "scanned": -10.173782, "scheme": -9.075170, "script_name": -10.173782, "scripts": -10.173782, "search": -7.871197, "search.": -10.173782, "search_and_list": -8.787487, "search_resource": -9.075170, "searched": -9.075170, "searched.": -10.173782, "searches": -10.173782, "searching": -8.094340, "searching.": -10.173782, "sec": -9.480635, "second": -10.173782, "section": -10.173782, "secure": -9.480635, "see": -8.564344, "seeing": -10.173782, "seek": -9.075170, "seen": -10.173782, "select": -9.480635, "self": -5.337500, "send": -9.480635, "sending": -10.173782, "sep": -8.787487, "separated": -9.480635, "separator": -9.075170, "sequences.": -10.173782, "server": -10.173782, "service_regex": -8.787487, "service_regex/i": -10.173782, "serviceable": -10.173782, "servicedescr_regex": -8.787487, "session": -10.173782, "session_options": -10.173782, "set": -7.775887, "set.": -10.173782, "set_up_pager": -9.480635, "sets": -8.787487, "setting": -9.480635, "shell": -9.075170, "shellwords": -10.173782, "shift": -5.080032, "short": -9.480635, "shortcut": -10.173782, "should": -9.075170, "show": -9.480635, "show_column": -9.480635, "show_filename": -7.082739, "show_help": -9.075170, "show_help_types": -8.787487, "show_total": -9.075170, "show_types": -9.075170, "shows": -10.173782, "signals": -10.173782, "significant.": -10.173782, "signoff": -10.173782, "sigtrap": -9.480635, "similar": -10.173782, "simple": -9.075170, "simplified": -10.173782, "simply": -10.173782, "single": -10.173782, "size": -8.564344, "skip": -10.173782, "skip_dirs": -10.173782, "skipped": -9.480635, "smart": -9.480635, "smart_case": -9.075170, "so": -8.564344, "software": -9.480635, "software.": -10.173782, "some": -10.173782, "something": -9.480635, "sort": -7.976557, "sort_files": -8.094340, "sort_standard": -10.173782, "sort_sub": -8.787487, "source": -9.480635, "specific": -9.075170, "specifications.": -10.173782, "specified": -8.227872, "specified.": -9.075170, "specifies": -10.173782, "specify": -9.480635, "specifying": -10.173782, "speed": -10.173782, "spelling": -10.173782, "spin": -9.480635, "splice": -10.173782, "split": -7.688875, "spots": -10.173782, "sprintf": -9.075170, "standard": -9.480635, "start": -8.382022, "start_point": -9.480635, "starting": -9.480635, "starting_line_no": -10.173782, "starting_point": -8.564344, "statement.": -10.173782, "status": -7.283410, "step": -10.173782, "still": -9.480635, "stop": -10.173782, "store": -10.173782, "str": -6.915685, "strengths": -10.173782, "strict": -7.283410, "string": -8.382022, "string.": -10.173782, "strings": -10.173782, "strings.": -10.173782, "structures": -10.173782, "sub": -4.771104, "subclass": -10.173782, "subclassing": -10.173782, "subdirectories": -9.480635, "substr": -10.173782, "such": -8.564344, "support": -9.075170, "supported": -9.075170, "supported.": -10.173782, "suppress": -9.075170, "sure": -10.173782, "sv": -9.480635, "swap": -8.382022, "switch.": -9.480635, "switches": -9.480635, "swp": -9.480635, "syllable.": -10.173782, "symlinks": -10.173782, "symlinks.": -10.173782, "sysread": -10.173782, "system": -10.173782, "t": -7.340568, "t_descr": -9.075170, "t_descr/g": -10.173782, "t_end": -8.787487, "t_end/g": -10.173782, "t_start": -8.787487, "t_start/g": -10.173782, "tail": -10.173782, "take": -8.564344, "taken": -10.173782, "tarballs_work": -9.480635, "target": -9.075170, "td": -8.382022, "template_name": -9.075170, "terms": -9.075170, "tests": -10.173782, "text": -8.227872, "text.": -10.173782, "text/html": -10.173782, "text/plain": -10.173782, "th": -10.173782, "than": -8.564344, "that": -6.647421, "the": -5.176570, "their": -10.173782, "them": -8.382022, "then": -8.787487, "there": -8.787487, "there.": -10.173782, "these": -10.173782, "they": -10.173782, "things": -10.173782, "third_party": -10.173782, "this": -7.688875, "this.": -10.173782, "this_perl": -8.787487, "those": -10.173782, "though": -10.173782, "thpppt": -10.173782, "through": -8.227872, "throw": -10.173782, "tid": -8.787487, "tid_msg": -9.480635, "time": -8.787487, "time.": -10.173782, "time_template": -9.480635, "times": -9.480635, "tips": -10.173782, "tm_die": -8.787487, "tmpl": -8.564344, "tmpl_path": -9.480635, "to": -5.754941, "to_screen": -7.871197, "together": -10.173782, "too": -10.173782, "too.": -10.173782, "took": -10.173782, "tools": -10.173782, "top": -10.173782, "total_count": -8.787487, "totally": -10.173782, "tr/": -10.173782, "trailing": -9.480635, "treated": -10.173782, "tree": -9.075170, "trees": -10.173782, "trouble": -10.173782, "troublesome": -10.173782, "troublesome.gif": -10.173782, "true": -9.075170, "tt": -8.382022, "ttml": -9.480635, "turn": -10.173782, "turning": -10.173782, "turns": -9.480635, "tweaking.": -10.173782, "twice": -10.173782, "twice.": -10.173782, "type": -5.791755, "type.": -10.173782, "type_wanted": -7.340568, "type_wanted.": -10.173782, "types": -7.038288, "types.": -10.173782, "typing": -10.173782, "u": -8.382022, "uc": -10.173782, "undef": -7.608832, "undefinied": -10.173782, "under": -8.564344, "underline": -10.173782, "underscore": -9.480635, "understands": -10.173782, "uniq": -8.787487, "unknown": -10.173782, "unless": -6.708046, "unrestricted": -10.173782, "unshift": -9.480635, "unspecified": -10.173782, "up": -10.173782, "update": -10.173782, "updated": -10.173782, "upload": -7.608832, "uploads": -8.564344, "uploads.": -9.480635, "upper": -10.173782, "uppercase": -10.173782, "uri": -7.871197, "uri_escape": -9.075170, "uri_for": -9.480635, "url": -7.775887, "url_and_display_name": -9.075170, "url_scheme": -10.173782, "usage": -10.173782, "use": -5.651993, "use_attr": -10.173782, "used": -8.094340, "used.": -10.173782, "user": -8.564344, "user_agent": -9.075170, "user_agent.": -10.173782, "users": -8.382022, "users.": -10.173782, "uses": -10.173782, "using": -10.173782, "usual": -10.173782, "utf": -9.480635, "v": -7.082739, "val": -6.915685, "value": -7.871197, "value.": -10.173782, "values": -8.564344, "var": -10.173782, "variable": -9.480635, "variables": -10.173782, "variables.": -10.173782, "varname": -8.094340, "vb": -8.787487, "vd": -10.173782, "venue": -9.480635, "ver": -9.480635, "verbose": -9.480635, "verilog": -9.480635, "version": -8.564344, "versions": -10.173782, "vh": -9.480635, "vhd": -9.480635, "vhdl": -8.787487, "via": -10.173782, "vim": -8.787487, "vim.": -10.173782, "virtual": -10.173782, "visitor.": -10.173782, "w": -8.094340, "w/": -9.480635, "wacky": -10.173782, "want": -7.976557, "wantarray": -9.480635, "wanted": -8.564344, "wants": -10.173782, "warn": -7.401193, "warning": -10.173782, "warning.": -10.173782, "warnings": -7.283410, "was": -9.075170, "way": -9.480635, "way.": -10.173782, "wday": -9.480635, "we": -8.227872, "web": -8.564344, "website": -10.173782, "welcome": -10.173782, "well": -10.173782, "were": -10.173782, "what": -7.871197, "whatever": -10.173782, "when": -7.534725, "where": -9.075170, "whether": -9.480635, "which": -8.382022, "while": -7.129259, "whitespace": -10.173782, "who": -9.480635, "whole": -10.173782, "why": -10.173782, "will": -8.382022, "wish": -10.173782, "with": -6.618434, "with.": -10.173782, "without": -8.787487, "won": -10.173782, "word": -10.173782, "words": -10.173782, "work": -10.173782, "work.": -10.173782, "working": -10.173782, "works": -9.480635, "works.": -10.173782, "would": -8.787487, "wrap": -10.173782, "write": -10.173782, "writes": -10.173782, "www": -10.173782, "x": -7.688875, "xargs": -9.480635, "xml": -8.227872, "xml_decl": -10.173782, "xsl": -9.480635, "xslt": -9.480635, "y": -8.564344, "yaml": -8.787487, "year": -9.075170, "yellow": -9.480635, "yet": -10.173782, "yml": -9.480635, "you": -6.647421, "your": -7.608832, "z": -9.480635, "z/": -10.173782, "z//": -10.173782, "zA": -10.173782, "{": -3.067996, "|": -7.340568, "||": -6.345140, "}": -3.067176, "~": -5.037983, }, "Perl6": map[string]float64{ "!": -4.818414, "\"": -8.617642, "#": -5.978584, "#L": -9.716254, "#MMD": -9.716254, "#Test": -9.716254, "#if": -9.716254, "$": -2.519567, "%": -5.151906, "&": -5.909591, "&&": -7.231347, "'": -8.617642, "(": -2.979287, ")": -2.978101, "*": -6.538200, "**": -9.716254, "*.": -9.716254, "*.f": -9.716254, "*@": -7.924494, "*@a": -9.023107, "*@dirs": -9.716254, "*@elems": -9.023107, "*@list": -9.716254, "*@params": -9.716254, "*@things": -9.716254, "*@values": -9.716254, "*@vars": -9.716254, "*DEBUG": -8.329960, "*EGID": -9.716254, "*ENV": -8.329960, "*EUID": -9.716254, "*EXECUTABLE_NAME": -9.716254, "*GID": -9.716254, "*OS": -9.716254, "*OUT.write": -9.716254, "*PID": -9.716254, "*POD_IN_FORMATTINGCODE": -9.023107, "*UID": -9.716254, "*sin": -9.716254, "+": -5.183654, ",": -2.625344, "-": -3.643209, ".": -6.625211, ".*": -9.023107, "..": -7.151305, "...": -7.151305, "./": -9.716254, ".IO": -9.716254, ".IO.d": -9.716254, ".IO.w": -9.716254, ".Int": -9.716254, ".Str": -9.716254, ".WHICH": -9.716254, ".action": -9.716254, ".adverb": -9.716254, ".after": -9.716254, ".app": -9.716254, ".bend": -9.716254, ".call": -9.716254, ".calling": -9.716254, ".category": -9.716254, ".char": -9.716254, ".chars": -9.716254, ".class_default_encoding": -9.023107, ".composer": -9.716254, ".composer.": -9.716254, ".condition": -9.716254, ".condition.defined": -9.716254, ".construct": -9.716254, ".content": -8.329960, ".content.grep": -9.716254, ".day": -5.690902, ".days": -7.924494, ".declaration": -9.716254, ".declaring": -9.716254, ".decode": -9.023107, ".default_encoding": -9.023107, ".defined": -9.716254, ".derivatives": -9.023107, ".directive": -9.716254, ".eager": -8.329960, ".elems": -9.716254, ".enclosing": -9.716254, ".eval": -9.716254, ".expected": -9.716254, ".fail": -9.023107, ".file": -9.716254, ".first": -9.716254, ".flat": -8.617642, ".fold": -9.716254, ".from": -9.023107, ".got": -8.329960, ".grep": -8.617642, ".hash": -9.716254, ".how": -9.716254, ".html": -9.716254, ".illegal": -9.716254, ".infix": -9.716254, ".initials": -8.329960, ".initials.exists": -9.716254, ".instead": -9.716254, ".invocant": -9.716254, ".is": -7.519029, ".item": -9.716254, ".join": -8.617642, ".key": -7.924494, ".lc": -9.023107, ".left": -9.716254, ".level": -9.023107, ".list": -8.106816, ".localizer": -9.716254, ".macro": -9.716254, ".map": -9.023107, ".metachar": -9.716254, ".method": -8.106816, ".misplaced": -9.716254, ".mode.fmt": -9.023107, ".multiness": -9.716254, ".mutilate": -9.716254, ".name": -7.636812, ".needparens": -9.023107, ".new": -9.716254, ".numeric": -9.023107, ".objname": -9.023107, ".operation": -9.716254, ".package": -8.106816, ".parameter": -7.770344, ".path": -7.924494, ".path.subst": -9.716254, ".payload": -9.716254, ".payload.Numeric": -9.716254, ".payload.Str": -9.716254, ".phaser": -9.023107, ".pick": -9.716254, ".pick.comb.pick": -9.716254, ".placeholder": -9.716254, ".plot": -9.716254, ".pod": -9.023107, ".pos": -8.617642, ".private": -9.023107, ".protoguilt": -9.023107, ".psgi": -9.716254, ".push": -9.023107, ".qualifier": -9.716254, ".radix": -9.716254, ".reason": -9.716254, ".redispatcher": -9.716254, ".reify": -9.716254, ".reserved": -9.716254, ".results": -9.716254, ".right": -9.023107, ".rolish": -9.716254, ".routine": -9.716254, ".run": -9.716254, ".scope": -9.023107, ".sequence": -9.716254, ".sign": -9.716254, ".signature": -9.023107, ".source": -9.023107, ".source.substr": -9.023107, ".split": -9.023107, ".stopper": -9.716254, ".subst": -9.023107, ".substr": -9.716254, ".subtype": -9.716254, ".sym": -9.716254, ".symbol": -8.329960, ".symbol.defined": -9.716254, ".target": -8.106816, ".target.defined": -9.716254, ".throw": -9.716254, ".to": -9.023107, ".truncated": -7.008204, ".twigil": -9.023107, ".type": -8.617642, ".type.": -9.716254, ".typename": -8.617642, ".uc.join": -9.716254, ".value": -9.716254, ".variable": -9.716254, ".variables": -8.329960, ".variables.exists": -9.023107, ".variables.keys": -9.716254, ".week": -7.231347, ".week.join": -6.825882, ".weekday": -7.151305, ".what": -7.924494, ".when": -9.716254, ".word": -9.716254, "/": -6.078668, "//": -7.770344, "/The": -9.716254, "/charset": -9.716254, "/doc": -9.716254, "/phantom/": -9.716254, "/usr/bin/env": -9.023107, "0": -8.329960, "0123456789": -9.716254, "1": -7.770344, "1066": -9.716254, "12": -9.716254, "1234567890": -9.716254, "123456789e": -9.716254, "1986": -9.716254, "1e1": -9.023107, "2": -9.023107, "23456789012E66": -9.716254, "234567890E": -9.716254, "3": -9.023107, "34": -9.716254, "4": -9.023107, "44": -9.716254, "5": -8.617642, "543210": -9.716254, "6": -8.617642, "7": -9.023107, "8879": -9.716254, "98": -9.716254, "9876": -9.716254, "99": -9.716254, ":": -2.966323, ";": -2.783806, "<": -5.589120, "<!-->": -9.716254, "<!>": -9.716254, "<!before>": -9.023107, "<#>": -9.716254, "<$.symbol>": -9.716254, "<$UNCpath>": -8.617642, "<$driveletter>": -7.770344, "<$notslash>": -8.617642, "<$slash>": -6.825882, "<$volume_rx>": -8.617642, "<%?OPTIONS>": -9.716254, "<->": -8.329960, "<-I>": -9.716254, "<-[/;]>": -9.716254, "<-[;]>": -9.023107, "<-[\\/>": -9.716254, "<-[\\/\\.]>": -9.716254, "<-[\\\\]>": -9.716254, "<.xdigit>": -9.716254, "</>": -9.023107, "</a>": -9.716254, "</div>": -9.716254, "</p>": -9.023107, "<<": -7.231347, "<?>": -9.716254, "<?after>": -8.617642, "<?before>": -9.716254, "<@*INC>": -8.617642, "<AT>": -9.023107, "<Authorization>": -9.716254, "<Content-Length>": -8.617642, "<Content-Type>": -8.329960, "<DateTime>": -9.716254, "<Exception>": -9.716254, "<GET>": -9.716254, "<HERE>": -9.716254, "<Hooray,>": -9.716254, "<Host>": -9.716254, "<Index>": -9.023107, "<Location>": -9.716254, "<M>": -9.716254, "<Metamodel>": -9.716254, "<PATH>": -9.716254, "<RAKUDO_ERROR_COLOR>": -8.617642, "<TEMP>": -9.716254, "<TMP>": -9.716254, "<TMPDIR>": -9.716254, "<Term::ANSIColor>": -9.716254, "<Transfer-Encoding>": -9.023107, "<URI>": -9.716254, "<URI_reference>": -9.716254, "<X::Assignment::RO>": -9.716254, "<X::TypeCheck::Assignment>": -9.716254, "<[/]>": -9.716254, "<[>": -8.106816, "<[A..Z>": -9.716254, "<[A..Z]>": -8.617642, "<[\\/>": -9.716254, "<[\\naked]>": -9.716254, "<[a..z]>": -9.023107, "<[aeiou]>": -9.716254, "<[true]>": -9.716254, "<\\\\/>": -9.716254, "<\\\\>": -9.023107, "<a>": -7.318359, "<authority>": -9.716254, "<bar>": -9.716254, "<cmp>": -9.023107, "<code>": -9.716254, "<color()>": -8.329960, "<colored()>": -9.023107, "<colorstrip()>": -9.716254, "<colorstrip>": -9.716254, "<colorvalid()>": -9.023107, "<compiler>": -9.716254, "<config>": -9.716254, "<content>": -9.716254, "<cosimo>": -9.716254, "<div>": -9.716254, "<filename>": -9.023107, "<foo>": -8.106816, "<for>": -9.023107, "<hier_part>": -9.716254, "<host>": -9.716254, "<identifier>": -9.716254, "<kind>": -7.413669, "<language>": -9.716254, "<lib/>": -9.716254, "<likely_userinfo_component>": -9.023107, "<line>": -9.023107, "<link>": -9.023107, "<media-subtype>": -9.023107, "<media-type>": -8.617642, "<method>": -9.716254, "<misc>": -9.716254, "<miscq>": -9.716254, "<module>": -9.023107, "<more>": -9.716254, "<name>": -9.023107, "<nonbreaking>": -9.716254, "<not>": -9.716254, "<now>": -9.716254, "<operator>": -9.716254, "<p>": -9.023107, "<password>": -9.716254, "<pod_string_character>": -9.023107, "<pugs>": -9.716254, "<qq>": -9.716254, "<reset>": -9.716254, "<routine>": -9.716254, "<stopper>": -9.716254, "<sub>": -9.716254, "<sym>": -9.716254, "<time>": -9.023107, "<todo>": -9.023107, "<two>": -9.716254, "<type>": -9.023107, "<uncolor()>": -9.023107, "<unknown>": -9.023107, "<unrec>": -9.716254, "<user>": -9.716254, "<userinfo>": -9.716254, "<vol>": -9.023107, "<xx>": -7.636812, "<{>": -6.720522, "<{unquoted_key:>": -9.716254, "<»>": -9.716254, "=": -3.452856, ">": -4.318091, "?": -5.216444, "@": -6.883041, "@#": -9.716254, "@*INC.push": -9.023107, "@.arguments": -8.617642, "@.captures": -8.617642, "@.captures.grep": -9.716254, "@.list": -8.617642, "@.packages": -9.716254, "@.packages.join": -9.716254, "@.suggestions": -8.617642, "@.suggestions.join": -9.716254, "@.time": -9.716254, "@END_PHASERS": -9.716254, "@_": -8.106816, "@a": -6.420417, "@a.pop": -9.716254, "@a.reverse": -9.716254, "@a.rotate": -9.716254, "@a.shift": -9.716254, "@arr": -9.716254, "@arr.splice": -9.716254, "@array": -7.231347, "@array_k": -9.023107, "@array_kv": -9.023107, "@array_kv.kv": -9.716254, "@array_l": -9.023107, "@array_o": -9.023107, "@array_p": -9.023107, "@array_s": -8.617642, "@array_t": -8.617642, "@array_v": -9.023107, "@array_v.values": -9.716254, "@b": -8.106816, "@chunks": -7.924494, "@chunks.join": -9.716254, "@chunks.push": -8.617642, "@dirs": -7.151305, "@e": -7.924494, "@elems": -7.770344, "@expected": -8.329960, "@got": -7.636812, "@header_lines": -9.023107, "@header_lines.shift": -9.716254, "@i": -9.023107, "@initial": -9.023107, "@keys": -9.716254, "@kv": -9.023107, "@lines": -7.636812, "@lines.elems": -9.716254, "@list": -8.329960, "@list.join": -8.617642, "@list.reduce": -9.716254, "@mro": -9.023107, "@mro.shift": -9.716254, "@nonseparators": -8.617642, "@order": -9.023107, "@order.push": -9.716254, "@p": -9.023107, "@params": -9.716254, "@path": -9.023107, "@pod": -8.617642, "@r": -9.023107, "@r.push": -9.716254, "@res": -8.329960, "@rest.flat": -9.716254, "@result": -8.617642, "@results": -8.329960, "@ret": -9.023107, "@s": -9.023107, "@s.join": -9.716254, "@seen": -8.617642, "@seen.push": -9.716254, "@separators": -8.617642, "@source": -8.106816, "@stack": -8.617642, "@stack.pop": -9.716254, "@stack.push": -9.023107, "@t": -8.617642, "@tests": -9.023107, "@tests*": -9.716254, "@things": -9.716254, "@todo": -9.023107, "@todo.push": -9.716254, "@todo.shift": -9.716254, "@v": -9.023107, "@values": -7.318359, "@values.eager": -9.716254, "@values.pop": -9.023107, "@vars": -8.617642, "@x": -9.023107, "A": -7.413669, "ABCDEFGHIJKLMNOPQRSTUVWYZ": -9.023107, "ACCEPTS": -9.716254, "ALPHA": -9.716254, "ANSIColor": -9.023107, "Abbrev": -9.023107, "Acronym": -9.023107, "AdHoc": -9.716254, "Adverb": -9.716254, "Anon": -9.023107, "Any": -8.106816, "App": -9.716254, "App.current": -9.716254, "Argument": -8.617642, "Array.gist": -9.023107, "Assignment": -9.023107, "Attribute": -9.023107, "Augment": -9.023107, "B": -7.770344, "BEGIN": -8.617642, "BOLD": -9.716254, "BOLD_OFF": -9.716254, "Backslash": -9.023107, "Backtrace.new": -9.716254, "Bailador": -7.770344, "Base": -9.023107, "Bind": -8.106816, "Binding": -9.716254, "Blob": -7.924494, "Blob.new": -9.716254, "Block": -8.106816, "Bool": -8.106816, "Buf": -8.329960, "Buf.new": -9.023107, "C": -6.625211, "CG": -9.716254, "Callable": -9.023107, "Can": -9.023107, "Cannot": -8.106816, "Card": -9.023107, "Category": -9.716254, "Characters": -9.716254, "Click": -9.716254, "Close": -9.716254, "CloseDoc": -9.716254, "Code": -9.716254, "Comma": -9.716254, "Comp": -6.625211, "Composition": -9.716254, "Constants": -9.716254, "Constructor": -9.716254, "ContainsUnicode": -9.716254, "Context": -9.716254, "ControlFlow": -8.329960, "Cool": -9.716254, "CreateNewDoc": -9.716254, "D": -7.924494, "DEPRECATED": -9.716254, "DESCRIPTION": -9.023107, "DNA": -9.716254, "Date.new": -9.716254, "DateTime.new": -9.023107, "DateTime.now": -9.716254, "Declaration": -8.617642, "Deduction": -9.716254, "Default": -9.716254, "DocBook": -9.716254, "DocBook.": -9.716254, "Documentable": -9.023107, "Documentation": -9.716254, "Duplication": -9.716254, "Dynamic": -9.716254, "E": -9.716254, "E.g.": -9.716254, "EVAL": -7.770344, "EXCEPTION": -9.716254, "EXCEPTION_METHOD_NOT_FOUND": -9.716254, "Easy": -9.023107, "Elsif": -9.716254, "Escape": -9.716254, "Exception": -6.348958, "Extension": -9.023107, "Extra": -9.023107, "Failure": -9.716254, "Failure.new": -9.716254, "False": -8.106816, "File": -9.716254, "GET": -9.716254, "GML": -9.023107, "GatherIter.new": -8.617642, "Generalized": -9.023107, "Generated": -9.716254, "Given": -9.023107, "GlossDef": -9.023107, "GlossDiv": -9.023107, "GlossEntry": -9.023107, "GlossList": -9.023107, "GlossSee": -9.023107, "GlossSeeAlso": -9.023107, "GlossTerm": -9.023107, "Grammar": -9.716254, "HTML": -9.716254, "HTTP": -9.023107, "Hash": -9.023107, "Hash.new": -9.716254, "Heading": -8.329960, "Here": -9.023107, "Hooray": -9.716254, "I": -8.617642, "I.": -9.716254, "ID": -9.023107, "INET": -9.023107, "INVERSE": -9.716254, "INVERSE_OFF": -9.716254, "IO": -8.329960, "ISO": -9.023107, "Ibar": -9.716254, "Ifoo": -9.716254, "Ilib": -8.617642, "IllegalKey": -9.716254, "Images/Sun.png": -9.716254, "Immutable": -9.716254, "In": -8.617642, "Inf": -8.617642, "InfixInTermPosition": -9.716254, "Inheritance": -9.716254, "Int": -7.318359, "Int.gist": -9.716254, "InvalidArg": -9.023107, "InvalidQualifier": -9.716254, "InvalidType": -9.716254, "InvocantMarker": -9.716254, "IsSpace": -9.716254, "It": -8.617642, "Iterable": -9.716254, "JSON": -8.106816, "James": -9.716254, "KeywordAsFunction": -9.716254, "Konfabulator": -9.716254, "LWP": -9.716254, "Language": -9.023107, "List": -7.636812, "Localizer": -9.716254, "MAIN": -9.023107, "MIME": -9.023107, "MSWin": -8.106816, "Malformed": -9.023107, "Markup": -9.023107, "Match": -9.716254, "Math": -9.023107, "Method": -8.329960, "Missing": -9.716254, "Mixin": -9.716254, "Model": -9.716254, "Most": -9.716254, "Mu": -6.825882, "Multi": -9.023107, "Multiple": -9.716254, "MultipleTypeConstraints": -9.716254, "My": -9.716254, "N*": -9.716254, "NOT": -9.716254, "NQPRoutine": -9.716254, "Name": -9.716254, "NameClash": -9.716254, "Named.new": -9.716254, "NativeType": -9.716254, "New": -9.716254, "Nil": -8.617642, "NoContainer": -9.716254, "NoDispatcher": -9.716254, "NoPackage": -9.716254, "NoSelf": -9.716254, "NoSuchType": -9.716254, "NonAssociative": -9.716254, "NonVariableDollar": -9.716254, "Not": -9.716254, "NotComposable": -9.023107, "NotFound": -9.716254, "Null": -9.023107, "NullRegex": -9.716254, "Number": -9.716254, "Numeric": -9.023107, "OddNumber": -9.716254, "Of": -9.716254, "Official": -9.716254, "Open": -9.716254, "OpenDoc": -9.716254, "Opening": -9.716254, "OutOfRange.new": -9.023107, "POST": -8.617642, "PSGI": -9.716254, "PSGI.new": -9.716254, "PUGS_BACKEND": -9.716254, "Package": -9.023107, "Pair": -9.023107, "Parameter": -7.924494, "Parcel": -9.023107, "Pattern": -8.617642, "Perl": -7.519029, "Permission": -9.716254, "Phaser": -9.716254, "Placeholder": -9.716254, "Plot": -9.716254, "Plot.new": -9.716254, "Pod": -7.413669, "Positional": -8.617642, "PrePost": -9.716254, "Private": -9.023107, "Q": -6.497378, "RESET": -9.716254, "RO": -9.716254, "RadixOutOfRange": -9.716254, "Range": -9.023107, "Range.new": -9.716254, "Regex": -8.617642, "Registry": -9.716254, "Registry.new": -9.716254, "Request": -9.023107, "RequestType": -7.924494, "Response": -9.716254, "Return": -9.023107, "Rob": -9.716254, "Routine": -9.023107, "Routines": -9.716254, "RungeKutta": -9.716254, "S": -8.617642, "SGML": -7.924494, "SHEBANG#!perl6": -9.023107, "STORE_AT_POS": -9.716254, "SVG": -8.617642, "SVG.serialize": -9.716254, "Sample": -9.716254, "Scope": -8.617642, "Self": -9.716254, "Sequence": -9.716254, "Signature": -9.023107, "Simple": -9.716254, "Slice": -9.023107, "Socket": -9.023107, "SortAs": -9.023107, "Spec": -9.023107, "Splice": -9.716254, "Standard": -9.023107, "Store": -9.716254, "Str": -6.497378, "Stubbed": -9.716254, "Supply": -9.716254, "Syntax": -6.189893, "Term": -9.023107, "Test": -7.151305, "TestClass": -9.716254, "TestClass.new": -7.924494, "Tests": -9.023107, "The": -7.636812, "This": -8.617642, "Tiny": -9.716254, "To": -9.716254, "Too": -9.023107, "Trans": -9.023107, "True": -8.329960, "Twigil": -9.716254, "TypeCheck": -7.231347, "TypeCheck.new": -9.716254, "TypeGraph": -9.023107, "TypeGraph.new": -9.716254, "Types": -9.716254, "UNCpath": -9.716254, "UNDERLINE": -9.716254, "UNDERLINE_OFF": -9.716254, "URI": -8.617642, "Unicode": -9.716254, "Unix": -9.716254, "UnlessElse": -9.716254, "Unqualified": -9.716254, "UnrecognizedMetachar": -9.716254, "UnrecognizedSequence": -9.716254, "Unsupported": -9.716254, "Unwrap": -9.716254, "VERSION": -9.716254, "Value": -9.716254, "Variable": -9.716254, "VirtualCall": -9.716254, "Viz": -9.716254, "Whatever": -8.617642, "Widget": -9.716254, "Win": -9.716254, "WithoutObject": -9.716254, "Writing": -7.924494, "WrongOrder": -9.716254, "X": -4.920463, "XML": -9.023107, "Your": -9.716254, "Z": -9.023107, "Zcmp": -9.716254, "ZenSlice": -9.716254, "[": -5.227618, "\\": -5.638717, "]": -5.183654, "^": -6.458157, "_": -5.385521, "_.WHAT.gist": -8.617642, "_.WHICH": -9.716254, "_.key": -8.329960, "_.substr": -9.716254, "_/": -9.716254, "`": -7.636812, "a": -5.845053, "a.": -9.716254, "a..z": -9.716254, "a.level": -9.023107, "a.push": -9.023107, "a.unshift": -9.023107, "abcdefghijklmnopqrstuvwyz": -9.023107, "actions": -8.106816, "adaptive": -9.716254, "after": -8.617642, "alignment": -9.023107, "all": -9.023107, "allowed": -9.023107, "alpha": -9.716254, "an": -7.636812, "and": -7.519029, "any": -9.023107, "app": -9.716254, "app.add_route": -9.023107, "app.context.env": -9.716254, "app.context.request": -9.716254, "app.find_route": -9.716254, "app.location": -9.023107, "app.response": -9.716254, "app.response.code": -9.716254, "app.response.content": -9.023107, "app.response.headers": -9.023107, "app.template": -9.716254, "appreciated.": -9.716254, "appropriate": -9.716254, "arbitrary": -9.023107, "are": -7.519029, "args": -9.716254, "arguments": -9.023107, "argvmarray": -8.329960, "array": -8.617642, "array.": -9.716254, "as": -7.413669, "at": -8.617642, "atkey": -9.023107, "attempts": -9.716254, "attribute": -9.716254, "augment": -9.023107, "auth": -7.924494, "automagically": -9.716254, "available": -9.023107, "axis": -8.329960, "b": -5.932064, "b.bytes": -8.106816, "b.level": -9.023107, "b.subbuf": -8.329960, "background": -9.716254, "backslash": -8.329960, "backtrace": -9.716254, "baile": -9.716254, "bar": -9.716254, "base": -9.023107, "be": -7.519029, "because": -9.716254, "becomes": -9.716254, "before": -9.716254, "begin": -8.106816, "bend": -9.716254, "bin": -9.716254, "bindattr": -8.617642, "bindkey": -9.023107, "bindpos": -9.716254, "black": -9.716254, "bless": -9.716254, "block": -8.106816, "blue": -9.716254, "bold": -9.023107, "bool": -8.617642, "box_s": -9.716254, "bracket": -9.716254, "break": -9.716254, "but": -9.716254, "by": -7.151305, "by.": -9.716254, "c": -5.804231, "c.": -9.716254, "c.indent": -9.716254, "c.map": -9.716254, "c.name": -9.023107, "c.roles": -9.716254, "c.signature.params": -9.716254, "call": -9.716254, "callframe": -9.716254, "can": -9.716254, "canon": -8.617642, "canonpath": -9.716254, "caption": -9.023107, "card": -9.023107, "case": -9.716254, "castle": -9.023107, "cat": -8.617642, "catdir": -9.716254, "catfile": -9.716254, "center": -9.023107, "char": -9.716254, "character": -9.716254, "chars": -9.716254, "charset": -8.329960, "charset.Str": -9.716254, "chomp": -9.023107, "chr": -9.716254, "chunk": -7.924494, "chunk_len": -7.770344, "chunk_start": -8.329960, "chunks": -9.023107, "circum": -9.716254, "circumfix": -9.716254, "class": -5.334227, "clause": -9.023107, "clone": -9.716254, "close": -9.023107, "closed": -9.716254, "cmp": -9.716254, "code": -8.617642, "collides": -9.716254, "color": -8.329960, "colored": -9.023107, "colored.": -9.716254, "colors": -9.023107, "colors.": -9.716254, "colorstrip": -9.716254, "combinations": -8.106816, "comma": -9.716254, "command": -7.519029, "comment": -8.329960, "compact": -9.716254, "compile": -9.023107, "complete": -8.617642, "confs": -8.617642, "confs.perl": -9.716254, "const": -9.716254, "constant": -9.023107, "constants": -9.023107, "construct": -8.329960, "constructor": -9.716254, "contain": -9.716254, "content": -6.771815, "content.defined": -9.023107, "content.encode.bytes": -9.716254, "content_type": -9.716254, "contribution": -9.716254, "control": -9.716254, "controls": -9.716254, "copy": -8.617642, "correspond": -9.716254, "count": -8.329960, "course": -9.716254, "create": -8.617642, "crlf": -9.023107, "current": -7.231347, "cyan": -9.716254, "cygwin": -9.716254, "d": -6.420417, "d.key": -9.023107, "d.name": -9.023107, "d.value": -9.716254, "data": -9.716254, "date": -5.162377, "day": -8.329960, "debug": -8.617642, "declaration.": -9.716254, "declare": -9.716254, "decont": -9.023107, "deep": -9.716254, "default": -8.329960, "default_stream_read_len": -8.617642, "defined": -8.617642, "delimiter": -8.617642, "delimiters": -9.716254, "deriv": -7.770344, "derivative": -9.716254, "derivatives": -9.023107, "derivatives.invert": -9.716254, "desc": -9.023107, "description": -9.023107, "devnull": -9.716254, "diag": -9.023107, "die": -7.519029, "digit": -8.617642, "dir": -7.924494, "dir.split": -9.716254, "directories": -9.716254, "disambiguation": -8.329960, "dispatch": -8.106816, "dispatch_request": -9.716254, "do": -9.023107, "document": -9.716254, "documentation": -9.716254, "does": -5.866106, "don": -9.023107, "done": -9.023107, "dr": -7.318359, "dr.add": -8.617642, "dr.compose": -9.716254, "dr.lookup": -9.716254, "driveletter": -9.716254, "dt": -8.617642, "dt.truncated": -9.716254, "dtim": -6.132735, "e": -7.008204, "eager": -9.716254, "ecma": -9.716254, "effects.": -9.716254, "elem": -7.924494, "element": -9.716254, "elems": -7.770344, "else": -6.943665, "elsif": -8.329960, "emit": -7.318359, "enc": -9.716254, "enclosing": -9.716254, "encode": -9.023107, "encoded": -9.023107, "end": -8.106816, "endif": -9.023107, "endings": -9.716254, "entries": -9.716254, "enum": -9.716254, "env": -8.106816, "epsilon": -9.716254, "eq": -6.883041, "error": -9.023107, "escape": -8.617642, "eval": -9.023107, "eval_dies_ok": -8.617642, "eval_lives_ok": -9.716254, "even": -9.716254, "ex": -6.883041, "example": -9.023107, "exception": -9.716254, "excludes": -9.716254, "exists": -9.716254, "existskey": -9.023107, "exit": -9.023107, "expected": -9.716254, "explicit": -9.716254, "export": -7.519029, "f": -7.077197, "f.close": -9.716254, "f.f": -9.716254, "f.path": -9.716254, "f.say": -9.716254, "fail": -7.770344, "false": -8.617642, "family": -9.716254, "fetch": -9.716254, "fh": -7.924494, "fh.close": -9.716254, "fh.eof": -9.716254, "fh.get": -9.716254, "fh.lines": -9.023107, "fh.print": -9.716254, "fh.write": -9.716254, "fib": -8.329960, "file": -7.318359, "file.path": -9.023107, "file.rindex": -9.023107, "file.substr": -9.716254, "filename": -8.329960, "files": -7.924494, "first": -7.924494, "fix": -9.716254, "flat": -9.716254, "fly.": -9.716254, "fold": -9.716254, "following": -8.617642, "foo": -8.106816, "food": -9.716254, "footer": -8.329960, "for": -5.321805, "force": -9.716254, "fragment": -9.716254, "from": -7.151305, "full": -9.023107, "functions": -9.716254, "g": -8.617642, "g/": -9.023107, "gather": -7.151305, "get": -9.023107, "getattr": -9.023107, "getextype": -9.716254, "getlexcaller": -9.716254, "getmessage": -9.716254, "getpayload": -9.716254, "getprint": -9.716254, "gets": -9.716254, "getstore": -9.716254, "gist": -8.106816, "github": -9.716254, "give": -9.716254, "given": -7.636812, "global": -9.716254, "glossary": -8.329960, "got": -7.008204, "graph": -9.716254, "green": -9.716254, "grep": -8.617642, "h": -7.636812, "hOffset": -9.023107, "ha": -9.023107, "handle": -9.023107, "handling": -9.716254, "has": -5.131286, "hash": -7.770344, "hash.hash": -9.716254, "hash.keys.sort": -9.716254, "hash.my_keys": -9.716254, "hash_kv": -9.023107, "hash_kv.kv": -9.716254, "hash_v": -9.023107, "hash_v.values": -9.716254, "hashes": -9.716254, "have": -9.716254, "head": -7.519029, "header": -8.617642, "header.item": -9.716254, "header_end_pos": -7.770344, "headers": -6.943665, "headers.keys": -9.716254, "heading": -8.106816, "heading.split": -9.716254, "height": -8.617642, "hidden_from_backtrace": -9.023107, "highlighted": -9.716254, "host": -8.617642, "hostname": -8.329960, "hour": -9.023107, "href": -8.617642, "href=": -9.023107, "html": -8.617642, "html/index.html": -9.023107, "html/routine/": -9.716254, "html/search.html": -9.716254, "http": -9.716254, "http_header_end_marker": -9.023107, "i": -7.008204, "id": -9.023107, "idx": -7.924494, "if": -5.334227, "ignored": -9.716254, "ignores": -9.716254, "illegal": -9.716254, "image": -9.716254, "images": -8.617642, "implement": -9.716254, "import": -9.716254, "important": -9.716254, "in": -6.943665, "incomplete.": -9.716254, "index": -7.770344, "index_rpa": -8.617642, "indicator": -9.716254, "infinite": -8.617642, "infix": -7.413669, "initialization": -9.716254, "int": -9.023107, "integrate": -9.023107, "interface": -9.716254, "inv": -9.023107, "inv.exists": -9.023107, "inv.keys": -9.716254, "inverse": -9.716254, "invis": -8.329960, "is": -4.171077, "is_last_chunk": -8.329960, "isa_ok": -9.716254, "isconcrete": -9.716254, "isnull": -9.716254, "ist": -9.023107, "istitems": -9.716254, "istrue": -9.716254, "istype": -8.106816, "it": -8.106816, "item": -9.716254, "items": -8.106816, "j": -8.329960, "java": -9.716254, "join": -8.106816, "json/": -9.716254, "just": -9.716254, "k": -7.231347, "key": -7.770344, "keying": -9.716254, "keys": -8.617642, "kind": -7.924494, "known": -9.716254, "kv": -9.023107, "kwid": -9.023107, "l": -7.519029, "lang": -9.023107, "language": -7.770344, "languages": -9.023107, "last": -8.329960, "last_chunk_end_len": -8.329960, "late": -9.023107, "leading": -9.023107, "leap": -7.519029, "leaving": -9.716254, "left": -9.716254, "level": -7.924494, "lib": -9.716254, "like": -9.023107, "likely": -9.716254, "line": -8.106816, "line_end_pos": -7.151305, "liner": -9.716254, "lines": -9.716254, "link": -8.106816, "list": -7.924494, "list.": -9.716254, "list.at_pos": -8.329960, "listop": -9.023107, "lists.": -9.716254, "look": -9.716254, "loop": -8.106816, "m": -8.329960, "m/": -8.617642, "magenta": -9.716254, "main_window": -9.716254, "make": -9.716254, "make_request": -9.716254, "many": -9.716254, "map": -7.636812, "marker": -8.617642, "markup": -7.924494, "match": -8.617642, "match.list": -9.716254, "max": -9.023107, "maximum": -9.716254, "maybe": -9.716254, "me": -9.716254, "media": -9.716254, "media=": -9.716254, "member": -9.716254, "menu": -9.716254, "menuitem": -9.716254, "message": -5.467759, "message.Str": -9.716254, "meta": -9.023107, "method": -4.856442, "methods": -7.636812, "mime": -9.716254, "mime.encode_base": -9.716254, "min": -8.329960, "mingw": -9.716254, "minute": -9.716254, "mirrored": -9.716254, "missing": -9.716254, "mixed": -9.716254, "mkdir": -9.716254, "module": -8.329960, "month": -6.420417, "more.": -9.716254, "msg": -8.106816, "msg.Str": -9.716254, "msg.defined": -9.716254, "msys": -9.716254, "multi": -6.458157, "multidimensional": -9.716254, "munge": -9.023107, "must": -8.617642, "mutilate": -9.716254, "my": -3.917161, "my_exists": -9.716254, "my_keys": -9.716254, "n": -6.671732, "n...": -9.023107, "n.Int": -9.023107, "n/": -9.716254, "name": -6.384049, "name.html": -9.716254, "names": -7.318359, "names.": -9.716254, "ne": -8.106816, "negated": -9.716254, "nesting": -9.716254, "new": -7.636812, "new_url": -8.617642, "newexception": -9.716254, "next": -7.636812, "next_chunk_start": -9.716254, "nextiter.DEFINITE": -9.716254, "nextiter.defined": -9.716254, "nextwith": -9.716254, "niecza": -7.924494, "no": -9.023107, "nok": -8.106816, "nonce": -9.023107, "none": -9.716254, "not": -8.329960, "notslash": -9.716254, "nqp": -5.541867, "null": -9.716254, "num": -9.023107, "number": -7.924494, "numeric": -9.716254, "o": -7.008204, "o..": -9.716254, "o.Int": -9.716254, "object": -8.329960, "object.": -9.023107, "of": -5.261907, "offset": -8.329960, "ok": -7.924494, "on": -7.770344, "onMouseUp": -9.716254, "on_*": -9.716254, "on_black": -9.716254, "on_blue": -9.716254, "on_cyan": -9.716254, "on_default": -9.716254, "on_green": -9.716254, "on_magenta": -9.716254, "on_red": -9.716254, "on_white": -9.716254, "on_yellow": -9.716254, "onclick": -8.617642, "one": -9.716254, "only": -9.716254, "op": -7.519029, "op/circumfix": -9.716254, "op/infix": -9.716254, "op/listop": -9.716254, "op/postcircumfix": -9.716254, "op/postfix": -9.716254, "op/prefix": -9.716254, "opacity": -9.023107, "open": -8.106816, "operation": -8.329960, "operator": -7.413669, "or": -8.329960, "ord": -9.023107, "orig": -8.617642, "otherwise.": -9.716254, "our": -8.329960, "out": -8.329960, "outermost": -9.023107, "output": -8.617642, "p": -6.219746, "package": -8.617642, "pair": -9.716254, "para": -9.023107, "param": -8.617642, "parameter": -9.716254, "params": -8.617642, "parcel": -9.023107, "parent": -8.617642, "parrot": -9.023107, "parse_chunks": -9.716254, "parse_response": -9.716254, "parse_route": -8.329960, "parse_url": -9.716254, "parsed": -8.617642, "parser": -9.716254, "pass": -8.106816, "pass1": -9.716254, "pass3": -9.716254, "passed": -9.716254, "passing": -9.716254, "password": -9.716254, "path": -6.771815, "pattern": -9.716254, "payload": -7.924494, "perl": -7.924494, "permutations": -8.329960, "pir": -9.716254, "placed": -9.716254, "plain": -9.716254, "plan": -7.636812, "please": -9.716254, "pod": -6.027374, "pod.": -9.023107, "pod.content": -9.023107, "pod.content.list": -9.716254, "pod.content.push": -8.106816, "pod_formatting_code": -9.716254, "pod_string": -9.716254, "podname": -7.318359, "pop": -8.617642, "popup": -9.716254, "port": -8.106816, "pos": -9.023107, "possible": -9.716254, "post": -8.617642, "postcircum": -9.716254, "postcircumfix": -9.716254, "postfix": -9.716254, "pre": -9.716254, "prefix": -9.023107, "prepend": -9.716254, "print": -9.716254, "printed": -9.716254, "printf": -9.716254, "probability": -8.329960, "proceed": -9.716254, "produced": -9.716254, "progress": -9.716254, "properly": -9.716254, "proto": -7.770344, "provides": -9.023107, "psgi": -9.023107, "public": -9.716254, "pugs": -7.008204, "punch": -9.023107, "push": -7.318359, "q": -7.770344, "q/": -9.023107, "qq": -7.413669, "quote": -9.023107, "quoted": -9.716254, "quoting": -9.716254, "r": -6.671732, "r.env": -9.716254, "r.name": -9.023107, "r.value.": -9.023107, "rakudo": -8.329960, "range": -9.023107, "rank": -8.329960, "re": -9.716254, "read/write": -9.716254, "readable": -9.716254, "real": -9.716254, "recognised": -9.716254, "record": -8.617642, "recursive": -9.023107, "red": -9.716254, "redir": -9.023107, "redirects": -9.716254, "redo": -9.716254, "reduce": -9.716254, "ref": -9.023107, "regex": -7.770344, "rel": -9.023107, "removes": -9.716254, "render": -9.716254, "req_str": -8.617642, "request": -9.716254, "request_shell": -9.716254, "required": -9.716254, "res": -9.023107, "reserved": -9.716254, "reset": -9.716254, "resolution": -9.023107, "resp": -8.106816, "resp.bytes": -8.617642, "resp.subbuf": -8.617642, "resp_content": -7.519029, "resp_content.bytes": -9.023107, "resp_content.decode": -9.716254, "resp_content_chunk": -8.617642, "resp_headers": -7.231347, "resp_headers.hash": -9.716254, "result": -8.329960, "result.chars": -9.716254, "result.split": -9.716254, "result.subst": -9.716254, "results": -8.106816, "resumable": -9.716254, "resume": -8.106816, "rethash": -9.716254, "rethrow": -9.023107, "return": -5.605380, "returns": -9.023107, "rev": -8.617642, "reverse": -9.716254, "right": -9.716254, "rk": -9.716254, "rlist": -8.617642, "role": -8.106816, "roleq": -9.716254, "rootdir": -9.716254, "rosebud": -9.716254, "rotate": -9.023107, "route": -8.106816, "route.split": -9.716254, "route_to_regex": -9.023107, "routine": -7.519029, "rpa": -8.106816, "rt": -8.106816, "rt.Stringy": -9.716254, "run": -9.716254, "run_pugs": -8.617642, "rw": -7.318359, "rx": -9.023107, "s": -6.883041, "s.Int": -9.716254, "s/": -7.924494, "same": -8.329960, "say": -6.497378, "scheme": -9.716254, "script": -9.716254, "search": -9.716254, "second": -8.329960, "seen": -7.318359, "self": -6.348958, "self.": -8.617642, "self.DEFINITE": -9.023107, "self.WHAT": -9.716254, "self.backtrace": -9.716254, "self.base": -9.716254, "self.catdir": -9.716254, "self.combinations": -9.716254, "self.curdir": -9.716254, "self.eager": -9.716254, "self.elems": -7.519029, "self.get": -9.023107, "self.gimme": -8.617642, "self.infinite": -9.716254, "self.make_request": -9.716254, "self.map": -9.716254, "self.of": -9.716254, "self.panic": -9.023107, "self.parse_chunks": -9.023107, "self.parse_response": -9.716254, "self.parse_url": -9.716254, "self.request_shell": -8.617642, "self.stringify_headers": -9.716254, "self.throw": -9.716254, "self.topo": -9.716254, "self.unique": -9.716254, "self.values": -9.716254, "sep": -7.636812, "separator": -9.023107, "sequence": -9.716254, "sequences": -9.023107, "sequences.": -9.716254, "setelems": -9.023107, "setmessage": -9.716254, "setpayload": -9.023107, "sets": -9.716254, "shift": -8.106816, "should": -8.106816, "similar": -9.716254, "simply": -9.716254, "single": -9.023107, "sink": -9.023107, "size": -7.231347, "skip": -7.770344, "skip_rest": -9.023107, "slash": -8.106816, "slurp": -9.023107, "so": -8.617642, "sock": -8.329960, "sock.close": -9.716254, "sock.read": -7.770344, "sock.send": -9.716254, "some": -9.023107, "something": -9.023107, "sort": -7.636812, "source": -9.716254, "sources": -9.716254, "special": -9.716254, "specialer": -9.716254, "specifically": -9.716254, "specifications": -9.716254, "specified.": -9.716254, "splice": -9.023107, "split": -9.023107, "splitdir": -9.716254, "sprintf": -8.617642, "spurt": -9.023107, "src": -9.716254, "state": -9.716254, "statement": -9.023107, "statement/implicit": -9.716254, "status": -7.924494, "status_line": -9.023107, "stepsize": -9.716254, "stinkin": -9.716254, "stopper": -9.023107, "store": -9.716254, "str": -6.943665, "string": -7.151305, "string.": -9.716254, "stringify_headers": -9.716254, "strings": -9.023107, "stuff": -9.716254, "style": -8.106816, "sub": -5.309535, "subgraph": -8.329960, "subkind": -9.716254, "subst": -9.716254, "substr": -8.329960, "succeed": -9.716254, "such": -9.023107, "sum": -7.924494, "sun": -8.617642, "supply": -9.716254, "supposed": -9.716254, "svg": -8.617642, "switches": -9.716254, "sym": -8.106816, "symbol": -9.716254, "t": -7.008204, "t.mro": -9.716254, "t.roles": -9.716254, "take": -7.231347, "takes": -9.716254, "target": -7.231347, "tells": -9.716254, "tempfile": -8.617642, "template": -9.716254, "terminal": -9.716254, "terminals.": -9.716254, "test": -8.617642, "test_lines": -8.617642, "text": -7.924494, "tg": -9.023107, "tg.sorted.kv.flat.reverse": -9.716254, "tg.types": -9.716254, "that": -8.617642, "the": -6.497378, "them": -9.716254, "there": -9.023107, "thing": -8.617642, "thing.Str": -9.716254, "thing.perl": -9.716254, "this": -8.617642, "those": -9.716254, "throw": -9.023107, "thunked": -9.023107, "thus": -9.716254, "time": -7.318359, "time.push": -9.716254, "times_run": -9.023107, "title": -7.636812, "title=": -9.716254, "tmpdir": -9.716254, "tmpl": -9.023107, "to": -6.160906, "todo": -7.770344, "token": -7.413669, "too": -9.716254, "topic": -8.106816, "topo": -7.924494, "trait": -9.716254, "true": -8.617642, "truncated": -9.716254, "truncated.gist": -9.716254, "try": -7.770344, "trying": -9.716254, "tweak_q": -9.716254, "tweak_qq": -9.716254, "twigil": -9.716254, "two": -9.716254, "type": -6.538200, "type=": -9.023107, "typegraph": -9.023107, "u": -9.716254, "u.grammar.parse_result": -9.716254, "u.host": -9.023107, "u.path_query": -9.716254, "u.port": -9.716254, "u.scheme": -9.716254, "uAB98": -9.716254, "uBABE": -9.716254, "uCAFE": -9.716254, "uFCDE": -9.716254, "ubcda": -9.716254, "uc": -9.716254, "uef4A": -9.716254, "unbox_i": -9.716254, "unbox_s": -9.023107, "underline": -9.716254, "uniq": -9.716254, "unique": -8.106816, "unknown": -9.716254, "unless": -6.720522, "unlink": -9.716254, "unshift": -8.106816, "update": -8.617642, "url": -6.883041, "use": -5.932064, "used": -8.329960, "user": -8.106816, "user_info": -8.106816, "using": -9.716254, "v": -6.497378, "v.defined": -9.716254, "vOffset": -9.023107, "val": -6.883041, "valid": -9.716254, "vals": -9.023107, "vals.shift": -9.716254, "value": -6.625211, "values": -7.231347, "variable": -9.023107, "variations": -9.716254, "ver": -9.716254, "verb": -9.716254, "verbose": -9.023107, "via": -9.716254, "vis": -9.023107, "vm_ex": -8.106816, "volume": -8.329960, "volume_rx": -9.716254, "vowels": -9.023107, "w": -9.023107, "we": -9.716254, "weather": -8.329960, "week": -5.804231, "what": -7.318359, "when": -6.883041, "where": -9.716254, "which": -9.716254, "while": -7.008204, "white": -9.716254, "whitespace": -8.106816, "whitespace.": -9.716254, "widget": -9.716254, "width": -8.617642, "will": -8.617642, "window": -9.716254, "with": -7.008204, "with.arity": -9.716254, "with.count": -9.716254, "without": -9.023107, "work": -9.023107, "write": -7.318359, "x": -5.727270, "x.": -9.023107, "x.defined": -9.716254, "x.key": -9.023107, "x.value": -9.023107, "xA": -9.716254, "xx": -9.716254, "xy": -9.716254, "y": -9.716254, "year": -6.132735, "yellow": -9.716254, "your": -9.716254, "zip": -9.716254, "{": -3.288149, "|": -6.002682, "||": -7.413669, "}": -3.278502, "~": -4.592290, "«": -7.770344, "»": -7.413669, }, "Pic": map[string]float64{ "(": -4.499810, ")": -4.499810, ",": -3.113515, "-": -5.192957, ".": -3.247047, ".PE": -5.192957, ".PS": -5.192957, ".cend": -4.499810, ".cstart": -4.499810, ".ps": -3.583519, ":": -3.401197, ";": -2.708050, "<->": -5.192957, "=": -4.094345, "A": -4.499810, "B": -5.192957, "B.ht": -5.192957, "B.r": -5.192957, "B.w": -5.192957, "B.wid": -5.192957, "BP": -3.401197, "CH": -5.192957, "H": -5.192957, "I": -5.192957, "N": -5.192957, "NH": -5.192957, "O": -4.499810, "R": -3.401197, "Thing": -5.192957, "Thing.l": -4.499810, "V": -4.499810, "\\": -4.499810, "above": -5.192957, "arrow": -3.583519, "at": -4.499810, "bond": -2.890372, "box": -3.806662, "box.r": -5.192957, "box.s": -5.192957, "boxht": -5.192957, "boxwid": -5.192957, "burying": -5.192957, "by": -5.192957, "code": -5.192957, "dashed": -5.192957, "define": -5.192957, "depression": -5.192957, "double": -4.094345, "down": -3.583519, "ellipse": -4.499810, "from": -2.795062, "front": -5.192957, "in": -5.192957, "last": -4.499810, "left": -5.192957, "length": -3.583519, "move": -4.094345, "my": -5.192957, "myself": -5.192957, "pointing": -4.499810, "put": -5.192957, "right": -4.499810, "ring": -4.094345, "rjust": -5.192957, "run": -5.192957, "sadness": -4.499810, "size": -4.499810, "sprintf": -5.192957, "textht": -5.192957, "then": -4.499810, "to": -4.499810, "up": -3.806662, "{": -5.192957, "}": -5.192957, }, "Pickle": map[string]float64{ "!": -6.356445, "#": -7.637379, "#JR": -9.939964, "#P": -9.939964, "#Z": -9.939964, "#p": -9.939964, "#z": -9.939964, "$": -6.505977, "%": -6.443457, "&": -6.048144, "'": -9.939964, "(": -5.705858, ")": -6.413604, "*": -7.106751, "*F": -9.939964, "*Tm": -9.939964, "*x": -9.939964, "+": -6.505977, ",": -6.505977, "-": -6.133302, ".": -8.553670, ".B": -9.939964, ".pe": -9.939964, "/": -6.848922, "/g": -9.939964, "/q": -9.939964, ":": -6.133302, ";": -6.276402, "<": -6.356445, "=": -6.251085, ">": -6.226392, "?": -3.397492, "@": -5.344844, "@#": -9.939964, "@*": -9.939964, "@B": -9.939964, "@BX": -9.939964, "@E": -9.939964, "@F": -9.939964, "@I": -9.939964, "@J": -9.939964, "@JP": -9.939964, "@K": -9.939964, "@L": -9.939964, "@O": -9.939964, "@SS": -9.939964, "@T": -9.939964, "@W": -9.246817, "@WqQ": -9.939964, "@Y": -9.939964, "@_": -8.841352, "@c": -9.939964, "@g": -9.939964, "@k": -9.939964, "@l": -9.939964, "@n": -9.939964, "@qN": -9.939964, "@r": -9.939964, "@t": -9.939964, "@z": -9.939964, "A": -6.995525, "AT": -9.939964, "Ad": -9.939964, "Ai": -9.939964, "At": -9.939964, "B": -7.375015, "BcB": -9.939964, "Bo": -9.939964, "BpS": -9.939964, "C": -6.848922, "CG": -9.939964, "CP": -9.939964, "Cv": -9.939964, "Cw": -9.939964, "D": -7.167375, "DJR_": -9.939964, "Db": -9.939964, "Dy": -9.939964, "E": -6.761910, "EE": -9.939964, "ET": -9.939964, "Em": -9.939964, "F": -7.994054, "G": -7.167375, "GU": -9.939964, "Ge": -9.939964, "Gi": -9.939964, "Gw": -9.939964, "Gy_": -9.939964, "H": -6.895442, "HDW": -9.939964, "HXV": -9.939964, "Hm": -9.939964, "Hy": -9.939964, "I": -6.505977, "IH": -9.939964, "Ii": -9.939964, "Iuq": -9.939964, "J": -7.106751, "Ju": -9.939964, "K": -6.721088, "KE": -9.939964, "KTy": -9.939964, "Kn": -9.939964, "L": -8.553670, "L.": -9.939964, "LM": -9.939964, "LR": -9.939964, "Lzi": -9.939964, "M": -7.742740, "ME": -9.939964, "MP": -9.939964, "MRB": -9.939964, "Mz": -9.939964, "N": -7.106751, "NL": -9.939964, "NNNI": -9.246817, "NO": -9.939964, "NV": -9.939964, "NY": -9.939964, "Nd": -9.939964, "Nj": -9.939964, "NsS": -9.939964, "Ny": -9.939964, "O": -6.995525, "O.": -9.939964, "Ox": -9.939964, "Oz": -9.939964, "P": -7.167375, "PM": -9.939964, "PQ": -9.939964, "Q": -6.944232, "QA": -9.939964, "QAY": -9.939964, "QgZ": -9.939964, "Ql": -9.939964, "R": -7.106751, "RZ": -9.939964, "Rh": -9.939964, "Rp": -8.841352, "S": -6.761910, "SEW": -9.939964, "SV": -9.939964, "S_*": -9.939964, "Se": -9.939964, "Sf": -9.939964, "T": -7.455057, "T*": -9.939964, "TA": -9.939964, "TBx": -9.939964, "TD": -9.939964, "TKDG": -9.939964, "TW": -9.939964, "Ta": -9.939964, "U": -8.553670, "V": -7.167375, "VG": -9.939964, "VR": -9.939964, "VUnicode": -9.939964, "Vq": -9.939964, "Vrh": -9.939964, "Vv": -9.939964, "W": -6.944232, "Wc": -9.939964, "Wp": -9.939964, "X": -7.860523, "XX": -9.939964, "Xa": -9.939964, "Xh": -9.939964, "Xwb": -9.939964, "Y": -7.742740, "Y#": -9.939964, "YD": -9.939964, "YEN": -9.939964, "Yj": -9.939964, "Z": -7.455057, "ZE": -9.939964, "ZTI": -9.939964, "[": -6.443457, "\\": -0.875459, "]": -6.068763, "^": -6.251085, "_": -6.895442, "_U": -9.939964, "_r": -9.939964, "_reconstruct": -9.246817, "`": -6.721088, "a": -5.230434, "a..": -9.939964, "a/": -9.939964, "a@": -9.246817, "aF": -9.246817, "aI": -9.939964, "aL": -9.939964, "aN": -9.939964, "aO": -9.939964, "aQ": -9.939964, "aR": -9.939964, "aT": -9.939964, "aW": -9.939964, "aWZ": -9.939964, "aX": -9.939964, "ac__builtin__": -9.939964, "ad": -9.246817, "af": -9.939964, "am": -9.939964, "ao": -9.939964, "aq": -9.246817, "asS": -9.939964, "at": -9.939964, "aw": -9.939964, "ax": -9.939964, "b": -5.034689, "b.": -9.246817, "b@": -7.994054, "b@v": -9.939964, "bB": -9.939964, "bCg": -9.939964, "bD": -9.246817, "bF": -9.246817, "bFZ": -9.939964, "bG": -9.939964, "bGS": -9.939964, "bI": -9.939964, "bIIy": -9.939964, "bJ": -8.841352, "bJCEO": -9.939964, "bK": -9.939964, "bKS": -9.939964, "bN": -9.939964, "bQ": -8.841352, "bW": -9.939964, "bXs": -9.939964, "bZ": -9.246817, "b_A": -9.939964, "bb": -9.939964, "bcw": -9.939964, "bdyP": -9.939964, "bf": -9.939964, "bg": -9.246817, "bhn": -9.939964, "bim": -9.939964, "bkn": -9.939964, "bp": -9.246817, "br": -9.939964, "bs": -9.939964, "c": -4.991204, "c.": -9.939964, "c.g": -9.939964, "c@": -9.246817, "cA": -9.246817, "cBK": -9.939964, "cC": -9.939964, "cE": -9.939964, "cEY": -9.939964, "cF": -9.246817, "cK": -9.246817, "cL": -9.939964, "cM": -9.939964, "cO": -9.939964, "cR": -9.939964, "cS": -9.939964, "cW": -9.246817, "cX": -9.939964, "cY": -9.939964, "cZ": -9.939964, "ce": -9.939964, "cem": -9.939964, "cg": -9.939964, "ci": -9.939964, "ck": -9.939964, "cnumpy": -8.841352, "cnumpy.core.multiarray": -9.246817, "complex": -9.939964, "crAl": -9.939964, "cvrr": -9.939964, "cw": -9.246817, "d": -5.160841, "d#": -9.939964, "d*": -9.939964, "d.": -9.939964, "d@": -9.939964, "dC": -9.939964, "dCA": -9.939964, "dEp": -9.939964, "dI": -9.246817, "dK": -9.939964, "dM": -9.939964, "dO": -9.939964, "dV": -9.939964, "dX": -9.939964, "db": -9.939964, "df": -9.939964, "dp": -8.841352, "dtype": -9.246817, "e": -4.858560, "e/": -9.939964, "e/b": -9.939964, "e@": -8.553670, "e@B": -9.939964, "eAL": -9.939964, "eDF": -9.939964, "eF": -9.939964, "eI": -9.939964, "eJ": -9.939964, "eLu": -9.939964, "eM": -9.939964, "eN": -9.939964, "eO": -9.246817, "eRl": -9.939964, "eS": -9.939964, "eT": -9.939964, "eU": -9.939964, "eX": -9.939964, "eY": -9.939964, "e_": -9.939964, "ea": -9.246817, "ebP": -9.939964, "ec": -9.939964, "eke": -9.939964, "em": -9.246817, "eta": -9.939964, "eu": -9.246817, "ev": -9.939964, "ex": -9.939964, "ez": -9.939964, "f": -8.148205, "f.": -9.939964, "fO": -9.939964, "g": -7.231914, "g*": -9.939964, "gWW": -9.939964, "gd": -9.939964, "gv": -9.939964, "gwR": -9.939964, "gz": -9.246817, "h": -7.231914, "hM": -9.939964, "hp": -9.939964, "i": -7.231914, "i@": -9.939964, "iPOe": -9.939964, "ib": -9.939964, "ik": -9.939964, "j": -7.231914, "jS": -9.939964, "k": -6.848922, "kC_": -9.939964, "kJI": -9.939964, "kV": -9.939964, "kW": -9.939964, "kbJ": -9.939964, "kj": -9.939964, "l": -8.148205, "lH": -9.939964, "lp": -9.939964, "m": -6.895442, "m@": -9.939964, "n": -5.862427, "n@": -8.330526, "n@a": -9.939964, "nFT": -9.939964, "nG": -9.939964, "nH": -9.939964, "nb": -9.939964, "ndarray": -9.246817, "ng": -9.939964, "nn": -9.939964, "nr": -9.939964, "nu": -9.939964, "nw": -9.246817, "nz": -9.939964, "o": -6.895442, "o.p": -9.939964, "oQ": -9.939964, "p": -6.384616, "pP": -9.939964, "pry": -9.939964, "q": -6.944232, "qB": -9.939964, "qQ": -9.939964, "qU": -9.939964, "qm": -9.939964, "qn": -9.939964, "qoU": -9.939964, "r": -5.932631, "r@": -8.553670, "r@QQ": -9.939964, "r@Y": -9.939964, "rG": -9.939964, "rLLl": -9.939964, "rMa": -9.939964, "rV": -9.939964, "rh": -9.939964, "rq": -9.939964, "rs": -9.939964, "rv": -9.939964, "rx": -9.939964, "s": -7.106751, "s.": -8.841352, "sS": -9.939964, "sb": -9.939964, "sd": -9.939964, "string": -9.939964, "t": -6.008138, "t.": -9.246817, "t@": -7.860523, "t@F": -9.939964, "tJ": -9.939964, "tLu": -9.939964, "tM": -9.939964, "tN": -9.939964, "tRp": -9.246817, "tS": -9.939964, "tT": -9.939964, "t_": -9.939964, "t_E": -9.939964, "tbI": -9.939964, "tcnumpy": -9.939964, "tkm": -9.939964, "tn": -9.939964, "to": -9.939964, "tp": -7.860523, "ts": -9.246817, "u": -8.148205, "v": -7.167375, "vZ": -9.939964, "vn": -9.939964, "vr": -9.939964, "vz": -9.939964, "w": -7.375015, "wA": -9.939964, "wH": -9.939964, "wUn": -9.939964, "wuB": -9.939964, "x": -2.043784, "xF": -9.939964, "xN*V": -9.939964, "xa": -3.953512, "xaa": -6.443457, "xaaa": -9.246817, "xaaj": -9.939964, "xaakxf": -9.939964, "xab": -6.895442, "xaba": -9.939964, "xabur": -9.939964, "xac": -6.384616, "xacC": -9.939964, "xacF*": -9.939964, "xacI": -9.939964, "xacL": -9.939964, "xacM": -9.939964, "xacQ": -9.939964, "xacXK": -9.939964, "xacb": -9.939964, "xacg": -9.939964, "xacn": -9.939964, "xacy": -9.939964, "xad": -6.505977, "xad@": -9.939964, "xadD": -9.939964, "xadF": -9.939964, "xadG": -9.939964, "xadJ": -9.939964, "xadL": -9.939964, "xadM": -9.939964, "xadQ": -9.939964, "xad_": -9.939964, "xaddw": -9.939964, "xadg": -9.939964, "xadi": -9.939964, "xado": -9.246817, "xadp": -9.939964, "xads": -9.939964, "xae": -6.505977, "xaeC": -9.939964, "xaeS": -9.939964, "xaeX": -9.939964, "xaej": -9.939964, "xaen*H": -9.939964, "xaew": -9.939964, "xaf": -6.505977, "xafA": -9.246817, "xafJ": -9.939964, "xafVw": -9.939964, "xafg": -9.939964, "xafn": -9.939964, "xafs": -9.939964, "xafz": -9.939964, "xb": -3.839645, "xba": -6.302378, "xba.": -9.939964, "xbaF": -9.939964, "xbadZO": -9.939964, "xbaw": -9.939964, "xbb": -6.538767, "xbb.": -9.939964, "xbb/": -9.939964, "xbb/x": -9.939964, "xbbR": -9.246817, "xbbq": -9.939964, "xbbu": -9.939964, "xbbx": -9.939964, "xbc": -6.538767, "xbc.P": -9.939964, "xbcF": -9.939964, "xbcK": -9.939964, "xbcL": -9.939964, "xbcOn": -9.939964, "xbcT": -9.939964, "xbcX": -9.939964, "xbcu": -9.939964, "xbcw": -9.939964, "xbd": -6.474228, "xbd#": -9.939964, "xbdL": -9.939964, "xbdM": -9.939964, "xbdN": -9.939964, "xbdS": -9.939964, "xbdc": -9.939964, "xbdeh": -9.939964, "xbdl": -9.939964, "xbdq": -9.939964, "xbe": -6.356445, "xbe.": -9.246817, "xbeO": -9.939964, "xbeT": -9.939964, "xbeV": -9.939964, "xbeW*": -9.939964, "xbeWl": -9.939964, "xbeY": -9.939964, "xbeZ": -9.939964, "xbeh": -9.939964, "xbei": -9.939964, "xben": -9.939964, "xbew": -9.939964, "xbez": -9.939964, "xbf": -3.637345, "xbf#": -9.939964, "xbf#X": -9.939964, "xbf*": -9.939964, "xbf.": -9.246817, "xbf/": -8.841352, "xbf@": -9.246817, "xbfA": -9.246817, "xbfBI": -9.939964, "xbfC": -9.246817, "xbfD": -8.553670, "xbfFc": -9.939964, "xbfH": -9.246817, "xbfI": -8.553670, "xbfJ": -8.841352, "xbfJiD": -9.939964, "xbfJwV": -9.939964, "xbfK": -9.939964, "xbfKT": -9.939964, "xbfL": -9.246817, "xbfM": -9.246817, "xbfO": -9.246817, "xbfP": -8.841352, "xbfQ": -8.553670, "xbfQTt": -9.939964, "xbfR": -9.246817, "xbfS": -9.246817, "xbfSyM": -9.939964, "xbfT": -8.330526, "xbfU": -9.939964, "xbfUD": -9.939964, "xbfV": -8.841352, "xbfW": -8.841352, "xbfX": -9.939964, "xbfXL": -9.939964, "xbfY": -9.939964, "xbfYW": -9.939964, "xbfZ": -9.939964, "xbf_": -9.939964, "xbfa": -8.553670, "xbfaj": -9.939964, "xbfb": -8.553670, "xbfc": -8.553670, "xbfcm": -9.939964, "xbfcx": -9.939964, "xbfd": -9.246817, "xbfe": -9.939964, "xbfeL": -9.939964, "xbff": -8.553670, "xbfh": -8.553670, "xbfi": -8.330526, "xbfim": -9.939964, "xbfj": -9.939964, "xbfk": -8.841352, "xbfk.": -9.939964, "xbfl": -9.939964, "xbflw": -9.939964, "xbfm": -8.553670, "xbfo": -8.553670, "xbfol": -9.939964, "xbfp": -9.246817, "xbfq": -8.553670, "xbfr": -9.939964, "xbfrlTN": -9.939964, "xbfs": -8.553670, "xbfso": -9.939964, "xbfsu": -9.939964, "xbft": -8.841352, "xbftG": -9.939964, "xbfv": -8.553670, "xbfw": -8.841352, "xbfx": -9.246817, "xbfxYN": -9.939964, "xbfxj": -9.939964, "xbfy": -9.246817, "xbfyI": -9.939964, "xbfz": -9.939964, "xc": -3.524867, "xca": -6.443457, "xca#": -9.939964, "xcaD": -9.939964, "xcaQ": -9.939964, "xca_e": -9.939964, "xcac": -9.246817, "xcacd": -9.939964, "xcah": -9.939964, "xcam": -9.246817, "xcao": -9.939964, "xcb": -6.202295, "xcb@": -9.939964, "xcbB": -9.939964, "xcbC": -9.939964, "xcbG": -9.939964, "xcbNOG": -9.939964, "xcbU": -9.939964, "xcbh": -9.939964, "xcbm": -9.939964, "xcbp": -9.939964, "xcbv": -9.939964, "xcc": -6.413604, "xccF": -9.939964, "xccG": -9.939964, "xccL": -9.939964, "xccRAB": -9.939964, "xcce": -9.246817, "xccff": -9.939964, "xccm": -9.939964, "xccr": -9.939964, "xcd": -6.443457, "xcdCj": -9.939964, "xcdJ": -9.939964, "xcdK": -9.939964, "xcd_": -9.939964, "xcda": -9.939964, "xcdeVS": -9.939964, "xcdn": -9.939964, "xcdo": -9.939964, "xcdol": -9.939964, "xcdp": -9.939964, "xcds": -9.939964, "xce": -6.474228, "xceC": -9.939964, "xceHq": -9.939964, "xceO": -9.939964, "xceOVK": -9.939964, "xceW": -9.939964, "xcei": -9.939964, "xceo": -9.939964, "xcf": -6.251085, "xcf#": -9.939964, "xcf@I": -9.939964, "xcfA": -9.939964, "xcfV": -9.939964, "xcfc": -9.939964, "xcff": -9.939964, "xcfku": -9.939964, "xcfy": -9.939964, "xd": -3.755815, "xda": -6.538767, "xdaB": -9.939964, "xdaBz": -9.939964, "xdaD": -9.939964, "xdaP": -9.939964, "xdaX": -9.939964, "xda_": -9.939964, "xdab": -9.939964, "xdaj": -9.939964, "xdam": -9.939964, "xdax": -9.939964, "xdb": -6.133302, "xdb.": -9.939964, "xdbDN": -9.939964, "xdbH": -9.939964, "xdbHB": -9.939964, "xdbN": -9.939964, "xdbPz": -9.939964, "xdbV": -9.939964, "xdbaz": -9.939964, "xdbe": -9.939964, "xdbq": -9.939964, "xdbs": -9.939964, "xdbt": -9.939964, "xdc": -5.969672, "xdc.": -9.939964, "xdc/o": -9.939964, "xdcBF": -9.939964, "xdcF": -9.939964, "xdcI": -9.246817, "xdcM": -9.246817, "xdcR": -9.939964, "xdcXSk": -9.939964, "xdcd": -9.939964, "xdcnx": -9.939964, "xdcy": -9.939964, "xdd": -6.008138, "xdd*": -9.939964, "xdd/": -9.939964, "xddE": -9.939964, "xddLg": -9.939964, "xddR": -8.841352, "xddS": -9.939964, "xddY": -9.939964, "xddZ": -9.939964, "xddZQ": -9.939964, "xdd_": -9.939964, "xddq": -9.939964, "xdds": -9.939964, "xddt": -9.939964, "xddv": -9.939964, "xde": -6.413604, "xde#": -9.939964, "xde.": -9.939964, "xdeE": -9.939964, "xdeX": -9.939964, "xdeZ": -9.939964, "xdei": -9.939964, "xdeo": -9.939964, "xdf": -6.111323, "xdf#": -9.939964, "xdf.": -9.939964, "xdfD": -9.246817, "xdfK": -9.246817, "xdfN": -9.939964, "xdfR": -9.939964, "xdfs": -9.939964, "xdfxX": -9.939964, "xe": -3.511859, "xea": -5.950980, "xeaQ": -9.939964, "xeaT": -9.939964, "xeaW": -9.939964, "xeaY": -9.939964, "xeaa@": -9.939964, "xeat": -9.939964, "xeav": -9.939964, "xeb": -5.914612, "xebC": -9.939964, "xebO": -9.939964, "xebS": -9.939964, "xebW": -9.939964, "xebf": -9.939964, "xebl": -9.939964, "xebn": -9.939964, "xec": -6.048144, "xecG": -9.939964, "xecK": -9.939964, "xece": -9.939964, "xed": -5.796829, "xed*": -9.939964, "xed**": -9.939964, "xedCR": -9.939964, "xedS": -9.939964, "xeda#": -9.939964, "xedoY": -9.939964, "xee": -5.969672, "xeeB": -9.939964, "xeeRY": -9.939964, "xeeT": -9.939964, "xee_": -9.939964, "xeeb": -9.939964, "xeec": -9.939964, "xeep": -9.939964, "xeeu": -9.939964, "xeew": -9.939964, "xef": -6.008138, "xefb": -9.939964, "xefl": -9.939964, "xefqN": -9.939964, "xefs": -9.939964, "xefu": -9.939964, "xf": -3.380349, "xfa": -5.914612, "xfa*": -9.939964, "xfaDh": -9.939964, "xfaE": -9.246817, "xfaG": -9.939964, "xfaT": -9.939964, "xfaX": -9.939964, "xfaY": -9.939964, "xfaa": -9.939964, "xfah": -9.939964, "xfajZ": -9.939964, "xfap": -9.939964, "xfas": -9.246817, "xfax": -9.939964, "xfb": -6.027941, "xfbB": -9.939964, "xfbH/": -9.939964, "xfbM": -9.246817, "xfbU": -9.939964, "xfbZ": -9.939964, "xfbd": -9.939964, "xfbe": -9.939964, "xfbh": -9.939964, "xfbir": -9.939964, "xfbk": -9.939964, "xfbq": -9.939964, "xfc": -6.202295, "xfcQ": -9.939964, "xfcT": -9.939964, "xfcq": -9.939964, "xfcw": -9.939964, "xfd": -5.862427, "xfdO": -9.939964, "xfdR": -9.939964, "xfdU": -9.939964, "xfdjo": -9.939964, "xfdp": -9.939964, "xfdu": -9.939964, "xfdw": -9.939964, "xfdyRC": -9.939964, "xfe": -6.226392, "xfeU": -9.939964, "xfe_": -9.939964, "xfec": -9.939964, "xfeca": -9.939964, "xfedL": -9.939964, "xfee": -9.939964, "xff": -6.068763, "xffN": -9.939964, "xffP": -9.939964, "xffY": -9.939964, "xffc": -9.939964, "xffu": -9.939964, "xh": -9.939964, "xn": -9.939964, "xvCy": -9.939964, "xw": -9.939964, "y": -6.995525, "yA": -9.939964, "yQ": -9.939964, "yS": -9.939964, "yW": -9.939964, "yX": -9.939964, "yf": -9.939964, "z": -7.300907, "z#": -9.939964, "z*N": -9.939964, "zG": -9.939964, "zX": -9.939964, "z_": -9.939964, "zi": -9.939964, "zv": -9.939964, "{": -6.276402, "|": -6.302378, "}": -6.302378, "~": -6.384616, }, "PicoLisp": map[string]float64{ "##": -6.393591, "'": -6.393591, "(": -1.217441, ")": -1.178655, "+": -5.700444, "-": -4.091006, ":": -4.447681, "=": -5.294978, ">": -4.784153, "?": -6.393591, "@": -5.294978, "Cnt": -6.393591, "Col": -5.294978, "DX": -5.294978, "DY": -5.700444, "Dir": -5.700444, "East": -6.393591, "FX": -5.700444, "FY": -5.700444, "Grid": -5.007296, "L": -4.447681, "Lst": -3.908684, "N": -4.784153, "NIL": -6.393591, "South": -5.700444, "Sp": -5.700444, "T": -5.700444, "This": -4.784153, "West": -5.700444, "X": -4.601831, "Y": -5.007296, "and": -4.601831, "box": -6.393591, "by": -6.393591, "caar": -6.393591, "cadar": -6.393591, "car": -3.908684, "cdar": -5.294978, "cddar": -6.393591, "cdr": -4.447681, "char": -5.700444, "con": -6.393591, "cond": -6.393591, "cons": -4.091006, "de": -4.091006, "dec": -5.700444, "default": -6.393591, "delete": -6.393591, "disp": -6.393591, "east": -5.700444, "for": -4.601831, "grid": -6.393591, "if": -4.601831, "ifn": -6.393591, "inc": -5.700444, "intern": -6.393591, "last": -6.393591, "let": -5.007296, "link": -5.700444, "list": -6.393591, "loop": -6.393591, "make": -5.700444, "mapcan": -6.393591, "mapcar": -6.393591, "nT": -5.700444, "north": -6.393591, "not": -6.393591, "or": -6.393591, "pack": -6.393591, "permute": -5.700444, "pop": -5.007296, "prin": -5.007296, "prinl": -5.700444, "prog": -6.393591, "recur": -6.393591, "recurse": -6.393591, "set": -5.294978, "setq": -4.601831, "shuffle": -6.393591, "south": -6.393591, "space": -5.700444, "subsets": -5.294978, "unless": -6.393591, "west": -6.393591, "when": -5.700444, "|": -6.393591, }, "PigLatin": map[string]float64{ "$": -3.465736, "(": -2.772589, ")": -2.772589, ",": -3.465736, ":": -2.772589, ";": -2.079442, "=": -2.772589, "A": -2.772589, "AS": -3.465736, "B": -2.772589, "DUMP": -3.465736, "FOREACH": -3.465736, "LOAD": -3.465736, "PigStorage": -3.465736, "REGISTER": -3.465736, "SOME_JAR": -3.465736, "USING": -3.465736, "age": -3.465736, "chararray": -3.465736, "generate": -3.465736, "int": -3.465736, "name": -2.772589, }, "Pike": map[string]float64{ "!": -3.141755, "#": -7.641564, "#X": -7.641564, "#define": -7.641564, "#pike": -6.948417, "&&": -6.948417, "(": -2.252493, ")": -2.252493, "+": -4.697125, ",": -4.207577, "-": -3.729541, "..": -7.641564, "...": -6.948417, "..length": -7.641564, "..ptr": -6.948417, "//": -3.247115, "/usr/bin/env": -7.641564, ":": -6.542952, ";": -2.630929, "<": -6.542952, "=": -3.187217, ">": -3.903895, "@": -4.058046, "@decl": -7.641564, "@endignore": -7.641564, "@error": -7.641564, "@extra": -7.641564, "@ignore": -7.641564, "@seealso": -4.145057, "A": -6.948417, "Always": -6.542952, "BadArgument": -7.641564, "Compilation": -7.641564, "Cpp": -7.641564, "Decode": -7.641564, "Error": -6.948417, "Error.Generic": -6.542952, "FakeFile": -6.542952, "Generic": -7.641564, "If": -7.641564, "Index": -7.641564, "MasterLoad": -7.641564, "Math": -7.641564, "ModuleLoad": -7.641564, "NOPE": -4.645832, "Permission": -7.641564, "Resource": -7.641564, "Returns": -6.948417, "SHEBANG#!pike": -7.641564, "Sizeof": -7.641564, "Stdio.FILE": -6.255270, "Stdio.File": -4.175829, "Stdio.Stat": -6.542952, "String.SplitIterator": -6.542952, "This": -7.641564, "UNDEFINED": -7.641564, "X": -6.948417, "[": -3.834902, "]": -3.834902, "__REAL_VERSION__": -6.948417, "__builtin.BadArgumentError": -7.641564, "__builtin.CompilationError": -7.641564, "__builtin.CppError": -7.641564, "__builtin.DecodeError": -7.641564, "__builtin.GenericError": -7.641564, "__builtin.IndexError": -7.641564, "__builtin.MasterLoadError": -7.641564, "__builtin.MathError": -7.641564, "__builtin.ModuleLoadError": -7.641564, "__builtin.PermissionError": -7.641564, "__builtin.ResourceError": -7.641564, "_data": -6.542952, "_id": -6.948417, "_ptr": -6.948417, "_sizeof": -7.641564, "_sprintf": -7.641564, "a": -5.849805, "add": -6.948417, "addition": -7.641564, "already": -7.641564, "an": -6.948417, "and": -7.641564, "any": -7.641564, "argc": -7.641564, "args": -7.641564, "argument": -6.948417, "argv": -7.641564, "array": -6.948417, "arrayp": -6.948417, "assign": -7.641564, "async_connect": -7.641564, "atime": -7.641564, "be": -6.542952, "c": -6.255270, "can": -6.948417, "case": -6.948417, "cast": -7.641564, "casted": -7.641564, "catch": -7.641564, "cb": -5.338979, "ccb": -6.948417, "close": -6.948417, "close_cb": -6.032127, "connect": -7.641564, "connect_unix": -7.641564, "constant": -5.076615, "contents.": -7.641564, "cr": -6.948417, "create": -6.542952, "creation": -7.641564, "ctime": -7.641564, "cw": -6.948417, "data": -4.115204, "direction": -6.032127, "distinguish": -7.641564, "does": -7.641564, "dup": -6.542952, "else": -6.032127, "empty": -7.641564, "errno": -6.948417, "error": -5.002507, "extra": -6.948417, "features": -7.641564, "float": -7.641564, "for": -7.641564, "from": -7.641564, "function": -4.597042, "getchar": -6.948417, "gets": -6.948417, "has_value": -6.255270, "id": -6.542952, "if": -4.086216, "in": -7.641564, "int": -4.145057, "is": -6.948417, "is_fake_file": -7.641564, "is_generic_error": -7.641564, "is_local": -7.641564, "it": -6.948417, "its": -7.641564, "lambda": -7.641564, "len": -6.255270, "length": -6.948417, "line_iterator": -6.948417, "lock": -7.641564, "lower_case": -6.948417, "main": -7.641564, "make_type_str": -6.542952, "mixed": -5.562123, "mkerror": -7.641564, "mode": -7.641564, "mtime": -6.255270, "mult": -6.948417, "nbytes": -6.948417, "not_all": -7.641564, "nothing.": -7.641564, "object": -6.032127, "object.": -6.948417, "objectp": -7.641564, "of": -6.542952, "on": -7.641564, "open": -7.641564, "open_socket": -7.641564, "or": -7.641564, "peek": -6.948417, "pike": -7.641564, "pipe": -7.641564, "pointer": -7.641564, "pos": -5.562123, "pos*mult": -7.641564, "pretends": -7.641564, "protected": -5.156658, "proxy": -7.641564, "ptr": -4.345728, "ptr..": -7.641564, "query_address": -6.948417, "query_close_callback": -6.948417, "query_fd": -7.641564, "query_id": -6.948417, "query_read_callback": -6.948417, "query_read_oob_callback": -6.948417, "query_write_callback": -6.948417, "query_write_oob_callback": -6.948417, "r": -5.338979, "rcb": -6.948417, "read": -6.542952, "read_cb": -6.032127, "read_function": -6.948417, "read_oob": -7.641564, "read_oob_cb": -6.032127, "real": -7.641564, "receives.": -7.641564, "ret": -5.695654, "return": -3.903895, "returns": -6.255270, "rocb": -6.948417, "s": -6.032127, "seek": -6.948417, "set_blocking": -6.542952, "set_blocking_keep_callbacks": -6.542952, "set_close_callback": -6.948417, "set_close_on_exec": -7.641564, "set_id": -6.948417, "set_keepalive": -7.641564, "set_nonblocking": -7.641564, "set_nonblocking_keep_callbacks": -7.641564, "set_read_callback": -6.948417, "set_read_oob_callback": -6.948417, "set_write_callback": -6.948417, "set_write_oob_callback": -6.948417, "size": -6.542952, "sizeof": -4.597042, "some": -7.641564, "sprintf": -6.542952, "sscanf": -7.641564, "st": -5.849805, "start": -7.641564, "start..ptr": -7.641564, "stat": -7.641564, "str": -5.156658, "str*": -7.641564, "string": -4.645832, "string.": -6.948417, "stringp": -7.641564, "strlen": -6.948417, "switch": -7.641564, "sync": -6.948417, "t": -6.948417, "tcgetattr": -7.641564, "tcsetattr": -7.641564, "tell": -6.948417, "that": -7.641564, "the": -6.255270, "this": -7.641564, "this_program": -6.542952, "time": -6.542952, "timeout": -7.641564, "to": -5.695654, "trim": -6.948417, "truncate": -6.948417, "trylock": -7.641564, "type": -5.243669, "unread": -6.948417, "used": -7.641564, "void": -4.422689, "w": -5.849805, "wcb": -6.948417, "wocb": -6.948417, "wrapper": -7.641564, "write": -6.948417, "write_cb": -6.032127, "write_oob": -7.641564, "write_oob_cb": -6.032127, "zero_type": -7.641564, "{": -3.690321, "|": -5.002507, "||": -6.948417, "}": -3.690321, }, "Pod": map[string]float64{ "\"": -7.097549, "#examples": -7.097549, "$": -5.711254, "'": -6.404402, "(": -5.305789, ")": -5.305789, ",": -3.878673, "-": -4.101817, ".": -4.900324, ".psgi": -5.151639, "/": -5.998937, ":": -2.564949, ";": -4.794964, "<": -5.305789, "<.psgi>": -7.097549, "</UL>": -7.097549, "</a>": -5.151639, "</b>": -7.097549, "</code>": -5.151639, "</style>": -7.097549, "<<": -5.711254, "<A>": -5.305789, "<AsyncZ.pod>": -7.097549, "<AsyncZ>": -5.711254, "<B>": -7.097549, "<Catalyst::Upgrading>": -6.404402, "<Code>": -7.097549, "<DESCRIPTION>": -7.097549, "<LI>": -5.711254, "<Net::AsyncZ>": -7.097549, "<Options>": -6.404402, "<PSGI::FAQ>": -7.097549, "<PSGI>": -5.998937, "<Plack::Middleware::AccessLog>": -7.097549, "<Plack::Middleware::ErrorDocument>": -7.097549, "<Plack::Middleware::LighttpdScriptNameFix>": -7.097549, "<Plack::Middleware::ReverseProxy>": -7.097549, "<Plack::Middleware>": -7.097549, "<Plack>": -5.998937, "<TestApp>": -7.097549, "<UL>": -7.097549, "<a>": -7.097549, "<br>": -5.998937, "<code>": -5.305789, "<http://search.cpan.org/dist/Plack/lib/Plack.pm#.psgi_files>": -7.097549, "<myapp.psgi>": -7.097549, "<plackup>": -7.097549, "<style>": -7.097549, "<using_frontend_proxy>": -7.097549, "<will>": -7.097549, "=": -3.290886, ">": -4.053026, "?": -6.404402, "@_": -6.404402, "ALSO": -7.097549, "AUTHORS": -7.097549, "Additional": -7.097549, "An": -7.097549, "AsyncZ": -4.458492, "AsyncZ.html": -6.404402, "AsyncZ.pod": -7.097549, "B": -6.404402, "But": -6.404402, "C": -4.101817, "CGI": -7.097549, "COPYRIGHT": -7.097549, "Catalyst": -4.794964, "Catalyst.pm": -7.097549, "Connection": -7.097549, "Contributors": -7.097549, "DESCRIPTION": -7.097549, "Details": -7.097549, "Documentation": -7.097549, "Engine": -7.097549, "ErrMsg": -7.097549, "Error": -7.097549, "Errors": -7.097549, "Event": -7.097549, "Examples.html": -6.404402, "Exp": -7.097549, "FastCGI": -6.404402, "HOW": -7.097549, "Here": -7.097549, "How": -7.097549, "I": -4.900324, "IIS": -7.097549, "INDEX": -7.097549, "Id": -7.097549, "If": -7.097549, "Intro": -7.097549, "It": -6.404402, "L": -4.264336, "Middleware": -7.097549, "Module": -7.097549, "Modules": -7.097549, "My": -7.097549, "MyApp": -7.097549, "NAME": -7.097549, "Net": -4.458492, "Note": -7.097549, "Options": -6.404402, "Options.html": -7.097549, "PSGI": -5.711254, "Perl": -5.998937, "Plack": -7.097549, "Report": -7.097549, "Report.html": -7.097549, "SEE": -7.097549, "SYNOPSIS": -7.097549, "ScriptNameFix": -7.097549, "TO.": -7.097549, "TestApp": -5.488111, "The": -5.018107, "There": -6.404402, "This": -5.488111, "Thus": -7.097549, "User": -7.097549, "What": -7.097549, "Why": -7.097549, "Working": -7.097549, "Writing": -7.097549, "XXXX": -7.097549, "You": -7.097549, "Z": -4.264336, "ZLoop": -7.097549, "ZSend": -7.097549, "_params": -7.097549, "a": -4.794964, "about": -7.097549, "access": -4.900324, "accessed": -6.404402, "account": -6.404402, "add": -7.097549, "additional": -7.097549, "adds": -7.097549, "all": -7.097549, "allows": -6.404402, "also": -6.404402, "alternate": -7.097549, "an": -5.151639, "and": -4.101817, "and/or": -7.097549, "annotates": -7.097549, "any": -7.097549, "app": -6.404402, "application": -5.488111, "application.": -7.097549, "applications": -6.404402, "applications.": -7.097549, "applied": -7.097549, "apply": -7.097549, "apply_default_middlewares": -6.404402, "are": -5.305789, "as": -5.711254, "asynchronous": -5.998937, "at": -6.404402, "auto": -7.097549, "automatically": -6.404402, "back": -6.404402, "based": -7.097549, "basic": -6.404402, "be": -5.305789, "been": -7.097549, "begin": -6.404402, "behaviour": -6.404402, "below.": -7.097549, "between": -7.097549, "bold": -7.097549, "by": -5.305789, "call": -7.097549, "called": -7.097549, "can": -5.711254, "changed": -7.097549, "child": -5.998937, "classes": -6.404402, "code": -6.404402, "code.": -7.097549, "come": -7.097549, "command": -7.097549, "complete": -6.404402, "components": -6.404402, "contain": -7.097549, "contained": -7.097549, "contains": -7.097549, "contents.pod": -7.097549, "convenient": -6.404402, "could": -7.097549, "create": -7.097549, "creating": -7.097549, "css": -7.097549, "cut": -5.998937, "debugging": -7.097549, "default": -5.998937, "defines": -7.097549, "describes": -7.097549, "detailed": -6.404402, "details": -6.404402, "did": -7.097549, "direct": -6.404402, "distribution": -7.097549, "do": -7.097549, "document": -7.097549, "documentation": -5.711254, "documentation.": -6.404402, "documented": -7.097549, "done": -6.404402, "e.g.": -7.097549, "either": -6.404402, "end": -5.711254, "ended": -7.097549, "engine": -7.097549, "entire": -7.097549, "environments": -7.097549, "error": -7.097549, "etc.": -6.404402, "examples": -6.404402, "extensions": -7.097549, "family": -7.097549, "fashion.": -7.097549, "features": -7.097549, "fetching": -7.097549, "file": -4.900324, "file.": -7.097549, "files": -7.097549, "find": -7.097549, "fixes": -7.097549, "font": -6.404402, "for": -4.458492, "forked": -7.097549, "formatting": -6.404402, "found": -5.998937, "frameworks.": -7.097549, "free": -7.097549, "front": -7.097549, "full": -6.404402, "functionality": -7.097549, "generated": -7.097549, "generates": -6.404402, "give": -6.404402, "gives": -7.097549, "goes": -7.097549, "had": -7.097549, "handle": -6.404402, "handling": -6.404402, "has": -7.097549, "have": -5.998937, "head": -4.532599, "here.": -7.097549, "hope": -7.097549, "href": -7.097549, "html": -5.305789, "idea": -7.097549, "if": -5.711254, "implement": -6.404402, "implementation": -7.097549, "implementing": -7.097549, "in": -4.389499, "indirect": -6.404402, "indirectly": -6.404402, "indirectly.": -6.404402, "information": -7.097549, "initial": -7.097549, "interface": -7.097549, "internal": -6.404402, "is": -4.458492, "it": -5.488111, "item": -4.794964, "its": -7.097549, "itself.": -7.097549, "large": -7.097549, "layer": -7.097549, "library": -7.097549, "like": -7.097549, "limited": -6.404402, "line": -6.404402, "ll": -7.097549, "looks": -7.097549, "loop": -7.097549, "main": -7.097549, "manually": -6.404402, "means": -6.404402, "mechanics": -7.097549, "message": -7.097549, "method": -7.097549, "methods": -7.097549, "methods.": -7.097549, "middleware": -7.097549, "middlewares": -7.097549, "mod_perl": -6.404402, "modify": -7.097549, "module": -5.488111, "modules": -5.488111, "more": -5.711254, "multiple": -7.097549, "my": -5.711254, "need": -6.404402, "no": -5.998937, "none": -7.097549, "not": -7.097549, "number": -7.097549, "numbers": -7.097549, "objects": -7.097549, "of": -4.153110, "on": -6.404402, "one": -7.097549, "only": -6.404402, "or": -5.305789, "other": -6.404402, "over": -5.998937, "override": -7.097549, "overview": -7.097549, "own": -5.711254, "part": -5.998937, "particulars": -7.097549, "pod": -5.711254, "point": -7.097549, "portable": -7.097549, "possible": -7.097549, "processes": -5.998937, "processes.": -7.097549, "processing": -7.097549, "project": -7.097549, "provide": -7.097549, "provides": -7.097549, "providing": -6.404402, "psgi": -6.404402, "psgi_app": -5.998937, "queries": -7.097549, "reason": -6.404402, "records": -6.404402, "redistribute": -7.097549, "reponsible": -7.097549, "returned": -7.097549, "root": -7.097549, "run": -7.097549, "running": -7.097549, "s": -6.404402, "same": -7.097549, "sample": -7.097549, "sans": -7.097549, "scripts": -7.097549, "section": -6.404402, "see": -6.404402, "serif": -7.097549, "server": -7.097549, "servers": -5.998937, "session.": -7.097549, "set": -7.097549, "setting": -7.097549, "simplest": -7.097549, "so": -6.404402, "software.": -7.097549, "some": -7.097549, "something": -5.998937, "specific": -7.097549, "specification": -5.998937, "standalone": -7.097549, "start": -7.097549, "starting": -7.097549, "strict": -6.404402, "such": -7.097549, "supplied": -7.097549, "support": -7.097549, "supports": -7.097549, "synchronous": -7.097549, "terms": -7.097549, "text": -7.097549, "than": -6.404402, "that": -4.458492, "the": -3.765344, "them": -7.097549, "then": -7.097549, "there": -6.404402, "these": -5.998937, "things": -7.097549, "this": -5.151639, "through": -6.404402, "to": -4.324960, "together": -7.097549, "tower": -7.097549, "trouble": -7.097549, "under": -7.097549, "uniform": -7.097549, "up": -7.097549, "use": -5.018107, "used": -7.097549, "users": -7.097549, "using": -5.711254, "v": -7.097549, "various": -6.404402, "want": -6.404402, "wanted": -7.097549, "warnings": -6.404402, "was": -7.097549, "web": -5.998937, "weight": -7.097549, "what": -7.097549, "when": -7.097549, "which": -6.404402, "will": -5.998937, "with": -5.998937, "work": -6.404402, "workings": -7.097549, "would": -5.998937, "wrap": -7.097549, "wrapped": -7.097549, "write": -6.404402, "writing": -7.097549, "you": -4.532599, "your": -5.151639, "yourself.": -6.404402, "{": -7.097549, "}": -7.097549, }, "PogoScript": map[string]float64{ "!": -4.378897, "(": -2.127605, ")": -2.127605, "*": -5.072044, "*href": -5.765191, "*src": -5.765191, "+": -5.072044, ",": -3.367296, "-": -5.765191, ".body": -5.072044, ".concat": -5.765191, ".resolve": -5.765191, "/": -5.072044, "/gi": -5.072044, ":": -5.072044, "<#(rep.tag)>": -5.765191, "</#(rep.tag)>": -5.765191, "<\\/link\\>": -5.765191, "<\\/script\\>": -5.765191, "<link\\s[^>": -5.765191, "<script\\s[^>": -5.765191, "=": -2.397895, ">": -3.973432, "@": -3.973432, "[": -4.155753, "\\": -3.280284, "]": -3.819281, "^": -5.072044, "a": -5.765191, "a.index": -5.765191, "as": -4.666579, "async": -5.765191, "async.map": -5.765191, "b": -5.765191, "b.index": -5.765191, "callback": -5.072044, "each": -5.072044, "elements": -4.155753, "elements.push": -5.765191, "ength": -5.765191, "err": -5.072044, "exports.squash": -5.765191, "for": -5.072044, "get": -5.072044, "href": -5.765191, "html": -3.057141, "html.substr": -5.765191, "httpism": -5.765191, "httpism.get": -5.072044, "i": -4.666579, "in": -3.367296, "index": -5.765191, "length": -5.765191, "link": -5.072044, "links": -5.072044, "m": -5.765191, "m.": -5.072044, "m.index": -5.765191, "matching": -4.666579, "parts": -4.666579, "r": -5.765191, "r.href": -5.765191, "r.url": -5.765191, "r/": -5.072044, "reg": -4.155753, "reg.exec": -5.765191, "rep": -5.765191, "rep.index": -5.765191, "rep.length": -5.765191, "replace": -5.072044, "replacement": -5.072044, "replacement.body": -5.765191, "replacement.url": -5.765191, "replacements": -3.973432, "replacements.sort": -5.765191, "requested": -5.072044, "require": -4.666579, "resolve": -5.072044, "s*": -5.072044, "script": -5.072044, "scripts": -5.072044, "sort": -5.072044, "squash": -5.072044, "tag": -4.666579, "url": -4.155753, "while": -5.765191, "{": -4.666579, "|": -5.072044, "}": -4.666579, }, "Pony": map[string]float64{ "!": -7.198184, "'": -7.891331, "(": -2.285529, ")": -2.292909, "*": -4.895598, "+": -4.177759, ",": -3.369542, "-": -5.058117, ".add": -5.694106, ".f": -7.891331, ".push": -7.891331, ".receive": -7.891331, ".string": -6.505036, ".u": -6.281893, ".undefined": -6.505036, "/": -6.281893, ":": -3.039300, ";": -7.198184, "<": -5.945421, "<<": -6.505036, "<output>": -7.198184, "=": -2.402393, ">": -3.547525, "?": -7.198184, "Argument": -5.811889, "Array": -4.490133, "Bool": -7.891331, "Circle": -7.198184, "Config": -6.792718, "Counter": -7.198184, "Env": -5.000959, "F": -4.846808, "File": -6.505036, "FilePath": -7.891331, "I": -5.252273, "List": -7.198184, "Main": -5.588746, "N": -7.198184, "None": -6.505036, "Options": -7.198184, "ParseError": -7.198184, "PolyRand": -7.198184, "PolyRand.seed": -7.891331, "Range": -5.326381, "Ring": -6.099571, "Ring.neighbor": -7.891331, "String": -7.891331, "StringArgument": -7.891331, "Time.nanos": -7.198184, "U": -3.436983, "Updater": -5.811889, "Worker": -6.792718, "Worker.mandelbrot": -7.198184, "[": -4.253745, "]": -4.253745, "_actors": -6.505036, "_actors.size": -7.891331, "_actors.values": -7.198184, "_chunk": -6.505036, "_config": -7.198184, "_config.iterate": -7.198184, "_config.logactors": -7.198184, "_config.logchunk": -7.891331, "_config.logtable": -7.891331, "_confirm": -5.945421, "_count": -5.694106, "_env": -5.252273, "_env.args": -6.505036, "_env.out.print": -6.792718, "_index": -6.792718, "_loglocal": -6.505036, "_main": -7.198184, "_main.confirm": -7.891331, "_main.done": -7.891331, "_mask": -6.505036, "_next": -6.281893, "_others": -6.792718, "_output": -6.792718, "_output.create": -7.891331, "_output.pop": -7.891331, "_output.push": -7.891331, "_output.size": -7.198184, "_pass": -5.811889, "_period": -7.891331, "_poly": -7.198184, "_radius": -6.792718, "_radius.pow": -7.891331, "_rand": -6.505036, "_repetitions": -5.694106, "_reuse": -7.891331, "_reuse.pop": -7.891331, "_reuse.push": -7.198184, "_size": -5.811889, "_start": -6.505036, "_table": -5.945421, "_updaters": -6.792718, "_updates": -7.198184, "_updates.f": -7.891331, "a": -6.792718, "a*b": -7.891331, "a.done": -7.891331, "a.start": -7.891331, "actor": -5.493435, "actor_count": -6.099571, "actors": -6.281893, "and": -5.945421, "apply": -6.281893, "arg": -5.588746, "arg.f": -7.891331, "arg.u": -5.945421, "arguments": -6.505036, "as": -7.891331, "b": -7.891331, "be": -5.493435, "bigint": -6.505036, "bitmap": -6.281893, "c": -7.891331, "c.get_area": -7.891331, "c.get_circumference": -7.891331, "c.get_radius": -7.891331, "chk": -7.198184, "chunk": -7.198184, "chunk_iterate": -6.792718, "chunk_size": -6.792718, "chunks": -5.945421, "class": -7.198184, "col": -6.099571, "confirm": -7.891331, "consume": -5.945421, "correct": -7.891331, "count": -7.198184, "counter": -7.891331, "counter.get_and_reset": -7.891331, "counter.increment": -7.891331, "create": -5.493435, "create_outfile": -7.198184, "d": -5.811889, "data": -6.099571, "data.clear": -7.891331, "data.size": -7.198184, "datum": -5.945421, "display": -7.891331, "do": -4.755837, "done": -7.198184, "draw": -7.891331, "e": -7.891331, "elapsed": -6.792718, "else": -5.326381, "end": -3.671823, "env": -4.672455, "env.args": -7.891331, "env.out": -7.198184, "env.out.print": -6.281893, "env.root": -7.891331, "err": -7.198184, "err.report": -7.198184, "error": -7.891331, "f": -7.891331, "f.print": -7.891331, "f.set_length": -7.891331, "f.size": -7.891331, "factorize": -7.198184, "factors": -7.198184, "factors.push": -6.792718, "false": -7.198184, "for": -5.058117, "from": -7.198184, "fun": -4.946892, "get_and_reset": -7.891331, "get_area": -7.891331, "get_circumference": -7.891331, "get_radius": -7.891331, "group_i": -7.198184, "group_i.update": -7.198184, "group_r": -7.198184, "group_r.update": -7.198184, "gups": -7.891331, "gups.string": -7.891331, "header": -6.505036, "i": -4.202451, "i.push": -7.891331, "if": -5.000959, "imaginary": -6.099571, "in": -5.058117, "increment": -7.891331, "index": -6.792718, "iso": -6.281893, "iterate": -5.694106, "iterate.string": -7.891331, "iteration": -6.792718, "iterations": -6.099571, "j": -5.252273, "j.f": -7.198184, "k": -5.694106, "length": -6.792718, "let": -4.394823, "limit": -6.099571, "logactors": -7.198184, "logactors.string": -7.891331, "logchunk": -7.198184, "logchunk.string": -7.891331, "loglocal": -6.281893, "logtable": -7.198184, "logtable.string": -7.891331, "m": -6.792718, "main": -6.505036, "main.display": -7.891331, "main.draw": -7.891331, "mandelbrot": -7.891331, "mask": -6.505036, "match": -6.505036, "n": -5.493435, "n.clz": -7.891331, "neighbor": -7.891331, "new": -5.326381, "next": -6.099571, "not": -7.891331, "number": -7.198184, "of": -7.198184, "offset": -6.505036, "option": -6.505036, "options": -6.099571, "or": -7.891331, "others": -7.198184, "out": -7.891331, "out.dispose": -7.891331, "out.seek_start": -7.891331, "out.write": -7.891331, "outfile": -6.505036, "pass": -6.792718, "pi": -7.198184, "pixels": -7.198184, "prefetch_i": -6.792718, "prev": -7.198184, "prev.i": -7.891331, "primitive": -7.891331, "r": -5.252273, "r.push": -7.891331, "radius": -7.891331, "real": -5.945421, "receive": -7.891331, "recip_width": -6.792718, "recover": -5.811889, "ref": -5.326381, "repeat": -6.792718, "repetitions": -7.198184, "rest": -6.505036, "result": -6.505036, "result.size": -7.891331, "result.string": -7.891331, "return": -7.198184, "rings": -7.891331, "row": -6.281893, "run": -6.792718, "seed": -6.792718, "size": -5.811889, "spawn_actors": -7.198184, "spawn_ring": -7.198184, "start": -7.891331, "start_benchmark": -7.198184, "str": -7.198184, "tag": -7.198184, "temp": -5.588746, "then": -5.058117, "this": -5.811889, "times": -7.891331, "to": -6.792718, "true": -7.891331, "try": -5.326381, "until": -7.198184, "updater": -6.792718, "updaters": -6.099571, "updaters.push": -7.891331, "usage": -6.505036, "use": -5.694106, "val": -5.694106, "var": -3.509304, "view": -7.198184, "view.push": -7.891331, "while": -6.099571, "width": -5.252273, "width.f": -7.891331, "width.string": -7.198184, "x": -5.811889, "xor": -6.505036, "y": -5.811889, "|": -5.183281, }, "PostScript": map[string]float64{ "!": -4.700480, "%": -1.655958, "-": -3.314186, "/PageSize": -4.700480, "/pageset": -4.700480, "/sierpinski": -4.700480, ":": -3.091042, "<<": -4.700480, ">": -4.007333, "Aaron": -4.700480, "Adobe": -4.700480, "Ascend": -4.700480, "BeginProlog": -4.700480, "BeginSetup": -4.700480, "Creator": -4.700480, "EOF": -4.700480, "EndProlog": -4.700480, "EndSetup": -4.700480, "PS": -4.700480, "Page": -4.700480, "PageOrder": -4.700480, "Pages": -4.700480, "Puchert": -4.700480, "Sierpinski": -4.700480, "Test": -4.700480, "The": -4.700480, "Title": -4.700480, "[": -2.908721, "]": -2.908721, "closepath": -4.700480, "concat": -3.091042, "def": -4.007333, "dup": -3.314186, "fill": -4.700480, "gt": -4.700480, "ifelse": -4.700480, "lineto": -4.007333, "moveto": -4.700480, "newpath": -4.700480, "pageset": -4.700480, "pop": -4.700480, "scale": -4.700480, "setlinewidth": -4.700480, "setpagedevice": -4.700480, "showpage": -4.700480, "sierpinski": -3.314186, "sqrt": -4.700480, "sub": -3.601868, "translate": -4.700480, "triangle": -4.700480, "{": -3.314186, "}": -3.314186, }, "PowerBuilder": map[string]float64{ "!": -5.041924, "$": -6.030535, "&": -5.139562, "(": -3.356386, ")": -3.356386, "*": -6.318217, "+": -5.219605, ",": -2.734698, "-": -1.457114, ".": -6.723682, ".Blue": -7.416829, ".Green": -7.416829, ".LowerRight": -8.109977, ".Red": -7.416829, ".UpperLeft": -8.109977, ".X": -5.276763, ".Y": -5.276763, ".ab_enabled": -8.109977, ".ab_mouseover": -8.803124, ".ab_selected": -8.109977, ".al_backcolor": -8.109977, ".al_image": -8.109977, ".al_textheight": -8.803124, ".as_text": -8.803124, ".ast_point": -6.238174, ".px": -6.238174, ".py": -6.605899, "/": -6.857214, "//": -5.625070, "//Assumption": -8.803124, "//Check": -8.803124, "//Create": -8.803124, "//END": -8.109977, "//Gradient": -8.803124, "//IF": -8.109977, "//OpenWithParm": -8.803124, "//Para": -8.803124, "//ReleaseDC": -8.109977, "//SetBkMode": -8.803124, "//al_decimal": -8.803124, "//gnv_app": -8.803124, "//gnv_app.Event": -8.803124, "//n_help": -8.109977, "//the": -8.803124, ":": -7.193686, ";": -4.583616, "<": -7.704511, "<CONTINUAR>": -8.803124, "<SALIR>": -8.803124, "=": -2.962482, ">": -7.193686, "@begin": -7.704511, "@end": -7.704511, "ALIAS": -8.109977, "ALIGN_CENTER": -7.704511, "ALIGN_LEFT": -8.803124, "ALIGN_RIGHT": -8.109977, "AND": -8.803124, "Alias": -8.109977, "And": -8.803124, "Aplicaci": -8.803124, "BOOLEAN": -8.803124, "BOTTOMLEFT": -8.803124, "BOTTOMRIGHT": -8.803124, "Blue": -8.109977, "Boolean": -6.857214, "BorderCorner": -8.803124, "CONSTANT": -5.858685, "CONTINUE": -8.803124, "CREATE": -8.803124, "Char": -7.193686, "Corner": -4.871298, "CreateFontIndirect": -7.704511, "CreatePen": -7.704511, "CreatePolygonRgn": -8.803124, "CreateRectRgn": -8.803124, "CreateRoundRectRgn": -8.109977, "DC_RECT": -8.803124, "DC_RECT.Bottom": -5.807391, "DC_RECT.Left": -6.318217, "DC_RECT.Right": -6.318217, "DC_RECT.Top": -6.318217, "DC_Rect": -8.803124, "DESTROY": -8.803124, "DT_CALCRECT": -7.704511, "DT_WORDBREAK": -7.704511, "DT_WORD_ELLIPSIS": -8.109977, "DeleteObject": -7.193686, "DirAll": -8.803124, "DrawText": -8.803124, "Drawtext": -8.109977, "E": -8.803124, "ELSE": -6.857214, "END": -5.969910, "ENDHEX": -8.803124, "Ellipse": -8.803124, "EncodingUTF": -8.803124, "End": -7.011364, "ExportApplication": -8.803124, "ExportDataWindow": -8.803124, "ExportFunction": -8.803124, "ExportMenu": -8.803124, "ExportPipeline": -8.803124, "ExportProject": -8.803124, "ExportQuery": -8.803124, "ExportStructure": -8.803124, "ExportUserObject": -8.803124, "ExportWindow": -8.803124, "FALSE": -6.723682, "FOR": -7.704511, "FUNCTION": -6.723682, "False": -8.803124, "FileClose": -8.803124, "FileOpen": -8.803124, "FileWrite": -7.704511, "Fill": -8.803124, "FillRgn": -8.803124, "Flags": -8.803124, "For": -7.011364, "Format": -8.109977, "Function": -5.758601, "GRADIENT_FILL_OP_FLAG": -8.803124, "GRADIENT_FILL_RECT_H": -8.803124, "GRADIENT_FILL_RECT_V": -7.704511, "GRADIENT_FILL_TRIANGLE": -8.803124, "GRADIENT_RECT": -7.193686, "GRADIENT_TRIANGLE": -8.803124, "GetClientRect": -7.704511, "GetDC": -8.803124, "GetWindowRect": -8.803124, "Ginpix": -8.803124, "GradientRectangle": -7.704511, "GradientTriangle": -8.803124, "Green": -8.109977, "HA": -7.704511, "HDC": -6.857214, "HEX": -8.803124, "Handle": -8.803124, "IF": -5.165538, "ILD_BLEND": -7.704511, "ILD_TRANSPARENT": -7.704511, "If": -6.318217, "ImageList_Draw": -8.803124, "ImageList_DrawEx": -7.704511, "Int": -8.803124, "Integer": -8.109977, "IsNull": -7.011364, "IsValid": -7.193686, "LEN": -8.109977, "LIBRARY": -6.164066, "LOGFONT": -8.803124, "LONG": -6.723682, "LVM_GETIMAGELIST": -8.803124, "LVSIL_NORMAL": -8.803124, "Len": -8.803124, "LibExportType": -8.803124, "LibList": -8.803124, "Libraries": -8.803124, "Library": -6.164066, "LibraryDirectoryEx": -8.803124, "LockReadWrite": -8.803124, "LogFont": -8.803124, "Long": -4.952976, "Mod": -7.704511, "NEXT": -8.803124, "NOT": -7.416829, "Next": -7.416829, "OR": -7.704511, "Objects": -8.803124, "OpenWithParm": -8.803124, "Or": -7.704511, "PBExportComments": -8.803124, "PBExportHeader": -7.704511, "POINT": -8.803124, "PRIVATE": -8.803124, "PolyBezier": -8.803124, "Polygon": -8.803124, "Polyline": -8.803124, "Projects": -8.803124, "PtInRegion": -8.803124, "Public": -7.193686, "RECT": -7.193686, "REF": -8.109977, "RETURN": -6.500539, "RGB": -8.109977, "Rectangle": -8.109977, "Red": -8.109977, "Ref": -8.109977, "ReleaseDC": -8.803124, "Replace": -8.803124, "Return": -6.857214, "RoundRect": -8.109977, "Save": -8.109977, "SelectClipRgn": -7.704511, "SelectObject": -7.193686, "SetBkMode": -8.109977, "SetNull": -7.704511, "SetTextColor": -8.109977, "SetWindowPos": -8.803124, "ShellExecuteA": -8.803124, "SoundName": -8.803124, "String": -6.857214, "THEN": -5.758601, "TO": -8.803124, "TOPLEFT": -8.803124, "TOPRIGHT": -8.803124, "TRIVERTEX": -6.857214, "TRUE": -7.704511, "Then": -7.193686, "This.MicroHelpDefault": -8.803124, "To": -7.416829, "TriggerEvent": -8.109977, "Trim": -8.803124, "True": -8.803124, "ULONG": -7.416829, "ULong": -6.318217, "UpperBound": -8.803124, "VistaCorner": -5.247776, "X": -6.500539, "Y": -6.500539, "[": -3.697178, "]": -3.697178, "^": -7.704511, "a": -8.109977, "ab_bold": -6.723682, "ab_boldselected": -7.416829, "ab_border": -7.704511, "ab_displayborder": -7.416829, "ab_displayshadow": -6.857214, "ab_elipse": -7.193686, "ab_underline": -6.723682, "ab_wordwrap": -7.193686, "ado_Palette": -7.704511, "ado_palette": -5.712081, "ai_bit": -7.011364, "ai_style": -7.193686, "al_Color": -7.011364, "al_Value": -6.723682, "al_align": -6.405228, "al_bordercolor": -6.723682, "al_color": -5.435828, "al_decimal": -7.193686, "al_hdc": -7.416829, "al_height": -6.238174, "al_imagelist": -7.193686, "al_row": -7.193686, "al_size": -6.318217, "al_value": -6.318217, "al_width": -6.605899, "al_x": -6.723682, "al_y": -6.723682, "alias": -7.193686, "alpha": -8.803124, "ansi": -6.723682, "applib": -8.803124, "application": -8.109977, "appname": -7.704511, "as": -8.803124, "as_comment": -7.416829, "as_font": -6.723682, "as_lib": -7.011364, "as_name": -7.416829, "as_object": -7.416829, "as_pbl": -7.416829, "as_text": -6.318217, "as_type": -6.500539, "ast_buttons": -5.470919, "autoinstantiate": -8.803124, "backcolor": -7.704511, "base": -8.803124, "being": -8.803124, "binary": -8.803124, "bit": -7.704511, "blue": -7.416829, "boolean": -4.708779, "borderstyle": -7.011364, "bottom": -8.803124, "buttons": -7.704511, "cPoints": -8.109977, "call": -8.109977, "case": -5.625070, "cb_browse": -7.193686, "cb_browse_dest": -7.193686, "cb_export_all": -7.193686, "cb_export_some": -7.193686, "center": -8.803124, "character": -6.605899, "choose": -7.011364, "clicked": -7.193686, "close": -8.803124, "commandbutton": -6.723682, "commandline": -7.704511, "connectionbegin": -8.803124, "connectionend": -8.803124, "connectstring": -8.803124, "contratos.": -8.803124, "controlmenu": -8.803124, "count": -8.803124, "counting": -8.803124, "crColor": -8.109977, "create": -6.030535, "cx": -8.803124, "cy": -8.803124, "dMode": -8.109977, "dataobject": -8.803124, "datawindow": -8.109977, "de": -8.803124, "debug_message": -8.803124, "destroy": -6.030535, "do": -8.803124, "dragobject": -7.704511, "dw_objects": -7.193686, "dw_objects.getitemstring": -7.704511, "dw_objects.getselectedrow": -8.109977, "dw_objects.importstring": -8.803124, "dw_objects.isselected": -8.803124, "dw_objects.reset": -8.803124, "dw_objects.rowcount": -8.803124, "dw_objects.selectrow": -8.803124, "dynamicdescriptionarea": -8.109977, "dynamicstagingarea": -8.109977, "el": -8.803124, "end": -4.325787, "error": -7.193686, "event": -5.712081, "export_object": -7.704511, "export_object_at_row": -7.416829, "f": -8.803124, "fStyle": -8.109977, "facename": -6.723682, "false": -7.416829, "fileexists": -7.704511, "fillMode": -8.803124, "focusrectangle": -8.109977, "fontcharset": -6.030535, "fontfamily": -6.030535, "fontpitch": -6.030535, "for": -7.011364, "forward": -6.500539, "from": -5.165538, "function": -4.931923, "get_object_libtype": -7.704511, "get_object_suffix": -7.704511, "get_objects": -7.704511, "getfileopenname": -8.803124, "getfolder": -8.803124, "ginpix": -6.857214, "global": -5.969910, "gn_help": -7.416829, "gnv_app": -7.416829, "gnv_app.Event": -7.193686, "gradient_rect": -7.704511, "gradient_triangle": -8.109977, "graphicobject": -5.969910, "green": -7.416829, "gs_enlacemacros": -8.803124, "gs_office": -8.803124, "hBrush": -8.803124, "hObject": -8.803124, "hRPen": -6.723682, "hRgn": -7.193686, "hWnd": -7.704511, "hWndInsertAfter": -8.803124, "hdc": -6.723682, "hdcDst": -8.109977, "height": -6.405228, "hgdiobject": -8.803124, "himl": -8.109977, "hrgn": -8.803124, "hscrollbar": -8.803124, "hwnd": -7.011364, "i": -7.011364, "ib_displayborder": -8.109977, "icon": -8.803124, "idle": -8.803124, "if": -6.500539, "il_HDC": -6.605899, "il_HDC//GetDC": -8.109977, "il_NewHeight": -8.109977, "il_ShadowBackColor": -8.803124, "il_imagesize": -6.500539, "il_newHeight": -8.803124, "il_newWidth": -7.704511, "int": -6.605899, "integer": -4.360472, "is": -8.109977, "is_anio": -8.803124, "iul_font": -7.416829, "iul_fontbold": -7.416829, "l_Gradient": -6.605899, "l_Line": -8.803124, "l_Rect": -7.704511, "l_Rect.Bottom": -8.109977, "l_Rect.Left": -8.803124, "l_Rect.RIGHT": -8.803124, "l_Rect.Right": -8.109977, "l_Rect.Top": -8.803124, "l_Rectback": -8.803124, "l_ot": -6.095074, "lb_Value": -6.318217, "lb_bold": -7.416829, "lb_null": -7.704511, "lb_sel": -7.704511, "lback": -8.803124, "left": -8.109977, "leftmost": -8.803124, "lfcharset": -8.803124, "lfclipprecision": -8.803124, "lfescapement": -8.803124, "lffacename": -8.803124, "lfheight": -8.803124, "lfitalic": -8.803124, "lfore": -8.803124, "lforientation": -8.803124, "lfoutprecision": -8.803124, "lfpitchandfamily": -8.803124, "lfquality": -8.803124, "lfstrikeout": -8.803124, "lfunderline": -8.803124, "lfweight": -8.803124, "lfwidth": -8.803124, "lhdc": -7.416829, "lheight": -8.803124, "lhrgn": -8.803124, "li_Cnt": -5.807391, "li_file": -6.857214, "li_max": -7.704511, "libexporttype": -7.704511, "library": -8.109977, "libraryexport": -8.803124, "livescroll": -8.803124, "ll_Blue": -6.405228, "ll_DC": -6.030535, "ll_Green": -6.405228, "ll_Red": -6.405228, "ll_Result": -6.318217, "ll_count": -7.704511, "ll_index": -5.545027, "ll_inner": -8.803124, "ll_innercount": -8.803124, "ll_parm": -6.857214, "ll_sizeparm": -7.416829, "ll_textcolor": -7.416829, "ll_textwidth": -8.803124, "ll_textx": -8.803124, "ll_texty": -8.803124, "ll_y": -8.803124, "logfont": -8.109977, "long": -3.691136, "long.": -8.803124, "loop": -8.803124, "lowerright": -8.803124, "lp": -6.238174, "lpDirectory": -8.803124, "lpFile": -8.803124, "lpLogFont": -8.803124, "lpOperation": -8.803124, "lpParameters": -8.803124, "lpRect": -7.193686, "lpStr": -8.803124, "lp_empty": -8.109977, "lp_line": -8.803124, "lppt": -8.803124, "ls_comment": -7.704511, "ls_dir": -6.500539, "ls_entries": -7.416829, "ls_entry": -8.803124, "ls_file": -8.109977, "ls_filename": -7.416829, "ls_lib": -6.723682, "ls_obj": -7.704511, "ls_path": -7.416829, "ls_suf": -6.318217, "ls_syntax": -7.704511, "ls_type": -7.704511, "lstr_Lf": -7.704511, "lstr_Lf.lfCharset": -8.803124, "lstr_Lf.lfClipPrecision": -8.803124, "lstr_Lf.lfOutPrecision": -8.803124, "lstr_Lf.lfPitchAndFamily": -8.803124, "lstr_Lf.lfQuality": -8.803124, "lstr_Lf.lffacename": -8.803124, "lstr_Lf.lfheight": -8.803124, "lstr_Lf.lfunderline": -8.803124, "lstr_Lf.lfweight": -8.109977, "lul_Font": -8.803124, "lwidth": -8.803124, "lx": -8.109977, "ly": -8.109977, "maxbox": -8.803124, "mensajeria": -8.109977, "message": -7.193686, "minbox": -8.803124, "modulo": -8.803124, "n": -8.803124, "nBkMode": -8.803124, "nCount": -8.803124, "nPenStyle": -8.803124, "nShowCmd": -8.803124, "nWidth": -8.803124, "n_appmanager": -8.109977, "n_cst_buttonlistbar_gradient": -6.857214, "n_cst_buttonlistbar_gradient.create": -8.803124, "n_cst_buttonlistbar_gradient.destroy": -8.803124, "n_cst_buttonlistbar_gradient.sru": -8.803124, "n_tr_apli": -8.109977, "next": -8.803124, "nonvisualobject": -8.109977, "not": -7.416829, "nth": -8.803124, "numMesh": -8.109977, "numVert": -8.109977, "number": -8.803124, "of_BitWiseOR": -8.803124, "of_BitWiseOr": -7.704511, "of_CreateFont": -8.803124, "of_DrawText": -8.109977, "of_SetDeviceContext": -8.803124, "of_SplitRGB": -7.416829, "of_bitwiseand": -7.704511, "of_bitwiseor": -7.704511, "of_createfont": -7.704511, "of_drawbuttons": -7.704511, "of_drawtext": -7.011364, "of_getbit": -6.857214, "of_setdevicecontext": -7.193686, "of_sethdc": -7.704511, "of_splitrgb": -7.704511, "of_verticalgradient": -6.857214, "of_xpgradient": -8.109977, "on": -6.318217, "one.": -8.803124, "open": -8.803124, "or": -8.803124, "p": -8.803124, "pMesh": -8.109977, "pVert": -8.109977, "parameters": -8.803124, "password": -8.803124, "pfc_Close": -8.803124, "pfc_ConnectionBegin": -8.803124, "pfc_ConnectionEnd": -8.803124, "pfc_Idle": -8.803124, "pfc_Open": -8.803124, "pfc_SystemError": -8.803124, "point": -8.109977, "ppoint": -8.803124, "prototypes": -6.723682, "public": -4.871298, "r": -7.011364, "rc": -8.803124, "rect": -7.704511, "red": -7.416829, "ref": -6.238174, "resizable": -8.803124, "return": -6.857214, "right": -8.109977, "row": -8.109977, "singlelineedit": -7.193686, "sle_anio": -7.704511, "sle_destdir": -7.193686, "sle_destdir.text": -8.109977, "sle_pbl": -7.193686, "sle_pbl.text": -7.704511, "sndPlaySoundA": -8.803124, "sqlca": -7.704511, "sqlda": -7.704511, "sqlsa": -7.704511, "sra": -8.803124, "st_": -6.238174, "statictext": -7.193686, "streammode": -8.803124, "string": -4.583616, "structure": -6.500539, "stylelowered": -7.704511, "subroutine": -5.807391, "super": -8.109977, "swiss": -6.723682, "systemerror": -8.803124, "taborder": -6.857214, "text": -6.723682, "textcolor": -7.416829, "textsize": -6.723682, "the": -8.803124, "then": -6.723682, "this": -8.109977, "this.Control": -8.803124, "this.cb_browse": -7.704511, "this.cb_browse_dest": -7.704511, "this.cb_export_all": -7.704511, "this.cb_export_some": -7.704511, "this.dw_objects": -7.704511, "this.sle_destdir": -7.704511, "this.sle_pbl": -7.704511, "this.st_": -7.011364, "title": -8.109977, "titlebar": -8.803124, "to": -8.109977, "toolbarframetitle": -8.803124, "toolbarusercontrol": -8.803124, "top": -8.803124, "trivertex": -8.109977, "true": -6.500539, "type": -4.396404, "uLong": -7.193686, "uint": -8.803124, "ulong": -5.192206, "unsignedlong": -6.723682, "upperleft": -8.803124, "userid": -8.803124, "v": -8.109977, "variable": -6.723682, "variables": -6.857214, "vertex": -7.704511, "vscrollbar": -8.803124, "wFlags": -8.803124, "wFormat": -8.803124, "w_export": -5.712081, "w_export.create": -8.803124, "w_export.destroy": -8.803124, "w_export.srw": -8.803124, "w_ini_ginpix": -8.803124, "w_logontab": -8.803124, "w_mant": -8.109977, "w_mant_seg_scs": -7.011364, "weight": -6.723682, "while": -8.803124, "width": -6.500539, "window": -8.109977, "with": -8.803124, "within": -5.584248, "write": -8.803124, "x": -6.164066, "y": -6.164066, "{": -8.803124, "}": -8.803124, }, "PowerShell": map[string]float64{ "#": -6.421622, "$": -2.216930, "'": -6.421622, "(": -2.895262, ")": -2.895262, "+": -4.812184, ",": -4.812184, "-": -2.396271, ".Contains": -6.421622, ".DESCRIPTION": -6.421622, ".EXAMPLE": -6.421622, ".LINK": -6.421622, ".PARAMETER": -6.421622, ".SYNOPSIS": -6.421622, ".TotalSeconds": -6.421622, ".attributes.Add": -6.421622, ".totalseconds": -6.421622, ":": -3.531251, ";": -5.728475, "<#>": -6.421622, "=": -3.125785, ">": -6.421622, "?": -6.421622, "@": -5.035328, "Add": -5.035328, "Alias": -5.728475, "Append": -6.421622, "Author": -6.421622, "Clear": -6.421622, "Command": -6.421622, "CommandLine": -6.421622, "CompanyName": -6.421622, "Copyright": -6.421622, "Count": -5.323010, "Create": -6.421622, "Csv": -5.035328, "DESCRIPTION": -6.421622, "EXAMPLE": -6.421622, "EscapedPath": -5.728475, "Export": -5.323010, "Find": -5.728475, "First": -6.421622, "Fore": -6.421622, "Foreach": -6.421622, "Function": -5.323010, "GUID": -6.421622, "Get": -4.224398, "Green": -6.421622, "Group": -6.421622, "History": -4.475712, "HistoryAll": -5.728475, "HistoryIncremental": -5.728475, "Host": -6.421622, "Import": -5.728475, "Item": -6.421622, "LINK": -6.421622, "Location": -5.728475, "Mandatory": -6.421622, "Matches": -5.728475, "MaximumHistoryCount": -5.728475, "Measure": -6.421622, "ModuleMember": -6.421622, "ModuleVersion": -6.421622, "Name": -5.323010, "Now": -5.728475, "Object": -6.421622, "PARAMETER": -6.421622, "Parameter": -6.421622, "Path": -5.323010, "Position": -6.421622, "PreZTabExpansion": -5.323010, "Push": -6.421622, "Rename": -6.421622, "Retrive": -5.728475, "Reverse": -5.728475, "RootModule": -6.421622, "SYNOPSIS": -6.421622, "Save": -5.035328, "ScriptBlock": -6.421622, "Search": -6.421622, "Select": -6.421622, "Set": -5.035328, "Skip": -6.421622, "TabExpansion": -5.728475, "Test": -5.323010, "Time": -6.421622, "Update": -6.421622, "ValidateScript": -6.421622, "Value": -6.421622, "ValueFromPipeline": -6.421622, "ValueFromPipelineByPropertyName": -6.421622, "Variable": -6.421622, "Warning": -6.421622, "Where": -6.421622, "Write": -5.728475, "ZLocation": -4.475712, "ZWeight": -5.728475, "[": -4.119037, "\\": -5.728475, "]": -4.119037, "_.CommandLine.ToLower": -6.421622, "_.Group": -6.421622, "_.Path": -6.421622, "_.length": -6.421622, "__zlocation_current": -5.323010, "and": -5.728475, "args": -5.323010, "arguments": -5.728475, "array": -5.728475, "based": -5.728475, "count": -6.421622, "datetime": -5.728475, "default": -6.421622, "else": -6.421622, "filter": -5.728475, "foreach": -6.421622, "function": -4.475712, "global": -5.035328, "gt": -6.421622, "history": -3.936716, "historyPath": -4.812184, "if": -4.629863, "in": -6.421622, "item": -5.323010, "item.ToLower": -6.421622, "lastWord": -5.728475, "line": -5.035328, "loadTime": -6.421622, "matches": -5.323010, "new": -6.421622, "newPrompt": -5.728475, "not": -6.421622, "now": -6.421622, "now.Subtract": -6.421622, "object": -6.421622, "oldPrompt": -6.421622, "on": -5.728475, "param": -5.728475, "path": -4.812184, "path.Contains": -6.421622, "prev": -6.421622, "prev.Location": -6.421622, "prev.Time": -6.421622, "process": -6.421622, "prompt": -6.421622, "pwd": -6.421622, "query": -5.035328, "regex": -6.421622, "return": -5.323010, "select": -6.421622, "split": -6.421622, "string": -5.728475, "switch": -6.421622, "true": -4.812184, "variable": -6.421622, "weight": -5.728475, "where": -6.421622, "z": -5.728475, "{": -3.125785, "|": -3.936716, "}": -3.054326, "\ufeff": -6.421622, }, "Processing": map[string]float64{ "(": -1.801516, ")": -1.801516, ",": -1.267433, ";": -1.926679, "PI": -4.634729, "TWO_PI": -4.634729, "arc": -4.634729, "background": -4.634729, "draw": -4.634729, "ellipse": -4.634729, "fill": -2.842970, "noStroke": -4.634729, "quad": -4.634729, "rect": -4.634729, "setup": -4.634729, "size": -4.634729, "triangle": -3.941582, "void": -3.941582, "{": -3.941582, "}": -3.941582, }, "Prolog": map[string]float64{ "!": -5.568345, "#": -7.765569, "$": -7.072422, "%": -5.568345, "(": -2.264311, ")": -2.260238, "+": -6.666957, ",": -2.051836, "-": -2.748289, ".": -3.047070, "..": -7.072422, "/": -6.666957, "/usr/bin/env": -7.765569, "02111": -7.765569, "1": -7.765569, "1307": -7.765569, "2": -7.765569, "330": -7.765569, "59": -7.765569, ":": -3.622434, ";": -6.156131, "<r>": -7.765569, "=": -4.821130, ">": -4.630075, "A": -6.379275, "ANY": -7.765569, "Action": -5.280662, "AllPossiblePairs": -5.973810, "Ans": -7.072422, "Args": -6.379275, "Arity": -7.072422, "As": -7.765569, "Atom": -6.666957, "B": -6.666957, "Back": -4.769837, "Boston": -7.765569, "Buddies": -5.686128, "Buddy": -6.379275, "C": -5.686128, "Code": -7.072422, "Codes": -4.992980, "D": -6.666957, "Element": -6.379275, "F": -7.072422, "FITNESS": -7.765569, "FOR": -7.765569, "File": -7.072422, "First": -6.379275, "FirstPair": -6.666957, "Format": -6.666957, "Foundation": -7.072422, "Free": -6.666957, "Front": -4.769837, "G": -7.765569, "GNU": -6.156131, "General": -6.156131, "Goal": -7.765569, "Head": -7.072422, "I": -7.765569, "Inc": -7.765569, "Item": -7.072422, "Items": -7.072422, "K": -7.072422, "L": -6.156131, "Label": -7.072422, "Length": -7.072422, "License": -5.973810, "List": -5.686128, "Ls": -4.674527, "M": -7.072422, "MA": -7.765569, "MERCHANTABILITY": -7.765569, "Modifier": -7.072422, "Module": -7.072422, "N": -5.462984, "N.": -7.765569, "Name": -6.379275, "NbBuddies": -7.072422, "NbPairs": -5.686128, "NewBack": -7.072422, "NewFront": -7.072422, "NewNbPairs": -7.072422, "NewRemainingPairs": -7.072422, "NewSym": -7.072422, "Numeric": -6.379275, "OldBack": -7.072422, "OldFront": -7.072422, "Output": -7.765569, "P": -7.072422, "PARTICULAR": -7.765569, "PURPOSE": -7.765569, "Pair": -5.973810, "Pairs": -5.057519, "PairsWithoutPair": -7.072422, "Place": -7.765569, "PossiblePair": -5.819659, "PossiblePairs": -7.072422, "Public": -6.156131, "Q": -6.379275, "R": -7.072422, "RemainingPairs": -6.379275, "Rest": -5.973810, "Rs": -4.587515, "RsRest": -7.072422, "SHEBANG#!swipl": -7.765569, "See": -7.765569, "Set": -6.379275, "Software": -6.666957, "Spec": -5.973810, "String": -5.973810, "Subset": -5.973810, "Suite": -7.765569, "Sym": -5.973810, "T": -7.072422, "Tail": -7.072422, "Tape": -6.379275, "Temple": -7.765569, "Term": -7.765569, "This": -7.072422, "Tp": -5.686128, "Tps": -7.072422, "Types": -5.973810, "URL": -7.072422, "USA": -7.765569, "Value": -7.072422, "Var": -6.379275, "W": -7.765569, "WARRANTY": -7.765569, "WITHOUT": -7.765569, "X": -6.156131, "Y": -5.973810, "You": -7.765569, "[": -3.334752, "\\": -6.666957, "]": -3.334752, "_": -5.367674, "a": -6.156131, "action": -5.819659, "action_types": -4.932356, "along": -7.765569, "an": -7.765569, "any": -6.379275, "append": -6.156131, "argv": -7.765569, "arithmetic": -7.765569, "as": -7.765569, "at": -7.765569, "atom": -7.072422, "atom_codes": -6.666957, "b": -7.072422, "bagof": -7.765569, "be": -6.666957, "br": -7.765569, "brother": -7.765569, "but": -7.765569, "by": -6.379275, "cause": -7.765569, "change_password_form": -7.765569, "change_password_form//": -7.765569, "character": -7.072422, "christie": -6.666957, "codes": -7.765569, "colon": -7.765569, "combiner": -6.379275, "compile_function": -7.765569, "compile_function/": -7.765569, "compiled": -7.765569, "compiler": -7.765569, "concat": -6.379275, "copy": -7.765569, "covered": -7.072422, "cpa_admin": -7.072422, "current_prolog_flag": -7.765569, "d": -7.765569, "dcg/basics": -7.765569, "debug": -7.072422, "delete_pair": -6.156131, "details": -7.765569, "distributed": -7.765569, "dleak": -7.072422, "does": -7.072422, "e": -7.765569, "either": -7.765569, "eos.": -7.765569, "eos//": -7.765569, "error": -7.072422, "escape": -7.072422, "even": -7.765569, "exception": -7.072422, "executable": -6.666957, "extraire": -5.973810, "f": -7.765569, "female": -7.072422, "file": -7.765569, "files": -7.765569, "findall": -7.765569, "float": -6.666957, "for": -7.765569, "format_error/": -7.765569, "format_spec": -5.686128, "format_spec/": -7.765569, "format_spec//": -7.765569, "func": -7.072422, "function_expansion": -7.765569, "ground": -6.379275, "halt.": -7.765569, "have": -7.765569, "hidden": -7.072422, "hope": -7.765569, "however": -7.765569, "href": -7.765569, "html": -7.072422, "html_head": -7.765569, "html_write": -7.765569, "http": -5.973810, "http/html_head": -7.765569, "http/html_write": -7.765569, "http/http_dispatch": -7.765569, "http/http_parameters": -7.765569, "http/http_session": -7.765569, "http/mimetype": -7.765569, "http_dispatch": -7.765569, "http_parameters": -7.765569, "http_session": -7.765569, "http_settings": -7.072422, "if": -7.072422, "implied": -7.765569, "in": -7.765569, "initialization": -7.765569, "input": -7.765569, "integer": -6.156131, "integer//": -7.765569, "invalidate": -7.765569, "is": -6.379275, "is_action": -7.072422, "is_of_type": -7.765569, "it": -7.072422, "item_types": -6.666957, "itself": -7.765569, "john": -7.072422, "join_queue": -7.765569, "jump_queue": -7.765569, "later": -7.765569, "left": -6.379275, "length": -7.072422, "length_queue": -6.156131, "les_tps": -7.765569, "library": -4.299833, "link": -7.765569, "list": -7.765569, "list_join_queue": -7.765569, "list_jump_queue": -7.765569, "list_to_queue": -7.765569, "list_util": -7.765569, "lists": -7.072422, "main": -7.072422, "make_pairs": -6.379275, "make_queue": -7.765569, "male": -6.666957, "might": -7.765569, "mimetype": -7.765569, "modifier_argument": -6.666957, "modify": -7.765569, "module": -5.973810, "more": -7.765569, "multifile": -7.765569, "n": -7.765569, "name": -7.765569, "no_colon": -7.765569, "not": -6.379275, "nothing": -7.072422, "nth": -7.072422, "number": -6.666957, "numeric_argument": -6.156131, "numeric_types": -6.156131, "of": -5.973810, "once": -7.072422, "op": -7.072422, "option": -6.666957, "or": -7.072422, "other": -7.072422, "p": -7.765569, "pair_in_array": -6.156131, "parents": -6.379275, "perform": -6.379275, "peter": -6.666957, "phrase": -6.666957, "powerset": -7.765569, "produce": -7.765569, "program": -7.765569, "prolog_load_context": -7.765569, "published": -7.765569, "q": -7.765569, "qf": -7.765569, "queue_to_list": -6.156131, "r": -7.765569, "reasons": -7.765569, "received": -7.765569, "resulting": -7.765569, "reverse": -7.765569, "right": -7.765569, "rule": -7.765569, "s": -7.765569, "set_prolog_flag": -7.765569, "should": -7.765569, "silent": -7.765569, "spec_arity": -7.765569, "spec_arity/": -7.765569, "spec_types": -5.973810, "spec_types/": -7.765569, "special": -7.765569, "star": -7.072422, "stay": -7.765569, "string": -7.765569, "string_codes": -6.666957, "string_without": -7.765569, "string_without//": -7.765569, "subset": -7.072422, "swipl": -7.765569, "symbol": -6.666957, "t": -7.765569, "terms": -7.765569, "text": -6.666957, "text_codes": -6.156131, "that": -7.765569, "the": -5.200620, "this": -6.666957, "to": -6.666957, "turing": -7.765569, "type": -7.765569, "under": -7.765569, "url": -7.072422, "use_module": -4.299833, "useful": -7.765569, "user": -7.072422, "user_db": -7.072422, "value": -7.765569, "var": -7.765569, "verbose": -7.765569, "version": -7.072422, "vick": -7.072422, "wants_func": -7.765569, "warranty": -7.765569, "when": -6.666957, "when/": -7.765569, "why": -7.765569, "will": -7.765569, "with": -6.666957, "without": -7.765569, "write": -7.765569, "xfy": -7.072422, "xfy_list/": -7.765569, "you": -7.765569, "your": -7.765569, "{": -5.973810, "|": -4.331582, "}": -5.973810, "~": -7.765569, }, "Propeller Spin": map[string]float64{ "!": -9.216322, "\"": -9.909470, "#": -4.471390, "#@shift": -9.909470, "#_dpin": -9.909470, "#_enable": -9.909470, "#_states": -9.909470, "#arcd": -9.909470, "#arcmod": -9.909470, "#blank_hsync": -9.909470, "#blank_line": -8.810857, "#blank_vsync": -9.909470, "#colortable": -9.216322, "#cordic": -9.216322, "#cordic_steps": -9.909470, "#disabled": -9.216322, "#divide": -9.216322, "#entry": -9.909470, "#field": -9.909470, "#fontb": -8.810857, "#fontxy": -9.909470, "#frame_bytes": -9.909470, "#hsync": -9.909470, "#hv": -9.909470, "#linepd": -9.216322, "#look": -9.909470, "#loop": -7.712245, "#ltab": -9.909470, "#mult": -9.909470, "#multiply": -9.216322, "#nap": -9.909470, "#newcode": -9.909470, "#par_curr": -9.909470, "#par_next": -9.909470, "#par_step": -9.909470, "#paramcount": -9.909470, "#plotd": -8.810857, "#plotp": -8.810857, "#plotp_ret": -9.216322, "#polarx": -9.909470, "#rand": -9.909470, "#receive": -9.909470, "#receive_ack": -9.909470, "#receive_bit": -9.909470, "#reset": -9.216322, "#setd": -9.909470, "#sine": -9.909470, "#superfield": -9.909470, "#sync_high": -9.909470, "#sync_low": -9.909470, "#table": -9.909470, "#tasks": -9.909470, "#transmit": -9.216322, "#update": -9.909470, "#wait": -9.216322, "#wait_c": -9.216322, "#wloop": -8.810857, "#wslice": -9.909470, "#wtab": -9.909470, "$": -4.683723, "%": -4.828065, "&": -6.864947, "'": -9.216322, "(": -4.034539, ")": -4.037352, "*": -4.905523, "**": -9.216322, "***": -9.909470, "*****": -8.523175, "*************************************": -9.216322, "***************************************": -7.424563, "****************************************": -8.523175, "*****************************************": -8.523175, "******************************************": -9.216322, "*********************************************": -9.216322, "+": -3.280106, ",": -2.838746, "-": -3.767432, ".": -9.216322, "..": -7.963559, "...": -8.300032, "...So": -9.909470, "...The": -9.909470, "...With": -9.909470, "...contiguous": -9.909470, "...must": -9.909470, ".finish": -9.909470, "/": -6.171800, "//": -9.216322, "/c": -8.810857, "/non": -8.523175, "/t": -9.216322, "0": -7.963559, "1": -8.810857, "10": -9.909470, "15": -9.909470, "16": -9.909470, "3": -9.216322, "31": -9.909470, "4": -9.909470, "6": -9.909470, "65535": -9.909470, ":": -4.104335, ";": -9.216322, "<": -7.270412, "<#>": -9.909470, "<->": -9.909470, "<<": -5.660974, "<_>": -9.909470, "<tileheight>": -8.300032, "=": -4.488935, ">": -6.731416, "?": -6.818427, "@": -9.909470, "@FTemp": -9.909470, "@attenuation": -9.909470, "@bitmap": -9.909470, "@c": -9.909470, "@colors": -9.216322, "@command": -9.909470, "@entry": -8.810857, "@frames": -9.909470, "@index": -9.909470, "@justx": -9.909470, "@long": -9.216322, "@loop": -9.909470, "@palette": -9.909470, "@sample": -9.909470, "@screen": -8.810857, "@string": -9.909470, "@table": -9.909470, "@tv_params": -9.909470, "@tv_status": -8.810857, "@vga_status": -9.909470, "@w": -9.909470, "@x": -8.117710, "@x_scale": -9.909470, "A": -6.731416, "A..": -9.909470, "AA": -9.909470, "ACTION": -7.606885, "ADC": -8.300032, "ADC.SigmaDelta": -9.909470, "ALL": -9.216322, "AN": -7.606885, "AND": -7.606885, "ANY": -6.913737, "ARISING": -7.606885, "AS": -9.909470, "AUTHORS": -7.606885, "After": -9.216322, "All": -9.216322, "Alt": -9.216322, "An": -9.909470, "Antilog": -9.909470, "Apps": -9.909470, "April": -9.909470, "Aspiration": -9.909470, "Assembly": -9.216322, "Assume": -9.909470, "At": -9.909470, "Author": -7.830028, "Authors": -9.909470, "B": -7.136881, "BB": -9.909470, "BC_": -9.909470, "BE": -7.606885, "BE_BD_BC_BA": -9.909470, "BF": -9.909470, "BIC": -9.909470, "BLUE": -9.909470, "BOX": -9.216322, "BUT": -7.606885, "BackSpace": -9.909470, "Beau": -9.216322, "Before": -9.909470, "Blank": -9.909470, "C": -7.076256, "CLAIM": -7.606885, "CLKFREQ": -7.606885, "CON": -8.523175, "CONNECTION": -7.606885, "CONTRACT": -7.606885, "COPYRIGHT": -7.606885, "C_": -8.810857, "Can": -8.810857, "CapsLock": -9.909470, "Chip": -7.963559, "Circuit": -9.909470, "Clear": -8.810857, "Clears": -9.216322, "Codes": -9.909470, "Coils": -9.909470, "Coke": -8.810857, "Controls": -9.909470, "Copy": -9.216322, "Copyright": -7.606885, "Cordic": -9.909470, "D": -6.690594, "DAMAGES": -7.606885, "DAT": -7.963559, "DEALINGS": -7.606885, "DF": -9.216322, "D_": -9.216322, "Data": -9.909470, "Debug_Lcd": -9.909470, "Debugging": -9.909470, "Defined": -9.909470, "Demo": -9.909470, "Disabled": -9.216322, "DisplayInductorValue": -9.216322, "Down": -9.909470, "Draw": -7.963559, "Driver": -8.523175, "E": -7.076256, "EA": -9.909470, "EC": -9.909470, "ED": -9.909470, "EF": -9.909470, "EVENT": -7.606885, "EXPRESS": -7.606885, "E_": -9.216322, "Enable": -9.909470, "Enter": -8.810857, "Entry": -9.216322, "Esc": -9.909470, "Experimentation": -9.216322, "F": -6.864947, "FC": -9.216322, "FF": -9.909470, "FFEA": -9.909470, "FFFFFFFF": -9.909470, "FITNESS": -7.606885, "FOR": -6.913737, "FPin": -9.216322, "FROM": -7.606885, "FTemp/": -9.909470, "FValue": -9.909470, "Finalizes": -9.909470, "FindResonateFrequency": -9.909470, "Finish": -9.909470, "Freq.Synth": -9.909470, "Frequency": -9.909470, "GND": -8.523175, "GRAPHICS_DEMO.SRC": -9.909470, "GREEN": -9.216322, "Get": -9.216322, "Gracey": -7.963559, "Graphics": -8.810857, "H": -9.909470, "HIGH": -8.810857, "HIGHER": -9.909470, "HISTORY": -9.216322, "HOLDERS": -7.606885, "HSYNC": -9.909470, "Handle": -9.909470, "Home": -9.909470, "Horizontal": -9.909470, "How": -9.909470, "Hz": -8.300032, "I": -9.909470, "I/O": -8.810857, "IMPLIED": -7.606885, "IN": -6.220590, "INCLUDING": -7.606885, "INPUT": -9.216322, "INPUTSs": -9.909470, "IS": -7.606885, "If": -9.216322, "In": -9.216322, "Inc.": -7.830028, "Increment": -9.909470, "Inductive": -9.909470, "Initialization": -9.909470, "Initialized": -9.909470, "Initializes": -9.909470, "Insert": -9.909470, "Installs": -9.909470, "Instead": -9.909470, "It": -9.909470, "J": -9.909470, "Jeff": -9.216322, "Jon": -9.216322, "K": -8.523175, "KHz": -8.810857, "KIND": -7.606885, "Key": -9.909470, "Keyboard": -9.909470, "Keypad": -9.909470, "L": -8.300032, "LC": -7.712245, "LCD": -8.523175, "LIABILITY": -7.606885, "LIABLE": -7.606885, "LIMITED": -7.606885, "LOW": -9.216322, "LOWs": -9.909470, "Launch": -9.909470, "Left": -9.909470, "License": -7.712245, "Load": -9.909470, "Lookup": -9.216322, "Loop": -9.909470, "LowerFrequency": -9.216322, "M": -9.909470, "MERCHANTABILITY": -7.606885, "MHz": -7.136881, "MHz.": -9.909470, "MIT": -7.712245, "Make": -9.909470, "March": -9.909470, "Martin": -9.216322, "Math": -9.909470, "May": -9.216322, "Moves": -9.216322, "Multiple": -9.909470, "Multiply": -9.909470, "N": -9.909470, "NO": -7.606885, "NONINFRINGEMENT.": -7.606885, "NOT": -7.511574, "NTSC": -7.511574, "NTSC/PAL": -9.216322, "No": -9.216322, "Note": -9.909470, "OBJ": -9.216322, "OF": -6.017649, "OR": -5.660974, "OTHER": -6.913737, "OTHERWISE": -7.606885, "OUT": -7.606885, "OUTPUT": -9.216322, "OUTPUT...": -9.909470, "October": -9.909470, "Once": -9.909470, "Operation": -9.216322, "Option": -9.216322, "Output": -9.909470, "Override": -9.909470, "P": -7.606885, "PAL": -7.606885, "PARTICULAR": -7.606885, "PIN": -9.909470, "PRI": -9.909470, "PROVIDED": -7.712245, "PS/": -9.909470, "PUB": -5.704777, "PURPOSE": -7.606885, "PageDn": -9.909470, "Parallax": -7.606885, "Parameter": -8.523175, "Permission": -7.712245, "Pin": -9.909470, "Pixel": -9.909470, "Plot": -8.810857, "Pn": -9.909470, "Points": -9.909470, "Polar": -9.909470, "Power": -9.909470, "PrScr": -9.909470, "Print": -7.201419, "Prints": -9.216322, "Propeller": -8.810857, "Queue": -9.909470, "R": -8.810857, "RED": -9.909470, "REVISION": -9.216322, "ReadRow": -8.523175, "Reader": -9.909470, "Ready": -9.909470, "Remember": -9.909470, "Reset": -9.909470, "Returns": -8.523175, "Right": -9.216322, "Round": -9.909470, "SDF": -9.909470, "SDI": -9.909470, "SHALL": -7.606885, "SOFTWARE": -6.965031, "SOFTWARE.": -7.606885, "Scaled": -9.909470, "Schematic": -9.909470, "Schwabe": -9.216322, "ScrLock": -9.909470, "See": -7.606885, "Selects": -9.909470, "Send": -9.909470, "Sensor": -9.909470, "Serial_Lcd": -9.909470, "Set": -7.963559, "Shift": -8.810857, "Sleep": -9.909470, "Software": -6.577265, "Software.": -7.712245, "Space": -9.216322, "Start": -8.117710, "Stop": -8.117710, "Subroutines": -9.909470, "Superfield": -9.216322, "T": -8.300032, "TERMS": -7.712245, "THE": -5.831932, "TO": -7.606885, "TORT": -7.606885, "TV": -7.712245, "TV.SRC": -9.909470, "Tab": -9.216322, "Tasks": -9.909470, "Terminal": -9.909470, "Test": -9.216322, "Text": -9.909470, "The": -7.076256, "Then": -9.909470, "Theory": -9.909470, "There": -9.909470, "This": -8.810857, "To": -8.810857, "Tool": -9.909470, "Tract": -9.216322, "Transmit": -9.909470, "Typical": -9.909470, "USE": -6.965031, "Undefined": -9.216322, "Uninitialized": -8.810857, "Update": -9.909470, "Updated": -8.523175, "UpperFrequency": -9.909470, "V": -7.963559, "VAR": -7.606885, "VGA": -7.830028, "VGA.SRC": -9.909470, "VSYNC": -9.909470, "Vector": -9.216322, "Vocal": -9.216322, "Volts": -9.909470, "WARRANTIES": -7.606885, "WARRANTY": -7.606885, "WHETHER": -7.606885, "WITH": -7.606885, "WITHOUT": -7.606885, "WORD": -9.909470, "Wait": -9.216322, "WakeUp": -9.909470, "When": -9.909470, "White": -9.909470, "Williams": -9.216322, "Win": -9.216322, "Wire": -9.909470, "With": -9.909470, "X": -8.300032, "X****": -9.909470, "Y": -9.216322, "Z": -9.909470, "[": -6.354122, "\\": -9.909470, "]": -6.383109, "^": -9.909470, "_": -5.527443, "_AA": -9.909470, "___": -9.909470, "_____": -8.117710, "______": -7.270412, "_______": -9.216322, "________": -8.810857, "_________": -8.300032, "__________": -8.523175, "___________": -9.909470, "____________": -9.909470, "_arc": -9.216322, "_auralcog": -9.909470, "_broadcast": -8.523175, "_color": -8.810857, "_colors": -9.216322, "_cpin": -9.216322, "_d": -8.810857, "_dpin": -8.810857, "_enable": -9.216322, "_fill": -9.909470, "_hb": -9.909470, "_hd": -9.909470, "_head": -8.117710, "_head/_present/_states": -9.909470, "_hf": -9.909470, "_ho": -9.216322, "_hs": -9.909470, "_ht": -9.216322, "_hx": -8.523175, "_line": -9.216322, "_locks": -8.300032, "_loop": -7.963559, "_mode": -7.963559, "_pins": -8.523175, "_pix": -9.909470, "_pixarc": -9.909470, "_plot": -9.216322, "_present": -9.216322, "_present/_states": -9.909470, "_rate": -8.810857, "_screen": -8.810857, "_setup": -9.216322, "_states": -9.216322, "_status": -9.909470, "_text": -9.216322, "_textarc": -9.909470, "_textmode": -9.216322, "_vd": -9.909470, "_vec": -9.216322, "_vecarc": -9.216322, "_vs": -9.216322, "_vt": -8.810857, "_vx": -9.909470, "_width": -9.216322, "`": -9.909470, "a": -5.304299, "aA": -8.300032, "aB": -9.216322, "aC": -9.216322, "aD": -8.810857, "aE": -9.909470, "aF": -8.523175, "aa": -9.216322, "aa..ff": -8.523175, "about": -8.523175, "above": -7.511574, "abruptly": -9.909470, "abs": -9.909470, "absolute": -9.909470, "account": -9.909470, "accumulation": -9.909470, "accurate": -9.909470, "ack": -9.909470, "across": -9.909470, "act": -9.909470, "active": -8.810857, "acts": -9.909470, "actual": -8.300032, "add": -5.387681, "add/sub": -9.909470, "address": -7.136881, "adds/subtracts": -9.909470, "adjust": -8.300032, "advance": -9.216322, "after": -9.216322, "afterwards": -9.909470, "again": -9.216322, "against": -9.909470, "algorithm": -9.909470, "align": -9.909470, "all": -7.344520, "allowed": -9.909470, "allowing": -9.216322, "allows": -9.909470, "alpha": -9.909470, "also": -9.909470, "alt": -9.909470, "always": -9.216322, "amount": -9.909470, "amplitude": -8.810857, "an": -7.424563, "and": -5.314350, "and/or": -7.712245, "andn": -7.963559, "angle": -6.773975, "anglestep": -9.216322, "another": -7.963559, "antilog": -9.216322, "antilog_ret": -9.909470, "any": -7.270412, "appearance": -9.909470, "applied": -9.216322, "apply": -9.909470, "applying": -9.909470, "approach": -9.909470, "arc": -6.864947, "arc/line": -9.909470, "arc_": -9.216322, "arcd": -9.909470, "arcmod_ret": -9.909470, "arcmode": -9.216322, "arcs": -9.909470, "are": -6.913737, "area": -9.909470, "arg": -5.866418, "args": -8.300032, "arguments": -9.216322, "arranged": -8.810857, "as": -7.830028, "aspiration": -9.909470, "assemble": -9.909470, "assembled": -9.909470, "assembly": -9.909470, "associated": -7.511574, "at": -6.613633, "attach": -9.909470, "attenuation": -8.810857, "audio": -9.909470, "aural": -7.344520, "aural_id": -9.909470, "auralcog": -9.909470, "available": -8.300032, "ax": -6.195898, "axis": -9.909470, "ay": -6.148270, "b": -9.909470, "back": -7.712245, "backLight": -9.909470, "background": -9.909470, "backlight": -9.909470, "backspace": -9.909470, "bandwidth": -9.216322, "base": -6.383109, "base_ptr": -8.300032, "baseband": -7.019098, "basepin": -8.810857, "bases": -8.300032, "bases_ptr": -8.117710, "basesptr": -8.523175, "basically": -9.909470, "baud": -9.216322, "bcolor": -8.810857, "be": -6.059322, "because": -9.216322, "before": -9.909470, "behave": -9.909470, "being": -9.216322, "below": -8.523175, "best": -9.909470, "between": -8.300032, "beware": -9.909470, "bin": -8.810857, "binary": -8.523175, "bit": -6.325951, "bit/pin": -9.909470, "bitfields": -9.216322, "bitmap": -6.864947, "bitmap_base": -7.606885, "bitmap_longs": -8.523175, "bits": -6.195898, "bits/pins": -8.810857, "black": -9.216322, "black/white": -9.216322, "blank": -9.216322, "blank_hsync": -9.909470, "blank_hsync_ret": -9.909470, "blank_line_ret": -9.909470, "blank_vsync": -9.909470, "blank_vsync_ret": -9.909470, "blink": -8.523175, "blue": -8.810857, "bottom": -8.300032, "bounds": -9.216322, "break": -8.117710, "broadcast": -6.965031, "broadcast/baseband": -9.909470, "broadcasting": -9.909470, "brown": -9.909470, "buffer": -8.523175, "buffer.": -9.909470, "buffered": -9.216322, "buffers": -9.909470, "bullet": -9.909470, "burst": -9.216322, "button": -9.216322, "buttons": -9.216322, "by": -7.076256, "byte": -6.651373, "bytemove": -9.909470, "bytes": -9.216322, "c": -6.148270, "call": -6.125280, "can": -8.523175, "cancel": -9.909470, "capacitive": -9.909470, "capacitors": -9.909470, "capacitors.": -9.909470, "capslock": -9.909470, "care": -9.909470, "carrier": -9.909470, "cartesian": -9.909470, "case": -8.300032, "causes": -9.909470, "ccinp": -9.909470, "cell": -9.909470, "cells": -9.909470, "center": -7.606885, "centered": -9.216322, "change": -8.810857, "changes": -8.810857, "changes.": -9.216322, "channel": -9.909470, "char": -9.216322, "character": -8.300032, "characters": -9.909470, "charge": -7.606885, "check": -8.300032, "checking": -9.909470, "chr": -8.523175, "chrDataAddr": -9.216322, "chroma": -6.965031, "circuit": -8.117710, "circuit.": -9.909470, "clear": -7.963559, "clear_cnt": -9.909470, "cleared": -9.909470, "clearing": -9.909470, "clip": -9.909470, "clipped.": -9.909470, "clips": -9.909470, "clkfreq": -9.216322, "clobbering": -9.909470, "clock": -8.523175, "closed": -9.909470, "clrln": -9.909470, "cls": -9.909470, "cmask": -9.216322, "cmp": -7.136881, "cmps": -8.810857, "cmpsub": -8.523175, "cnt": -9.216322, "cnt_": -9.909470, "cnt_ticks": -8.810857, "cnt_value": -8.810857, "code": -8.523175, "code.": -9.216322, "cog": -6.245908, "cognew": -8.523175, "cogstop": -8.810857, "coil": -9.909470, "col": -7.712245, "col/line": -9.909470, "color": -6.059322, "color_": -9.909470, "color_schemes": -9.909470, "colorize": -9.909470, "colorloop": -9.909470, "colormask": -9.909470, "colorptr": -9.216322, "colorreg": -8.810857, "colors": -6.965031, "colorset": -9.216322, "colorset*": -9.216322, "colorsets": -8.523175, "colortable": -7.963559, "colorwidth": -9.909470, "cols": -8.523175, "command": -7.606885, "commands": -9.909470, "composite": -9.909470, "conditions": -7.712245, "configure": -8.810857, "conform": -9.909470, "confused.": -9.909470, "connect": -8.810857, "connecting": -9.909470, "connections": -9.909470, "connector": -8.810857, "consider": -9.216322, "considering": -9.909470, "consistency.": -9.909470, "constant": -8.810857, "constantly": -9.909470, "constants": -9.216322, "contents": -8.810857, "contiguous": -9.909470, "controlled": -9.909470, "controls": -8.523175, "conversion": -9.909470, "convert": -9.909470, "coordinates": -9.909470, "copied": -9.216322, "copies": -7.019098, "copy": -6.773975, "copyright": -7.712245, "cordic": -8.523175, "cordic_a": -9.909470, "cordic_delta": -9.216322, "cordic_dx": -9.909470, "cordic_ret": -9.909470, "corners": -9.909470, "correlate": -9.216322, "count": -8.523175, "counter": -9.909470, "counters": -9.909470, "cstep": -9.909470, "ctra": -8.300032, "ctra_": -9.909470, "ctrb": -8.523175, "ctrb_": -8.810857, "current": -8.810857, "currently": -8.523175, "cursor": -7.712245, "custom": -9.216322, "cyan": -8.810857, "cycle": -9.909470, "cycles": -8.523175, "d": -6.690594, "da": -9.909470, "damage": -9.909470, "danger": -9.909470, "dark": -9.216322, "data": -6.038269, "db": -9.216322, "de": -9.909470, "dead": -9.909470, "deal": -7.712245, "dec": -8.810857, "decf": -9.909470, "decimal": -8.300032, "decoding": -9.909470, "decx": -9.909470, "def": -9.216322, "default": -9.909470, "define": -7.606885, "definition": -7.830028, "degree": -9.909470, "delta": -7.606885, "deltas": -9.909470, "denotes": -9.909470, "descriptions": -9.216322, "dest_ptr": -8.300032, "destination": -9.216322, "detecting": -9.909470, "determine": -8.523175, "didn": -9.909470, "digits": -6.818427, "diode": -9.216322, "dira": -8.810857, "dira_": -8.810857, "dirb_": -9.909470, "direction": -9.216322, "directions": -9.909470, "directly": -9.909470, "disable": -7.963559, "disabled": -8.810857, "discharged": -9.909470, "display": -6.731416, "display_base": -9.216322, "displayed": -9.909470, "distribute": -7.712245, "divide": -8.810857, "divider": -9.909470, "divider.": -9.909470, "djnz": -6.731416, "dlsb": -9.216322, "dmask": -8.523175, "do": -6.613633, "documentation": -7.712245, "does": -9.216322, "dominant": -9.216322, "done": -8.810857, "double": -8.810857, "doubles": -9.909470, "draw": -8.300032, "drawn": -9.909470, "driven": -9.216322, "driver": -7.076256, "driver.": -8.810857, "driving": -9.909470, "drop": -9.909470, "during": -9.216322, "duty": -9.216322, "dx": -6.913737, "dy": -7.201419, "each": -7.511574, "efficient": -9.216322, "elapses": -9.909470, "electrical": -9.909470, "else": -8.810857, "elseif": -9.216322, "empty": -9.216322, "enable": -8.300032, "enabled": -9.216322, "end": -7.424563, "endpoint": -9.909470, "enter": -9.909470, "entire": -9.909470, "entries": -9.909470, "entry": -9.909470, "entry...": -9.909470, "equal": -9.909470, "error": -9.909470, "evaluate": -9.909470, "even": -9.909470, "exactly": -9.909470, "example": -8.810857, "example.": -9.909470, "exceed": -9.909470, "except": -9.909470, "executing": -9.909470, "exit": -8.300032, "expand": -8.810857, "expansion": -7.830028, "expressed": -9.909470, "extended": -9.909470, "extract": -8.523175, "f": -6.577265, "fa": -9.216322, "factor": -8.523175, "false": -7.963559, "farc": -6.195898, "fcolor": -8.523175, "feed": -9.909470, "feedback": -9.216322, "feeds": -9.909470, "ferrous": -9.909470, "ff": -9.216322, "field": -7.830028, "fields": -9.216322, "file": -7.712245, "files": -7.712245, "fill": -8.810857, "fill_": -9.909470, "final": -8.300032, "finali": -9.216322, "finalize": -9.909470, "finish": -9.216322, "finished": -8.810857, "first": -7.712245, "fit": -9.216322, "fixed": -9.909470, "flag": -8.300032, "flags": -9.909470, "flicker": -8.117710, "fline": -5.432133, "fm": -8.117710, "fm_offset": -8.300032, "following": -7.712245, "follows": -8.523175, "font": -8.810857, "fontb": -9.909470, "fontb_ret": -9.909470, "fontptr": -9.909470, "fontxy_ret": -9.909470, "for": -5.619010, "fore": -8.810857, "form": -7.963559, "formant": -8.523175, "format": -9.909470, "four": -7.830028, "fpal": -9.216322, "fphase": -8.523175, "fraction": -9.909470, "fractions": -9.909470, "frame": -7.424563, "frame_buffer_longs": -9.216322, "frame_buffers": -9.216322, "frame_bytes": -9.909470, "frame_cnt": -9.216322, "frame_index": -8.810857, "frame_longs": -8.810857, "frame_ptr": -8.117710, "frames": -9.216322, "free": -7.511574, "frees": -8.300032, "frequency": -6.731416, "frequency.": -9.216322, "frication": -9.216322, "from": -6.818427, "front": -8.523175, "frqa": -8.810857, "frqa_": -8.810857, "frqb": -9.216322, "full": -8.523175, "furnished": -7.712245, "fx": -9.909470, "ga": -8.300032, "gaps.": -9.909470, "gauge": -9.909470, "generate": -9.909470, "generation": -9.216322, "generic": -9.909470, "get": -6.508272, "gets": -9.909470, "glottal": -9.216322, "go": -9.909470, "good": -8.300032, "gotoxy": -9.909470, "gp": -9.216322, "gphase": -8.810857, "gr.clear": -9.909470, "gr.color": -9.909470, "gr.colorwidth": -8.523175, "gr.copy": -9.216322, "gr.finish": -9.216322, "gr.line": -8.810857, "gr.plot": -8.810857, "gr.setup": -9.216322, "gr.start": -9.216322, "gr.stop": -9.909470, "gr.text": -9.909470, "gr.textmode": -9.909470, "gr.width": -9.909470, "granted": -7.712245, "graphics": -8.523175, "great": -9.909470, "greater": -9.909470, "green": -9.909470, "ground.": -9.909470, "group": -7.963559, "h": -6.773975, "hFFFFFFFF": -9.909470, "half": -9.216322, "handle": -9.909470, "happens": -9.909470, "has": -8.523175, "have": -9.909470, "hb": -9.216322, "hc": -9.909470, "head": -9.909470, "here": -9.909470, "hereby": -7.712245, "hex": -8.810857, "hexadecimal": -8.523175, "hf": -9.216322, "hhalf": -9.216322, "hide": -9.909470, "high": -7.830028, "hmask": -9.909470, "ho": -9.909470, "home": -8.523175, "horizontal": -6.864947, "hrest": -9.216322, "hsync": -8.300032, "hsync_ret": -9.909470, "hub": -9.909470, "human": -9.909470, "hv": -8.300032, "hvbase": -8.300032, "hx": -8.300032, "i": -6.690594, "ibin": -9.909470, "id": -9.216322, "ie": -9.909470, "if": -5.977644, "if_c": -6.298552, "if_c_and_nz": -9.909470, "if_c_or_nz": -9.909470, "if_nc": -7.201419, "if_nc_and_z": -9.216322, "if_nc_or_z": -9.909470, "if_never": -9.909470, "if_nz": -7.019098, "if_nz_and_c": -8.523175, "if_nz_and_nc": -9.909470, "if_z": -7.511574, "if_z_eq_c": -9.909470, "ignore": -9.216322, "ihex": -9.909470, "image": -9.216322, "immediately": -9.909470, "in": -5.920486, "ina": -8.810857, "included": -7.712245, "including": -7.712245, "increases": -9.909470, "increment": -9.909470, "incremented": -9.909470, "index": -8.300032, "indicate": -9.216322, "indicated": -9.216322, "indicating": -9.909470, "init": -9.216322, "initial": -8.117710, "initialization": -9.216322, "initially": -9.216322, "input": -9.216322, "insert": -9.216322, "inside": -9.216322, "instances": -9.909470, "instead": -9.909470, "instruction": -9.216322, "insure": -9.216322, "integer": -9.216322, "integers": -9.909470, "interlace": -6.913737, "interlaced": -8.300032, "interpolation": -9.909470, "into": -6.965031, "introduced": -9.909470, "invisble": -9.909470, "invisible": -7.830028, "is": -5.997447, "isolate": -9.909470, "it": -7.830028, "iterate": -8.810857, "iterations": -9.909470, "itself": -9.909470, "j": -9.216322, "jmp": -6.731416, "jmpret": -8.300032, "jump": -9.909470, "jumps": -8.117710, "just": -9.216322, "justify": -8.523175, "justx": -9.216322, "justy": -8.810857, "k": -9.909470, "keep": -9.216322, "key": -8.523175, "keyboard": -8.810857, "keypad": -8.523175, "keypad.": -9.909470, "keypress": -9.909470, "keystate": -9.216322, "l": -9.216322, "language": -9.216322, "last": -7.830028, "lastrow": -9.216322, "later": -8.117710, "launched": -9.909470, "lazy": -9.909470, "lcd": -9.216322, "lcd.backLight": -9.909470, "lcd.clrln": -9.909470, "lcd.cls": -9.909470, "lcd.cursor": -9.909470, "lcd.custom": -9.909470, "lcd.displayOff": -9.909470, "lcd.displayOn": -9.909470, "lcd.finalize": -9.909470, "lcd.gotoxy": -9.909470, "lcd.home": -9.909470, "lcd.init": -9.909470, "lcd.putc": -9.909470, "lcd.str": -7.830028, "leading": -9.909470, "least": -7.270412, "leaves": -9.909470, "leds": -8.810857, "left": -7.424563, "leftmost": -9.909470, "length": -8.523175, "less": -8.300032, "level": -8.117710, "levels": -9.909470, "lfsr": -9.909470, "lfsr_taps": -9.216322, "like": -8.523175, "limit": -8.523175, "limitation": -7.712245, "line": -6.412962, "line/plot": -9.909470, "line_": -9.909470, "lineadd": -8.523175, "linear": -9.216322, "linechange": -9.909470, "lineinc": -8.810857, "linepd": -9.909470, "linepd_ret": -9.909470, "linerot": -8.300032, "lines": -6.731416, "lines_minus_": -9.909470, "list": -9.909470, "live": -9.216322, "lntsc": -8.810857, "load": -8.810857, "loaded": -8.810857, "loading": -9.216322, "location": -9.909470, "lock": -9.909470, "log": -9.216322, "long": -5.105449, "longer": -9.909470, "longfill": -8.810857, "longmove": -8.810857, "longs": -7.201419, "look": -9.216322, "look_ret": -9.909470, "looks": -9.909470, "lookup": -9.909470, "lookupz": -9.216322, "loop": -7.270412, "low": -8.300032, "lower": -9.909470, "lowest": -9.909470, "lpal": -8.810857, "lsb": -9.909470, "ltab": -9.909470, "luminance": -9.216322, "m": -7.511574, "made": -9.216322, "magnitude": -9.216322, "make": -7.019098, "makes": -9.909470, "manipulate": -9.909470, "manually": -9.909470, "many": -9.909470, "map": -9.909470, "mask": -7.076256, "masks": -9.909470, "master": -9.216322, "matrix": -9.909470, "max": -8.117710, "may": -8.117710, "measure": -9.909470, "memory": -9.216322, "merge": -7.712245, "mesh": -9.909470, "metal": -8.810857, "method": -9.216322, "metrics": -9.909470, "might": -9.909470, "min": -8.523175, "minimize": -9.216322, "minimum": -9.216322, "mins": -9.909470, "minst": -8.810857, "mirror": -9.909470, "miscellaneous": -9.216322, "mix": -9.216322, "mixing": -9.216322, "mode": -7.963559, "modify": -7.712245, "modulated": -9.909470, "modulation": -8.523175, "modulator": -9.216322, "monitors": -9.909470, "more": -5.409660, "motion": -9.216322, "mov": -4.872517, "movd": -7.606885, "move": -9.216322, "moves": -9.909470, "movi": -8.810857, "movs": -7.712245, "ms": -8.523175, "msb": -9.216322, "mult": -9.216322, "mult_ret": -9.909470, "mult_step": -9.909470, "mult_steps": -9.909470, "multiplier": -8.810857, "multiply": -7.830028, "multiply_ret": -9.216322, "must": -7.019098, "muxc": -8.300032, "muxnc": -8.300032, "n": -8.523175, "na": -9.216322, "nap": -8.300032, "nap_ret": -9.909470, "napshr": -8.810857, "nasal": -9.216322, "near": -9.909470, "necessary": -9.909470, "need": -9.909470, "needs": -9.909470, "neg": -9.216322, "neg_pin": -8.117710, "negate": -9.216322, "negated": -9.909470, "negative": -9.909470, "negc": -9.909470, "negnz": -8.810857, "network": -9.909470, "new": -8.117710, "newline": -8.810857, "next": -7.136881, "nf": -9.216322, "nibble": -8.523175, "no": -7.712245, "nobl": -9.909470, "nobp": -9.909470, "nofl": -9.909470, "nofp": -9.909470, "noise": -8.810857, "non": -8.810857, "normal": -9.909470, "not": -7.830028, "not.": -9.909470, "notice": -7.019098, "now": -8.810857, "nr": -9.909470, "ntsc/pal": -8.810857, "num.bin": -9.909470, "num.dec": -9.909470, "num.decf": -9.909470, "num.decx": -9.909470, "num.hex": -9.909470, "num.ibin": -9.909470, "num.ihex": -9.909470, "number": -6.613633, "nx": -8.523175, "nz": -8.810857, "object": -7.963559, "objects": -9.909470, "obtaining": -7.712245, "of": -5.227338, "off": -7.830028, "off/on": -8.810857, "off/visible/invisible": -9.909470, "offset": -7.270412, "ohm": -7.606885, "okay": -7.606885, "on": -7.424563, "one": -8.300032, "only": -5.782335, "optimize": -9.216322, "or": -6.148270, "order": -9.909470, "org": -9.216322, "origin": -9.909470, "other": -9.909470, "others": -9.909470, "otherwise": -9.909470, "out": -6.731416, "outa": -9.216322, "output": -7.424563, "outputting": -8.523175, "over": -9.216322, "p": -7.712245, "pF": -9.909470, "pace": -8.810857, "padded": -9.216322, "pair": -9.909470, "pairs": -9.909470, "pal": -9.216322, "palette": -9.216322, "par": -6.913737, "par_curr": -8.810857, "par_keys": -9.909470, "par_next": -9.216322, "par_present": -9.909470, "par_step": -9.909470, "par_tail": -9.909470, "paramcount": -9.909470, "parameter": -7.270412, "parameters": -7.019098, "parameters.": -9.216322, "parent": -9.909470, "particular": -9.909470, "pass": -8.300032, "passes": -8.810857, "past": -9.909470, "pattern": -8.810857, "pause": -9.909470, "pcolor": -8.300032, "pen": -9.909470, "per": -8.523175, "percentage": -8.810857, "perform": -9.216322, "performed": -9.909470, "period": -9.909470, "permission": -7.712245, "permit": -7.712245, "person": -7.712245, "persons": -7.712245, "phase": -9.216322, "phaseflip": -8.523175, "phasemask": -9.216322, "physical": -9.909470, "pin": -7.076256, "pink": -9.909470, "pins": -6.577265, "pins.": -9.909470, "pitch": -8.300032, "pix": -8.810857, "pixarc_": -9.909470, "pixdef_ptr": -8.810857, "pixel": -6.148270, "pixel_passes": -8.523175, "pixel_width": -9.216322, "pixelgroup": -9.216322, "pixelgroup**": -9.216322, "pixelgroups": -9.216322, "pixels": -7.136881, "pixrot": -8.810857, "pll": -8.300032, "pllmax": -9.909470, "pllmin": -9.909470, "plot": -7.076256, "plot_": -9.216322, "plotd": -9.909470, "pmax": -9.216322, "pmin": -9.909470, "point": -6.864947, "pointer": -7.270412, "pointers": -9.216322, "points": -9.216322, "polarity": -9.909470, "polarx": -9.909470, "polygon": -9.909470, "polygons": -9.909470, "porch": -7.712245, "portions": -7.712245, "pos/neg": -8.523175, "pos_pin": -7.963559, "position": -7.712245, "positive": -9.909470, "power": -8.810857, "ppppppppppcccc": -9.216322, "pppttt": -9.909470, "practical": -9.216322, "pre": -9.909470, "preceding": -9.216322, "prepare": -9.909470, "preset": -9.909470, "pressed": -8.810857, "pressed.": -9.909470, "presses": -9.909470, "prevent": -9.909470, "primitives": -9.909470, "print": -9.216322, "printable": -9.909470, "processes": -9.909470, "produce": -9.909470, "produced": -9.909470, "product": -9.909470, "progressive": -9.216322, "proportional": -9.909470, "ptr": -8.300032, "publish": -7.712245, "pull": -9.216322, "pulses": -9.216322, "putc": -9.909470, "pwidth": -8.810857, "px": -7.270412, "py": -7.511574, "q": -9.909470, "quadrant": -8.810857, "queue": -9.216322, "r": -8.117710, "radii": -8.810857, "radius": -9.216322, "range": -9.216322, "ranges": -9.909470, "rasterized": -9.909470, "rate": -8.117710, "rather": -9.909470, "ratio": -9.909470, "rcl": -9.216322, "rd": -9.909470, "rdbyte": -8.810857, "rdlong": -7.136881, "rdword": -7.606885, "read": -6.542174, "reading": -9.909470, "ready": -7.606885, "real": -9.216322, "really.": -9.909470, "reason": -9.909470, "reasons": -9.909470, "receive": -9.909470, "receive_ack_ret": -9.909470, "receive_bit": -9.909470, "receive_ret": -9.909470, "receives": -9.909470, "recipes": -9.909470, "recommended": -9.216322, "red": -9.216322, "reduces": -9.216322, "reg": -8.300032, "register": -9.909470, "registers": -9.216322, "relative": -9.216322, "release": -9.909470, "reload": -9.909470, "reloaded": -9.216322, "remain": -9.909470, "repeat": -7.019098, "replaced": -9.909470, "replacements": -9.909470, "repoint": -9.216322, "reported": -8.810857, "reports": -9.216322, "required": -8.523175, "requirement": -9.216322, "requires": -8.810857, "res": -5.420833, "reserved": -8.810857, "reserves": -9.216322, "reset": -7.270412, "reside": -9.909470, "resistor": -8.523175, "resistors": -8.523175, "resonate": -7.830028, "respectively": -9.909470, "restriction": -7.712245, "result": -8.117710, "resulting": -9.909470, "ret": -7.076256, "retain": -8.810857, "return": -7.201419, "returned.": -9.909470, "returns": -8.300032, "rev": -9.909470, "right": -7.606885, "right/left": -9.216322, "rights": -7.712245, "rol": -9.909470, "room": -9.909470, "ror": -8.523175, "rotate": -9.216322, "rotation": -8.810857, "round": -9.216322, "round/square": -9.909470, "routine": -9.909470, "routines.": -9.909470, "row": -8.523175, "rows": -8.810857, "s": -6.864947, "safe": -9.909470, "same": -7.963559, "sample": -9.216322, "sample_ptr": -9.909470, "samples": -9.909470, "sar": -7.830028, "saturated": -9.909470, "saturation": -9.909470, "save": -9.909470, "saves": -9.216322, "scale": -7.830028, "scales": -9.909470, "scan": -7.963559, "scancode": -9.216322, "schemes": -9.909470, "screen": -7.344520, "screensize": -8.523175, "scrlock/capslock/numlock": -9.909470, "scroll": -9.909470, "section": -8.523175, "sections": -9.909470, "see": -9.216322, "select": -7.712245, "selected": -9.909470, "selects": -8.523175, "sell": -7.712245, "sensibly": -9.909470, "sensing": -9.909470, "sensitive": -9.909470, "serial": -9.909470, "serves": -9.909470, "set": -5.977644, "set/clear": -9.909470, "set_attenuation": -9.909470, "set_pace": -9.216322, "setcolors": -9.216322, "setcommand": -7.076256, "setd_ret": -9.909470, "sets": -8.810857, "setting": -9.216322, "setup": -8.523175, "setup_": -9.909470, "shall": -7.712245, "shape": -9.909470, "shape/width": -9.216322, "shift": -7.511574, "shift/ctrl/alt/win": -9.909470, "shifted": -9.909470, "shifts": -8.523175, "shl": -6.864947, "short.": -9.909470, "should": -9.909470, "shr": -6.731416, "shy": -9.909470, "sides": -9.909470, "sigma": -8.810857, "signal": -7.830028, "signals": -9.909470, "signed": -8.523175, "since": -9.909470, "sine": -7.963559, "sine/cosine": -9.909470, "sine_": -8.810857, "sine_table": -9.909470, "single": -9.216322, "situation": -9.909470, "size": -8.300032, "skip": -8.300032, "slice": -7.963559, "slices": -8.523175, "slices_ptr": -9.216322, "slicesptr": -9.909470, "slight": -9.909470, "slightly": -9.909470, "small": -9.909470, "snag": -9.909470, "sntsc": -8.810857, "so": -7.511574, "software": -7.712245, "solid": -9.909470, "some": -8.810857, "something": -9.909470, "somewhat": -9.909470, "source": -9.216322, "space": -9.909470, "spaces": -9.909470, "spal": -8.810857, "special": -9.909470, "specific": -9.909470, "specified": -9.909470, "sprite": -7.270412, "sprites": -9.909470, "square": -9.909470, "standards.": -9.909470, "start": -7.136881, "starting": -9.909470, "starts": -8.523175, "startup": -9.216322, "stat": -8.117710, "state": -9.216322, "state.": -9.909470, "states": -9.909470, "status": -7.201419, "step": -7.511574, "step_acc": -8.810857, "step_size": -8.300032, "stepframe": -9.909470, "stepi": -9.909470, "steps": -7.712245, "stepsize": -9.216322, "stop": -7.712245, "store": -9.909470, "str": -8.810857, "strAddr": -9.216322, "stretch": -9.909470, "string": -7.830028, "string_ptr": -8.117710, "stringptr": -8.810857, "strip": -8.810857, "strsize": -9.216322, "sub": -7.424563, "subcarrier": -8.810857, "subject": -7.712245, "sublicense": -7.712245, "subroutines": -9.909470, "subsequent": -9.909470, "substantial": -7.712245, "subtract": -9.909470, "subx": -9.909470, "suggested": -9.909470, "sum": -7.963559, "sumc": -8.523175, "sumnc": -7.963559, "superfield": -9.909470, "superframe": -9.216322, "supply": -9.909470, "sure": -8.117710, "swap": -9.216322, "sweep": -9.216322, "sx": -8.523175, "sy": -8.300032, "sync": -7.606885, "sync_high": -8.810857, "sync_scale": -9.216322, "synthesizes": -9.909470, "t": -4.292699, "tab": -8.810857, "table": -7.712245, "tables": -9.909470, "task": -9.216322, "taskptr": -8.810857, "taskret": -8.523175, "tasks": -8.117710, "tccip": -8.810857, "temps": -9.909470, "terminal": -8.523175, "terminated": -8.523175, "terms": -7.712245, "test": -6.271883, "text": -7.712245, "text_": -9.909470, "text_just": -9.909470, "text_sp": -9.909470, "text_xs": -9.909470, "text_ys": -9.909470, "textarc": -9.909470, "textarc_": -9.216322, "textmode_": -9.909470, "textsp": -9.216322, "textsx": -8.810857, "textsy": -9.216322, "than": -8.300032, "that": -7.511574, "the": -4.939656, "then": -8.300032, "they": -9.216322, "this": -6.651373, "through": -9.909470, "tick": -9.216322, "ticks": -7.511574, "tihv": -9.909470, "tile": -6.195898, "tileheight": -8.523175, "tiles": -6.965031, "time": -7.963559, "time.": -9.216322, "timeout": -9.909470, "times": -8.810857, "tiny": -9.909470, "tjz": -7.830028, "to": -4.611152, "to/from": -9.909470, "toggle": -9.909470, "toggling": -9.909470, "top": -7.606885, "tract": -7.424563, "tract_ptr": -8.810857, "transition": -9.909470, "transmit_bit": -9.909470, "transmit_ret": -9.909470, "tri": -9.216322, "triangle": -8.810857, "true": -8.300032, "try": -9.216322, "tune": -9.216322, "tuned": -9.909470, "turned": -9.216322, "tv": -9.216322, "tv.start": -9.909470, "tv.stop": -9.216322, "tv_auralcog": -9.909470, "tv_broadcast": -8.523175, "tv_colors": -9.216322, "tv_count": -9.216322, "tv_enable": -9.216322, "tv_hc": -9.909470, "tv_ho": -8.300032, "tv_ht": -8.300032, "tv_hx": -8.300032, "tv_mode": -9.216322, "tv_pins": -8.300032, "tv_screen": -8.300032, "tv_status": -8.523175, "tv_status.": -9.909470, "tv_vo": -9.216322, "tv_vt": -8.810857, "tv_vx": -9.216322, "tvparams": -9.909470, "tvparams_pins": -9.909470, "tvptr": -8.810857, "two": -7.963559, "txbyte": -9.216322, "type": -8.523175, "typical": -9.909470, "uncommon": -9.909470, "underneath": -9.909470, "understanding": -9.909470, "undisturbed": -9.216322, "unknown": -9.216322, "unless": -9.216322, "unsigned": -8.810857, "until": -8.810857, "up": -8.523175, "up/down": -9.216322, "update": -7.963559, "updated": -9.909470, "upper": -9.216322, "usage": -9.909470, "use": -6.864947, "use.": -7.712245, "used": -7.712245, "useful": -9.216322, "uses": -9.216322, "using": -9.909470, "v": -7.076256, "valid": -9.216322, "value": -5.958226, "values": -9.216322, "values.": -9.216322, "variable": -9.909470, "variables": -8.810857, "vary": -9.909470, "vb": -9.216322, "vc": -9.909470, "vcfg": -9.216322, "vco": -8.810857, "vec": -9.909470, "vecangle": -8.300032, "vecarc": -9.216322, "vecarc_": -9.909470, "vecdef": -9.909470, "vecdef_ptr": -8.300032, "vecscale": -8.300032, "vector": -7.424563, "vert": -9.909470, "vertical": -6.542174, "vf": -9.909470, "vga_colors": -9.216322, "vga_enable": -8.810857, "vga_hb": -9.216322, "vga_hd": -9.216322, "vga_hf": -9.216322, "vga_ho": -9.216322, "vga_hs": -9.909470, "vga_ht": -8.810857, "vga_hx": -8.810857, "vga_mode": -8.810857, "vga_pins": -9.909470, "vga_rate": -9.216322, "vga_screen": -9.909470, "vga_status": -9.909470, "vga_status.": -9.909470, "vga_vb": -9.216322, "vga_vd": -9.216322, "vga_vf": -9.216322, "vga_vo": -8.523175, "vga_vs": -9.909470, "vga_vt": -8.117710, "vga_vx": -8.523175, "vgaptr": -8.810857, "via": -8.300032, "vibrato": -8.810857, "video": -7.963559, "vinv": -9.216322, "visibility": -9.909470, "visible": -7.963559, "visual": -9.909470, "vmask": -9.909470, "vo": -9.909470, "vocal": -7.606885, "voltage": -8.117710, "vp": -8.810857, "vphase": -9.216322, "vr": -9.909470, "vrep": -9.216322, "vscl": -7.424563, "vsync": -8.117710, "vsync_high": -9.909470, "vvis": -9.216322, "vx": -9.216322, "w": -7.201419, "w/ret": -9.909470, "wait": -8.117710, "wait_c": -9.909470, "waitcnt": -8.810857, "waitvid": -8.810857, "was": -9.216322, "way": -9.909470, "wc": -5.902136, "wcond": -8.810857, "were": -9.909470, "when": -8.523175, "where": -9.909470, "which": -7.136881, "while": -8.300032, "white": -9.216322, "whole": -9.216322, "whom": -7.712245, "wide": -8.810857, "width": -7.424563, "width_": -9.909470, "will": -7.424563, "with": -7.830028, "within": -8.300032, "without": -6.965031, "wloop": -9.909470, "word": -4.552883, "wordfill": -9.216322, "words": -8.300032, "work": -9.216322, "work.": -9.909470, "works": -9.909470, "would": -9.909470, "wr": -9.216322, "wrapper": -9.909470, "write": -6.298552, "writes": -9.909470, "wrlong": -8.117710, "wrword": -9.909470, "wtab": -9.909470, "wz": -6.864947, "x": -4.872517, "x_chr": -9.216322, "x_limit": -9.216322, "x_origin": -9.216322, "x_scale": -8.523175, "x_screen": -9.909470, "x_spacing": -8.523175, "x_tiles": -7.511574, "xa": -5.041935, "xb": -5.432133, "xlongs": -8.523175, "xloop": -9.909470, "xor": -7.830028, "xorigin": -9.216322, "xpixel": -9.216322, "xr": -7.963559, "xwords": -9.909470, "xxxxxxxx": -9.216322, "xy": -9.909470, "y": -5.227338, "y_chr": -8.300032, "y_clear": -9.216322, "y_clear_longs": -9.216322, "y_limit": -8.810857, "y_max": -8.810857, "y_offset": -9.216322, "y_origin": -8.523175, "y_scale": -8.810857, "y_screen": -8.523175, "y_screen_bytes": -9.216322, "y_scroll": -9.216322, "y_scroll_longs": -8.523175, "y_spacing": -8.810857, "y_tiles": -7.344520, "ya": -5.274741, "yaA": -7.019098, "yaB": -8.523175, "yaC": -7.424563, "yaD": -8.523175, "yaE": -9.909470, "yaF": -9.909470, "yb": -5.831932, "ybA": -7.830028, "ybB": -9.909470, "ybC": -6.443734, "ybD": -9.909470, "ybE": -9.909470, "ybF": -9.909470, "yellow": -9.909470, "yline": -9.909470, "ylongs": -8.117710, "yloop": -9.216322, "yorigin": -8.523175, "you": -7.963559, "your": -9.216322, "yr": -7.963559, "ywords": -9.909470, "z": -8.523175, "zero": -7.606885, "zeroed": -9.909470, "{": -6.577265, "|": -6.818427, "||": -8.300032, "}": -6.651373, "~": -7.019098, "°": -7.201419, "µ": -9.216322, "“": -9.909470, "─": -1.626987, "│": -4.376080, "┌": -7.424563, "┐": -7.424563, "└": -7.344520, "┘": -7.344520, "├": -7.606885, "┣": -9.909470, "┤": -7.606885, "┬": -8.810857, "┳": -8.523175, "┴": -8.810857, "\uf018": -9.216322, "\uf0a6": -9.216322, "\uf0a7": -9.216322, "\uf0a9": -8.810857, "\uf0aa": -8.523175, "\uf0ab": -9.216322, "\uf0b6": -9.909470, "\uf0b7": -9.909470, "\uf0b8": -9.909470, "\uf0bc": -9.909470, "\uf0bd": -8.523175, "\uf0be": -8.523175, "\ufeff": -7.606885, }, "Protocol Buffer": map[string]float64{ ";": -1.765784, "=": -1.765784, "AddressBook": -4.330733, "HOME": -3.637586, "MOBILE": -4.330733, "Person": -3.637586, "PhoneNumber": -3.637586, "PhoneType": -3.637586, "WORK": -4.330733, "[": -4.330733, "]": -4.330733, "default": -4.330733, "email": -4.330733, "enum": -4.330733, "id": -4.330733, "int": -4.330733, "java_outer_classname": -4.330733, "java_package": -4.330733, "message": -3.232121, "name": -4.330733, "number": -4.330733, "option": -3.637586, "optional": -3.637586, "package": -4.330733, "person": -4.330733, "phone": -4.330733, "repeated": -3.637586, "required": -3.232121, "string": -3.232121, "tutorial": -4.330733, "type": -4.330733, "{": -2.944439, "}": -2.944439, }, "Public Key": map[string]float64{ "+": -2.494510, ",": -7.048386, "-": -3.287186, "/": -5.949774, "/DXOT": -7.048386, "/Ejhwq": -7.048386, "/L": -7.048386, "/QGPMG": -7.048386, "/SrLtpOtHSkKtJqU": -7.048386, "/U": -7.048386, "/bYzbve": -7.048386, "/cgI": -7.048386, "/i": -7.048386, "/nLUr": -7.048386, "/qhoZFQMvHoWpWTRTLPeNtBsKD": -6.355239, "/uxzY": -7.048386, ":": -5.662092, "<sun.strongswan.org>": -7.048386, "=": -4.563480, "A": -5.256627, "A/": -7.048386, "AA": -7.048386, "AAAAB": -5.438948, "AAAEEANRAVMn": -7.048386, "AACgkQvY": -7.048386, "ADD": -7.048386, "AGTRney/jpp": -7.048386, "ANKZHzoUkYSmKDS/JQDXgCgKC": -7.048386, "AS": -7.048386, "AUt": -6.355239, "AXJ": -7.048386, "AZfEmNe": -7.048386, "AdgfeFaMvSzTaiZfrB": -7.048386, "Aet": -7.048386, "AfezlBEiQKlJe": -7.048386, "Ag": -7.048386, "AgiMMuZAMebfOe": -7.048386, "AgimP": -7.048386, "Al": -7.048386, "AlOe": -7.048386, "AlOeONMCGwMHCwkIBwMCAQYVCAIJCgsEFgIDAQIeAQIXgAAKCRC": -7.048386, "Am": -7.048386, "ApAzhMkYH": -7.048386, "AwIGFQgCCQoLBBYCAwECHgECF": -7.048386, "B": -5.949774, "BAUZR": -7.048386, "BBaVYy": -7.048386, "BDer": -7.048386, "BEADE": -7.048386, "BEGIN": -6.355239, "BLOCK": -5.662092, "BQPuE": -7.048386, "BUnv/iXd": -7.048386, "Bc/aYYsEJktnZD": -7.048386, "Bits/KeyID": -7.048386, "BjHJU": -7.048386, "BsplfZHwsYKW": -7.048386, "BuCeyPYC": -6.355239, "C": -5.438948, "CFcrk": -7.048386, "CGwwACgkQvY": -7.048386, "CIRs": -7.048386, "CPcdV/YQUt": -7.048386, "CR": -7.048386, "CRwkiWk": -7.048386, "CVaPWlrj": -7.048386, "CYat": -7.048386, "CaCb": -7.048386, "Cnf": -7.048386, "CoUbIhv": -7.048386, "Comment": -7.048386, "CtATYh": -7.048386, "CufYTdKVk": -7.048386, "Cuj": -7.048386, "CxHUMxYRLKHGvpX": -7.048386, "Cyn": -7.048386, "D": -6.355239, "D/": -7.048386, "D/kBzMpbQeoZ": -7.048386, "DEqcjrdoGPQ": -7.048386, "DHF": -7.048386, "DM": -7.048386, "DPZhdZaDub": -7.048386, "DQECnEHFNczBxSrhT": -7.048386, "DQv": -7.048386, "DRVPRxPZ/": -7.048386, "DVobfWfK": -7.048386, "DYyAFGH/liKmt": -7.048386, "DZy": -7.048386, "Date": -7.048386, "Di": -7.048386, "DiVH": -7.048386, "DmRw/": -7.048386, "DoO": -7.048386, "DyMpILjS": -7.048386, "E": -5.949774, "EAAAABJQAAAIEAiPWx": -7.048386, "EAAAADAQABAAAAgQCw": -6.355239, "EAAAADAQABAAABAQConqV": -7.048386, "EB": -7.048386, "EDDMwrraaTwlPp": -7.048386, "EGAECAAkFAlJJNS": -7.048386, "EJpOw": -7.048386, "END": -6.355239, "EPHZ": -7.048386, "EUkk": -7.048386, "Ec": -7.048386, "Eh": -7.048386, "Emv": -7.048386, "EzPVd": -7.048386, "G": -6.355239, "GE": -7.048386, "GMgc": -7.048386, "GSjdmo": -7.048386, "GUcdUfC": -7.048386, "GWK": -7.048386, "GYSkEIj": -7.048386, "GZq": -7.048386, "GdaTEnxl": -7.048386, "Gg": -7.048386, "Gi": -7.048386, "GkS": -7.048386, "Go": -6.355239, "Gp": -7.048386, "GsXaVfzAXpR": -7.048386, "Gw": -7.048386, "H": -5.438948, "H/qON": -7.048386, "HBxfYaGhLqtQ": -7.048386, "HCrQKSfubKNL": -7.048386, "HFYCi": -7.048386, "HK": -7.048386, "HKLXuPO": -7.048386, "HKSA": -7.048386, "HKeOnQCXYLjtTgjsmlitRl/mwKpHkTuKOdt": -7.048386, "HMXxS": -7.048386, "HWqycqPtaavdcgsZAAAAFQC": -7.048386, "Hi": -7.048386, "Hs": -7.048386, "HxGXmDHkxQsm": -7.048386, "HyYum": -7.048386, "I": -5.102476, "IALxd": -7.048386, "ID": -7.048386, "IE": -7.048386, "IEGWp": -7.048386, "IFfwZXfQHndwsmByqZYydu": -7.048386, "INQbarngcPUfxKjGWRveGYYQtAf": -7.048386, "INbEbiyR": -7.048386, "IVJ": -7.048386, "IXDMsezJO": -6.355239, "IXEJ": -7.048386, "IZJArn": -7.048386, "IaC": -7.048386, "Ib": -7.048386, "IczK": -7.048386, "IkV/": -7.048386, "InNNyFPOu/rpppgURwQARAQAB": -7.048386, "IpmdLefLRTCvcZNsfqsHLc": -7.048386, "IrAEfmxahSLurkbf": -7.048386, "It": -6.355239, "Iv": -7.048386, "IviGSpdO": -7.048386, "Iwaoag/URVyB/BDJIuqjBpu": -7.048386, "IycbNdRJlEK": -6.355239, "J": -5.438948, "JAJUDBRBC": -7.048386, "JAjMEMAECAB": -7.048386, "JAjkEEwECACMF": -7.048386, "JIXc": -7.048386, "JIXm": -7.048386, "JJF": -7.048386, "JKjkmTnwAAAIBlm": -7.048386, "JLneY": -7.048386, "JMxry": -7.048386, "JQbaK": -7.048386, "JRz": -7.048386, "JY": -7.048386, "JZxBgvHEH": -7.048386, "JaTfn": -7.048386, "Jan": -7.048386, "JcRuhft": -7.048386, "Jd": -7.048386, "JmQcfPn": -7.048386, "JmkkiNtYGmbwiTKIIbR": -7.048386, "JrdAAUR": -7.048386, "JykVHTCIVbGPNeBlqw/LeGnDsXV": -7.048386, "JzQGdtYWlsLmNvbT": -6.355239, "K": -5.256627, "K/dlIdytm": -7.048386, "KAoQNQIXU": -7.048386, "KEAIhrOJq": -7.048386, "KER": -7.048386, "KEY": -5.662092, "KIlOuEpvGvZICprlb": -7.048386, "KJ": -7.048386, "KY": -7.048386, "Kb": -7.048386, "KdF": -7.048386, "KgYFlkxAAkHwIjv": -7.048386, "Ki": -7.048386, "KiCLx": -7.048386, "KkoHZzWAAbKqta": -7.048386, "Km": -7.048386, "KsxDONxkzu": -7.048386, "M": -5.949774, "M/BnnlnUmyz": -7.048386, "MAAACBAIXi": -7.048386, "MAbPt": -7.048386, "MB": -7.048386, "MBeKJO": -7.048386, "MGVV": -7.048386, "MIT": -6.355239, "MQTnNHQ": -7.048386, "MWpFH": -7.048386, "McdOTHt": -7.048386, "MfexLMdpZSkNsWp": -7.048386, "MiVBwouB": -7.048386, "Mj": -7.048386, "Ml": -7.048386, "MlO/htWQrI": -7.048386, "MlqUkjn": -7.048386, "Mon": -7.048386, "MpvhPYUhQzE": -7.048386, "MqNxeXyo": -7.048386, "MqTBPl": -7.048386, "MsL": -7.048386, "MtP": -7.048386, "MukxhraBt/": -7.048386, "MwjhmkuUAeKG": -7.048386, "N": -5.662092, "NAAdYU": -7.048386, "NAGrOgNRkr": -7.048386, "NP": -7.048386, "NUlfDzpvZK": -7.048386, "NXqH": -7.048386, "NYaQvSITKbcZ": -7.048386, "Na": -7.048386, "NgtmnMn": -7.048386, "Nm": -7.048386, "NmPk": -7.048386, "NnxcgIwo": -7.048386, "NtOkZdu": -7.048386, "NzaC": -5.438948, "O": -5.949774, "OG": -7.048386, "OGnWvHZzLzFEp": -7.048386, "OOC": -7.048386, "OU": -7.048386, "OVAa": -7.048386, "OVD": -7.048386, "OVNS": -7.048386, "OVvE": -7.048386, "OWtdvr": -7.048386, "OZw": -7.048386, "OaiGUoXB": -7.048386, "Oi": -7.048386, "OjGtu": -7.048386, "OjefQgGmerC": -7.048386, "OuQM": -7.048386, "Ow": -7.048386, "OxlkShpx": -7.048386, "OzyCDI": -7.048386, "PEB": -7.048386, "PGP": -5.662092, "PKpmrVG": -7.048386, "PRJIr": -7.048386, "PTlZ": -7.048386, "PUBLIC": -5.662092, "PUiPtwY": -7.048386, "PV": -7.048386, "PaQl": -7.048386, "PaXIjzHRQ": -7.048386, "PcMgyFM/weO": -7.048386, "Q": -5.949774, "QEQAK": -7.048386, "QIbAwYLCQgH": -7.048386, "QJ": -7.048386, "QK": -7.048386, "QQdbL": -7.048386, "QQtYgRViVH": -6.355239, "QRzVZ": -6.355239, "QY": -7.048386, "QbEN": -7.048386, "QkGDstkCAbUWIMnyzfYb": -7.048386, "Qkr": -7.048386, "Qu": -7.048386, "Qu/IHhR": -7.048386, "QvMYwsn": -7.048386, "QzU": -7.048386, "R": -7.048386, "RHmTSBreB": -7.048386, "RIMfLC": -7.048386, "RJodR": -7.048386, "RNVQ": -7.048386, "ROexWW": -7.048386, "RQ": -7.048386, "RQo": -7.048386, "RVrmjW": -7.048386, "RYaMAL": -7.048386, "RZwrUMOFUtdkEwZU": -7.048386, "Rajf": -7.048386, "RddQ": -7.048386, "RetYbLPza": -7.048386, "RgFMpaXKBBuiGwaatfo": -7.048386, "Rh": -7.048386, "RjMqAjSRFVZag": -7.048386, "RktBttkl": -7.048386, "RxUr": -7.048386, "S": -7.048386, "SAJvOeQo": -7.048386, "SAwGmQKUFHCddNaP": -7.048386, "SDNowf": -7.048386, "SFTM": -7.048386, "SGZgfkBxjD": -7.048386, "SGvB": -7.048386, "SIdAQbINlgJ/ELzDVMYiaQkI": -7.048386, "SJejgt": -7.048386, "SJiaoDIvVejvuIt": -7.048386, "SL": -7.048386, "SMXUe": -7.048386, "SMaHNm": -7.048386, "SXVL": -7.048386, "ShfNJM": -7.048386, "SkTzeWf": -7.048386, "SsDBbS": -7.048386, "St": -7.048386, "StkMCm": -7.048386, "Subject": -7.048386, "SxsggfcJfLZfyMtTsT": -7.048386, "T": -6.355239, "TBdcrx/NMoIQWJ": -7.048386, "TCmooI/kJh/cdZ": -7.048386, "TEWzd": -7.048386, "TEoWcqNLN": -7.048386, "THC": -7.048386, "TUxwKzxcKDKKezwkpfnxPkSMkuEspGRt/aZZ": -7.048386, "TVeD": -7.048386, "TWdMoz": -7.048386, "Td": -7.048386, "TgjkJYN": -7.048386, "TwZCvgYkbcBoprUstE": -7.048386, "TwsCqxq": -7.048386, "Txdp": -7.048386, "Type": -7.048386, "U": -7.048386, "Uq": -7.048386, "User": -7.048386, "UydHMbdTnQLs": -7.048386, "V": -5.662092, "VCZ": -7.048386, "VM": -7.048386, "VUYGO": -7.048386, "VUYjU": -7.048386, "VZYhrMLCT": -7.048386, "VcqO": -7.048386, "VjCk": -7.048386, "Vlwa": -7.048386, "VnVjf": -7.048386, "Vrv": -7.048386, "Vs": -7.048386, "Vs/sbrsupgeNGOTZOf": -7.048386, "VsYW": -7.048386, "VszV": -7.048386, "W": -5.662092, "WCb": -7.048386, "WDsGu": -7.048386, "WFi": -7.048386, "WGlRZ": -7.048386, "WHQBSZW": -7.048386, "WLe": -7.048386, "WM": -7.048386, "WQ": -7.048386, "WT/CljxEqP": -7.048386, "WUR": -7.048386, "WY": -7.048386, "WcokhBuKT": -7.048386, "WfY": -7.048386, "Wg/Gv": -7.048386, "Woyv": -7.048386, "WuR": -7.048386, "Ww": -7.048386, "X": -6.355239, "X/bcZKGc": -7.048386, "XG": -7.048386, "XK": -7.048386, "XM": -6.355239, "XOQhy": -7.048386, "XQ": -7.048386, "Xf": -7.048386, "Xh": -7.048386, "Xj/VzogQ/t": -7.048386, "Xqzy": -7.048386, "Xr": -7.048386, "XreJ": -7.048386, "XwY": -7.048386, "XzqfPlaeLpwotnSiKD": -7.048386, "Y": -6.355239, "YA": -7.048386, "YEeSDd": -7.048386, "YJa": -7.048386, "YP": -7.048386, "YT": -7.048386, "YT/gCa/": -7.048386, "YVWeXPREXg": -7.048386, "YY": -7.048386, "YayxAHyus/": -7.048386, "Yg": -7.048386, "YiXa": -7.048386, "YjzGGphH": -7.048386, "Yk": -7.048386, "Ykfj": -7.048386, "Yl": -7.048386, "Yl/": -7.048386, "YnLjNTrmryu": -7.048386, "Yngalc": -7.048386, "YouM": -7.048386, "YqIglkr": -7.048386, "YsTuy": -7.048386, "Yv": -7.048386, "Z": -5.949774, "ZHBA": -7.048386, "ZKPTEuZJM": -7.048386, "ZO": -7.048386, "ZPX": -7.048386, "ZPlUO": -7.048386, "ZTXE": -7.048386, "ZcjXLN/VgQ": -7.048386, "ZfA": -7.048386, "ZfqEJnCCEvOp": -7.048386, "Zgg": -7.048386, "ZpkQ": -6.355239, "ZuFE": -7.048386, "ZuUkKKG": -7.048386, "a": -5.662092, "aNulR": -7.048386, "aX": -6.355239, "aiVjEq/QCi": -7.048386, "aolToPznSTWX": -7.048386, "b": -6.355239, "bA": -7.048386, "bGTEvA": -7.048386, "bHTeJhS": -7.048386, "bHzyy": -7.048386, "bIcHhQ": -7.048386, "bKZaGCNyt": -7.048386, "bQ": -7.048386, "bQvUnlhbiBKYWNvYnMg": -7.048386, "bTzWo": -7.048386, "bX": -7.048386, "beOZnY": -7.048386, "bhwSFzrOlq": -7.048386, "bi": -7.048386, "bit": -7.048386, "bkJhaLB": -7.048386, "boQ": -6.355239, "by": -7.048386, "c": -5.662092, "cAFasQt": -7.048386, "cFLTN": -7.048386, "cH": -7.048386, "cJK": -7.048386, "cKt": -7.048386, "cOhQ": -7.048386, "cOn": -7.048386, "cfdRNaCrs": -7.048386, "ci": -7.048386, "cnlhbi": -6.355239, "crPcVCe": -7.048386, "created": -7.048386, "ctGDsV": -7.048386, "cuv": -7.048386, "cvjNaFY": -7.048386, "d": -7.048386, "dLEbEtX": -7.048386, "dPnVZ/o": -7.048386, "dQbU": -7.048386, "dSFx": -7.048386, "dTixBfRrZRSsj": -7.048386, "dZzdhKTUk": -7.048386, "de": -7.048386, "dgQDLr": -7.048386, "dhKwKmR": -7.048386, "dnT": -7.048386, "dnn": -7.048386, "doC": -7.048386, "dqhRZK": -7.048386, "dsD": -7.048386, "dss": -7.048386, "dvK/": -7.048386, "dvMJDHqkiuVG": -7.048386, "dzK": -7.048386, "dzPiUsz": -7.048386, "e": -5.662092, "eDpP": -7.048386, "eGuATcZJvlk": -7.048386, "eL": -7.048386, "ePfy": -7.048386, "eQaSeP": -7.048386, "eQnDHo": -7.048386, "eR": -7.048386, "eUYb": -7.048386, "eX": -7.048386, "eazjy": -7.048386, "ekqL": -7.048386, "eu": -7.048386, "ey": -7.048386, "ez": -7.048386, "ezWDCsEMTQZC": -7.048386, "fKQg": -7.048386, "g": -5.949774, "g/rOU": -7.048386, "gAKCRC": -7.048386, "gDf": -7.048386, "gFZSVTfkKJrlwykpZcaijWXtDiWSpqszs": -7.048386, "gKN": -7.048386, "gKY": -7.048386, "gPHN": -7.048386, "gQz": -7.048386, "gTHmDJHMadPGjaYqDK": -7.048386, "gVm": -7.048386, "gYFX": -7.048386, "galb": -7.048386, "galb@shimi": -7.048386, "gbZvsbZGtvq": -7.048386, "gfjy": -7.048386, "giSuzBrcdW": -7.048386, "gkRzs": -7.048386, "gua": -7.048386, "gviGxx": -7.048386, "gxUkCF/J": -7.048386, "h": -5.256627, "h/": -7.048386, "h/qQe/KCbs": -7.048386, "hB": -6.355239, "hDoDHgO": -7.048386, "hFgW": -6.355239, "hHNedGfBpPJNPpZ": -7.048386, "hKSA": -7.048386, "hM": -7.048386, "hMr": -7.048386, "hdWoh": -6.355239, "hn": -7.048386, "hnvlYunP": -7.048386, "hrjFE": -7.048386, "hv": -7.048386, "hvFlM/STqiZ": -7.048386, "hw": -7.048386, "i": -6.355239, "i/KgaW": -7.048386, "iFNo": -7.048386, "iGsVefwHQ/mjRB": -7.048386, "iI": -7.048386, "iKmrY": -7.048386, "iS": -7.048386, "iYevwql": -7.048386, "icyA": -7.048386, "iep": -7.048386, "ipvHSlWl": -7.048386, "isza": -7.048386, "it": -7.048386, "izBt/": -7.048386, "j": -5.438948, "jACJgPXGlK": -7.048386, "jDcdlYba": -7.048386, "jEYP": -7.048386, "jEujj": -7.048386, "jF": -7.048386, "jFudABEBAAGJAh": -7.048386, "jH": -7.048386, "jHb": -7.048386, "jOmYpSK": -7.048386, "jQVrMrwLtjoJ": -7.048386, "jTg": -7.048386, "jbbkucTCqG": -7.048386, "jbe": -7.048386, "jebW": -7.048386, "jerZnTO": -7.048386, "jf": -7.048386, "jqFRUve": -7.048386, "jqPuyFIN": -7.048386, "jqiWMl": -7.048386, "jrHuX": -6.355239, "jtyEjvP": -7.048386, "k": -5.256627, "kCOAQTAQIAIgUCUkk": -7.048386, "kDtKRFBRue": -7.048386, "kKNhxwUfJ": -6.355239, "kM": -7.048386, "kXepM": -7.048386, "kc": -7.048386, "kjiAHlycdMouSgk": -7.048386, "kjzDTV": -7.048386, "kmssZxBvDqUPgpvYCm": -7.048386, "komG": -7.048386, "kq": -7.048386, "ksA": -7.048386, "kuIwMG": -7.048386, "kuVtCm": -7.048386, "kyF": -7.048386, "lJvFAulb": -7.048386, "lLvB": -7.048386, "lQotGz": -7.048386, "lars@junk": -7.048386, "ln": -7.048386, "m": -5.949774, "mCGOdaM": -7.048386, "mE": -7.048386, "mIP": -6.355239, "mKwBOrk": -7.048386, "mQCNA": -7.048386, "mQINBFJJNS": -7.048386, "mQlMudX": -7.048386, "mUmt": -7.048386, "mbD": -7.048386, "mqnWtzCZvMIhq": -7.048386, "mrNn": -7.048386, "mttl": -7.048386, "mvnXzVSe": -7.048386, "n": -5.949774, "nBxToT": -7.048386, "nGF": -7.048386, "nTIPqbZDw": -7.048386, "nU": -7.048386, "nXNX": -7.048386, "ndCbeC": -7.048386, "nhOZX": -6.355239, "nitrousbox.com": -6.355239, "nkz/NLM": -7.048386, "nt/I": -7.048386, "nu": -7.048386, "nuZbxADMSviu": -7.048386, "nuzVimHgSsX": -7.048386, "o": -6.355239, "oByPOhsCg": -7.048386, "oCsQDydWTN": -7.048386, "oDz/SknBoD": -7.048386, "oGY": -7.048386, "oHVIXPDu": -7.048386, "oIjrYtowSTeOQcoIznv": -7.048386, "oLb": -6.355239, "oOS": -7.048386, "oXUTaotpOm": -7.048386, "oZ": -7.048386, "ocCeR": -7.048386, "of": -7.048386, "offTfwFmVEIlWWLcn": -7.048386, "ohlsLAhcdrAbGqFblAAAAIBgW": -7.048386, "ok": -7.048386, "okLl": -7.048386, "omtg": -7.048386, "opAvI": -7.048386, "p": -5.662092, "p/K": -7.048386, "pAVPfHAOcF": -7.048386, "pBhrwlyEGjRMx": -7.048386, "pEOQtWPILdbZWuhq": -7.048386, "pMtnT": -7.048386, "pNc": -7.048386, "pQ": -7.048386, "pRVBtS": -7.048386, "pVpd": -7.048386, "pZ": -7.048386, "pZGLdhukOPgF": -7.048386, "peDIc": -7.048386, "pkxOniaVW": -7.048386, "pme": -7.048386, "poGlRzLvC": -7.048386, "pquQ": -7.048386, "prgHc": -7.048386, "pub": -7.048386, "pv": -7.048386, "pvQbYeGLQVabiWT": -7.048386, "pvrhs/qpzmftb/r": -7.048386, "pvt": -7.048386, "q": -7.048386, "qBgQJ": -7.048386, "qBgTLxEACrFljsl": -7.048386, "qCt": -7.048386, "qFBAyPRsg": -7.048386, "qJQ": -7.048386, "qPL/qtMyLxQqRJla": -7.048386, "qVp": -7.048386, "qWPjoJKQf": -7.048386, "qYXq": -7.048386, "qZi": -7.048386, "qzJ": -7.048386, "r": -5.256627, "rFbYh": -7.048386, "rH": -7.048386, "rHEQSnZOLG": -7.048386, "rHKHo": -7.048386, "rLn": -7.048386, "rNztRK": -7.048386, "rcVkZhsTOOJf": -7.048386, "rdWjr": -7.048386, "reLtLlsmCQkhRRyx": -7.048386, "rfFkfmxxp": -7.048386, "rlxe": -7.048386, "root@use": -6.355239, "rpTU": -7.048386, "rsa": -5.662092, "rsyXQ": -7.048386, "rubsHbszQOpAsFoygNAZGWbD": -7.048386, "ruf": -7.048386, "rwJTPFICTncfK": -7.048386, "s": -5.662092, "s/leNiHBYOS": -7.048386, "sFNU": -7.048386, "sH/F": -7.048386, "sO": -7.048386, "sR": -7.048386, "sTUSwmCN": -7.048386, "sVVZazRn/GXApnhTdSMySCkmwdafEnK": -7.048386, "sZJw": -7.048386, "sbQPFFfJnKyWXi": -7.048386, "sdSmSIGPMYOskgsVxXcuaWa": -7.048386, "skhJwwLwAadpmsXeZR": -7.048386, "soGMBhsLN": -6.355239, "soW": -7.048386, "ssh": -5.662092, "st": -7.048386, "sun": -7.048386, "svBlAR": -7.048386, "swk": -7.048386, "t": -6.355239, "t/Kc": -7.048386, "tBhzdW": -7.048386, "tCKcMvCoU": -7.048386, "tCOy": -7.048386, "tCRSeWFuIEphY": -7.048386, "tDcU/Ile": -7.048386, "tFbngy": -7.048386, "tMvNmQX": -7.048386, "tVe": -7.048386, "tXGdLnE": -7.048386, "tZW": -7.048386, "tamFjb": -6.355239, "tg": -7.048386, "tjZfWCNDI": -7.048386, "tjezNkU": -6.355239, "ttsfkyShv": -7.048386, "tvAkbXyOV": -7.048386, "u": -6.355239, "uJiBubAQnMKnUvOwY": -7.048386, "uLm": -7.048386, "uQal": -7.048386, "v": -7.048386, "vFR": -7.048386, "vOeAJ": -6.355239, "vS": -7.048386, "vZo": -7.048386, "vdGBVZDbD": -7.048386, "vdmVkIHRoZSBjb": -7.048386, "vetk": -7.048386, "vulX": -7.048386, "w": -6.355239, "wIKw": -7.048386, "wNS": -7.048386, "wPRGapJ": -7.048386, "wQ": -7.048386, "wR": -7.048386, "wWDLqm": -7.048386, "wZRD": -7.048386, "wa": -7.048386, "waNDkrD": -7.048386, "wl": -7.048386, "woxtvAqNwXn": -7.048386, "wpcQ": -7.048386, "wpwCcHA": -7.048386, "wyVQWvKM": -7.048386, "wyWHGz": -7.048386, "wzHgv": -7.048386, "x": -5.102476, "xAAhiK/NeQdoZ": -7.048386, "xBpCp": -7.048386, "xHKZS": -7.048386, "xJ": -7.048386, "xNZ/iKVhMduLOZ": -7.048386, "xOpE": -7.048386, "xQ": -7.048386, "xRWxoCUVF": -7.048386, "xSbEzYdpBN": -7.048386, "xUmBkz": -7.048386, "xaBf": -7.048386, "xdAITE": -7.048386, "xfz": -7.048386, "xgQasqmtt": -7.048386, "xqBAotYGXZ": -7.048386, "xsJoByuAzK": -7.048386, "xxkyRL": -7.048386, "y": -5.949774, "yDIOpCInSC": -7.048386, "yI": -7.048386, "yKu": -7.048386, "yLAowlKThnPk": -7.048386, "yNokMdjy": -7.048386, "yR": -7.048386, "yScNR": -7.048386, "yUNbYf": -7.048386, "yUypNNsgYtT": -7.048386, "yVL": -7.048386, "yZQqqZQi": -7.048386, "yZz": -7.048386, "yc": -5.662092, "yeZX": -7.048386, "yopiNGIub": -7.048386, "yov": -7.048386, "yumEiNg": -7.048386, "yvFkWRVHq/thz": -7.048386, "ywD": -7.048386, "z": -5.662092, "z/CP": -7.048386, "zH": -7.048386, "zHvZZIQJYGrDhDnjb": -7.048386, "zQv": -7.048386, "zRMa": -7.048386, "zS": -6.355239, "zdHJvbmdzd": -7.048386, "zdtuOkvbawoezrqaWN": -7.048386, "zhFNzjFvpaMgJw": -7.048386, "zvlzU": -7.048386, "zwv": -7.048386, "zyawkARWNTZZ": -7.048386, "zz": -7.048386, }, "Pug": map[string]float64{ "!": -3.465736, "#text": -3.465736, "(": -2.772589, ")": -2.772589, ",": -2.367124, "=": -2.079442, "Hello": -2.772589, "Pug": -3.465736, "World": -3.465736, "body": -3.465736, "charset": -3.465736, "doctype": -3.465736, "head": -3.465736, "href": -3.465736, "html": -2.772589, "include": -3.465736, "link": -3.465736, "meta": -3.465736, "p.": -3.465736, "page": -3.465736, "rel": -3.465736, "title": -3.465736, "type": -3.465736, }, "Puppet": map[string]float64{ "!": -5.949991, "$": -2.078790, "(": -4.340553, ")": -4.291763, ",": -2.409032, "-": -7.336286, ":": -1.847348, ";": -5.139061, "=": -2.165802, ">": -2.847649, "?": -5.544526, "Class": -5.544526, "Exec": -7.336286, "File": -6.237673, "Package": -5.033701, "Stage": -6.643138, "[": -4.200791, "]": -4.200791, "absent": -6.643138, "access_log_file": -5.256844, "age": -6.643138, "all": -6.237673, "allow_encoded_slashes": -6.237673, "and": -5.949991, "apache": -3.809925, "apache_name": -6.643138, "apache_version": -6.643138, "apxs_workaround": -7.336286, "bar": -7.336286, "case": -7.336286, "class": -5.390376, "command": -7.336286, "concat": -6.643138, "conf_dir": -6.237673, "conf_file": -7.336286, "conf_template": -6.237673, "confd_dir": -6.643138, "content": -6.237673, "creates": -6.237673, "default": -5.544526, "default_charset": -7.336286, "default_confd_files": -6.237673, "default_mods": -5.726848, "default_ssl_ca": -7.336286, "default_ssl_cert": -6.643138, "default_ssl_chain": -7.336286, "default_ssl_crl": -7.336286, "default_ssl_crl_check": -7.336286, "default_ssl_crl_path": -7.336286, "default_ssl_key": -6.643138, "default_ssl_vhost": -5.949991, "default_ssl_vhost_ensure": -6.643138, "default_type": -7.336286, "default_vhost": -5.949991, "default_vhost_ensure": -6.643138, "define": -7.336286, "defined": -6.237673, "directory": -5.949991, "docroot": -5.544526, "else": -5.949991, "ensure": -5.033701, "error_documents": -7.336286, "error_documents_path": -7.336286, "error_log": -5.949991, "example": -7.336286, "exec": -5.949991, "expired": -6.237673, "expiringhost": -7.336286, "fail": -7.336286, "false": -5.139061, "file": -5.256844, "foo": -7.336286, "fragment": -7.336286, "group": -6.237673, "hiera_include": -7.336286, "host": -7.336286, "httpd_dir": -6.643138, "if": -5.139061, "inherits": -7.336286, "inline_template": -7.336286, "ip": -5.256844, "is_array": -7.336286, "keepalive": -6.643138, "keepalive_timeout": -6.643138, "lib_path": -6.643138, "log_formats": -7.336286, "log_level": -6.643138, "logroot": -6.643138, "logroot_mode": -5.544526, "makeconf": -7.336286, "manage_docroot": -6.643138, "manage_group": -7.336286, "manage_user": -7.336286, "max_keepalive_requests": -6.643138, "maxage": -6.643138, "mod_dir": -5.949991, "mod_enable_dir": -5.256844, "mod_load_dir": -6.643138, "mode": -7.336286, "mods": -7.336286, "mpm_module": -5.726848, "name": -7.336286, "node": -7.336286, "notice": -6.643138, "notify": -5.139061, "osfamily": -6.237673, "owner": -7.336286, "package_ensure": -7.336286, "params": -3.935088, "pidfile": -5.949991, "port": -6.643138, "portage": -7.336286, "ports_file": -5.949991, "present": -6.643138, "priority": -6.643138, "purge": -5.949991, "purge_configs": -6.237673, "purge_mod_dir": -6.643138, "purge_vdir": -7.336286, "purge_vhost_dir": -7.336286, "purge_vhostd": -6.643138, "recurse": -5.949991, "refreshonly": -7.336286, "require": -5.033701, "root_group": -7.336286, "scriptalias": -5.256844, "sendfile": -7.336286, "server_root": -6.643138, "server_signature": -7.336286, "server_tokens": -7.336286, "serveradmin": -5.726848, "servername": -6.643138, "service_enable": -6.643138, "service_ensure": -7.336286, "service_manage": -6.643138, "service_name": -6.643138, "source": -7.336286, "ssl": -7.336286, "ssl_access_log_file": -6.643138, "stage": -6.237673, "target": -6.643138, "template": -6.643138, "timeout": -7.336286, "timestamp": -7.336286, "trace_enable": -7.336286, "true": -4.391847, "undef": -5.139061, "use_optional_includes": -6.237673, "user": -6.643138, "valid_mpms_re": -6.643138, "validate_bool": -5.544526, "validate_re": -6.643138, "version": -7.336286, "vhost": -6.643138, "vhost_dir": -5.544526, "vhost_enable_dir": -5.544526, "vhost_load_dir": -6.237673, "{": -3.310934, "}": -3.293234, }, "PureBasic": map[string]float64{ "###": -4.800943, "####################################################": -4.577799, "#False": -5.088625, "#PB_Any": -5.781772, "#PB_Event_CloseWindow": -6.880384, "#PB_Event_Gadget": -6.880384, "#PB_Window_MinimizeGadget": -6.880384, "#PB_Window_ScreenCentered": -6.880384, "#PB_Window_SystemMenu": -6.880384, "#Samplerate": -5.781772, "#True": -4.934474, "#WAVE_MAPPER": -6.880384, "(": -3.073722, ")": -3.073722, "*": -5.781772, "*#PI": -6.880384, "*A": -5.494090, "*A.Ascii": -6.880384, "*AudioOut": -5.494090, "*B": -5.494090, "*B.Ascii": -6.880384, "*Dst": -4.395477, "*Memory": -5.494090, "*Memory_Operation": -3.702330, "*Memory_Operation.Memory_Operation": -6.880384, "*Src": -4.800943, "*Temp": -5.088625, "+": -3.990012, ",": -2.837333, "-": -3.242798, "/": -5.781772, ":": -3.990012, ";": -3.446397, "<": -4.577799, "=": -2.769510, ">": -4.482489, "@Device": -6.880384, "@Notifier_CallBack": -6.880384, "AllocateMemory": -6.880384, "Amplitude": -5.781772, "Amplitude*": -6.880384, "Amplitude.d": -6.880384, "Ascii": -6.880384, "Ascii.a": -6.880384, "AudioOut": -4.241327, "Beta": -6.880384, "Break": -6.880384, "Case": -5.270946, "CopyMemory": -6.880384, "Copy_Size": -3.702330, "Copy_Size.q": -5.781772, "CursorPosition": -6.187237, "Debug": -5.781772, "Define": -6.880384, "Deinitialize": -6.880384, "Device": -6.880384, "DisableDebugger": -6.880384, "Dst_Offset": -3.513088, "Dst_Offset.q": -5.494090, "Dst_Size": -4.934474, "Dst_Size.q": -4.934474, "Elements": -5.781772, "EnableExplicit": -6.880384, "EnableThread": -6.880384, "EnableUnicode": -6.880384, "EnableXP": -6.187237, "End": -6.880384, "EndIf": -3.383877, "EndProcedure": -4.934474, "EndSelect": -6.187237, "EndStructure": -5.781772, "EventGadget": -6.880384, "FillMemory": -6.880384, "Fill_Size": -5.270946, "Fill_Size.q": -6.880384, "FirstLine": -6.187237, "Folding": -6.187237, "For": -6.187237, "ForEach": -6.880384, "ForEver": -6.880384, "FreeMemory": -6.880384, "Frequency": -5.494090, "Frequency.d": -6.880384, "GetBufferBlocksize": -6.880384, "GetDevices": -6.880384, "GetError": -6.880384, "GetGadgetState": -6.187237, "GetQueuedBlocks": -6.880384, "Global": -5.494090, "ID": -6.187237, "ID.i": -6.880384, "IDE": -6.187237, "If": -3.383877, "Initialize": -6.880384, "Left": -6.880384, "Left*": -6.880384, "Left.d": -6.880384, "Main": -4.800943, "Main.Main": -6.880384, "Main_Window": -4.482489, "Main_Window.Main_Window": -6.880384, "Main_Window_Open": -6.187237, "MemorySize": -5.270946, "Memory_Mirror": -6.880384, "Memory_Operation": -6.880384, "Memory_Operation_Check": -6.880384, "Memory_Range_Copy": -6.880384, "Memory_Range_Fill": -6.880384, "Memory_Range_Move": -6.880384, "Memory_Size": -5.781772, "Memory_Size/": -6.880384, "MoveMemory": -6.880384, "Next": -5.781772, "Not": -4.934474, "Notifier_CallBack": -6.187237, "OpenWindow": -6.880384, "Options": -6.187237, "PeekS": -6.880384, "PokeW": -6.187237, "Procedure": -4.934474, "ProcedureReturn": -4.395477, "Protected": -4.934474, "PureBasic": -6.187237, "Quit": -6.187237, "Quit.i": -6.880384, "Repeat": -6.187237, "Right": -6.880384, "Right*": -6.880384, "Right.d": -6.880384, "Rotation": -5.781772, "Rotation.d": -6.880384, "Select": -6.187237, "SetGadgetState": -6.187237, "Sin": -6.187237, "Src_Offset": -3.744890, "Src_Offset.q": -5.781772, "Src_Size": -5.270946, "Src_Size.q": -5.270946, "Static": -6.880384, "Structure": -5.781772, "Temp": -3.744890, "Temp.a": -6.880384, "Temp.q": -5.494090, "Temp_Size": -5.270946, "Temp_Size.i": -6.880384, "To": -6.187237, "TrackBar": -4.800943, "TrackBar.i": -6.880384, "TrackBarGadget": -6.187237, "Until": -6.880384, "WaitWindowEvent": -6.880384, "Wend": -6.880384, "While": -6.880384, "Windows": -6.187237, "Write_Data": -6.880384, "XIncludeFile": -6.880384, "[": -4.683160, "\\": -3.051743, "]": -4.683160, "a": -5.494090, "i": -5.494090, "i*": -6.187237, "szPname": -6.880384, "x": -6.187237, "|": -6.187237, }, "PureScript": map[string]float64{ "!": -7.731931, "\"": -7.731931, "$": -5.247024, "&": -6.633318, "&&": -6.633318, "(": -3.040583, ")": -3.004543, "*": -7.731931, "***": -7.038784, "+": -4.473834, ",": -3.688879, "-": -3.401197, ".": -7.038784, "..": -7.731931, "/": -7.731931, "0": -7.731931, ":": -3.077970, "<": -5.652489, "<$>": -5.652489, "<),>": -7.731931, "<*>": -6.633318, "<+>": -7.038784, "<->": -4.959342, "<<": -6.345636, "=": -2.903617, ">": -2.952807, "Array": -7.731931, "Arrow": -6.122493, "ArrowPlus": -7.731931, "ArrowZero": -7.731931, "Boolean": -7.731931, "Branch": -4.436094, "Category": -6.633318, "Control": -6.122493, "Control.Arrow": -7.731931, "Control.Monad": -7.731931, "Control.Monad.Eff": -7.731931, "Control.Monad.JQuery": -7.731931, "Control.Reactive": -7.731931, "Control.Reactive.JQuery": -7.731931, "Create": -6.345636, "Data": -5.940171, "Data.Array": -6.633318, "Data.Either": -7.731931, "Data.Foldable": -7.038784, "Data.Foreign": -7.038784, "Data.Map": -7.731931, "Data.Maybe": -6.633318, "Data.Monoid": -7.731931, "Data.Traversable": -7.038784, "Data.Tuple": -6.633318, "Debug": -7.731931, "Debug.Trace": -7.731931, "Done": -7.731931, "Eff": -7.731931, "Either": -5.940171, "First": -7.731931, "Foldable": -7.731931, "Foreign": -5.166981, "ForeignParser": -4.364635, "Get": -7.731931, "Global": -7.038784, "Hello": -7.731931, "JQuery": -7.038784, "John": -7.731931, "Just": -5.940171, "Last": -7.731931, "Leaf": -5.023881, "Learn": -7.731931, "Left": -5.652489, "Map": -4.473834, "Maybe": -5.940171, "Monad": -6.633318, "Monoid": -7.731931, "Name": -7.038784, "Next": -7.731931, "Nothing": -5.940171, "Number": -7.731931, "P": -7.731931, "P.": -5.334035, "P.Eq": -5.334035, "P.Ord": -5.534706, "P.Show": -6.633318, "P.not": -7.731931, "P.show": -7.731931, "Prelude": -6.633318, "Prelude.Applicative": -7.731931, "Prelude.Functor": -7.731931, "Prelude.Monad": -7.731931, "Prelude.Show": -7.731931, "PureScript": -7.731931, "Reactive": -7.038784, "ReactiveJQueryTest": -7.731931, "ReadForeign": -5.334035, "Right": -5.534706, "Smith": -7.731931, "String": -5.166981, "Trace": -7.731931, "Traversable": -7.731931, "Tuple": -4.687408, "[": -6.122493, "\\": -4.898717, "]": -6.122493, "_": -5.786021, "`": -4.736198, "a": -3.903289, "a.": -5.940171, "alter": -5.652489, "an": -7.731931, "append": -5.940171, "appendText": -7.038784, "applicativeForeignParser": -7.731931, "arr": -4.959342, "array": -7.731931, "arrayItem": -7.038784, "arrowFunction": -7.731931, "as": -7.731931, "b": -3.819908, "b.": -7.731931, "b.key": -7.731931, "b.left": -5.534706, "b.right": -5.652489, "b.value": -7.038784, "b@": -5.940171, "bindArray": -7.731931, "bindCheckedTwoWay": -7.731931, "bindTextOneWay": -7.731931, "body": -7.038784, "box": -7.731931, "btn": -5.534706, "button": -7.038784, "c": -4.898717, "c.": -6.633318, "case": -5.652489, "class": -6.345636, "comp1": -7.038784, "completed": -5.940171, "completedInput": -6.122493, "concat": -6.633318, "counter": -7.731931, "counterLabel": -7.731931, "create": -5.534706, "cs": -6.633318, "d": -5.940171, "d.": -7.038784, "data": -6.633318, "delete": -5.534706, "display": -7.731931, "div": -6.633318, "do": -5.652489, "document": -7.731931, "el": -7.038784, "else": -7.731931, "empty": -5.940171, "entry": -6.345636, "entry.completed": -7.038784, "eqMap": -7.731931, "err": -5.652489, "f": -4.399726, "false": -7.038784, "findMinKey": -6.122493, "first": -6.122493, "firstName": -5.940171, "firstNameDiv": -7.731931, "flip": -6.633318, "foldl": -6.345636, "for": -7.731931, "forall": -4.473834, "foreign": -5.940171, "fromList": -6.633318, "fromString": -7.038784, "functorForeignParser": -7.731931, "g": -6.345636, "glue": -6.345636, "greet": -7.038784, "head": -7.038784, "hold": -7.731931, "i": -7.038784, "if": -7.731931, "import": -3.925268, "in": -7.038784, "index": -6.633318, "indexR": -6.633318, "infixr": -6.633318, "input": -6.345636, "insert": -5.429346, "insertRArray": -7.038784, "instance": -5.247024, "json": -7.038784, "k": -2.911649, "key": -5.166981, "lastName": -6.122493, "left": -5.023881, "length": -6.345636, "let": -7.038784, "li": -5.786021, "lookup": -5.652489, "m": -4.841559, "main": -7.038784, "map": -5.534706, "minKey": -6.633318, "module": -6.345636, "monadForeignParser": -7.731931, "name": -7.731931, "names": -7.731931, "new": -7.731931, "newEntryDiv": -6.633318, "newRArray": -7.731931, "newRVar": -5.940171, "next": -7.731931, "nextTaskLabel": -7.731931, "of": -5.652489, "on": -7.038784, "p": -5.092873, "paragraph": -7.731931, "parseForeign": -5.940171, "parseInt": -7.038784, "parseJSON": -6.633318, "personDemo": -6.345636, "prop": -6.633318, "pure": -7.731931, "qualified": -7.731931, "range": -7.731931, "reactive": -7.731931, "read": -5.429346, "readArray": -7.731931, "readBoolean": -7.731931, "readMaybe": -7.731931, "readMaybeImpl": -7.038784, "readNumber": -7.731931, "readPrimType": -6.122493, "readPropImpl": -7.038784, "readRArray": -7.731931, "readRVar": -7.731931, "readString": -7.731931, "red": -7.731931, "remaining": -7.731931, "removeRArray": -7.038784, "result": -6.345636, "return": -5.652489, "right": -5.092873, "root": -7.038784, "rs": -7.038784, "s": -7.731931, "second": -6.633318, "setAttr": -7.731931, "show": -5.940171, "showForeign": -7.731931, "showForeignImpl": -7.038784, "showMap": -7.731931, "singleton": -6.122493, "sub": -6.633318, "sub1": -7.731931, "subscription": -7.038784, "swap": -6.345636, "task": -7.038784, "tasks": -7.731931, "text": -5.940171, "text1": -7.038784, "textInput": -6.633318, "the": -6.345636, "then": -7.731931, "to": -7.038784, "toComputed": -7.731931, "toComputedArray": -7.731931, "toList": -5.429346, "todoListDemo": -7.038784, "traverse": -7.038784, "ul": -6.345636, "union": -6.633318, "user": -7.731931, "v": -3.588796, "v.": -5.334035, "value": -5.652489, "variables": -7.731931, "where": -4.736198, "x": -4.473834, "xs": -6.633318, "y": -7.038784, "zeroArrow": -7.731931, "zip": -7.731931, "{": -4.553877, "|": -5.534706, "}": -4.513055, }, "Python": map[string]float64{ "!": -7.216138, "#": -7.110778, "#_toolset": -8.314751, "#parser.add_argument": -8.314751, "%": -6.322320, "'": -9.413363, "(": -2.764378, ")": -2.784000, "*": -5.947627, "**": -6.774306, "**kwargs": -7.621603, "*R": -7.803925, "*T": -8.720216, "*T_err": -8.027068, "*U_err/S": -8.027068, "*args": -9.413363, "*beta": -9.413363, "*beta*R": -6.705313, "*beta*T": -9.413363, "*dy_err": -9.413363, "*glanz_popt": -9.413363, "*matt_popt": -9.413363, "*name_or_flags": -8.720216, "*np.sqrt": -7.621603, "*popt": -8.720216, "*schwarz_popt": -9.413363, "*weiss_popt": -9.413363, "+": -5.223708, ",": -1.832153, "-": -5.109298, ".": -7.467453, "..": -7.803925, "...": -4.530561, ".__init__": -8.314751, ".__new__": -9.413363, ".append": -9.413363, ".encode": -9.413363, ".format": -7.015468, ".globals": -9.413363, ".join": -7.803925, ".next": -9.413363, ".readlines": -9.413363, ".run": -9.413363, ".size": -8.027068, ".split": -9.413363, ".strip": -9.413363, "/": -6.155266, "//docs.python.org/library/ssl.html#sslsocket": -9.413363, "//third_party/javascript/google_cast/cast.js": -9.413363, "/I": -8.720216, "/usr/bin/env": -8.027068, "/usr/bin/python": -8.720216, ":": -2.483846, ";": -9.413363, "<": -8.027068, "<%s:>": -9.413363, "</a>": -8.027068, "</body>": -9.413363, "</div>": -8.720216, "</head>": -9.413363, "</html>": -9.413363, "</li>": -8.314751, "</p>": -8.314751, "</span>": -8.720216, "</title>": -9.413363, "</ul>": -9.413363, "<a>": -8.027068, "<body>": -9.413363, "<date/year/month>": -9.413363, "<dev@martin-ueding.de>": -9.413363, "<div>": -8.720216, "<head>": -9.413363, "<html>": -9.413363, "<li>": -8.314751, "<link>": -9.413363, "<name>": -9.413363, "<p>": -8.314751, "<rosensteinniklas@gmail.com>": -9.413363, "<span>": -8.720216, "<the>": -9.413363, "<title>": -9.413363, "<ul>": -9.413363, "=": -2.799979, ">": -5.675693, "@closure_library//": -9.413363, "@property": -9.413363, "A": -8.720216, "API_DEPS": -8.720216, "Action": -8.027068, "Actions": -9.413363, "An": -9.413363, "Analysis": -9.413363, "Any": -6.774306, "ArgumentDefaultsHelpFormatter": -9.413363, "ArgumentError": -9.413363, "ArgumentParser": -7.621603, "ArgumentTypeError": -9.413363, "AttributeError": -9.413363, "AutoField": -9.413363, "CENTER": -9.413363, "COLLECT": -9.413363, "Callable": -8.027068, "Calls": -9.413363, "Cannot": -8.720216, "Cleans": -9.413363, "Collector": -9.413363, "Command": -9.413363, "Cookie": -8.314751, "Cookie.Morsel": -9.413363, "Create": -9.413363, "CreateLayout": -9.413363, "D": -9.413363, "DEFAULT_DB_ALIAS": -9.413363, "DESCRIPTOR": -8.314751, "DESCRIPTOR.message_types_by_name": -9.413363, "DatabaseError": -9.413363, "DeferredAttribute": -9.413363, "Does": -9.413363, "EXE": -9.413363, "EchoClient": -8.720216, "EchoFactory": -8.720216, "Edit": -9.413363, "Exception": -8.314751, "Execute": -8.314751, "False": -6.417631, "Feed": -9.413363, "Feed.get": -9.413363, "Field": -9.413363, "FieldDoesNotExist": -9.413363, "FieldError": -8.027068, "Fields": -9.413363, "File": -9.413363, "FileType": -8.027068, "Finishes": -9.413363, "For": -9.413363, "Forced": -9.413363, "Forwarded": -8.720216, "GET/POST": -9.413363, "HTTP": -8.314751, "HTTP/": -7.803925, "HTTPConnection": -8.720216, "HTTPFile": -9.413363, "HTTPServer": -8.314751, "HTTPServer.xheaders": -9.413363, "HelpFormatter": -7.467453, "Host": -8.720216, "However": -9.413363, "I": -8.314751, "IO": -8.027068, "IP": -9.413363, "I_err": -8.720216, "If": -9.413363, "ImportError": -9.413363, "InitValues": -9.413363, "Ip": -8.720216, "Iterable": -8.027068, "KeyError": -8.720216, "L": -9.413363, "Label": -9.413363, "Length": -9.413363, "List": -8.314751, "ManyToOneRel": -8.720216, "Me": -8.720216, "MetavarTypeHelpFormatter": -9.413363, "MethodViewType": -9.413363, "Model": -8.720216, "ModelBase": -8.314751, "Models": -9.413363, "MultipleObjectsReturned": -8.720216, "NON_FIELD_ERRORS": -9.413363, "Names": -9.413363, "Namespace": -7.621603, "None": -5.018914, "Normally": -8.720216, "Note": -9.413363, "OK": -9.413363, "ONE_OR_MORE": -9.413363, "OPTIONAL": -9.413363, "OS": -8.027068, "ObjectDoesNotExist": -8.720216, "OneToOneField": -8.314751, "Optional": -5.916855, "Options": -8.720216, "Override": -9.413363, "P": -9.413363, "PARSER": -9.413363, "PLUGIN_HELP": -8.314751, "PLUGIN_ICON": -8.720216, "PLUGIN_ID": -8.314751, "PLUGIN_NAME": -8.314751, "PYZ": -9.413363, "Person": -9.413363, "PrettyTable": -7.621603, "Proto": -9.413363, "PullRequest": -9.413363, "Python": -9.413363, "Q": -9.413363, "R": -7.216138, "REMAINDER": -9.413363, "RGB": -9.413363, "R_err": -8.720216, "RawDescriptionHelpFormatter": -9.413363, "RawTextHelpFormatter": -9.413363, "Real": -8.720216, "Reconstructs": -9.413363, "Reminder": -8.720216, "RequestHandler.get_argument": -9.413363, "Returns": -9.413363, "S": -8.027068, "SHEBANG#!python": -7.803925, "SQL": -8.720216, "SSLSocket.getpeercert": -9.413363, "SUPPRESS": -9.413363, "Save": -9.413363, "Saves": -9.413363, "Scheme": -8.720216, "Sequence": -7.216138, "Since": -9.413363, "Subclasses": -9.413363, "T": -7.110778, "T**": -9.413363, "TApplicationException": -9.413363, "TBinaryProtocol": -9.413363, "TBinaryProtocol.TBinaryProtocolAccelerated": -8.720216, "TCPServer": -8.720216, "TCPServer.__init__": -9.413363, "TException": -9.413363, "TMessageType": -9.413363, "TProtocol": -9.413363, "TTransport": -9.413363, "TTransport.CReadableTransport": -9.413363, "TType": -9.413363, "TType.STOP": -9.413363, "TType.STRING": -8.314751, "TWO_PI": -9.413363, "T_err": -7.467453, "The": -7.621603, "To": -9.413363, "Tree": -9.413363, "True": -6.194487, "Tuple": -7.803925, "Type": -7.467453, "TypeError": -8.027068, "TypeVar": -8.720216, "U": -6.640774, "URL": -9.413363, "U_err": -7.467453, "U_err/S": -8.027068, "UnicodeDecodeError": -9.413363, "UnicodeEncodeError": -9.413363, "Union": -6.640774, "Used": -8.720216, "V": -6.928456, "ValidationError": -8.314751, "ValueError": -8.720216, "View": -9.413363, "Visit": -9.413363, "WSGIServer": -8.720216, "We": -9.413363, "Writes": -9.413363, "X": -7.621603, "XPAT_Command_AlignHorizontal": -9.413363, "XPAT_Command_AlignVertical": -9.413363, "XPAT_Command_OpenOptionsDialog": -8.720216, "XPAT_Options": -8.314751, "XPAT_OptionsDialog": -8.720216, "You": -9.413363, "ZERO_OR_MORE": -9.413363, "[": -2.873777, "\\": -6.774306, "]": -2.862283, "^": -9.413363, "_": -8.314751, "_ArgumentGroup": -8.314751, "_BadRequestException": -8.314751, "_COMPILATION_LEVELS": -8.314751, "_MutuallyExclusiveGroup": -8.314751, "_PERSON": -8.314751, "_SUPPORTED_LANGUAGES": -7.803925, "_SubParsersAction": -8.720216, "_T": -7.467453, "_Text": -5.270228, "__call__": -8.720216, "__deepcopy__": -9.413363, "__docformat__": -9.413363, "__eq__": -8.720216, "__file__": -9.413363, "__future__": -8.720216, "__getattr__": -9.413363, "__hash__": -8.720216, "__init__": -6.928456, "__metaclass__": -9.413363, "__name__": -7.803925, "__ne__": -8.720216, "__new__": -8.720216, "__reduce__": -8.720216, "__repr__": -8.720216, "__res__": -9.413363, "__setattr__": -9.413363, "__str__": -9.413363, "_cookies": -9.413363, "_descriptor": -9.413363, "_descriptor.Descriptor": -9.413363, "_descriptor.FieldDescriptor": -9.413363, "_descriptor.FileDescriptor": -9.413363, "_err": -8.027068, "_finish_request": -9.413363, "_impl": -8.720216, "_message": -9.413363, "_message.Message": -9.413363, "_on_headers": -9.413363, "_on_write_complete": -9.413363, "_order": -8.314751, "_order__": -9.413363, "_parse_args": -8.720216, "_reflection": -9.413363, "_reflection.GeneratedProtocolMessageType": -9.413363, "_valid_ip": -9.413363, "`": -6.235309, "a": -6.705313, "a*x": -9.413363, "a.binaries": -9.413363, "a.datas": -9.413363, "a.pure": -9.413363, "a.scripts": -9.413363, "a.zipfiles": -9.413363, "absolute_import": -9.413363, "abstract": -8.314751, "access": -9.413363, "accessed": -9.413363, "action": -7.467453, "add_argument": -8.720216, "add_argument_group": -9.413363, "add_help": -8.720216, "add_lazy_relation": -9.413363, "add_mutually_exclusive_group": -8.720216, "add_parser": -9.413363, "add_subparsers": -9.413363, "address": -7.803925, "affect": -8.720216, "after": -8.027068, "aix": -7.467453, "align_nodes": -8.720216, "align_nodes_shortcut": -8.314751, "all": -8.720216, "allow_abbrev": -9.413363, "allow_files": -9.413363, "allresults": -7.216138, "along": -8.720216, "alpha": -8.720216, "alpha**": -7.621603, "alpha*R": -8.720216, "already": -9.413363, "also": -8.720216, "amplitude": -8.314751, "amplitude.append": -9.413363, "an": -8.314751, "and": -6.417631, "android": -7.621603, "another": -8.720216, "any": -8.027068, "app": -9.413363, "are": -7.621603, "arg_line": -9.413363, "argparse": -9.413363, "argparse.ArgumentParser": -9.413363, "args": -6.468924, "argument": -9.413363, "argument.": -9.413363, "argument_default": -8.720216, "arguments": -7.621603, "argv": -7.803925, "arm": -8.720216, "around": -9.413363, "as": -7.015468, "as_view": -9.413363, "assert": -8.314751, "attached": -9.413363, "attr.label": -9.413363, "attr.label_list": -9.413363, "attr.string": -8.027068, "attr_meta": -7.803925, "attr_meta.abstract": -9.413363, "attr_name": -8.314751, "attribute": -7.467453, "attribute.": -9.413363, "attrs": -8.314751, "attrs.items": -9.413363, "attrs.pop": -8.720216, "auto_created": -9.413363, "available": -8.720216, "b": -7.110778, "backends": -9.413363, "background": -8.720216, "balancer": -8.720216, "base": -6.848413, "base.__name__": -9.413363, "base._meta.abstract": -8.720216, "base._meta.abstract_managers": -9.413363, "base._meta.concrete_model": -8.720216, "base._meta.local_fields": -9.413363, "base._meta.local_many_to_many": -9.413363, "base._meta.parents": -9.413363, "base._meta.virtual_fields": -9.413363, "base_managers": -9.413363, "base_meta": -8.720216, "base_meta.abstract": -9.413363, "base_meta.get_latest_by": -9.413363, "base_meta.ordering": -9.413363, "based": -9.413363, "bases": -7.621603, "bbox_size": -8.720216, "bbox_size_": -8.720216, "be": -7.216138, "because": -9.413363, "been": -9.413363, "before": -8.027068, "beta": -9.413363, "big": -9.413363, "body": -9.413363, "boltzmann": -6.928456, "bool": -7.216138, "both": -9.413363, "box": -9.413363, "break": -8.720216, "bufsize": -8.314751, "build_json": -8.720216, "build_structure": -8.314751, "build_template": -8.720216, "but": -9.413363, "by": -8.720216, "byte": -9.413363, "bytes_type": -9.413363, "c": -6.580150, "ca_certs": -9.413363, "calcWave": -8.720216, "callback": -7.110778, "camera": -9.413363, "can": -7.803925, "canonical": -9.413363, "capfirst": -9.413363, "cert_reqs": -8.720216, "certfile": -8.314751, "certificates": -9.413363, "cgi": -9.413363, "cgi.parse_qs": -9.413363, "check": -9.413363, "check.": -9.413363, "choices": -8.314751, "chunk": -8.314751, "clang": -8.720216, "class": -5.887002, "clean": -9.413363, "clean_fields": -9.413363, "client": -9.413363, "clientConnectionFailed": -9.413363, "clientConnectionLost": -9.413363, "closure_js_binary": -9.413363, "closure_library": -9.413363, "cls": -6.928456, "cls.__doc__": -9.413363, "cls.__module__": -9.413363, "cls.__new__": -9.413363, "cls.methods": -9.413363, "collect": -9.413363, "color": -7.333921, "colorMode": -9.413363, "command": -8.314751, "commit": -9.413363, "compilation_level": -9.413363, "con": -9.413363, "con.commit": -9.413363, "con.cursor": -9.413363, "conflict_handler": -8.720216, "connection": -8.720216, "connection.": -8.720216, "connectionLost": -9.413363, "connectionMade": -9.413363, "connection_header": -7.803925, "connection_header.lower": -9.413363, "connections": -9.413363, "connector": -8.720216, "console": -9.413363, "const": -8.314751, "constructed": -9.413363, "containing": -9.413363, "containing_type": -8.720216, "contents": -8.720216, "contents.readline": -9.413363, "context": -9.413363, "continue": -8.720216, "control": -9.413363, "convert_arg_line_to_args": -9.413363, "copy": -9.413363, "copy.deepcopy": -8.720216, "copy_managers": -9.413363, "cos": -9.413363, "cpp_type": -9.413363, "csv": -9.413363, "ctx": -9.413363, "ctx.action": -9.413363, "ctx.attr.compilation_level": -8.720216, "ctx.attr.deps": -9.413363, "ctx.attr.language_in": -8.720216, "ctx.attr.language_out": -8.720216, "ctx.executable._closure_compiler": -9.413363, "ctx.outputs.out": -8.720216, "cur": -8.314751, "cur.description": -9.413363, "cur.execute": -8.027068, "cur.fetchall": -9.413363, "cur.fetchone": -9.413363, "current": -9.413363, "curry": -9.413363, "d": -7.015468, "d**": -8.720216, "d.DLG_TYPE_MODAL": -9.413363, "d.EventAdd": -9.413363, "d.gui.GeDialog": -9.413363, "d.modules": -9.413363, "data": -6.417631, "data.decode": -9.413363, "data.find": -9.413363, "dataReceived": -9.413363, "date_field": -9.413363, "datetime": -9.413363, "datetime.datetime.utcnow": -9.413363, "datetime.timedelta": -9.413363, "day": -9.413363, "debug": -9.413363, "declaration": -9.413363, "decorate": -8.720216, "def": -4.828395, "default": -7.110778, "default_value": -9.413363, "default_visibility": -9.413363, "defaults": -9.413363, "deferred": -8.720216, "delimiter": -7.333921, "dep": -9.413363, "dep.transitive_js_externs": -9.413363, "dep.transitive_js_srcs": -9.413363, "description": -7.803925, "descriptor": -9.413363, "descriptor_pb": -9.413363, "dest": -7.621603, "details.": -9.413363, "dialog": -9.413363, "dict": -7.803925, "dictionary": -8.720216, "did": -8.314751, "different": -9.413363, "directly": -9.413363, "directory": -7.216138, "disconnect": -7.803925, "division": -9.413363, "django.conf": -9.413363, "django.core": -9.413363, "django.core.exceptions": -9.413363, "django.db": -9.413363, "django.db.models": -9.413363, "django.db.models.deletion": -9.413363, "django.db.models.fields": -9.413363, "django.db.models.fields.related": -9.413363, "django.db.models.loading": -9.413363, "django.db.models.manager": -9.413363, "django.db.models.options": -9.413363, "django.db.models.query": -9.413363, "django.db.models.query_utils": -9.413363, "django.utils.encoding": -9.413363, "django.utils.functional": -9.413363, "django.utils.text": -9.413363, "django.utils.translation": -9.413363, "do": -8.720216, "doc": -8.314751, "docs": -8.720216, "draw": -8.720216, "dtools": -9.413363, "dtools.helpers.Attributor": -8.720216, "dtools.misc": -9.413363, "dtools.plugins.Command": -8.314751, "dtools.plugins.main": -9.413363, "dtools.prepare": -9.413363, "duration": -9.413363, "duration_list": -9.413363, "dx": -7.333921, "dx.append": -9.413363, "dx_err": -8.314751, "dy": -8.027068, "dy.size": -9.413363, "dy_err": -8.720216, "e": -9.413363, "e.args": -9.413363, "e.g.": -9.413363, "ecmascript": -8.720216, "either": -9.413363, "el": -8.314751, "elif": -7.621603, "ellipse": -9.413363, "ellipseMode": -9.413363, "else": -6.081158, "encoding": -9.413363, "enum_type": -9.413363, "enum_types": -9.413363, "enumerate": -9.413363, "environ": -8.720216, "eol": -8.314751, "epilog": -8.720216, "epsilon": -7.467453, "epsilon_err": -8.720216, "equivalent": -9.413363, "error": -9.413363, "errors": -8.314751, "example": -9.413363, "except": -7.333921, "exclude": -8.720216, "exclude_binaries": -9.413363, "excluded": -9.413363, "exe": -8.720216, "executable": -8.720216, "exist": -9.413363, "exists.": -9.413363, "exit": -9.413363, "extension_ranges": -9.413363, "extension_scope": -9.413363, "extensions": -9.413363, "externs": -8.314751, "f": -6.928456, "f.name": -9.413363, "f.rel.to": -9.413363, "fail": -8.314751, "fastbinary": -8.027068, "fastbinary.decode_binary": -9.413363, "fastbinary.encode_binary": -9.413363, "fcgi": -9.413363, "feed": -9.413363, "feed.notify_interval": -9.413363, "feed.notify_next": -9.413363, "feed.notify_unit": -9.413363, "feed.save": -9.413363, "fid": -8.720216, "field": -6.774306, "field.attname": -7.803925, "field.get_default": -8.314751, "field.name": -7.467453, "field.rel": -9.413363, "field_label": -9.413363, "field_name": -9.413363, "field_names": -8.314751, "fields": -7.015468, "fields.": -8.720216, "fields.rstrip": -9.413363, "fields_iter": -8.720216, "file": -8.027068, "filegroup": -8.314751, "filename": -6.928456, "files": -8.027068, "fill": -8.720216, "filter": -8.314751, "finish": -9.413363, "fname": -9.413363, "following": -9.413363, "for": -5.406030, "force": -8.720216, "force_unicode": -8.720216, "form": -9.413363, "format_help": -9.413363, "format_usage": -9.413363, "formatter_class": -8.720216, "fp": -7.621603, "fpxx": -9.413363, "frameRate": -9.413363, "freebsd": -7.333921, "from": -5.584721, "fromfile_prefix_chars": -8.720216, "frozenset": -9.413363, "ftype": -7.803925, "full": -9.413363, "full_name": -8.720216, "functools": -9.413363, "future_builtins": -9.413363, "gerrit_war": -7.216138, "getSubdirectories": -8.720216, "get_": -6.774306, "get_default": -9.413363, "get_model": -8.314751, "get_text_list": -9.413363, "getattr": -7.333921, "gitDirectories": -8.720216, "gitDirectory": -8.720216, "git_repository": -9.413363, "given": -9.413363, "glanz": -6.848413, "glanz_pconv": -9.413363, "glanz_pconv.diagonal": -8.720216, "glanz_phi": -8.027068, "glanz_phi.size": -9.413363, "glanz_popt": -8.314751, "glanz_table": -8.720216, "glanz_table.add_row": -9.413363, "glanz_x": -8.314751, "glanz_y": -8.720216, "glob": -8.720216, "go_prefix": -9.413363, "google.protobuf": -8.027068, "graphnode": -9.413363, "graphnode.GraphNode": -9.413363, "graphnode.find_nodes_mid": -9.413363, "graphnode.find_selected_nodes": -9.413363, "graphview": -9.413363, "gt": -8.720216, "guess": -8.027068, "guesses": -8.027068, "guid": -9.413363, "gv": -9.413363, "gv.GetMaster": -9.413363, "handle.": -9.413363, "handle_stream": -9.413363, "handled": -9.413363, "hard": -9.413363, "has_default_value": -9.413363, "hasattr": -7.467453, "hash": -8.720216, "have": -9.413363, "header": -7.621603, "header.": -8.720216, "headers": -8.720216, "headings": -7.216138, "heavy": -9.413363, "height": -9.413363, "hello": -9.413363, "hello_lib": -9.413363, "help": -7.621603, "hiddenimports": -9.413363, "hide": -9.413363, "hookspath": -9.413363, "host": -7.467453, "host_arch": -8.027068, "host_cxx_is_biarch": -9.413363, "hostname": -9.413363, "hour": -9.413363, "href": -8.027068, "href=": -9.413363, "http": -8.027068, "http_method_funcs": -8.720216, "https": -8.720216, "httputil": -9.413363, "httputil.HTTPHeaders.parse": -9.413363, "i": -7.015468, "ia": -8.314751, "id": -8.720216, "if": -4.828395, "implementation": -8.720216, "import": -5.109298, "importer": -9.413363, "in": -5.082630, "include_defs": -9.413363, "indent_increment": -9.413363, "index": -9.413363, "individual": -9.413363, "input": -9.413363, "inputs": -9.413363, "insert": -8.720216, "insist": -9.413363, "instance": -9.413363, "instance.": -9.413363, "instantiating": -9.413363, "int": -6.928456, "internal": -9.413363, "involved": -8.720216, "io_loop": -8.314751, "iostream": -9.413363, "ip": -8.720216, "iprot": -9.413363, "iprot.__class__": -9.413363, "iprot.readFieldBegin": -9.413363, "iprot.readFieldEnd": -9.413363, "iprot.readString": -9.413363, "iprot.readStructBegin": -9.413363, "iprot.readStructEnd": -9.413363, "iprot.skip": -8.720216, "iprot.trans": -8.720216, "is": -6.322320, "isGitDirectory": -8.720216, "is_extendable": -9.413363, "is_extension": -9.413363, "is_proxy": -7.803925, "is_related_object": -9.413363, "isinstance": -7.467453, "it": -9.413363, "itertools": -9.413363, "itertools.izip": -9.413363, "j": -7.803925, "json": -9.413363, "json.dump": -9.413363, "json.load": -9.413363, "jsontemplate": -9.413363, "jsontemplate.expand": -9.413363, "just": -8.720216, "k": -7.621603, "kept": -9.413363, "key": -8.027068, "key.": -9.413363, "key.upper": -9.413363, "keyfile": -8.314751, "kwargs": -8.027068, "kwargs.keys": -9.413363, "kwargs.pop": -8.027068, "label": -6.417631, "lambda": -7.803925, "len": -8.027068, "library": -9.413363, "lifting": -9.413363, "lights": -9.413363, "line": -8.027068, "line.strip": -9.413363, "linestyle": -7.333921, "linux": -7.110778, "list": -8.720216, "lists": -8.720216, "little": -9.413363, "load": -7.621603, "load_table": -8.720216, "load_template": -8.720216, "loc": -7.803925, "log": -9.413363, "log.write": -8.027068, "logging": -9.413363, "logic": -9.413363, "lookup": -9.413363, "loongson": -9.413363, "lt": -8.720216, "m": -7.803925, "mac": -7.621603, "main": -7.467453, "many": -9.413363, "map": -9.413363, "maps": -8.720216, "marker": -8.027068, "master": -8.720216, "master.AddUndo": -9.413363, "master.GetRoot": -9.413363, "matplotlib.pyplot": -9.413363, "matt": -6.848413, "matt_pconv": -9.413363, "matt_pconv.diagonal": -8.720216, "matt_phi": -8.027068, "matt_phi.size": -9.413363, "matt_popt": -8.314751, "matt_table": -8.720216, "matt_table.add_row": -9.413363, "matt_x": -8.314751, "matt_y": -8.720216, "max": -7.015468, "max_help_position": -9.413363, "maxwaves": -8.314751, "message": -8.314751, "message_dict": -9.413363, "message_type": -9.413363, "meta": -7.621603, "metavar": -7.803925, "meth": -8.027068, "method": -8.720216, "method.": -9.413363, "methods": -8.314751, "methods.add": -9.413363, "midpoint": -8.314751, "min": -7.110778, "minute": -9.413363, "mips": -7.621603, "mipsel": -8.720216, "missing": -9.413363, "mode": -7.333921, "model": -7.333921, "model_module": -9.413363, "model_module.__name__.split": -9.413363, "model_name": -9.413363, "model_unpickle.__safe_for_unpickle__": -9.413363, "modes": -8.314751, "module": -7.621603, "month": -9.413363, "more": -9.413363, "mouseY": -9.413363, "moves": -9.413363, "msg": -9.413363, "multiple": -8.720216, "must": -8.314751, "myapp": -8.720216, "mydomain.crt": -9.413363, "mydomain.key": -9.413363, "n": -7.621603, "n.position": -9.413363, "nContent": -9.413363, "name": -5.775777, "names": -8.314751, "namespace": -8.314751, "nargs": -8.027068, "native_str": -8.720216, "need": -8.314751, "nested_types": -9.413363, "netbsd": -7.333921, "new_class": -7.216138, "new_class.Meta": -9.413363, "new_class.__module__": -9.413363, "new_class._base_manager": -9.413363, "new_class._base_manager._copy_to_model": -9.413363, "new_class._default_manager": -9.413363, "new_class._default_manager._copy_to_model": -9.413363, "new_class._meta.app_label": -8.314751, "new_class._meta.concrete_model": -8.720216, "new_class._meta.get_latest_by": -9.413363, "new_class._meta.local_fields": -8.314751, "new_class._meta.local_many_to_many": -8.720216, "new_class._meta.ordering": -9.413363, "new_class._meta.parents": -9.413363, "new_class._meta.parents.update": -9.413363, "new_class._meta.proxy": -9.413363, "new_class._meta.setup_proxy": -9.413363, "new_class._meta.virtual_fields": -9.413363, "new_class._prepare": -9.413363, "new_class.add_to_class": -7.467453, "new_class.copy_managers": -8.720216, "new_fields": -8.720216, "new_positions": -9.413363, "new_positions.append": -9.413363, "no": -8.720216, "noStroke": -8.720216, "no_keep_alive": -8.027068, "node": -8.314751, "node.position": -9.413363, "node.size": -9.413363, "nodes": -7.216138, "nodes.sort": -9.413363, "non": -9.413363, "not": -5.724483, "notified": -9.413363, "np": -9.413363, "np.abs": -9.413363, "np.genfromtxt": -7.333921, "np.linspace": -7.216138, "np.mean": -9.413363, "np.ones": -7.015468, "np.sqrt": -6.580150, "nquote": -9.413363, "number": -7.803925, "numpy": -9.413363, "o": -8.314751, "o_map": -8.314751, "obj": -8.720216, "obj_name": -8.720216, "object": -8.027068, "objects": -9.413363, "objects.": -9.413363, "occur.": -9.413363, "occured.": -9.413363, "of": -7.216138, "offset": -6.848413, "on": -7.803925, "only": -9.413363, "only_installed": -8.720216, "op": -9.413363, "op.curve_fit": -7.621603, "open": -7.803925, "openbsd": -7.333921, "oprot": -9.413363, "oprot.__class__": -9.413363, "oprot.trans.write": -9.413363, "oprot.writeFieldBegin": -9.413363, "oprot.writeFieldEnd": -9.413363, "oprot.writeFieldStop": -9.413363, "oprot.writeString": -9.413363, "oprot.writeStructBegin": -9.413363, "oprot.writeStructEnd": -9.413363, "option_string": -8.720216, "option_strings": -9.413363, "options": -8.027068, "options.hspace": -8.314751, "options.save": -9.413363, "options.vspace": -8.314751, "or": -6.368840, "order": -8.314751, "original_base": -9.413363, "original_base._meta.concrete_managers": -9.413363, "os": -8.720216, "os.chdir": -9.413363, "os.getcwd": -9.413363, "os.path.abspath": -9.413363, "os.path.isdir": -9.413363, "os.path.isfile": -9.413363, "os.system": -9.413363, "os.walk": -9.413363, "other": -7.333921, "other.__dict__": -9.413363, "other._get_pk_val": -9.413363, "output": -9.413363, "outputs": -8.720216, "overload": -9.413363, "overrides": -9.413363, "p": -9.413363, "package": -8.720216, "parameters": -8.720216, "parent": -8.720216, "parent._meta.abstract": -9.413363, "parent._meta.fields": -9.413363, "parent_fields": -8.314751, "parent_link": -9.413363, "parents": -7.110778, "parse_args": -9.413363, "parse_known_args": -9.413363, "parse_qs_bytes": -9.413363, "parser": -8.720216, "parser.parse_args": -9.413363, "parser_class": -9.413363, "parts": -9.413363, "pass": -7.803925, "passed": -9.413363, "pconv": -8.720216, "pconv.diagonal": -8.314751, "perform": -9.413363, "period": -8.720216, "phi": -7.803925, "phi_err": -8.314751, "phif": -7.467453, "pk__": -9.413363, "pkg_tar": -9.413363, "pl": -9.413363, "pl.clf": -7.803925, "pl.errorbar": -7.333921, "pl.grid": -7.803925, "pl.legend": -7.803925, "pl.plot": -7.216138, "pl.savefig": -7.803925, "pl.title": -7.803925, "pl.xlabel": -7.803925, "pl.ylabel": -7.803925, "place": -9.413363, "pluggable": -9.413363, "popt": -7.803925, "position": -7.216138, "ppc": -7.803925, "prefix": -9.413363, "prefix_chars": -8.720216, "prettytable": -9.413363, "prev_offset": -7.803925, "primary": -9.413363, "print": -5.521543, "printDelimiter": -8.027068, "print_help": -9.413363, "print_usage": -9.413363, "problem": -9.413363, "process.": -9.413363, "prog": -8.027068, "prop": -7.803925, "property": -8.314751, "protocol": -7.621603, "protocol.ClientFactory": -9.413363, "protocol.Protocol": -9.413363, "provided": -9.413363, "providers": -9.413363, "python": -8.027068, "pyz": -8.720216, "qnx": -7.621603, "query": -8.314751, "query.split": -9.413363, "r": -6.417631, "raise": -7.015468, "raises": -8.720216, "random": -8.314751, "random.randint": -9.413363, "range": -7.803925, "rather": -9.413363, "reactor": -9.413363, "reactor.connectTCP": -9.413363, "reactor.run": -9.413363, "reactor.stop": -8.720216, "read": -9.413363, "real": -9.413363, "reason": -8.314751, "reflection": -9.413363, "register_models": -8.720216, "rel_obj": -9.413363, "reminder": -8.720216, "remote": -9.413363, "remote_ip": -9.413363, "renderWave": -8.720216, "reported": -9.413363, "request": -8.027068, "request.": -9.413363, "request.method": -9.413363, "request_callback": -8.027068, "requested": -8.720216, "requests": -9.413363, "required": -7.803925, "res": -8.314751, "res.BTN_SAVE": -9.413363, "res.DLG_OPTIONS": -9.413363, "res.EDT_HSPACE": -8.720216, "res.EDT_VSPACE": -8.720216, "res.file": -8.314751, "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": -9.413363, "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": -9.413363, "res.string.XPAT_COMMAND_ALIGNVERTICAL": -9.413363, "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": -9.413363, "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": -9.413363, "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": -9.413363, "respectively.": -9.413363, "response": -8.720216, "result": -8.720216, "results": -7.333921, "results.append": -9.413363, "return": -5.424379, "return_str": -7.333921, "returns": -9.413363, "rlopen": -8.720216, "root": -8.314751, "router": -9.413363, "row": -7.110778, "rows.": -8.720216, "rule": -9.413363, "runtime_hooks": -9.413363, "rv": -9.413363, "rv.methods": -9.413363, "rx": -9.413363, "s": -6.081158, "s.": -9.413363, "s.find": -9.413363, "s.split": -9.413363, "s__": -9.413363, "save": -8.027068, "saving": -9.413363, "saving.": -8.720216, "scala_repositories": -9.413363, "schwarz": -6.848413, "schwarz_pconv": -9.413363, "schwarz_pconv.diagonal": -8.720216, "schwarz_phi": -8.027068, "schwarz_phi.size": -9.413363, "schwarz_popt": -8.314751, "schwarz_table": -8.720216, "schwarz_table.add_row": -9.413363, "schwarz_x": -8.314751, "schwarz_y": -8.720216, "scipy.optimize": -9.413363, "second": -9.413363, "seconds": -9.413363, "see": -9.413363, "seed_cache": -8.720216, "self": -4.970712, "self.Close": -9.413363, "self.GetLong": -8.720216, "self.LoadDialogResource": -9.413363, "self.SetLong": -8.720216, "self.__class__": -7.467453, "self.__class__.__name__": -9.413363, "self.__dict__": -8.720216, "self.__dict__.iteritems": -9.413363, "self.__eq__": -9.413363, "self._dialog": -8.027068, "self._finish_request": -8.720216, "self._get_pk_val": -8.720216, "self._header_callback": -8.314751, "self._on_headers": -9.413363, "self._on_write_complete": -9.413363, "self._request": -8.027068, "self._request.headers": -9.413363, "self._request.headers.get": -9.413363, "self._request.method": -9.413363, "self._request.supports_http_": -9.413363, "self._request_finished": -8.027068, "self._write_callback": -7.803925, "self.address": -9.413363, "self.defaults": -9.413363, "self.defaults.copy": -8.720216, "self.dialog.Open": -9.413363, "self.dict_": -8.720216, "self.dict_.iteritems": -9.413363, "self.dict_.update": -9.413363, "self.headers": -9.413363, "self.load": -9.413363, "self.no_keep_alive": -8.027068, "self.request_callback": -8.314751, "self.save": -9.413363, "self.stream": -9.413363, "self.stream.close": -9.413363, "self.stream.closed": -9.413363, "self.stream.read_until": -8.720216, "self.stream.socket": -9.413363, "self.stream.write": -9.413363, "self.stream.writing": -8.720216, "self.thrift_spec": -8.027068, "self.title": -7.803925, "self.transport.loseConnection": -9.413363, "self.transport.write": -9.413363, "self.xheaders": -8.314751, "semantics": -9.413363, "sender": -9.413363, "separate": -9.413363, "sequentially": -9.413363, "serialized_end": -9.413363, "serialized_pb": -9.413363, "serialized_start": -9.413363, "serializer": -9.413363, "server": -9.413363, "session": -9.413363, "session.argv": -9.413363, "set": -7.467453, "set.": -9.413363, "set_": -7.216138, "set_defaults": -9.413363, "setattr": -7.467453, "settings": -8.720216, "settings.options_filename": -8.720216, "setup": -8.720216, "shared_library": -8.314751, "should": -8.720216, "shouldn": -9.413363, "sigma": -8.027068, "signals": -9.413363, "signals.post_init.send": -9.413363, "simple": -9.413363, "simplejson": -9.413363, "simplejson.dumps": -9.413363, "sin": -9.413363, "since": -9.413363, "single": -8.720216, "site": -9.413363, "size": -7.803925, "smart_str": -8.720216, "socket": -9.413363, "socket.AF_INET": -8.314751, "socket.AF_UNSPEC": -9.413363, "socket.AI_NUMERICHOST": -9.413363, "socket.EAI_NONAME": -9.413363, "socket.SOCK_STREAM": -9.413363, "socket.gaierror": -9.413363, "socket.getaddrinfo": -9.413363, "solaris": -8.027068, "solutions": -9.413363, "spacing": -7.467453, "spk": -9.413363, "sql": -8.720216, "sqlite": -9.413363, "sqlite.connect": -9.413363, "srcs": -7.621603, "ssl": -8.720216, "ssl.CERT_REQUIRED": -9.413363, "ssl_options": -7.803925, "stack_context": -9.413363, "stack_context.wrap": -8.720216, "standard": -9.413363, "start_line": -9.413363, "start_line.split": -9.413363, "start_response": -8.314751, "status": -9.413363, "str": -6.468924, "stream": -8.027068, "stream.": -9.413363, "string": -9.413363, "strings.": -8.720216, "strip": -8.720216, "strip_prefix": -9.413363, "stroke": -9.413363, "struct": -9.413363, "subclass": -9.413363, "subclass_exception": -8.314751, "subclasses": -9.413363, "subdirectories": -8.314751, "super": -8.027068, "super_new": -8.314751, "support": -9.413363, "supports": -9.413363, "sys": -7.803925, "sys.argv": -8.720216, "sys.exit": -8.720216, "sys.modules": -9.413363, "sys.version_info": -7.803925, "t": -7.015468, "table": -7.803925, "table.add_row": -9.413363, "table.align": -9.413363, "table.split": -9.413363, "table_uris": -8.720216, "tables": -9.413363, "taken": -9.413363, "target": -7.803925, "target_arch": -8.027068, "target_cxx_is_biarch": -9.413363, "template_str": -8.027068, "templatefile": -7.621603, "than": -9.413363, "that": -7.621603, "the": -5.979376, "theta": -8.314751, "they": -8.720216, "this": -6.848413, "thrift.Thrift": -9.413363, "thrift.protocol": -8.720216, "thrift.transport": -9.413363, "thrift_spec": -9.413363, "through": -9.413363, "time": -8.720216, "time.time": -7.333921, "title": -8.027068, "to": -6.640774, "tornado": -8.314751, "tornado.escape": -9.413363, "tornado.netutil": -9.413363, "tornado.util": -9.413363, "transaction": -9.413363, "true": -8.314751, "try": -7.333921, "tuple": -8.720216, "twisted.internet": -9.413363, "type": -7.110778, "type.__new__": -9.413363, "typically": -9.413363, "typing": -9.413363, "u": -7.333921, "ugettext_lazy": -9.413363, "ui": -7.467453, "unicode": -8.027068, "unicode_literals": -9.413363, "unique": -8.720216, "unpickle": -8.720216, "update": -8.027068, "update_fields": -9.413363, "update_wrapper": -9.413363, "updating": -9.413363, "uploads": -9.413363, "upx": -8.720216, "ur": -7.015468, "uri": -7.467453, "uri.split": -8.720216, "urldecode": -9.413363, "urllib": -8.027068, "usage": -8.027068, "use": -8.720216, "used": -8.027068, "using": -9.413363, "usually": -9.413363, "utf": -9.413363, "v": -7.015468, "val": -7.110778, "val.strip": -9.413363, "validate": -8.720216, "validate_unique": -9.413363, "validation": -9.413363, "validators": -9.413363, "value": -7.216138, "values": -7.110778, "values.split": -9.413363, "variables": -8.720216, "version": -7.803925, "version.startswith": -9.413363, "via": -8.720216, "view": -8.720216, "view.__doc__": -9.413363, "view.__module__": -9.413363, "view.__name__": -9.413363, "view.methods": -9.413363, "view.view_class": -9.413363, "views": -9.413363, "visibility": -8.027068, "w": -8.720216, "want": -9.413363, "way": -8.720216, "week": -9.413363, "weiss": -6.848413, "weiss_pconv": -9.413363, "weiss_pconv.diagonal": -8.720216, "weiss_phi": -8.027068, "weiss_phi.size": -9.413363, "weiss_popt": -8.314751, "weiss_table": -8.720216, "weiss_table.add_row": -9.413363, "weiss_x": -8.314751, "weiss_y": -8.720216, "when": -8.027068, "where": -9.413363, "which": -7.803925, "while": -8.314751, "width": -8.720216, "will": -8.720216, "win": -7.621603, "with": -7.333921, "with_statement": -9.413363, "without": -9.413363, "work": -9.413363, "would": -9.413363, "write": -8.720216, "x": -5.652163, "x.DoesNotExist": -9.413363, "x.MultipleObjectsReturned": -9.413363, "x._meta.abstract": -8.720216, "x.size": -8.720216, "x.x": -9.413363, "x.y": -9.413363, "xerr": -7.621603, "xheaders": -8.027068, "xspacing": -8.027068, "y": -7.110778, "yerr": -7.333921, "you": -8.720216, "yvalues": -7.467453, "yvalues.append": -9.413363, "zip": -7.216138, "zip_file": -9.413363, "{": -3.891902, "}": -3.841209, }, "QML": map[string]float64{ "&&": -4.578142, "(": -2.275556, ")": -2.275556, "+": -4.067316, ",": -2.563238, ".join": -5.271289, ".map": -6.369901, ":": -2.873393, ";": -3.234407, "=": -3.536688, "?": -4.983607, "FileInfo.joinPaths": -4.290459, "ModUtils.PropertyValidator": -6.369901, "Module": -6.369901, "PropertyOptions": -5.676754, "[": -3.536688, "]": -3.536688, "allowedValues": -5.676754, "architecture": -4.423991, "bool": -5.271289, "buildVariant": -4.983607, "canonicalArchitecture": -5.676754, "commonRunEnvironment": -6.369901, "debugInformation": -6.369901, "description": -5.676754, "else": -4.983607, "enableDebugCode": -6.369901, "env": -4.423991, "false": -6.369901, "function": -5.676754, "getNativeSetting": -4.578142, "hostOS": -4.578142, "hostOS.contains": -4.067316, "hostOSBuildVersion": -5.271289, "hostOSVersion": -4.760463, "hostOSVersion.split": -6.369901, "hostOSVersionMajor": -6.369901, "hostOSVersionMinor": -6.369901, "hostOSVersionParts": -4.983607, "hostOSVersionPatch": -6.369901, "if": -4.067316, "import": -5.271289, "install": -6.369901, "installDir": -6.369901, "installPrefix": -4.172676, "installRoot": -4.172676, "installSourceBase": -6.369901, "int": -4.578142, "item": -5.676754, "name": -5.676754, "new": -6.369901, "optimization": -6.369901, "parseInt": -6.369901, "path": -6.369901, "pathListSeparator": -5.271289, "pathSeparator": -6.369901, "profile": -6.369901, "property": -3.037696, "qbs": -6.369901, "qbs.FileInfo": -6.369901, "qbs.ModUtils": -6.369901, "readonly": -4.067316, "return": -4.423991, "string": -3.804952, "stringList": -5.271289, "sysroot": -5.271289, "targetOS": -5.676754, "targetOS.contains": -4.983607, "toolchain": -6.369901, "undefined": -4.760463, "validate": -6.369901, "validator": -6.369901, "validator.addCustomValidator": -6.369901, "validator.addVersionValidator": -6.369901, "validator.setRequiredProperty": -4.760463, "validator.validate": -6.369901, "value": -6.369901, "var": -4.760463, "version": -5.271289, "versionMajor": -5.676754, "versionMinor": -5.676754, "versionPatch": -5.676754, "{": -3.425462, "||": -4.578142, "}": -3.425462, }, "QMake": map[string]float64{ "!": -4.369448, "#": -5.062595, "(": -2.983153, ")": -2.983153, "+": -2.497646, ",": -3.963983, "-": -5.062595, ".git/HEAD": -5.062595, "/usr/bin/qmake": -5.062595, ":": -5.062595, "=": -2.118156, ">": -4.369448, "BlahApp": -5.062595, "CONFIG": -5.062595, "DEFINES": -5.062595, "FORMS": -4.369448, "HEAD": -5.062595, "HEADERS": -4.369448, "QMake.": -5.062595, "QT": -3.676301, "QT_CONFIG": -4.369448, "QT_MAJOR_VERSION": -5.062595, "QT_NO_OPENGL": -5.062595, "RC_FILE": -5.062595, "RESOURCES": -5.062595, "Resources/winres.rc": -5.062595, "SHEBANG#!qmake": -5.062595, "SOURCES": -4.369448, "TARGET": -3.963983, "TEMPLATE": -4.369448, "Test.ui": -5.062595, "This": -5.062595, "This/Is/Folder/file": -3.963983, "ThisIsNotAGitRepo": -5.062595, "\\": -3.453157, "app": -4.369448, "blahapp": -5.062595, "c": -5.062595, "contains": -4.369448, "core": -4.369448, "cpp": -5.062595, "echo": -5.062595, "else": -4.369448, "exists": -5.062595, "file": -4.369448, "file.cpp": -4.369448, "file.h": -4.369448, "file.ui": -5.062595, "functions.pri": -5.062595, "git": -5.062595, "greaterThan": -5.062595, "gui": -4.369448, "h": -4.369448, "i": -5.062595, "include": -5.062595, "is": -5.062595, "message": -5.062595, "opengl": -4.369448, "opengles": -5.062595, "parse": -5.062595, "qt": -5.062595, "res.qrc": -5.062595, "rev": -5.062595, "rev.txt": -4.369448, "simpleapp": -5.062595, "system": -4.369448, "widgets": -5.062595, "win": -4.369448, "{": -3.270836, "|": -5.062595, "}": -3.270836, }, "R": map[string]float64{ "!": -6.159095, "#": -7.075386, "##": -7.768533, "##numpoints": -7.768533, "##output": -7.768533, "##polyg": -7.768533, "$": -4.213185, "%": -7.768533, "&&": -7.075386, "(": -2.352433, ")": -2.343583, "*": -7.075386, "+": -6.382239, ",": -2.416675, "-": -3.817290, ".": -5.689092, "...": -6.382239, "./a.r": -7.768533, ".BaseNamespaceEnv": -7.768533, ".GlobalEnv": -7.075386, ".loaded_modules": -7.768533, "/": -7.768533, "//biostat.jhsph.edu/": -7.768533, "//scholar.google.com": -7.768533, "/usr/bin/env": -7.075386, "2": -7.768533, ":": -4.772801, "<": -3.961871, "<->": -7.768533, "<http://obeautifulcode.com/R/How-R-Searches-And-Finds-Stuff/>": -7.768533, "=": -2.924346, "A": -7.768533, "Dates": -7.768533, "Day": -7.075386, "Details": -7.768533, "Example": -7.768533, "Examples": -7.768533, "FALSE": -5.571309, "Filter": -7.768533, "Freq": -7.768533, "Google": -7.075386, "Hour": -7.075386, "However": -7.768533, "Import": -7.768533, "Main": -7.075386, "MedianNorm": -7.075386, "Module": -7.768533, "Modules": -7.075386, "NULL": -7.075386, "Not": -7.768533, "Otherwise": -7.768533, "ParseDates": -7.075386, "R": -7.768533, "Rscript": -7.075386, "SHEBANG#!Rscript": -7.768533, "Scholar": -7.768533, "Scholar.": -7.768533, "See": -7.768533, "TRUE": -4.878162, "That": -7.768533, "The": -6.382239, "There": -7.768533, "Therefore": -7.768533, "This": -7.768533, "Unlike": -7.768533, "Use": -7.768533, "When": -7.768533, "[": -4.633039, "\\": -3.779549, "]": -4.590479, "a": -5.465948, "a.r": -7.768533, "aes": -7.075386, "alias": -6.669921, "all.days": -7.075386, "all.hours": -7.075386, "also": -7.768533, "always": -7.768533, "an": -7.075386, "analyses": -7.768533, "and": -5.976774, "apply": -7.075386, "are": -6.159095, "argument": -7.768533, "arguments": -7.768533, "as": -7.768533, "as.character": -6.669921, "as.data.frame": -7.768533, "assign": -7.768533, "at": -7.075386, "attach": -4.878162, "attach_operators": -6.159095, "attached": -7.075386, "attaching": -7.075386, "attr": -7.075386, "automatically": -7.768533, "available": -7.075386, "based": -7.768533, "be": -5.822623, "because": -7.768533, "both": -7.768533, "by": -6.669921, "byrow": -6.669921, "c": -5.370638, "cache_module": -7.768533, "can": -6.382239, "cat": -7.768533, "causes": -7.768533, "chdir": -7.768533, "citation": -7.075386, "class": -6.382239, "cnts": -7.075386, "code": -4.401237, "coef": -7.768533, "col": -6.382239, "comparing": -7.768533, "complementary": -7.768533, "computer": -7.768533, "consider": -7.768533, "considered": -7.768533, "containing_modules": -6.669921, "convenience": -7.768533, "counts": -7.768533, "current": -6.159095, "data": -5.203584, "data.frame": -7.768533, "data.matrix": -7.768533, "data.norm": -6.669921, "dates": -6.669921, "days": -7.075386, "default": -7.768533, "default.": -7.768533, "defaults": -7.075386, "density": -6.382239, "depending": -7.768533, "description": -7.075386, "details": -7.768533, "determined": -7.768533, "dev.off": -7.075386, "developed": -7.768533, "devnum": -7.075386, "df": -6.669921, "df.residual": -7.075386, "df.residual.default": -7.768533, "df.residual.lme": -7.768533, "df.residual.mer": -7.768533, "df.residual.mira": -7.768533, "dim": -7.768533, "directly": -7.768533, "directory": -7.075386, "do_import": -6.382239, "docType": -7.768533, "drastically": -7.768533, "effect": -7.768533, "else": -6.382239, "emph": -6.382239, "env": -7.075386, "envir": -6.159095, "environment": -5.976774, "environmentName": -7.075386, "estimated": -7.768533, "even": -7.768533, "examples": -7.768533, "executed": -7.768533, "exhibit_namespace": -6.669921, "exists": -7.768533, "exp": -7.768533, "export_operators": -7.075386, "exported_functions": -7.075386, "extract": -7.768533, "f": -5.465948, "factor": -7.075386, "file": -6.159095, "filename": -7.768533, "find_module": -7.768533, "first.": -7.768533, "fit": -7.075386, "fitted": -7.768533, "fixDF": -7.768533, "for": -6.382239, "found": -7.075386, "from": -6.382239, "full": -7.768533, "fully": -7.768533, "function": -4.878162, "functions": -6.669921, "g": -7.768533, "geom_point": -7.768533, "geomeans": -6.382239, "get": -7.075386, "getOption": -7.768533, "get_loaded_module": -7.768533, "getopt": -7.768533, "ggplot": -5.822623, "ggsave": -7.768533, "global": -7.768533, "globally": -7.768533, "grepl": -7.768533, "group": -7.768533, "h": -5.203584, "happens": -7.768533, "header": -7.768533, "height": -5.822623, "hello": -7.075386, "help": -7.768533, "helpful": -7.768533, "highest": -7.768533, "hist": -6.382239, "hours": -7.075386, "http": -7.075386, "i": -5.976774, "i.e.": -7.768533, "identical": -7.075386, "identifier": -7.768533, "if": -4.590479, "ifelse": -7.768533, "import": -5.689092, "imported": -7.075386, "imports": -7.768533, "in": -5.203584, "independently.": -7.768533, "index": -7.768533, "inherits": -5.976774, "inserted": -7.768533, "inside": -7.075386, "interactive": -6.669921, "intern": -7.768533, "into": -7.768533, "invisible": -7.075386, "invoked": -7.075386, "is": -5.370638, "is.data.frame": -7.768533, "is.matrix": -7.768533, "is.null": -5.689092, "is_module_loaded": -7.768533, "is_op": -7.075386, "is_predefined": -7.075386, "isolated": -7.768533, "it": -6.669921, "item": -6.669921, "its": -7.768533, "jleek/code/googleCite.r": -7.768533, "k": -6.669921, "length": -6.669921, "levels": -7.075386, "library": -7.768533, "like": -7.768533, "limits": -7.768533, "lines": -5.976774, "list": -6.669921, "loaded": -6.382239, "loaded.": -7.768533, "local": -6.669921, "locally": -7.768533, "log": -6.159095, "lowest": -7.768533, "lsf.str": -7.075386, "main": -7.075386, "makes": -7.768533, "mapply": -7.768533, "matrix": -6.669921, "max": -7.768533, "median": -7.768533, "message": -7.768533, "mids": -6.382239, "might": -7.768533, "missing": -7.768533, "mk": -7.075386, "mn": -7.075386, "mod_env": -5.822623, "mod_ns": -6.159095, "module": -4.401237, "module_init_files": -7.768533, "module_name": -5.689092, "module_parent": -5.689092, "module_path": -5.060483, "module_ref": -6.669921, "modules": -7.075386, "multiple": -7.768533, "n": -6.669921, "name": -5.370638, "names": -7.075386, "namespace": -5.203584, "ncol": -6.669921, "nested": -7.768533, "new.env": -7.768533, "newly": -7.075386, "nor": -7.768533, "not": -7.075386, "note": -7.075386, "nrow": -7.768533, "nsamp": -5.689092, "number": -7.768533, "numpoints": -7.768533, "object": -5.203584, "object@dims": -7.768533, "of": -5.976774, "often": -7.768533, "on": -7.075386, "only": -6.669921, "op_env": -6.382239, "operators": -6.159095, "ops": -7.768533, "opt": -4.633039, "optionally": -7.768533, "options": -7.075386, "or": -7.768533, "other": -7.768533, "out": -6.382239, "outfile": -6.382239, "output": -7.768533, "outside": -7.768533, "own": -7.768533, "package": -6.159095, "packages": -7.075386, "parent": -5.465948, "parent.env": -6.382239, "parent.frame": -7.075386, "past": -7.768533, "paste": -6.669921, "path": -5.465948, "path.": -7.768533, "paths": -7.768533, "paths.": -7.768533, "plot": -5.822623, "png": -7.075386, "polyg": -7.768533, "predicting": -7.768533, "preference.": -7.768533, "prefix": -6.669921, "print": -7.768533, "print_usage": -7.075386, "priority.": -7.768533, "program.": -7.768533, "provides": -7.768533, "pts": -7.768533, "publication": -7.768533, "punchcard": -6.382239, "q": -6.669921, "qualified": -7.768533, "quote": -7.768533, "rainbow": -6.382239, "range": -7.768533, "re": -7.768533, "read.table": -7.768533, "reads": -7.768533, "records.": -7.768533, "refer": -7.768533, "reload": -7.075386, "res": -5.976774, "return": -5.689092, "returned": -7.768533, "returns.": -7.768533, "risk.": -7.768533, "rm": -7.768533, "rowMeans": -7.768533, "s": -6.669921, "same.": -7.768533, "sapply": -7.075386, "scale_size": -7.768533, "scholar": -5.976774, "scholars": -7.768533, "scope": -7.075386, "scores": -7.768533, "scripts": -7.768533, "search": -5.822623, "searched": -7.768533, "see": -7.768533, "seealso": -7.768533, "sep": -6.382239, "set": -7.075386, "silent": -6.669921, "size": -7.768533, "size.factors": -7.075386, "source": -7.075386, "spec": -7.075386, "specified": -7.768533, "specifying": -7.768533, "sprintf": -7.075386, "spsample": -7.768533, "status": -7.768533, "stderr": -7.768533, "stdout": -7.768533, "stop": -7.768533, "stopifnot": -6.669921, "strsplit": -6.669921, "structure": -6.669921, "substitute": -7.075386, "sum": -7.768533, "system": -7.768533, "t": -7.768533, "table": -7.768533, "terminal": -7.768533, "the": -4.510437, "them": -7.768533, "therefore": -7.768533, "they": -7.768533, "times": -7.075386, "title": -7.075386, "to": -5.203584, "try": -6.669921, "type": -6.669921, "unlist": -7.075386, "unload": -7.768533, "url": -7.075386, "usage": -7.768533, "used": -7.768533, "usefulness.": -7.768533, "user": -7.768533, "value": -7.075386, "vector": -6.669921, "via": -7.768533, "was": -7.768533, "which": -6.669921, "width": -5.822623, "will": -7.768533, "within": -7.768533, "x": -6.669921, "xlab": -7.075386, "y": -7.768533, "ylab": -7.075386, "ylim": -5.822623, "your": -7.768533, "{": -3.349693, "|": -6.669921, "||": -7.768533, "}": -3.349693, "~": -7.768533, "’": -6.669921, }, "RAML": map[string]float64{ "!": -4.859812, "#": -4.859812, "%": -4.859812, "**individual": -4.859812, "*delete*": -4.859812, ",": -2.913902, "-": -3.761200, "/": -4.859812, "//example.api.com/": -4.859812, "//raml": -4.859812, "/songs": -4.859812, ":": -1.222226, "API": -4.859812, "Music": -4.859812, "RAML": -4.859812, "The": -4.859812, "This": -4.859812, "World": -4.859812, "[": -4.166665, "]": -4.166665, "an": -4.859812, "application/json": -4.859812, "application/xml": -4.859812, "baseUri": -4.859812, "body": -4.859812, "by": -4.859812, "delete": -4.859812, "description": -3.761200, "example.com/secured.yml": -4.859812, "filter": -4.859812, "genre": -4.166665, "get": -4.166665, "http": -4.166665, "include": -4.859812, "is": -4.859812, "method": -4.859812, "number": -4.166665, "of": -4.859812, "paged": -4.166665, "pages": -4.166665, "post": -4.859812, "queryParameters": -4.166665, "responses": -4.859812, "return": -4.859812, "schema": -4.859812, "secured": -4.166665, "song**": -4.859812, "songId": -4.859812, "songs": -4.859812, "the": -4.859812, "title": -4.859812, "to": -4.859812, "traits": -4.859812, "type": -4.859812, "v": -4.859812, "version": -4.166665, "will": -4.859812, "{": -3.068053, "|": -4.166665, "}": -3.068053, }, "RDoc": map[string]float64{ "$": -4.660289, "(": -4.660289, ")": -4.660289, "+": -3.679460, ",": -3.561677, "-": -3.561677, ".": -5.065755, "//codeclimate.com/github/rdoc/rdoc": -5.758902, "//docs.seattlerb.org/rdoc": -5.758902, "//github.com/rdoc/rdoc": -5.758902, "//github.com/rdoc/rdoc/issues": -5.758902, ":": -3.273995, "</tt>": -4.660289, "<img>": -5.758902, "<tt>": -4.660289, "=": -3.361007, ">": -5.758902, "A": -5.758902, "C": -5.758902, "Copyright": -5.758902, "Dave": -5.758902, "Description": -5.758902, "Documentation": -5.065755, "Eric": -5.758902, "For": -5.758902, "Generating": -5.758902, "HTML": -5.758902, "Hodel.": -5.758902, "In": -5.758902, "LEGAL.rdoc": -5.758902, "LICENSE.rdoc.": -5.758902, "License": -5.758902, "Once": -5.758902, "Portions": -5.065755, "Pragmatic": -5.758902, "Programmers.": -5.758902, "RDoc": -3.812992, "Ruby": -4.372607, "System": -5.758902, "The": -5.758902, "These": -5.758902, "This": -5.065755, "Thomas": -5.758902, "Warranty": -5.758902, "You": -5.065755, "[": -4.660289, "\\": -5.758902, "]": -4.660289, "a": -4.149464, "all": -5.758902, "alt": -5.758902, "alt=": -5.758902, "an": -5.758902, "and": -3.561677, "any": -5.758902, "anything": -5.758902, "as": -5.758902, "be": -4.660289, "below": -5.758902, "bug": -5.758902, "bug.": -5.758902, "bugs": -5.758902, "by": -5.758902, "c": -5.065755, "can": -5.065755, "case": -5.758902, "climate": -5.758902, "code": -5.758902, "command": -4.372607, "contain": -5.758902, "copyright": -5.758902, "could": -5.758902, "create": -5.758902, "current": -5.758902, "date": -5.758902, "details.": -5.758902, "directory.": -5.758902, "displaying": -5.758902, "doc": -5.758902, "documentation": -3.679460, "express": -5.758902, "figure": -5.758902, "file.": -5.758902, "files": -5.065755, "fitness": -5.758902, "for": -3.561677, "free": -5.758902, "from": -5.758902, "generate": -5.758902, "generates": -5.758902, "generating": -5.758902, "having": -5.758902, "help": -5.758902, "home": -5.758902, "how": -5.758902, "http": -5.758902, "https": -4.660289, "implied": -5.065755, "in": -4.372607, "includes": -5.758902, "including": -5.758902, "index": -5.758902, "individual": -5.758902, "installed": -5.758902, "is": -4.372607, "itself": -5.758902, "like": -5.758902, "limitation": -5.758902, "line": -5.758902, "line.": -5.758902, "make": -5.065755, "may": -5.758902, "merchantability": -5.758902, "might": -5.758902, "more": -5.758902, "names...": -5.758902, "of": -5.065755, "option": -5.758902, "options": -5.758902, "or": -5.758902, "others": -5.758902, "our": -5.758902, "out": -5.758902, "output": -5.758902, "package": -5.758902, "page": -5.758902, "particular": -5.758902, "primary": -5.758902, "probably": -5.758902, "produce": -5.758902, "produces": -5.758902, "projects.": -5.758902, "provided": -5.758902, "purpose.": -5.758902, "quality": -5.758902, "rdoc": -3.967142, "readers": -5.758902, "redistributed": -5.758902, "report": -5.758902, "ri": -5.758902, "see": -5.758902, "slightly": -5.758902, "software": -5.065755, "source": -5.065755, "specified": -5.758902, "src": -5.758902, "starting": -5.758902, "stored": -5.758902, "subdirectory": -5.758902, "such": -5.758902, "summary": -5.758902, "t": -5.758902, "terms": -5.758902, "that": -5.758902, "the": -3.273995, "this": -5.758902, "to": -4.660289, "tools": -5.758902, "tree": -5.758902, "type": -5.065755, "typical": -5.758902, "under": -5.758902, "up": -5.758902, "use": -5.758902, "useful": -5.758902, "using": -5.758902, "warranties": -5.065755, "we": -5.758902, "will": -5.758902, "without": -5.065755, "you": -4.660289, "your": -5.758902, "{": -5.758902, "}": -5.758902, }, "REXX": map[string]float64{ "&": -6.258306, "(": -2.761798, ")": -2.771951, "*depth": -7.356918, "+": -4.717861, ",": -2.792570, "-": -6.258306, ".": -5.747480, ":": -5.565159, ";": -5.054333, "<": -7.356918, "</bold>": -7.356918, "</commandheadline>": -7.356918, "</commandname>": -7.356918, "</fgshine>": -7.356918, "</link>": -7.356918, "</modeheadline>": -7.356918, "</modename>": -7.356918, "</okand>": -7.356918, "</root>": -7.356918, "</story>": -7.356918, "</streck>": -7.356918, "</syntax>": -7.356918, "</syntaxheadline>": -7.356918, "<?xml>": -7.356918, "<bold>": -7.356918, "<commandheadline>": -7.356918, "<commandname>": -7.356918, "<fgshine>": -7.356918, "<link>": -7.356918, "<modeheadline>": -7.356918, "<modename>": -7.356918, "<okand>": -6.663771, "<root>": -7.356918, "<story>": -7.356918, "<streck>": -7.356918, "<syntax>": -7.356918, "<syntaxheadline>": -7.356918, "=": -2.366486, ">": -4.959023, "ADDRESS": -6.663771, "AREXX_BIFS": -7.356918, "AREXX_SEMANTICS": -7.356918, "ARG": -5.970624, "AddLib": -7.356918, "B": -6.258306, "BREAK_C": -6.663771, "C": -5.411008, "CALL": -4.265876, "COLORS": -6.663771, "ClearImage": -6.663771, "Close": -6.663771, "D": -5.747480, "DO": -4.024714, "DataType": -6.663771, "DrawRectangle": -7.356918, "ELSE": -6.258306, "END": -3.955721, "EXIT": -4.959023, "FILE": -6.663771, "FORCE": -7.356918, "FreeBrush": -7.356918, "GetBestVideoMode": -7.356918, "GetBrushAttributes": -6.258306, "HEIGHT": -6.258306, "IF": -3.922931, "ITERATE": -6.258306, "Index": -6.663771, "Init": -6.663771, "LEAVE": -6.663771, "LastPos": -7.356918, "Left": -5.970624, "Length": -6.258306, "Lines": -6.663771, "LoadBrush": -7.356918, "LoadPalette": -7.356918, "LockGUI": -7.356918, "Max": -6.663771, "Min": -7.356918, "NOP": -7.356918, "NOPROGRESS": -6.663771, "NUM": -6.663771, "ON": -7.356918, "OPTIONS": -6.663771, "OTHERWISE": -7.356918, "Open": -7.356918, "PARSE": -4.717861, "PULL": -6.258306, "PUSH": -6.663771, "Pragma": -7.356918, "PutBrush": -7.356918, "R": -7.356918, "RC": -6.258306, "RECTANGULAR": -7.356918, "RESULT": -5.970624, "RESULTS": -6.663771, "RETURN": -6.258306, "ReadArgs": -6.663771, "RemapBrush": -7.356918, "RequestNotify": -7.356918, "Right": -5.970624, "SAY": -4.466546, "SELECT": -6.258306, "SHOW": -7.356918, "SIGNAL": -7.356918, "SaveImage": -7.356918, "ScreenToBack": -7.356918, "ScreenToFront": -7.356918, "Set": -6.663771, "SetBrushHandle": -7.356918, "SetCurrentBrush": -6.663771, "Show": -7.356918, "ShowDir": -6.258306, "StateF": -7.356918, "THEN": -3.746000, "Text": -7.356918, "UnLockGUI": -7.356918, "Upper": -6.258306, "VAR": -5.054333, "W": -6.663771, "WHEN": -5.565159, "WHILE": -5.970624, "WIDTH": -6.258306, "Word": -5.747480, "WriteLn": -5.970624, "X": -7.356918, "abbrev": -5.054333, "arg": -3.922931, "args.colours": -5.970624, "args.directory": -6.663771, "args.file": -7.356918, "args.key": -5.565159, "args.palette": -6.663771, "args.remap": -7.356918, "argument": -4.791969, "b": -7.356918, "behandlarad": -5.747480, "besk": -6.663771, "bitor": -7.356918, "bitplan": -6.663771, "blad": -5.970624, "blad#": -6.258306, "bltsize": -5.970624, "bmap.": -7.356918, "bredd": -5.970624, "bredd/": -6.663771, "bredd//": -6.663771, "c": -7.356918, "call": -5.411008, "close": -6.663771, "copies": -7.356918, "depth": -6.258306, "dest": -6.258306, "dir": -4.361186, "djup": -6.663771, "do": -4.584330, "ebwidth": -5.159694, "ebwidth*pixheight": -6.663771, "ebwidth*pixheight*depth": -6.663771, "encoding=": -7.356918, "end": -4.466546, "eof": -7.356918, "exit": -6.258306, "fil": -5.747480, "fil#": -5.970624, "fillista": -5.159694, "filnamn": -4.648868, "for": -7.356918, "forever": -7.356918, "hoejd": -5.970624, "if": -4.648868, "index": -5.277477, "infil": -5.747480, "inrad": -3.182531, "key": -4.361186, "key#": -6.258306, "keytype": -4.523705, "kommandotyp": -6.663771, "konstfil": -5.565159, "length": -7.356918, "ln": -5.970624, "maxhoejd": -5.565159, "medd": -6.258306, "modeid": -6.258306, "nod": -6.258306, "och": -5.277477, "open": -5.970624, "options": -6.663771, "otherwise": -7.356918, "parse": -4.717861, "pixheight": -5.970624, "pixheight*": -6.663771, "pixheight*ebwidth": -6.258306, "pixheight*ebwidth*depth": -7.356918, "pixwidth": -6.663771, "pixwidth/": -7.356918, "prefix": -5.277477, "procedure": -7.356918, "r": -7.356918, "rad": -5.970624, "radnr": -6.258306, "readch": -7.356918, "readln": -6.663771, "rest": -5.159694, "return": -6.258306, "right": -6.663771, "say": -5.159694, "select": -7.356918, "skriv": -4.717861, "standalone=": -7.356918, "strip": -5.970624, "substr": -7.356918, "suffix": -5.277477, "tagg": -4.361186, "template": -5.747480, "testrad": -5.747480, "then": -4.361186, "to": -7.356918, "utfil": -5.159694, "value": -7.356918, "var": -4.872012, "visacookie": -7.356918, "when": -5.747480, "while": -5.747480, "with": -7.356918, "writech": -6.663771, "writeln": -6.258306, "x": -4.872012, "y": -5.277477, "|": -5.159694, "||": -3.773399, "~": -4.265876, }, "RMarkdown": map[string]float64{ "#": -3.091042, "(": -1.992430, ")": -1.992430, ":": -3.091042, "Some": -3.091042, "`": -1.299283, "hist": -3.091042, "plot": -3.091042, "r": -3.091042, "rnorm": -3.091042, "text.": -3.091042, "{": -3.091042, "}": -3.091042, }, "RPM Spec": map[string]float64{ "!": -6.090555, "##############################################################################": -7.882315, "#DocumentRoot": -7.882315, "#SSLCipherSuite": -7.882315, "#ServerAdmin": -7.882315, "#ServerName": -7.882315, "$": -5.802873, "%": -2.919470, "'": -7.882315, "(": -4.550110, ")": -4.481118, "*": -4.168743, "+": -6.783703, ",": -3.787970, "-": -1.916168, "./configure": -7.882315, ".exp": -7.882315, ".html": -7.882315, ".html.html": -7.882315, ".tar.bz": -7.189168, ".tar.gz": -6.783703, "/": -5.397408, "/*": -7.882315, "//code.google.com/p/erlydtl/": -7.882315, "//erlydtl.googlecode.com/files/erlydtl": -7.882315, "//ftp.cpan.org/authors/id/J/JO/JOESUF/libapreq": -7.882315, "//httpd.apache.org/": -7.882315, "//httpd.apache.org/dist/apache_": -7.882315, "//perl.apache.org/dist/mod_perl": -7.882315, "//www.modssl.org/source/mod_ssl": -7.882315, "/ab.": -7.882315, "/apachectl.": -7.882315, "/apxs": -7.189168, "/apxs.": -7.882315, "/bin/mktemp": -7.882315, "/cache/": -7.882315, "/cache/ssl_*": -7.882315, "/conf/httpd.conf": -7.189168, "/erlang/lib/erlydtl": -6.090555, "/etc": -7.882315, "/html/manual/mod/mod_perl": -7.882315, "/html/manual/mod/mod_perl/": -7.882315, "/httpd.": -7.882315, "/lib/manos": -7.882315, "/lib/pkgconfig/manos.pc": -7.882315, "/log/": -7.882315, "/logresolve.": -7.882315, "/man": -5.936405, "/man/man": -7.882315, "/manos": -6.783703, "/manos.": -7.882315, "/rotatelogs.": -7.882315, "/sbin/chkconfig": -7.882315, "/suexec.": -7.882315, "/usr": -7.882315, "/usr/local": -7.882315, "/usr/local/man": -7.882315, "/usr/sbin/useradd": -7.882315, "/v": -7.882315, "/www": -7.882315, ":": -3.349715, ";": -6.496021, "<": -4.624218, "<Directory>": -7.189168, "<altblue.net>": -7.882315, "<filename>": -7.882315, "<ilia.cheishvili@gmail.com>": -7.882315, "<sergio@serjux.com>": -6.496021, "=": -4.886583, ">": -4.416579, "?": -6.090555, "@@ContentRoot@@": -7.882315, "@@ServerRoot@@": -7.882315, "API": -7.882315, "APXS": -7.882315, "Apache": -5.317366, "Apache.": -7.882315, "Apache/Perl": -7.882315, "Application": -7.882315, "Apr": -7.189168, "Aug": -6.783703, "BR": -7.882315, "BUILT": -7.882315, "Basto": -6.496021, "BuildArch": -7.882315, "BuildRequires": -6.090555, "BuildRoot": -7.189168, "C": -7.882315, "COMPLETELY": -7.882315, "CONFIGURATION": -7.882315, "CONFLICT": -7.882315, "Certificate": -7.882315, "Cheishvili": -7.882315, "Constants": -7.882315, "Creation": -7.882315, "DSOs": -7.882315, "Dec": -7.882315, "Description": -7.882315, "Development/Libraries": -7.189168, "Development/Web/Servers": -7.882315, "Dist": -7.882315, "Django": -6.783703, "DocumentRoot": -7.882315, "Documentation": -7.189168, "Dynamic": -7.882315, "Embed": -7.882315, "Environment/Daemons": -7.882315, "Epoch": -7.882315, "Erlang": -6.783703, "ErlyDTL": -7.189168, "ExtUtils": -7.189168, "F": -7.882315, "FERARU": -4.746821, "Fedora": -7.882315, "Feraru": -6.783703, "Foundation.": -7.882315, "Framework": -7.882315, "Fri": -6.496021, "Group": -6.272877, "HTML": -7.882315, "HTTP": -7.882315, "Hat": -7.882315, "I": -7.882315, "IN.": -7.882315, "INSTALLDIRS": -7.882315, "IS": -7.882315, "If": -7.882315, "Ilia": -7.882315, "In": -7.189168, "Initial": -7.882315, "Internet.": -7.882315, "It": -7.189168, "Jan": -7.882315, "Jul": -6.090555, "Jun": -7.189168, "Language.": -7.189168, "Layer": -7.189168, "License": -6.496021, "MIT": -7.882315, "MIT/X": -7.882315, "MPSSL": -5.109726, "MakeMaker": -7.882315, "Makefile.patch": -7.882315, "Makefile.tmp": -7.882315, "Manos": -7.189168, "Many": -7.882315, "Mar": -7.189168, "Marius": -4.624218, "May": -7.882315, "Mod_SSL": -7.882315, "Module": -7.882315, "Mon": -6.090555, "NO": -7.882315, "Name": -6.783703, "Nov": -7.189168, "Objects": -7.882315, "Oct": -6.783703, "Open": -7.882315, "OpenSSL.": -7.882315, "PERL_INSTALL_ROOT": -7.882315, "PREFIX": -7.882315, "Package": -7.882315, "Parser": -7.882315, "Patch": -5.243258, "Perl": -7.189168, "Perl.": -7.882315, "Provides": -5.579730, "README": -7.882315, "RHL": -7.882315, "RPM_BUILD_ROOT": -5.936405, "RPM_BUILD_ROOT/usr/share/man/man": -7.882315, "RPM_SOURCE_DIR/": -7.882315, "RawHide": -7.882315, "Red": -7.882315, "RedHat": -7.882315, "Release": -6.783703, "Requires": -6.090555, "S": -6.496021, "SSL": -6.783703, "SSL/TLS": -7.882315, "SSLCipherSuite": -7.882315, "SSLLogLevel": -7.189168, "SSLSessionCache": -7.189168, "STACK.patch": -7.882315, "Sat": -6.496021, "Secure": -7.882315, "Security": -7.882315, "Sep": -5.802873, "Separate": -7.882315, "ServerAdmin": -7.882315, "ServerName": -7.882315, "Shared": -7.882315, "Sockets": -7.882315, "Software": -7.189168, "Source": -5.484420, "Summary": -6.090555, "Sun": -7.189168, "System": -7.882315, "THERE": -7.882315, "TLSv": -7.882315, "Template": -6.783703, "The": -5.936405, "This": -7.882315, "Thu": -7.189168, "Transport": -7.882315, "Tue": -5.579730, "UNDROPPED": -7.882315, "URL": -6.783703, "Update": -7.882315, "Version": -6.783703, "Web": -6.090555, "Wed": -6.783703, "With": -7.882315, "\\": -6.496021, "]": -7.882315, "^": -5.936405, "_": -7.882315, "__id_u": -7.882315, "__mv": -7.882315, "_bindir": -7.882315, "_datadir": -7.189168, "_includedir": -7.882315, "_libdir": -6.090555, "_localstatedir": -6.783703, "_mandir": -5.802873, "_prefix": -6.272877, "_sbindir": -7.189168, "_smp_mflags": -7.882315, "_sysconfdir": -6.783703, "_tmppath": -7.189168, "_var": -7.882315, "_with_suexec": -7.882315, "a": -5.802873, "a.patch": -7.882315, "able": -7.882315, "activate": -6.783703, "add": -7.189168, "added": -6.783703, "addition": -7.882315, "additional": -7.882315, "all": -6.272877, "alone.": -7.882315, "also": -7.189168, "altblue@n": -4.663439, "an": -6.783703, "aname": -7.882315, "and": -5.174265, "ap_getline.patch": -7.882315, "apache": -4.663439, "apache.logrotate": -7.882315, "apache_": -5.802873, "apache_modperl": -7.882315, "apache_ver": -5.936405, "apachectl": -7.882315, "application": -7.882315, "are": -6.496021, "as": -6.783703, "at": -7.882315, "attr": -6.496021, "auth_db": -7.882315, "automatic": -7.189168, "available": -7.882315, "avoids": -7.882315, "based": -7.189168, "basic": -7.882315, "be": -6.783703, "before": -7.882315, "bin": -7.882315, "binary": -7.882315, "bits.patch": -7.882315, "both": -7.882315, "box.": -7.882315, "brings": -7.882315, "build": -6.090555, "buildrequires": -7.882315, "buildroot": -5.802873, "builtin": -7.882315, "bundled": -7.882315, "by": -6.783703, "bytecode.": -7.882315, "c": -7.882315, "certs/Makefile.": -7.882315, "change": -7.882315, "changed": -6.783703, "changelog": -6.783703, "changes": -7.882315, "check": -7.882315, "chmod": -7.189168, "clean": -7.189168, "cleanups": -6.783703, "cleanups.": -7.882315, "closed": -7.882315, "code": -7.189168, "compatibility": -7.882315, "compile": -7.189168, "compiled": -7.882315, "compiles": -7.882315, "complete": -7.882315, "config": -7.882315, "config.patch": -7.882315, "conflict": -7.189168, "conform": -7.882315, "confs": -7.882315, "considers": -7.882315, "contains": -6.496021, "content": -7.189168, "contentdir": -6.272877, "cp": -6.783703, "cryptography": -7.882315, "db": -6.496021, "db.patch": -7.882315, "dbm": -7.189168, "debug_package": -7.882315, "defattr": -6.783703, "default": -6.783703, "defaults": -7.882315, "define": -5.484420, "description": -5.936405, "descriptors": -7.882315, "devel": -5.109726, "develop": -7.882315, "development": -7.882315, "diff": -7.189168, "dir": -6.783703, "directories": -7.882315, "disabled": -6.783703, "dist": -7.189168, "do": -6.496021, "doc": -6.783703, "document": -7.882315, "documentation": -7.882315, "done": -6.783703, "dropped": -6.090555, "dropping": -7.882315, "dummy": -7.882315, "e": -7.882315, "eapi": -7.882315, "easier": -7.882315, "easy": -7.189168, "ebin": -7.882315, "efficient": -7.882315, "elegant": -7.882315, "eliminated": -7.882315, "embedded": -7.882315, "entirely": -7.882315, "env": -7.882315, "erlang": -6.272877, "erlydtl": -6.272877, "erroneously": -7.882315, "error": -7.882315, "etc": -7.189168, "example": -7.882315, "examples": -7.882315, "examples/": -7.882315, "exec": -7.189168, "executable": -7.882315, "explicit": -7.882315, "export": -7.882315, "external": -7.882315, "f": -6.496021, "fact": -7.882315, "faq": -7.189168, "faq/pod": -7.882315, "featured": -7.882315, "file": -6.272877, "files": -6.090555, "find": -6.783703, "findutils": -7.882315, "fixes...": -7.882315, "flag": -7.882315, "flex": -7.882315, "for": -5.484420, "framework": -7.882315, "freely": -7.882315, "from": -6.496021, "ftp": -7.882315, "full": -7.189168, "fully": -7.882315, "function": -7.882315, "functionality": -7.882315, "g": -5.685090, "gcc": -7.882315, "gdbm": -6.783703, "global": -7.882315, "guide": -7.882315, "gz": -7.882315, "has": -7.882315, "have": -7.882315, "header": -7.882315, "heavily": -7.882315, "help": -7.882315, "high": -7.882315, "hopefully": -7.882315, "htdocs/manual/mod/mod_perl.html": -7.882315, "htm*": -7.882315, "http": -5.936405, "httpd": -7.189168, "httpd.init": -7.882315, "i": -6.272877, "i.": -5.109726, "i.net": -4.663439, "icons": -7.882315, "iconv": -7.882315, "implementation": -7.189168, "improvements": -7.882315, "improvemts": -7.882315, "improvents.": -7.882315, "in": -6.496021, "iname": -7.882315, "independently": -7.882315, "info": -7.882315, "init.patch": -7.882315, "initscript": -6.783703, "initscripts": -7.882315, "install": -5.802873, "installed.": -7.882315, "installing": -7.882315, "integration": -7.882315, "interpreter": -7.189168, "into": -6.783703, "is": -6.272877, "iso": -7.882315, "it": -6.783703, "krb": -7.882315, "language": -7.882315, "letting": -7.882315, "libapreq": -6.496021, "libapreq_ver": -7.189168, "libwww": -7.882315, "life": -7.882315, "link": -7.882315, "list": -7.882315, "location/integration/modes": -7.882315, "logs/ssl_scache": -7.189168, "lots": -7.189168, "m": -6.783703, "macro": -7.882315, "make": -6.090555, "makes": -7.882315, "manos": -6.783703, "manual": -6.496021, "many": -6.783703, "messages": -7.882315, "missing": -7.882315, "mkdir": -7.189168, "mm": -7.882315, "mock": -7.882315, "mod_perl": -5.243258, "mod_perl_ver": -6.090555, "mod_ssl": -4.886583, "mod_ssl_ver": -5.936405, "module": -7.189168, "modules": -7.189168, "mono": -7.189168, "more": -6.496021, "most": -7.882315, "moved": -7.189168, "mp": -7.189168, "n": -4.746821, "name": -6.783703, "need": -6.783703, "needed": -7.882315, "new": -7.882315, "new.host.name": -7.189168, "nil": -7.882315, "noarch": -7.882315, "not": -7.882315, "note": -7.882315, "now": -7.882315, "number": -7.882315, "nunit": -7.882315, "of": -5.397408, "old": -7.189168, "on": -5.802873, "once": -7.882315, "one": -7.189168, "openssl": -6.496021, "openssl.patch": -7.882315, "operations": -7.882315, "optimisations": -7.882315, "option": -7.882315, "or": -7.882315, "other": -6.496021, "others": -7.882315, "our": -7.189168, "out": -7.189168, "overhead": -7.882315, "own": -7.882315, "p": -6.496021, "package": -5.802873, "package.": -7.882315, "patch": -5.579730, "patched": -7.882315, "patches": -7.882315, "paths": -7.882315, "penalty": -7.882315, "performance": -7.882315, "perl": -5.484420, "perl.apache.org": -7.882315, "perl_vendorarch": -7.189168, "persistent": -7.882315, "pi": -7.882315, "pkgconfig": -7.882315, "pname": -6.272877, "popd": -7.882315, "popular": -7.882315, "port": -7.882315, "possible": -7.882315, "power": -7.882315, "powerful": -7.882315, "ppl": -7.882315, "prefix": -7.189168, "prep": -7.189168, "priv": -7.882315, "problems": -7.882315, "procps": -7.882315, "programming": -7.882315, "project": -7.882315, "protocols": -7.882315, "provided": -7.882315, "provides": -7.189168, "pure_install": -7.882315, "pushd": -7.189168, "q": -7.189168, "r": -6.496021, "really": -7.882315, "rebuild": -6.090555, "recode": -7.189168, "reference": -7.882315, "relative": -7.882315, "release": -7.189168, "rename": -7.189168, "rendered": -7.882315, "reparsed": -7.882315, "requirements": -7.882315, "resolve": -7.882315, "returns": -7.882315, "rf": -6.783703, "rgio": -6.496021, "ridiculously": -7.882315, "rm": -6.496021, "root": -5.397408, "rotatelog": -7.882315, "rpm": -7.189168, "rpmlintrc": -7.882315, "run": -6.783703, "s": -5.579730, "server": -6.090555, "server.": -7.189168, "setup": -7.189168, "shellbang": -7.882315, "shm": -7.882315, "simple.": -7.882315, "some": -7.882315, "someone": -7.882315, "source": -7.882315, "sources": -7.882315, "spec": -6.272877, "spec.": -7.882315, "src.rpm": -6.783703, "sslcfg.patch": -7.882315, "start": -7.882315, "starting": -7.882315, "static": -7.882315, "stays": -7.882315, "strong": -7.882315, "stuff.": -7.882315, "suexec": -7.189168, "suexec_caller": -7.882315, "suposed": -7.882315, "support": -7.882315, "switched": -7.882315, "systems": -7.882315, "t": -7.882315, "takes": -7.882315, "tar.gz": -7.882315, "template": -7.882315, "test": -7.189168, "tests": -7.882315, "tests.patch": -7.882315, "that": -6.783703, "the": -4.586478, "their": -7.189168, "them": -7.882315, "they": -7.882315, "this": -6.783703, "through": -7.882315, "thttpd": -7.189168, "time": -7.882315, "time.": -7.882315, "to": -4.663439, "together": -7.882315, "toolkit": -7.882315, "tools": -7.882315, "tweaked": -7.189168, "tweaks": -7.189168, "type": -7.882315, "up": -7.882315, "update": -6.496021, "updated": -6.783703, "use": -6.090555, "used": -7.882315, "users": -7.882315, "using": -7.882315, "utf": -7.882315, "v": -7.189168, "v.": -7.882315, "variable": -7.882315, "variables": -7.882315, "vendor": -7.882315, "version": -4.550110, "via": -7.882315, "want": -7.882315, "way": -7.882315, "we": -7.882315, "web": -6.783703, "webserver": -6.783703, "welcome": -7.882315, "which": -7.882315, "will": -6.783703, "with": -6.090555, "work": -7.189168, "write": -7.882315, "x": -6.496021, "xargs": -7.882315, "yet": -7.189168, "you": -6.496021, "you@your.address": -7.189168, "your": -7.189168, "zombie": -7.882315, "{": -3.339020, "|": -7.882315, "}": -3.339020, "é": -6.496021, }, "RUNOFF": map[string]float64{ "\b": -5.447178, "!": -5.369946, "#": -10.367159, "$": -6.224024, "%": -7.882252, "&": -6.324107, "'": -8.980864, "(": -3.818940, ")": -3.823247, "*": -7.533945, "***": -9.674011, "**n.": -9.268546, "*.*": -7.882252, "*.c": -10.367159, "*.h": -10.367159, "*.obj": -9.268546, "*EXP": -9.674011, "*PI/A": -9.674011, "*n": -9.268546, "+": -6.435333, ",": -3.157079, "-": -2.553971, ".": -4.829824, "...": -6.582969, ".CHAPTER": -9.268546, ".COM": -10.367159, ".END": -9.674011, ".FOO": -8.980864, ".HL": -9.674011, ".I": -5.174202, ".J": -6.811811, ".LIT": -10.367159, ".LITERAL": -9.674011, ".MSG__TEXT": -10.367159, ".NJ": -6.811811, ".P": -9.268546, ".PG": -10.367159, ".RECIPIENTS": -10.367159, ".S": -9.674011, ".TP": -9.674011, ".X": -9.674011, ".ZIP": -8.980864, "._": -9.268546, ".bar...": -10.367159, ".bp": -10.367159, ".br": -6.063094, ".c": -8.287717, ".ce": -7.969263, ".dick": -10.367159, ".display": -9.674011, ".ds": -10.367159, ".els": -10.367159, ".end": -5.997711, ".flags": -9.674011, ".foo": -8.980864, ".foo...": -9.674011, ".foo.dick...": -10.367159, ".foo.harry...": -10.367159, ".foo.tom...": -10.367159, ".ftp...": -10.367159, ".h": -10.367159, ".harry": -10.367159, ".hl": -6.324107, ".in": -6.933171, ".indent": -6.811811, ".layout": -10.367159, ".le": -9.268546, ".lit": -6.560496, ".literal": -6.870651, ".ll": -10.367159, ".lm": -7.231664, ".ls": -10.367159, ".m": -8.757721, ".na": -10.367159, ".no": -9.674011, ".noflags": -10.367159, ".obj": -10.367159, ".p": -5.782191, ".pg": -10.367159, ".pg.f.j": -10.367159, ".pl": -10.367159, ".require": -10.367159, ".rm": -9.674011, ".s": -8.169934, ".send": -8.757721, ".sk": -5.425516, ".sk.lm": -10.367159, ".sp": -6.678279, ".src": -9.674011, ".style": -10.367159, ".tom": -10.367159, ".tp": -8.980864, ".ul": -8.064574, ".un": -7.882252, ".x": -6.256285, ".zip": -10.367159, "/": -7.231664, "//ftp.info": -10.367159, "//github.com/Alhadis/language": -10.367159, "//www.Info": -10.367159, "//www.info": -10.367159, "/ACCOUNTING": -8.287717, "/AFTER": -9.674011, "/ALL": -9.674011, "/AUTHENTICATION": -9.674011, "/BEFORE": -7.728101, "/BRIEF": -8.757721, "/BRIEF.": -9.674011, "/CANCEL": -9.674011, "/CC__POSTMASTER": -9.674011, "/CLUSTER": -8.980864, "/COMMAND": -8.980864, "/CPLOTSC/XMR": -10.367159, "/CREATED": -8.064574, "/DATE": -9.674011, "/DEFAULT__ROUTER": -9.674011, "/DELAY": -8.064574, "/DELAY__DAYS": -9.674011, "/DESTINATION__AGENT": -8.980864, "/DISABLE__EXQUOTA": -9.268546, "/DNS__RETRIES": -9.674011, "/ERRORS__TO": -10.367159, "/ERRORS__TO.": -10.367159, "/EXPIRE": -8.064574, "/FINAL": -9.674011, "/FULL": -8.757721, "/HELD": -8.980864, "/HIDE__ERRORS__TO": -8.980864, "/HOSTNAME": -9.268546, "/IDENTIFICATION": -9.674011, "/IN__PROGRESS": -8.980864, "/LIST__HEADERS": -9.268546, "/LOG": -8.064574, "/MAILING__LIST": -10.367159, "/MANAGER": -9.268546, "/MAXIMUM__ENTRIES": -8.575399, "/MAXIMUM__MESSAGE__SIZE": -9.674011, "/MAXIMUM__RETRIES": -8.287717, "/MODIFIED": -8.575399, "/MODIFIED.": -8.980864, "/MULTIPLE__FROM": -9.674011, "/NETMASK.": -10.367159, "/NOACCOUNTING": -9.268546, "/NOAUTHENTICATION": -9.674011, "/NOCANCEL": -9.674011, "/NOCC__POSTMASTER": -10.367159, "/NOCOMMAND": -10.367159, "/NODE": -8.421249, "/NODELAY__DAYS": -10.367159, "/NODISABLE__EXQUOTA": -10.367159, "/NOFINAL": -10.367159, "/NOHIDE__ERRORS__TO": -9.674011, "/NOHOSTNAME": -10.367159, "/NOLIST__HEADERS": -10.367159, "/NOLOG": -8.980864, "/NOMAXIMUM__MESSAGE__SIZE": -10.367159, "/NOMAXIMUM__MESSAGE__SIZE.": -10.367159, "/NOMULTIPLE__FROM": -9.674011, "/NONOTIFY": -10.367159, "/NOOMIT__RESENT_HEADERS": -10.367159, "/NOPERCENT__HACK": -8.980864, "/NOPRIVATE": -10.367159, "/NORBL__CHECK": -10.367159, "/NORECIPIENT__MAXIMUM": -9.674011, "/NORELAY__ALLOWED": -9.268546, "/NOREMOVE__MESSAGE": -10.367159, "/NOREQUEST__CONFIRMATION": -10.367159, "/NORETURN__ADDRESS": -10.367159, "/NOSUBJECT__PREFIX": -10.367159, "/NOTEXT__ONLY": -10.367159, "/NOTIFY": -9.674011, "/NOTLS": -10.367159, "/NOVERIFY__ALLOWED": -10.367159, "/NOWAIT": -10.367159, "/NOXHEADERS": -10.367159, "/OMIT__RESENT_HEADERS": -10.367159, "/OMIT__RESENT__HEADERS": -10.367159, "/ORIGIN__AGENT": -8.980864, "/OUTPUT": -8.169934, "/OWNER": -9.268546, "/PARENT": -9.674011, "/PASSWORD": -9.674011, "/PERCENT__HACK": -8.980864, "/PRIVATE": -9.268546, "/PROTECTION": -9.674011, "/RBL__CHECK": -9.674011, "/RECIPEIENT__MAXIMUM": -10.367159, "/RECIPIENT__MAXIMUM": -9.268546, "/REGEX": -9.268546, "/RELAY__ALLOWED": -9.674011, "/REMOVE__MESSAGE": -9.268546, "/REPLY__TO": -8.980864, "/REQUEST__CONFIRMATION": -9.268546, "/RESET": -9.674011, "/RETRY__INTERVAL": -8.287717, "/RETURN__ADDRESS": -9.268546, "/ROOT": -9.268546, "/ROUTE": -9.674011, "/SELECTED": -9.674011, "/SERVER__LIMIT": -10.367159, "/SETTINGS": -8.980864, "/SINCE": -7.728101, "/STRIP__HEADERS": -8.575399, "/SUBJECT__PREFIX": -9.674011, "/TEXT__ONLY": -9.268546, "/TLS": -9.674011, "/VALIDATE__SENDER__DOMAIN": -10.367159, "/VERIFY__ALLOWED": -10.367159, "/VT": -10.367159, "/WAIT": -9.674011, "/WAITING": -8.980864, "/XHEADERS": -8.980864, "/dx": -9.268546, "/dy": -10.367159, "/l": -10.367159, "/le.": -10.367159, "/user_mode": -10.367159, "/vms/descrip.mms": -10.367159, ":": -4.351002, ";": -5.291985, "<": -7.034954, "<,ic>": -9.268546, "<@relay.cs.net:{user}@{host}.CSNET>": -10.367159, "<Return>": -9.674011, "<format>": -10.367159, "<printer>": -10.367159, "<your_prog>": -9.674011, "<{user}@{host}.CSNET>": -10.367159, "=": -4.987261, ">": -6.729573, "@": -8.757721, "@LONGLIB": -10.367159, "@LONGLOC": -10.367159, "@arfon": -10.367159, "@larsbrinkhoff": -10.367159, "@pchaigno": -10.367159, "A": -6.455136, "ABOVE": -10.367159, "ABSOLUTE": -10.367159, "ABSPLT": -9.268546, "ABSPLT.": -10.367159, "ABSTRACT": -10.367159, "ADD": -8.757721, "ADDITIONAL": -9.674011, "ADVISED": -10.367159, "AFFECT": -10.367159, "AFFECTED": -10.367159, "AFTER": -8.575399, "AHEAD": -10.367159, "ALIAS": -9.674011, "ALIASES": -10.367159, "ALL": -9.268546, "ALWAYS": -10.367159, "AND": -7.533945, "ANNOTATION": -9.674011, "ANOTHER": -10.367159, "ANSI": -10.367159, "ANY": -8.980864, "ARCHIVE.z": -9.268546, "ARCHIVE.zip": -10.367159, "ARE": -10.367159, "ARISING": -10.367159, "ARRAY": -9.674011, "ARRAY.": -10.367159, "ARRAYS": -9.674011, "ARROW": -9.268546, "AS": -9.674011, "ASCII": -10.367159, "ASK": -10.367159, "AT": -10.367159, "ATTACH": -8.575399, "AUXLIB.FOR": -10.367159, "AXES": -10.367159, "AXIS": -7.276116, "AXISES": -10.367159, "A_": -10.367159, "Accepted": -9.268546, "Acknowledgements": -10.367159, "Acorn": -10.367159, "Actual": -10.367159, "Adaptation": -8.575399, "Adapted": -10.367159, "Add": -8.575399, "Added": -9.268546, "Adding": -10.367159, "Additional": -10.367159, "Adler": -9.674011, "After": -10.367159, "All": -8.169934, "Also": -8.757721, "Altered": -10.367159, "Alternatively": -10.367159, "Although": -10.367159, "Amiga": -10.367159, "An": -8.287717, "Angles": -10.367159, "Annotation": -10.367159, "Another": -10.367159, "Antoine": -10.367159, "Any": -10.367159, "Anyone": -10.367159, "Appending": -10.367159, "AppleWriter": -10.367159, "Application": -10.367159, "As": -8.757721, "Assuming": -10.367159, "At": -10.367159, "Atari": -10.367159, "Atom": -10.367159, "Attempt": -10.367159, "Attributes": -10.367159, "Aug": -9.674011, "Author": -10.367159, "Available": -10.367159, "B": -8.575399, "BE": -10.367159, "BEFORE": -10.367159, "BETWEEN": -10.367159, "BITNET": -10.367159, "BLOCK": -10.367159, "BOTH": -10.367159, "BUFFER.": -10.367159, "BUSINESS": -10.367159, "BUT": -8.575399, "BY": -10.367159, "BYTE": -8.575399, "Bad": -10.367159, "Bayesian": -9.674011, "Be": -9.674011, "Beginning": -10.367159, "Behren": -10.367159, "Blackhole": -10.367159, "Both": -10.367159, "Broukhis": -10.367159, "Bugs": -9.674011, "Build": -10.367159, "Bump": -9.674011, "Burg": -10.367159, "Bush": -10.367159, "By": -7.533945, "Byrne": -10.367159, "C": -6.090493, "C.": -9.674011, "CALCOMP": -10.367159, "CALL": -6.063094, "CANCEL": -9.268546, "CAUSE": -10.367159, "CAUSED": -10.367159, "CC": -10.367159, "CCW": -10.367159, "CD": -9.674011, "CDs": -10.367159, "CHANGE": -9.268546, "CHARACTER": -8.421249, "CHARACTERS": -10.367159, "CHARACTER_VARIABLE": -10.367159, "CLEAR": -8.757721, "CLEAR.COM": -10.367159, "CLOSE": -8.575399, "CLOSING": -10.367159, "COLOR": -8.575399, "COM": -10.367159, "COMMON": -9.674011, "COMMUNITY": -10.367159, "COMPRESS": -10.367159, "COMPRESS/LOG": -10.367159, "COMPUTE": -10.367159, "CONCEAL": -10.367159, "CONFIGURATION__FILE": -10.367159, "CONSEQUENTIAL": -10.367159, "CONTINUE": -9.268546, "CONTRACT": -10.367159, "CONTRIBUTING": -10.367159, "CONTRIBUTORS": -9.674011, "CONTROL": -10.367159, "COORDINATE": -10.367159, "COPYRIGHT": -9.674011, "COSMIC": -10.367159, "CR": -8.757721, "CR.": -10.367159, "CRAM__MD": -10.367159, "CREATE": -8.980864, "CRLF": -9.674011, "CTERM": -8.169934, "CTRL/Z.": -10.367159, "CURSOR": -10.367159, "CURSORLIB.FOR": -10.367159, "CURVE.": -10.367159, "CYCLE": -9.674011, "C_": -10.367159, "California": -10.367159, "Cancels": -10.367159, "Card": -10.367159, "Cards": -10.367159, "Causes": -8.064574, "Changed": -10.367159, "Chris": -10.367159, "Christian": -8.169934, "Clients": -10.367159, "Closed": -10.367159, "Code": -9.674011, "Color": -9.268546, "Comments": -10.367159, "Compatible": -9.268546, "Concatenating": -10.367159, "Conduct.": -10.367159, "Consequently": -10.367159, "Contents": -10.367159, "Contributor": -10.367159, "Control": -10.367159, "Controls": -8.757721, "Copy": -10.367159, "Copyright": -8.980864, "Copyright_and_License": -10.367159, "Cosmin": -10.367159, "Covenant": -10.367159, "Create": -9.674011, "Creates": -10.367159, "Cubic": -10.367159, "Currently": -8.980864, "D": -8.287717, "D.": -10.367159, "D.FOR": -10.367159, "DAMAGE.": -10.367159, "DAMAGES": -10.367159, "DAT": -9.268546, "DAT.": -8.757721, "DATA": -8.064574, "DCL": -7.659108, "DEC": -8.575399, "DECIMAL": -10.367159, "DECNET__SMTP": -8.169934, "DECnet": -8.757721, "DEFAULT": -8.980864, "DEFINE": -7.476787, "DEMO": -10.367159, "DESCRIPTION": -10.367159, "DEVICE": -8.757721, "DEVICE.": -10.367159, "DF": -9.674011, "DH.": -10.367159, "DIGEST": -10.367159, "DIGITS": -10.367159, "DIMENSION": -8.980864, "DIRECT": -10.367159, "DIRECTORY": -9.674011, "DISCLAIMED.": -10.367159, "DL.GRAPHICS.LONGLIB": -10.367159, "DNSMTP": -9.674011, "DNSMTP.": -9.674011, "DO": -9.268546, "DOES": -10.367159, "DOS": -9.268546, "DOTTED": -10.367159, "DOWN": -10.367159, "DUMP": -8.980864, "DVD": -10.367159, "DX": -9.268546, "DXR": -9.674011, "DY": -9.268546, "DYR": -9.674011, "D_": -10.367159, "Date": -10.367159, "Dates": -10.367159, "Dave": -10.367159, "David": -9.268546, "Davis": -10.367159, "Day": -10.367159, "Dec": -10.367159, "December": -10.367159, "Default": -9.674011, "Delete": -9.268546, "Denker": -10.367159, "Dependence": -10.367159, "Depending": -10.367159, "Description": -9.674011, "Device": -9.674011, "Directs": -9.674011, "Dirk": -10.367159, "Disabling": -10.367159, "Disclaimer": -10.367159, "Display": -8.575399, "Displays": -7.969263, "Do": -9.674011, "Does": -10.367159, "Domain": -10.367159, "Dot": -9.674011, "Download": -10.367159, "Drive": -10.367159, "Dubois": -10.367159, "Dumps": -10.367159, "E": -9.268546, "ENABLED": -10.367159, "END": -8.980864, "ENTRY_n": -10.367159, "EOF": -9.268546, "EOF.": -10.367159, "ESCAPE": -10.367159, "ESMTP": -10.367159, "EVEN": -10.367159, "EVENT": -10.367159, "EXAMPLES": -10.367159, "EXEMPLARY": -10.367159, "EXIT": -9.674011, "EXPRESS": -10.367159, "EXQUOTA": -9.674011, "EXTEND": -8.980864, "Each": -10.367159, "Ed": -9.674011, "Either": -9.674011, "Eliminates": -10.367159, "Emulation": -9.268546, "Enables": -8.980864, "Enabling": -10.367159, "Endless": -10.367159, "Ensure": -9.674011, "Enter": -10.367159, "Entry": -10.367159, "Environment": -9.674011, "Error": -8.169934, "Errors": -9.674011, "Even": -10.367159, "Every": -10.367159, "Example": -8.757721, "Examples": -8.757721, "Execute": -10.367159, "Execution": -10.367159, "Extends": -10.367159, "Extra_Fields": -10.367159, "Extreme": -10.367159, "F": -9.674011, "FACILITY": -10.367159, "FACTOR": -9.674011, "FACTOR.": -10.367159, "FACTORS": -9.268546, "FAT": -9.674011, "FATAL": -9.674011, "FEB": -10.367159, "FF": -10.367159, "FILE": -10.367159, "FILE__SERVER": -9.268546, "FILL": -9.674011, "FIRST": -10.367159, "FITNESS": -10.367159, "FOR": -7.276116, "FORCES": -10.367159, "FORM": -10.367159, "FORTAN.": -10.367159, "FORTRAN": -7.533945, "FORTRAN.": -10.367159, "FORWARD": -10.367159, "FOUR": -10.367159, "FRAME": -8.980864, "FROM": -8.980864, "FS": -9.674011, "FTP": -10.367159, "F_": -9.674011, "Fatal": -8.064574, "Feb": -9.674011, "File": -8.169934, "File_Names": -10.367159, "Files": -10.367159, "Finally": -10.367159, "Find": -10.367159, "For": -6.629489, "Forgot": -10.367159, "Format": -6.870651, "From": -8.575399, "Full": -10.367159, "Further": -10.367159, "GB": -8.980864, "GCLEAR": -10.367159, "GITHUB": -10.367159, "GO": -10.367159, "GOATHUNTER_": -10.367159, "GOODS": -10.367159, "GR": -9.268546, "GRAPHICS": -9.268546, "GRID": -8.575399, "GRID.": -9.674011, "GROUP": -8.757721, "Gailly": -8.757721, "Gemfile": -10.367159, "Gemfile.lock": -10.367159, "General": -9.674011, "Genesis.": -10.367159, "George": -10.367159, "GitHub": -8.575399, "GitHub.": -10.367159, "GitHub.com": -10.367159, "Goatley": -8.980864, "Gordon": -9.674011, "Gorman": -10.367159, "Graphics": -8.575399, "Graphon": -9.268546, "Greater": -10.367159, "Greg": -9.674011, "Grove": -10.367159, "HELP": -8.421249, "HELP.": -10.367159, "HELPME": -10.367159, "HELPME.": -10.367159, "HIDELIB.FOR": -10.367159, "HIGH": -9.674011, "HISTORY": -10.367159, "HOLD": -7.659108, "HOLDERS": -10.367159, "HOLDING__QUEUE": -8.575399, "HOWEVER": -10.367159, "HPGL": -7.322636, "HPGLS": -10.367159, "HPGLS.": -10.367159, "Haase": -10.367159, "Harald": -10.367159, "Hardcopy": -9.674011, "Hartwig": -10.367159, "Haruhiko": -10.367159, "Heath": -10.367159, "Herborth": -10.367159, "Hewlett": -10.367159, "Hi": -10.367159, "Hollerith": -9.674011, "Host": -10.367159, "However": -9.268546, "Hudson": -10.367159, "Hunter": -8.980864, "I": -6.324107, "I*B": -9.674011, "I.EQ.": -9.674011, "ICOL": -8.421249, "ICOL/": -9.674011, "ID": -9.674011, "IF": -8.980864, "IMPLIED": -9.674011, "IN": -8.421249, "IN.": -10.367159, "INCIDENTAL": -10.367159, "INCLUDE": -10.367159, "INCLUDING": -9.268546, "INDIRECT": -10.367159, "INITIALIZE": -8.980864, "INITIALIZE/CLOSE": -10.367159, "INITIALIZES": -10.367159, "INITIALIZING": -9.674011, "INPROG": -9.674011, "INPUT": -8.421249, "INSIDE__NETWORK__ADDRESS": -8.575399, "INTEGER": -10.367159, "INTEGER*": -9.674011, "INTERRUPTION": -10.367159, "INTERVAL": -9.674011, "INTERVALS": -9.268546, "IP": -9.674011, "IS": -8.980864, "IT": -8.980864, "I_": -9.674011, "Ian": -10.367159, "If": -6.240024, "Igor": -9.674011, "Image": -10.367159, "Implementation": -10.367159, "In": -7.148283, "Info": -7.728101, "Input": -10.367159, "Inside": -10.367159, "Install": -10.367159, "Internet": -10.367159, "Internet/BITNET": -10.367159, "Introduction": -10.367159, "Invalid": -10.367159, "It": -7.728101, "J": -9.674011, "JAN": -10.367159, "JNET.": -10.367159, "JNET/LENIENT.": -10.367159, "JUN": -10.367159, "JUNK__MAIL": -10.367159, "Jan": -10.367159, "Jean": -8.575399, "Jet": -10.367159, "John": -10.367159, "Johnny": -10.367159, "Jonathan": -10.367159, "Jul": -10.367159, "June": -10.367159, "Junk": -9.674011, "Just": -10.367159, "K": -10.367159, "KB": -9.674011, "KB.": -10.367159, "KEY": -10.367159, "Kai": -10.367159, "Karl": -10.367159, "Katz": -9.674011, "Kbytes": -10.367159, "Keith": -9.674011, "Kienitz": -10.367159, "Kirschbaum": -9.674011, "L": -8.980864, "LA": -9.268546, "LAR": -10.367159, "LASER": -8.757721, "LASERS": -9.268546, "LAST": -9.674011, "LF": -8.575399, "LF.": -10.367159, "LGAXS.": -9.268546, "LGLIN": -8.980864, "LGLIN.": -10.367159, "LGRID": -9.268546, "LIABILITY": -9.674011, "LIABLE": -10.367159, "LIB/CREATE/HELP": -10.367159, "LIBR/HELP/INSERT": -10.367159, "LIMITED": -9.674011, "LINE": -7.802209, "LINE.": -10.367159, "LINESEQ": -10.367159, "LINGUIST": -10.367159, "LINK": -9.268546, "LINSEQ": -8.287717, "LIST": -8.287717, "LIST.": -10.367159, "LIST/REPLY_TO": -10.367159, "LISTS": -9.268546, "LITERAL": -9.674011, "LOAD": -10.367159, "LOCAL": -7.659108, "LOCAL/HEADERS.": -10.367159, "LOCAL__DOMAIN": -8.575399, "LOCAL__DOMAINS": -10.367159, "LOCATION": -10.367159, "LOG/LOG": -10.367159, "LOGICAL": -10.367159, "LONG": -9.674011, "LONGLIB": -5.901251, "LONGLIB.": -8.757721, "LONGLIB.EXE": -10.367159, "LONGLIB.FOR": -10.367159, "LONGLIB.HLB": -10.367159, "LONGLIB.OLB": -10.367159, "LONGLIB.RNO": -10.367159, "LONGLIB/LIB": -9.674011, "LONGLIB/OPT": -9.674011, "LONGLIB/SHARE": -10.367159, "LONGLIBR": -9.674011, "LONGLIBR.OLB": -10.367159, "LONGLIBR.OLB.": -10.367159, "LONGLIBR/LIB": -10.367159, "LONGLOC": -7.802209, "LOOP": -10.367159, "LOSS": -10.367159, "LOW": -10.367159, "L_EFBLK": -10.367159, "Laboratory": -10.367159, "Language": -10.367159, "Large": -10.367159, "Laser": -10.367159, "Lee": -10.367159, "Lengths": -10.367159, "Leonid": -10.367159, "Level": -10.367159, "Library": -8.980864, "Lightshow.": -10.367159, "Limited": -10.367159, "Linden": -9.674011, "Line": -8.980864, "Lines": -10.367159, "Linetypes": -9.674011, "Linguist": -9.268546, "Linguist.": -9.674011, "Linking": -10.367159, "List": -8.980864, "List/File": -10.367159, "ListServ.": -10.367159, "Location": -10.367159, "Log_File": -10.367159, "Long": -9.674011, "Look": -10.367159, "Lower": -10.367159, "M.": -10.367159, "MAC": -9.674011, "MAIL": -8.757721, "MAILING__LIST": -10.367159, "MANUAL": -10.367159, "MAPLIB.FOR": -10.367159, "MAR": -9.674011, "MASTER": -6.901423, "MB": -8.421249, "MB.": -9.674011, "MCP": -7.969263, "MCP.": -9.268546, "MCP_HELP": -10.367159, "MCP_HELP.RNH": -9.674011, "MCP_HELPLIB": -10.367159, "MEDIUM": -9.268546, "MERCHANTABILITY": -10.367159, "MESS": -10.367159, "METAFILE": -8.575399, "MLF": -7.422720, "MLF.": -10.367159, "MLF/RECIPIENT__MAXIMUM": -10.367159, "MLIB": -10.367159, "MLIB.FOR": -10.367159, "MLIST__FORWARD__MESSAGE.TXT": -10.367159, "MLIST__REMOVE__MESSAGE.TXT": -10.367159, "MM": -8.757721, "MODE": -10.367159, "MODIFICATION": -10.367159, "MODIFY": -7.802209, "MOVE": -10.367159, "MSDOS": -8.287717, "MSDOS.": -10.367159, "MUST": -10.367159, "MX": -7.109062, "MX.": -8.980864, "MX_FLQ_DIR": -10.367159, "MX_SITE_IN": -10.367159, "MX_SITE_IN.": -10.367159, "MX_SYSTEM_QUEUE.FLQ_CTL": -10.367159, "MX__CONFIG": -10.367159, "MX__CONFIG.MXCFG": -10.367159, "MX__DIR": -10.367159, "MX__DNSMTP__ACC": -10.367159, "MX__DNSMTP__DIR": -10.367159, "MX__LOCAL__ACC": -10.367159, "MX__LOCAL__DIR": -10.367159, "MX__MLIST__DIR": -9.674011, "MX__MLIST__DIR.": -9.674011, "MX__SMTP__ACC": -10.367159, "MX__SMTP__DIR": -10.367159, "M_": -10.367159, "Machine": -10.367159, "Macintosh": -10.367159, "Madison": -7.969263, "Madison.": -10.367159, "Mail": -8.575399, "Mailing": -10.367159, "Make": -9.674011, "Mandrichenko": -9.674011, "Many": -10.367159, "Mar": -9.674011, "March": -10.367159, "Mark": -9.674011, "Matching": -10.367159, "Matrix": -10.367159, "Matthew": -10.367159, "May": -9.674011, "Mention": -10.367159, "Merge": -10.367159, "Messages": -9.674011, "Metafile": -8.757721, "Metafile.": -10.367159, "Mgr": -10.367159, "Michel": -10.367159, "Mike": -10.367159, "Miller": -10.367159, "Minix": -10.367159, "Minor": -10.367159, "Miscellaneous_Options": -10.367159, "Misclassifications": -10.367159, "Missing": -10.367159, "Modification": -10.367159, "Modifies": -8.287717, "Monesi": -10.367159, "Month#": -10.367159, "Most": -9.674011, "Multiple": -9.674011, "N": -8.169934, "NAME": -10.367159, "NEGATIVE": -10.367159, "NEGLIGENCE": -10.367159, "NEWPAGE": -8.575399, "NEWPEN": -8.757721, "NL": -10.367159, "NO": -7.882252, "NOCONCEAL": -10.367159, "NODIGEST": -10.367159, "NOOTHER": -9.674011, "NORECEIVED": -9.674011, "NOT": -7.969263, "NOTE": -8.421249, "NOV": -9.674011, "NUMBER": -8.980864, "NXTVU": -10.367159, "N_": -10.367159, "Name": -9.674011, "Neither": -10.367159, "New": -9.674011, "No": -8.575399, "Normally": -8.757721, "Not": -9.674011, "Note": -7.422720, "Notes": -9.674011, "Number": -8.757721, "Numbers": -10.367159, "O": -8.421249, "OCT": -9.674011, "ODS": -10.367159, "OF": -7.802209, "ON": -7.882252, "ONE": -10.367159, "ONLY": -9.674011, "OPEN": -8.421249, "OPER": -9.674011, "OPTION": -9.674011, "OR": -7.882252, "ORIGIN": -10.367159, "ORIGINS": -10.367159, "OS": -9.268546, "OS.": -9.268546, "OS/": -10.367159, "OTHER": -9.268546, "OTHERWISE": -10.367159, "OUT": -9.268546, "OUT.LIS": -8.757721, "OUT.LIS.": -9.268546, "OUTPUT": -8.980864, "OUTSIDE": -10.367159, "OWNER": -8.757721, "OWNER.": -10.367159, "O_": -9.674011, "Oak": -10.367159, "Obj": -10.367159, "Oct": -10.367159, "October": -10.367159, "Okumura": -10.367159, "On": -8.421249, "Once": -9.674011, "One": -9.268546, "Only": -8.980864, "Onno": -9.674011, "Open": -10.367159, "OpenVMS": -10.367159, "Optional": -9.674011, "Optionally": -9.674011, "Options": -10.367159, "Options_List": -10.367159, "Ordinarily": -10.367159, "Other": -10.367159, "Others": -10.367159, "Otherwise": -10.367159, "Output": -8.980864, "Owens": -10.367159, "P": -9.268546, "P.": -9.674011, "PARTICULAR": -10.367159, "PATH": -8.575399, "PATHS": -10.367159, "PEN": -10.367159, "PFACTOR": -10.367159, "PHI": -9.674011, "PHI/": -9.674011, "PI/": -9.674011, "PICK": -10.367159, "PID": -10.367159, "PIPE": -10.367159, "PIPE.": -10.367159, "PKUNZIP": -9.674011, "PKWARE": -10.367159, "PKZIP": -9.674011, "PL": -10.367159, "PLAIN": -10.367159, "PLOT": -7.276116, "PLOTHI.COM": -10.367159, "PLOTLG": -9.674011, "PLOTLO.COM": -10.367159, "PLOTND": -8.757721, "PLOTRM": -8.757721, "PLOTS": -9.674011, "PLOTSC": -7.533945, "PLOTTESTS": -9.674011, "PLOTTING": -9.268546, "PLOTVT": -9.674011, "PLT": -10.367159, "POINTS": -9.674011, "POSSIBILITY": -10.367159, "POST": -9.268546, "POST.": -10.367159, "POSTMASTER": -10.367159, "POSTSCRIPT": -8.575399, "PPEN": -9.674011, "PR": -9.674011, "PRESPL": -9.674011, "PREVENT": -9.674011, "PRNTRX": -10.367159, "PROCUREMENT": -10.367159, "PRODUCE": -8.980864, "PRODUCED.": -10.367159, "PROFITS": -10.367159, "PROGRAM": -9.674011, "PROGRESS": -9.674011, "PROMPT": -8.169934, "PROVIDED": -10.367159, "PSAVPL": -10.367159, "PSUBPRO": -8.980864, "PT.": -10.367159, "PURGE": -9.674011, "PURPOSE": -10.367159, "PUT": -10.367159, "Packard": -10.367159, "Page/Screen": -10.367159, "Parameter": -8.980864, "Parameters": -10.367159, "Pasadena": -10.367159, "Patches": -10.367159, "Paul": -9.674011, "Pen": -9.674011, "Percent": -10.367159, "Permission": -10.367159, "Petersen": -10.367159, "Petrov": -10.367159, "Phil": -9.674011, "Pixels": -10.367159, "Places": -10.367159, "Please": -10.367159, "Plot": -10.367159, "Plots": -10.367159, "Plotter": -10.367159, "Plotting": -8.980864, "Pointers": -10.367159, "Portable": -10.367159, "PostScript": -9.268546, "Postmaster": -10.367159, "Prefix": -10.367159, "Printer": -10.367159, "Printers": -9.674011, "Printronix": -9.268546, "Process": -10.367159, "Processing": -9.674011, "Program": -8.980864, "Programming": -9.268546, "Programs": -10.367159, "Progress_Display": -10.367159, "Propulsion": -10.367159, "Provides": -10.367159, "Provisions": -10.367159, "Pull": -10.367159, "Purges": -10.367159, "Push": -10.367159, "QMS": -8.575399, "QMSLASER": -10.367159, "QUEUE": -7.034954, "QUIC": -9.268546, "QUIT": -9.674011, "Qualifier": -9.674011, "Qualifiers": -7.276116, "Queue": -10.367159, "Quiet": -10.367159, "Quits": -10.367159, "R": -6.177504, "R.": -10.367159, "RAMLIB": -10.367159, "RAMLIB.FOR": -10.367159, "RAMTEK": -8.980864, "RAMTEK/TERMINAL": -9.268546, "RBL": -9.268546, "READ": -10.367159, "READY": -8.575399, "REAL": -10.367159, "RECEIVED": -9.268546, "RECL": -9.674011, "RECT": -9.268546, "REF": -7.231664, "REFDIS": -8.757721, "REFDIS.": -10.367159, "REFLAS": -8.980864, "REFLIB.FOR": -10.367159, "REFTERM": -10.367159, "REMOVE": -7.659108, "REPLOT": -8.757721, "REPRO": -9.674011, "REQUEST": -9.674011, "REQUEUE_n": -10.367159, "RESET": -9.674011, "RESET/ACCOUNTING": -10.367159, "RESPL": -8.757721, "RETURN": -10.367159, "RETURNS": -10.367159, "REVIEW": -8.980864, "REVIEW.": -10.367159, "REVISED": -10.367159, "REWRITE__RULE": -8.757721, "REWRITE__RULES": -10.367159, "RFACTOR": -8.980864, "RFC": -8.757721, "RISC": -10.367159, "RLASER": -9.268546, "RM": -10.367159, "RMA": -10.367159, "RMPEN": -8.980864, "RMWRITECOL": -9.674011, "RMWRITEWORD": -8.980864, "ROMs": -10.367159, "ROUTER": -8.421249, "ROUTINE": -8.421249, "ROUTINES": -10.367159, "RPLOTS": -10.367159, "RRESPL": -9.674011, "RSAVPL": -10.367159, "RTERM": -8.421249, "RTL": -9.674011, "RUNOFF": -8.980864, "R_": -9.674011, "Ramtek": -6.162466, "Ramtek.": -9.674011, "Raster": -10.367159, "Rating": -9.674011, "Read": -9.674011, "Readies": -10.367159, "Realtime": -10.367159, "Redistribution": -10.367159, "Redistributions": -8.980864, "Reference": -10.367159, "Releases": -10.367159, "Remember": -10.367159, "Removed": -10.367159, "Reply": -8.287717, "Requests": -10.367159, "Resent": -10.367159, "Resets": -10.367159, "Returns": -10.367159, "Review": -10.367159, "Rich": -9.674011, "Robert": -10.367159, "Roelofs": -10.367159, "Rommel": -10.367159, "Root": -10.367159, "Router": -9.674011, "Router.": -10.367159, "Routine": -8.980864, "Routines": -8.980864, "Ruby": -10.367159, "Running": -9.674011, "SAVE": -9.674011, "SAVPL": -8.575399, "SCALE": -7.802209, "SCALG": -8.757721, "SCALING": -10.367159, "SCREEN": -7.802209, "SCREENS": -10.367159, "SEARCH": -10.367159, "SECOND": -10.367159, "SELECT": -8.421249, "SENDER": -8.980864, "SEP": -10.367159, "SEPARATE": -10.367159, "SERVER__LIMIT": -10.367159, "SERVICES": -10.367159, "SET": -6.811811, "SET.": -10.367159, "SFX": -8.169934, "SFXWiz": -10.367159, "SG": -8.757721, "SHADE": -9.268546, "SHALL": -10.367159, "SHORT": -9.674011, "SHOW": -6.999863, "SHOW.": -10.367159, "SHOW/OUTPUT": -10.367159, "SHOW/SELECTED": -10.367159, "SHRINK": -10.367159, "SHUT": -10.367159, "SHUTDOWN": -9.268546, "SIDES": -10.367159, "SIN": -9.674011, "SINCE": -9.268546, "SITE": -7.728101, "SMTP": -6.783640, "SMTP.": -9.674011, "SMTP/NORELAY__ALLOWED.": -9.674011, "SMTP_SERVER": -10.367159, "SMTP__SERVER": -9.674011, "SMTP__SERVER.": -10.367159, "SOFTWARE": -9.674011, "SOURCE": -9.674011, "SPAWN": -8.575399, "SPECIAL": -10.367159, "STARTTLS": -10.367159, "STATISTICS": -9.674011, "STATISTICS.": -10.367159, "STATUS": -9.674011, "STOP": -9.674011, "STRICT": -10.367159, "SUB": -9.268546, "SUBPROC": -8.980864, "SUBROUTINE": -7.276116, "SUBSCRIBE": -9.268546, "SUBSEQUENT": -10.367159, "SUBSTITUTE": -10.367159, "SUCH": -10.367159, "SYM": -9.674011, "SYMBOL": -8.421249, "SYMBOLS": -10.367159, "SYNCHRONIZE": -9.674011, "SYS": -8.575399, "SYSTEM": -8.757721, "SYSTEM__USERS": -8.980864, "SYSTEM__USERS.": -10.367159, "Salisbury": -10.367159, "Same": -9.674011, "Saves": -10.367159, "Schweda": -9.674011, "Screen": -9.268546, "See": -7.728101, "Selanar": -7.969263, "Selects": -7.802209, "Self_Extracting_Archives": -10.367159, "Sends": -9.674011, "Sep": -10.367159, "Sergio": -10.367159, "Server": -10.367159, "Set": -9.674011, "Sets": -9.674011, "Setting": -9.674011, "Shareable": -10.367159, "Short": -10.367159, "Shrink.Pas": -10.367159, "Shrinks": -10.367159, "Similarly": -10.367159, "Simple": -10.367159, "Since": -9.674011, "Smith": -10.367159, "So": -10.367159, "Software": -10.367159, "Solutions.": -10.367159, "Some": -8.980864, "Source": -9.674011, "Specific": -10.367159, "Specifies": -6.999863, "Specify": -8.287717, "Specifying": -8.757721, "Spieler": -8.169934, "Split_Archives": -10.367159, "Staff": -10.367159, "Standard": -10.367159, "Steve": -9.268546, "Steven": -9.674011, "Store": -10.367159, "Stream_LF": -10.367159, "Subject": -10.367159, "Sublime": -10.367159, "Subprocesses": -10.367159, "Subsequent": -10.367159, "Substitution": -9.268546, "Such": -9.268546, "Symbols": -9.674011, "Synchronizes": -10.367159, "Syntax": -10.367159, "System": -10.367159, "System.": -10.367159, "T": -8.287717, "TB": -9.674011, "TCLEAR": -10.367159, "TCLEAR.COM": -10.367159, "TCP/IP": -10.367159, "TEKCLR": -10.367159, "TERM": -10.367159, "TERM/FORM": -10.367159, "TERMINAL": -8.757721, "TERMINAL/RAMTEK": -10.367159, "TEXT": -10.367159, "THAT": -10.367159, "THE": -8.064574, "THEORY": -10.367159, "THIS": -9.268546, "TICKED": -8.757721, "TIP": -10.367159, "TITLE": -8.980864, "TM": -10.367159, "TO": -7.034954, "TOC": -8.575399, "TODAY": -8.980864, "TOMORROW": -8.980864, "TOP": -10.367159, "TORT": -10.367159, "TRILGHI": -9.674011, "TRILGLO": -8.575399, "TT": -10.367159, "TXT.": -9.674011, "TYPE": -8.980864, "T_": -9.674011, "Table": -10.367159, "Tag": -10.367159, "Tektronix": -8.169934, "Temporary_Files": -10.367159, "Terminal": -9.674011, "Terminals": -9.268546, "Test": -9.268546, "Text": -10.367159, "TextMate": -9.268546, "Text_Files": -10.367159, "Thanks": -10.367159, "That": -10.367159, "The": -4.937813, "Then": -9.674011, "There": -9.268546, "These": -7.969263, "This": -6.133052, "Those": -10.367159, "Though": -10.367159, "Three": -9.674011, "Thus": -9.268546, "To": -7.071322, "Transfers": -10.367159, "Translate": -9.674011, "Travis": -10.367159, "Trilog": -8.757721, "Truta": -10.367159, "Two": -9.674011, "Typically": -10.367159, "U": -8.421249, "UNIT": -10.367159, "UNIX": -8.287717, "UNIX.": -10.367159, "UNSUBSCRIBE": -9.674011, "UNZIPSFX.EXE": -10.367159, "UP": -9.268546, "URL": -10.367159, "URLs": -9.268546, "USE": -8.980864, "USED": -10.367159, "USER": -7.969263, "USERS": -10.367159, "USER__DATABASE__FILE": -10.367159, "USE_EF_UT_TIME": -10.367159, "USING": -10.367159, "UTC": -9.674011, "UTF": -10.367159, "U_": -10.367159, "UnZip": -7.231664, "UnZipSFX": -10.367159, "Unexpected": -10.367159, "Unfortunately": -10.367159, "Unix": -10.367159, "Unless": -9.674011, "Unlike": -10.367159, "Update": -9.674011, "Updated": -10.367159, "Use": -9.268546, "User": -9.674011, "Usernames": -9.674011, "Using": -8.287717, "Uwe": -10.367159, "V": -7.276116, "VALIDATE__SENDER__DOMAIN": -10.367159, "VAX": -7.276116, "VAX/VMS": -8.421249, "VAX/VMS.": -10.367159, "VCLEAR.COM": -10.367159, "VERIFY__ALLOWED": -10.367159, "VERSION": -10.367159, "VERSION.": -10.367159, "VFACTOR": -9.674011, "VMS": -6.192771, "VMS.": -9.674011, "VMS_Specifics": -10.367159, "VMScluster": -10.367159, "VPEN": -9.674011, "VRESPL": -9.674011, "VRFY": -9.268546, "VSAVPL": -10.367159, "VT": -7.231664, "VV": -8.757721, "VV.": -10.367159, "Valid": -8.757721, "Various": -9.674011, "Verbose": -10.367159, "Verheijen": -10.367159, "Version": -9.674011, "Versions": -10.367159, "W": -9.674011, "WARRANTIES": -9.674011, "WAY": -10.367159, "WHEN": -10.367159, "WHETHER": -10.367159, "WHICH": -10.367159, "WILL": -10.367159, "WITH": -7.882252, "WORLD": -8.980864, "WORLD.": -10.367159, "W_FFBYTE": -10.367159, "Waits": -10.367159, "Wales": -9.674011, "Warning": -10.367159, "We": -9.674011, "Web": -10.367159, "When": -7.034954, "Whenever": -10.367159, "Where": -9.674011, "While": -9.674011, "White.": -10.367159, "Windows": -10.367159, "With": -8.757721, "Without": -10.367159, "Write": -10.367159, "X": -7.109062, "XMIN": -9.268546, "XMR": -10.367159, "XOR": -9.268546, "Y": -7.476787, "YESTERDAY.": -8.980864, "YMIN": -9.268546, "YMIN/DY": -10.367159, "YMR": -9.674011, "YOUR": -10.367159, "Year": -10.367159, "You": -7.659108, "Your": -10.367159, "Z": -10.367159, "ZIP": -7.659108, "ZIP.": -9.268546, "ZIP.RNH": -9.674011, "ZIP.org.": -10.367159, "ZIPOPT": -10.367159, "ZIP_OPTS": -10.367159, "Zip": -6.010450, "Zip_error_code": -9.268546, "[": -5.948318, "]": -5.948318, "_": -7.476787, "__s": -10.367159, "`": -8.064574, "a": -4.235932, "a_": -7.659108, "abbreviated": -9.268546, "abbreviating": -10.367159, "able": -9.674011, "aborted": -10.367159, "about": -8.575399, "above": -7.882252, "abs": -8.421249, "absolute": -7.802209, "accept": -9.268546, "accepted": -9.674011, "accepting": -10.367159, "access": -7.728101, "accessable": -10.367159, "accessed": -9.674011, "accessing": -10.367159, "according": -9.268546, "accounting": -8.287717, "accumulating": -10.367159, "accurate": -10.367159, "achieves": -10.367159, "achive": -10.367159, "across": -10.367159, "action": -8.575399, "actions": -9.674011, "active": -10.367159, "actual": -8.575399, "actually": -9.674011, "adaptation": -10.367159, "adapted": -9.674011, "add": -7.802209, "added": -7.476787, "added.": -10.367159, "adding": -8.575399, "addition": -8.421249, "additional": -7.594570, "additions": -10.367159, "addr": -8.575399, "address": -6.840798, "address.": -8.575399, "addresses": -7.728101, "addresses.": -9.674011, "adds": -9.268546, "adhere": -10.367159, "adheres": -10.367159, "adjust": -9.268546, "administrators": -10.367159, "advanced": -10.367159, "advantage": -9.674011, "advertises": -10.367159, "affect": -10.367159, "affected": -9.674011, "affected.": -9.674011, "affects": -9.674011, "after": -7.802209, "again": -9.674011, "agent": -7.148283, "agent.": -7.969263, "agents": -8.287717, "agents.": -9.674011, "ajacent": -10.367159, "al": -8.169934, "algorithm": -9.268546, "alias": -8.757721, "aliases": -10.367159, "all": -6.341807, "allocate": -10.367159, "allocated": -9.674011, "allow": -7.969263, "allowed": -8.757721, "allowed.": -9.674011, "allows": -7.969263, "almost": -10.367159, "alog": -8.757721, "along": -9.674011, "alpha": -9.268546, "already": -9.674011, "also": -6.840798, "alter": -10.367159, "altered": -8.980864, "alternate": -10.367159, "although": -10.367159, "always": -8.421249, "among": -10.367159, "amount": -8.757721, "amount.": -10.367159, "an": -5.948318, "analogous": -10.367159, "and": -4.481055, "and/or": -8.169934, "angle": -7.882252, "angle.": -8.980864, "another": -8.980864, "another.": -9.674011, "anti": -9.268546, "anticipated": -10.367159, "any": -6.783640, "anyone": -10.367159, "anyway": -10.367159, "app": -10.367159, "appear": -8.980864, "appearing": -10.367159, "appears": -10.367159, "append": -9.674011, "appended": -9.674011, "applewriter": -10.367159, "applications": -10.367159, "applied": -10.367159, "applies": -9.674011, "approach.": -10.367159, "appropriate": -8.757721, "approximate": -9.674011, "arc": -10.367159, "archive": -5.657628, "archive.": -6.870651, "archived": -10.367159, "archivers": -10.367159, "archives": -7.533945, "archives.": -8.575399, "are": -5.089044, "area": -8.575399, "arg": -10.367159, "argument": -10.367159, "arguments": -8.980864, "arising": -10.367159, "around": -10.367159, "arounds.": -10.367159, "array": -6.653587, "array.": -9.268546, "arrays": -9.268546, "arrays.": -9.674011, "arrow": -8.757721, "arrowhead": -8.575399, "as": -5.713198, "ascii": -10.367159, "ask": -9.268546, "assign": -9.674011, "assigned": -9.268546, "associated": -9.674011, "assumed": -9.268546, "at": -6.415915, "atributes": -10.367159, "atributes.": -10.367159, "attach.": -9.674011, "attaching": -10.367159, "attempt": -9.268546, "attempts": -8.757721, "attempts.": -10.367159, "attribute": -8.757721, "attributes": -8.169934, "attributes.": -9.674011, "authentication": -8.757721, "authorization": -10.367159, "auto": -8.980864, "automatic": -9.268546, "automatically": -8.757721, "auxilary": -8.980864, "available": -8.064574, "available.": -10.367159, "avoid": -8.757721, "avoiding": -10.367159, "avoids": -10.367159, "aware": -10.367159, "away.": -10.367159, "axis": -6.133052, "axis.": -9.674011, "b": -8.421249, "back": -8.287717, "background": -9.674011, "backslash": -10.367159, "backup": -10.367159, "backward": -8.980864, "bad": -9.268546, "banner": -10.367159, "bar.c": -9.674011, "based": -7.882252, "basic": -9.674011, "basis": -8.757721, "basis.": -9.674011, "be": -4.841706, "because": -9.268546, "been": -7.148283, "before": -7.728101, "begin": -9.674011, "beginning": -10.367159, "behavior": -9.268546, "behavior.": -9.674011, "behaviour": -10.367159, "being": -7.533945, "bell": -9.268546, "below": -8.421249, "below.": -8.421249, "beneficial": -10.367159, "better": -10.367159, "between": -7.422720, "beyond": -9.268546, "bigger": -10.367159, "binaries": -10.367159, "binary": -7.728101, "bit": -8.757721, "bitmap": -10.367159, "bits": -10.367159, "blame": -10.367159, "blank": -10.367159, "blanks": -10.367159, "blind": -10.367159, "blocks": -8.287717, "board": -8.980864, "board.": -10.367159, "bot": -9.674011, "both": -7.659108, "bottom": -9.674011, "bound": -10.367159, "braces.": -10.367159, "bracket.": -10.367159, "bracketed": -10.367159, "brackets": -10.367159, "brackets.": -10.367159, "branch": -9.674011, "breaking": -10.367159, "brief": -8.421249, "broken": -10.367159, "browsers": -10.367159, "buffer": -9.674011, "buffer.": -10.367159, "buffers": -10.367159, "bug": -8.421249, "bugs": -9.674011, "build": -9.268546, "build_gem": -10.367159, "builds": -10.367159, "built": -9.674011, "bundle": -9.268546, "burning": -10.367159, "but": -6.629489, "buttons": -10.367159, "by": -5.648660, "byte": -8.169934, "bytes": -8.575399, "bzip": -10.367159, "c": -8.421249, "c_": -10.367159, "calculated": -10.367159, "calculates": -9.674011, "call": -7.533945, "call.": -9.674011, "called": -7.969263, "calling": -9.268546, "calls": -8.287717, "calls.": -9.674011, "can": -5.772039, "cancel": -10.367159, "cancelled": -9.268546, "cancelled.": -8.980864, "cancels": -10.367159, "cannot": -8.421249, "capabilities": -10.367159, "capability": -10.367159, "capitalizations": -10.367159, "card": -9.674011, "care": -8.980864, "careful": -10.367159, "carriage": -10.367159, "case": -7.476787, "cases": -9.268546, "catch": -10.367159, "cause": -8.287717, "causes": -8.287717, "causing": -9.674011, "caution": -10.367159, "cd": -10.367159, "central": -10.367159, "certain": -9.674011, "change": -7.322636, "changed": -8.169934, "changed.": -9.674011, "changes": -8.169934, "changes.": -9.674011, "changing": -9.268546, "channel": -9.268546, "chapter": -9.268546, "chapter.": -10.367159, "character": -8.575399, "characters": -8.421249, "characters.": -9.268546, "check": -8.575399, "check.": -10.367159, "checked": -9.674011, "checker.": -10.367159, "checking": -9.674011, "checkout": -10.367159, "checks": -10.367159, "checks.": -10.367159, "checksum": -10.367159, "choices.": -10.367159, "chosen": -10.367159, "chunks": -10.367159, "claim": -10.367159, "clarifications": -10.367159, "class": -8.287717, "classes": -9.674011, "classifier": -9.268546, "classifier.": -10.367159, "cleanly.": -10.367159, "cleanups": -10.367159, "clear": -7.882252, "clear/new": -10.367159, "clears": -10.367159, "click": -10.367159, "clipped": -10.367159, "clipping": -10.367159, "clockwise": -8.421249, "close": -9.674011, "closed": -9.674011, "closed.": -10.367159, "closes": -9.674011, "closing": -10.367159, "closing.": -10.367159, "cluster": -9.674011, "cluster.": -8.980864, "code": -7.371426, "code.": -9.268546, "codes": -8.980864, "colon": -10.367159, "colons": -10.367159, "color": -6.435333, "color.": -10.367159, "colors": -9.674011, "combination": -8.421249, "combined": -10.367159, "combined.": -10.367159, "coming": -9.674011, "command": -5.845370, "command.": -8.169934, "commands": -7.728101, "commands.": -8.421249, "comment": -7.882252, "comment.": -10.367159, "comments": -9.674011, "commercial": -10.367159, "commit": -9.268546, "common": -9.268546, "communication": -9.674011, "communications": -10.367159, "compatibility": -8.421249, "compatible": -7.594570, "compatible.": -10.367159, "compilation": -9.674011, "compile": -10.367159, "compiled": -9.268546, "compiler": -9.674011, "complement": -10.367159, "complete.": -10.367159, "completed": -9.268546, "completed.": -10.367159, "completely": -10.367159, "completely.": -10.367159, "completion": -9.674011, "complex": -9.674011, "complicates": -10.367159, "comprehensive.": -10.367159, "compress": -9.674011, "compressed": -9.674011, "compressing": -10.367159, "compression": -8.757721, "comprises": -10.367159, "compute": -10.367159, "computed": -8.980864, "computed.": -10.367159, "con": -10.367159, "concerned": -9.674011, "concerning": -10.367159, "concise": -10.367159, "concurrent": -9.674011, "condition": -9.268546, "conditions": -8.980864, "conditions.": -10.367159, "confidence": -10.367159, "configuration": -7.882252, "configuration.": -8.980864, "configured": -10.367159, "configured.": -9.674011, "confirmation": -9.268546, "confirmations": -10.367159, "confirmed": -10.367159, "conflicts": -10.367159, "conform": -9.674011, "confusion": -10.367159, "conjunction": -9.674011, "connected": -8.980864, "connected.": -10.367159, "connecting": -9.268546, "consequential": -10.367159, "consider": -9.674011, "considered": -8.980864, "consist": -10.367159, "consistent.": -10.367159, "consists": -8.757721, "constant": -9.674011, "constructs": -9.674011, "consult": -10.367159, "contact": -10.367159, "contain": -8.287717, "contained": -9.268546, "contained.": -10.367159, "containing": -7.594570, "contains": -8.064574, "content": -10.367159, "content.": -10.367159, "contents": -8.757721, "contents.": -10.367159, "context": -9.268546, "continues": -10.367159, "continues.": -10.367159, "contrast": -10.367159, "contribute": -10.367159, "contributions": -10.367159, "contributors": -9.674011, "control": -7.476787, "controlled": -9.674011, "controls": -10.367159, "conveniently": -9.674011, "convention": -10.367159, "conversion": -7.802209, "convert": -8.169934, "converted": -8.980864, "converter": -8.287717, "converting": -9.268546, "coordinate": -8.575399, "coordinates": -7.882252, "copied": -9.268546, "copies": -10.367159, "copy": -8.169934, "copying": -9.268546, "copyright": -8.287717, "corner": -9.268546, "corner.": -10.367159, "corners.": -10.367159, "correct": -10.367159, "corresponding": -8.757721, "corrupt": -10.367159, "corrupted.": -10.367159, "corruption.": -10.367159, "could": -8.287717, "count": -8.575399, "counter": -9.268546, "counterclockwise": -10.367159, "counterparts": -10.367159, "counts": -9.268546, "couple": -10.367159, "course": -10.367159, "cranking": -10.367159, "create": -7.371426, "created": -7.882252, "created.": -9.268546, "creates": -8.575399, "creating": -8.575399, "creation": -9.674011, "creation.": -9.674011, "criteria": -10.367159, "criterion": -10.367159, "critical": -10.367159, "crlf": -8.980864, "cross": -8.757721, "cterm": -10.367159, "cubic": -9.674011, "curly": -10.367159, "current": -7.728101, "cursor": -9.268546, "curve": -8.421249, "curve.": -10.367159, "curves": -8.980864, "customizing": -10.367159, "cut": -10.367159, "d": -7.882252, "d_": -9.674011, "daily": -9.268546, "damage": -10.367159, "damaged": -9.674011, "damaged.": -10.367159, "damages": -10.367159, "damped": -9.674011, "dangerous": -10.367159, "dash": -8.757721, "dash/short": -10.367159, "dashes": -8.980864, "dat": -8.757721, "data": -6.965961, "data.": -9.674011, "database": -10.367159, "database.": -9.674011, "date": -7.533945, "dated": -8.980864, "dates": -8.421249, "dates.": -9.674011, "days": -10.367159, "days.": -10.367159, "db": -10.367159, "dc": -10.367159, "dd": -9.268546, "dd.": -9.674011, "deal": -9.674011, "deals": -10.367159, "debug": -9.674011, "decimal": -10.367159, "decisions.": -10.367159, "deck": -10.367159, "decoding.": -10.367159, "decrypt": -10.367159, "default": -5.666678, "default.": -8.757721, "defaults": -8.980864, "define": -9.268546, "defined": -8.064574, "defined.": -10.367159, "defines": -10.367159, "defining": -9.674011, "definition": -9.268546, "definitions": -9.268546, "definitive": -10.367159, "deflate": -9.674011, "deg": -9.674011, "deg.": -10.367159, "degrees": -9.268546, "delay": -9.674011, "delete": -8.980864, "deleted": -8.980864, "deleted.": -10.367159, "deletes": -10.367159, "deleting": -9.674011, "deletions": -10.367159, "deliver": -8.064574, "delivered": -8.980864, "delivery": -7.659108, "delivery.": -10.367159, "delta": -8.575399, "demonstrates": -9.674011, "denied": -9.674011, "deny": -10.367159, "depend": -9.674011, "dependencies": -10.367159, "dependency": -10.367159, "dependent": -8.757721, "depends": -9.674011, "deploy": -10.367159, "depth": -10.367159, "der": -9.674011, "derived": -9.674011, "describe": -10.367159, "descrip.mms": -9.268546, "description": -8.980864, "descriptions": -10.367159, "descriptions.": -10.367159, "descriptive": -10.367159, "descriptors": -10.367159, "design": -10.367159, "designed": -8.757721, "desire": -10.367159, "desired": -8.169934, "desired.": -8.575399, "destination": -8.169934, "destination.": -10.367159, "detailed": -9.674011, "details": -8.980864, "details.": -9.268546, "detect": -10.367159, "detected": -9.674011, "detected.": -9.674011, "detection": -9.674011, "detects": -10.367159, "determaning": -10.367159, "determine": -10.367159, "determined": -8.421249, "determines": -10.367159, "determining": -10.367159, "developed": -9.674011, "development.": -10.367159, "device": -7.034954, "device.": -8.421249, "devices": -8.421249, "devices.": -9.674011, "dg": -10.367159, "diagnostic": -9.268546, "diately.": -10.367159, "diff": -9.674011, "difference": -9.268546, "different": -7.969263, "differentiate": -10.367159, "differently": -9.674011, "diffs": -10.367159, "digest": -10.367159, "digit": -7.728101, "digits": -10.367159, "dimensioned": -9.674011, "diplays": -10.367159, "dir": -9.674011, "direct": -8.980864, "direction": -9.674011, "directions": -10.367159, "directly": -9.674011, "directories": -9.268546, "directories.": -10.367159, "directory": -6.901423, "directory.": -8.980864, "disable": -8.980864, "disabled": -8.575399, "disabled.": -10.367159, "disables": -8.757721, "disallow": -10.367159, "disambiguating": -10.367159, "discarded": -10.367159, "disclaimer": -8.980864, "disclaimer.": -10.367159, "discussed": -10.367159, "disk": -8.064574, "diskettes": -10.367159, "disks": -9.674011, "display": -6.783640, "display.": -9.674011, "displayed": -8.421249, "displayed.": -8.980864, "displaying": -10.367159, "displays": -8.169934, "displays.": -10.367159, "distance": -10.367159, "distiguish": -10.367159, "distributed": -10.367159, "distribution": -9.674011, "distribution.": -9.674011, "divided": -9.674011, "do": -7.882252, "do.": -10.367159, "document": -9.674011, "documentation": -8.757721, "documentation.": -10.367159, "documented": -8.980864, "does": -7.371426, "doesn": -9.674011, "domain": -7.276116, "domain.": -10.367159, "domains": -8.980864, "don": -9.268546, "done": -8.757721, "done.": -9.268546, "dot": -7.659108, "dot.": -9.674011, "dot/dash": -9.674011, "dots": -8.064574, "dots.": -10.367159, "dotted": -9.674011, "double": -10.367159, "dow": -10.367159, "down": -8.575399, "down.": -10.367159, "downloadable": -10.367159, "draw": -8.757721, "drawing": -10.367159, "drawings": -10.367159, "drawn": -8.169934, "drectory": -10.367159, "driver": -10.367159, "drivers": -9.674011, "dropped": -10.367159, "ds": -9.674011, "ds.": -10.367159, "du": -10.367159, "dual": -9.674011, "due": -8.575399, "dummy": -8.757721, "dumped": -9.674011, "dumped.": -10.367159, "duplicate": -10.367159, "during": -8.421249, "dv": -10.367159, "dvd": -10.367159, "dx": -7.109062, "dx*i.": -9.674011, "dy": -7.802209, "dynamic": -10.367159, "dynamically": -10.367159, "e": -8.980864, "e_": -8.575399, "each": -6.870651, "eariler": -10.367159, "earilier": -10.367159, "earlier": -10.367159, "early": -10.367159, "easiest": -10.367159, "easily": -8.980864, "edge": -9.674011, "edit": -10.367159, "edited": -10.367159, "ee": -10.367159, "effect": -10.367159, "effectively": -10.367159, "effects": -10.367159, "efficiency": -9.674011, "effort": -9.268546, "efforts": -10.367159, "either": -8.287717, "elaborate": -9.268546, "elapse": -8.980864, "eliminate": -10.367159, "eliminating": -10.367159, "embedded": -9.268546, "emit": -10.367159, "empty": -8.980864, "emulates": -10.367159, "emulating": -10.367159, "emulation": -9.268546, "enable": -9.268546, "enabled": -8.064574, "enabled.": -10.367159, "enables": -8.980864, "enabling": -10.367159, "enclosed": -10.367159, "encodings.": -10.367159, "encountered": -9.674011, "encrypted": -10.367159, "encryption": -10.367159, "end": -7.659108, "ending": -9.268546, "endings": -10.367159, "endorse": -10.367159, "enough": -10.367159, "enqueued": -10.367159, "ensure": -9.268546, "entered": -9.268546, "entire": -10.367159, "entries": -6.023353, "entries.": -8.421249, "entry": -6.965961, "entry.": -8.757721, "envelope": -8.980864, "environment": -7.802209, "environment.": -10.367159, "eod": -10.367159, "equal": -8.757721, "equally": -10.367159, "equals": -10.367159, "equipped": -8.575399, "equivalent": -9.674011, "erased.": -10.367159, "err": -10.367159, "error": -7.533945, "error.": -9.674011, "errors": -8.757721, "errors.": -10.367159, "es": -10.367159, "especially": -9.674011, "essential": -10.367159, "establishes": -9.674011, "etc": -9.674011, "etc.": -7.728101, "even": -8.757721, "event": -10.367159, "every": -7.728101, "exact": -10.367159, "exactly": -10.367159, "example": -6.582969, "example.": -10.367159, "examples": -8.980864, "exceed": -9.674011, "exceeded": -10.367159, "exceeds": -9.268546, "except": -9.268546, "exception": -9.674011, "exceptions": -9.674011, "exclude": -8.980864, "excluded": -10.367159, "excluding": -10.367159, "exclusively": -10.367159, "exec": -8.980864, "executable": -9.674011, "executables": -10.367159, "execute": -8.980864, "executeable": -10.367159, "executed": -8.421249, "executed.": -10.367159, "executes": -10.367159, "execution": -10.367159, "exist": -8.980864, "existed": -10.367159, "existing": -7.533945, "exists": -10.367159, "exit": -8.064574, "exiting.": -9.674011, "exits": -9.674011, "exits.": -10.367159, "exp": -9.674011, "expand": -9.674011, "expands": -10.367159, "expansion": -10.367159, "expected": -10.367159, "expects": -10.367159, "experience.": -10.367159, "expiration.": -9.674011, "explanation": -10.367159, "explicit": -10.367159, "explicitly": -9.674011, "explictly": -10.367159, "exploited": -10.367159, "exploited.": -10.367159, "exponent": -7.882252, "express": -10.367159, "expressed": -10.367159, "expression": -9.268546, "extended": -9.674011, "extension": -8.575399, "extensions": -9.674011, "extensively": -9.674011, "externally": -10.367159, "extra": -7.594570, "extract": -10.367159, "extracted": -9.268546, "extracting": -8.575399, "extremely": -10.367159, "eye": -10.367159, "f": -9.674011, "f_": -10.367159, "fac": -9.674011, "facility": -8.980864, "fact": -10.367159, "factor": -7.728101, "factor.": -10.367159, "factors": -8.287717, "fail": -10.367159, "failed": -9.674011, "fails": -10.367159, "fails.": -10.367159, "failure": -9.268546, "false": -10.367159, "family": -10.367159, "faster": -8.980864, "faster.": -10.367159, "fatal": -10.367159, "feature": -9.268546, "feature.": -10.367159, "features": -8.980864, "features.": -9.674011, "fed": -10.367159, "feed": -9.268546, "felt": -10.367159, "few": -10.367159, "fidelity": -10.367159, "field": -9.674011, "fields": -8.421249, "file": -5.168662, "file.": -7.422720, "file_spec_": -9.268546, "filename": -8.980864, "files": -5.997711, "files.": -8.169934, "filespec": -9.674011, "filesync": -10.367159, "fills": -10.367159, "filter": -10.367159, "filtered": -10.367159, "final": -8.980864, "finished": -8.980864, "first": -7.476787, "fit": -9.268546, "fix": -9.268546, "fixed": -8.980864, "fixing": -10.367159, "flag": -8.980864, "flags": -8.287717, "flexibility": -10.367159, "flexible": -10.367159, "floppy": -9.674011, "follow": -10.367159, "followed": -8.980864, "following": -6.783640, "follows": -10.367159, "follows.": -8.757721, "fonts.": -10.367159, "foo": -7.533945, "foo.c": -9.674011, "foo.sfx_exe": -9.268546, "foo.zfl": -9.268546, "foo.zip": -8.421249, "foo.zip.": -9.674011, "foo/harry/*.*": -10.367159, "foo_fix": -10.367159, "foo_fix.zip.": -10.367159, "foo_full.zip": -9.268546, "foo_full.zip.": -10.367159, "foo_incr.zip": -9.674011, "fooobj": -10.367159, "fooobj.zip.": -10.367159, "for": -4.787429, "force": -9.674011, "form": -7.728101, "form.": -10.367159, "format": -7.533945, "format.": -8.287717, "formats.": -10.367159, "formatted": -9.674011, "formed": -10.367159, "forms": -10.367159, "forms.": -10.367159, "formula": -9.674011, "forward": -10.367159, "forwarded": -9.268546, "forwarding": -9.674011, "found": -8.980864, "frame": -10.367159, "free": -10.367159, "freely": -10.367159, "freshen": -10.367159, "freshening": -10.367159, "from": -5.792448, "fspec": -10.367159, "fsrv": -9.674011, "ftp": -9.674011, "ftp.dir": -10.367159, "full": -8.575399, "fully": -10.367159, "function": -9.268546, "function.": -10.367159, "functionality": -10.367159, "functions": -9.674011, "further": -9.268546, "future": -9.674011, "future.": -10.367159, "g": -8.287717, "g_": -7.969263, "gateways.": -10.367159, "gem": -8.287717, "general": -9.674011, "generally": -10.367159, "generate": -9.674011, "generated": -8.980864, "generating": -10.367159, "generation": -9.268546, "generic": -9.674011, "get": -8.980864, "getenv": -10.367159, "getting": -9.674011, "git": -8.575399, "github": -10.367159, "github.com.": -10.367159, "github/linguist": -9.674011, "give": -9.268546, "given": -8.421249, "gives": -10.367159, "global": -10.367159, "globaldots": -10.367159, "go": -10.367159, "go.": -9.674011, "goal": -10.367159, "good": -8.980864, "grammar": -8.287717, "grammars": -8.575399, "grammars.": -9.674011, "grammars.yml": -10.367159, "grant": -9.674011, "granted": -9.268546, "graphical": -10.367159, "graphics": -6.455136, "graphics.": -10.367159, "gray": -10.367159, "great": -10.367159, "great.": -10.367159, "green": -10.367159, "grey": -9.674011, "grid": -8.757721, "group": -9.674011, "h": -8.980864, "h_": -9.268546, "hack": -9.674011, "hacked": -10.367159, "hair": -8.757721, "hand": -8.980864, "handle": -9.674011, "handles": -9.674011, "happen.": -10.367159, "happens": -10.367159, "hardcopy": -8.421249, "hardware": -8.980864, "hardware.": -10.367159, "has": -7.148283, "have": -6.901423, "header": -8.169934, "headers": -7.371426, "headers.": -9.268546, "held": -10.367159, "held.": -10.367159, "help": -7.594570, "help.": -9.674011, "helpful": -10.367159, "helpme": -10.367159, "here": -10.367159, "here.": -8.980864, "heuristic": -9.268546, "heuristics": -10.367159, "hexadecimal": -9.674011, "hh": -8.980864, "hi": -9.674011, "hidden": -9.268546, "hide": -10.367159, "high": -9.674011, "higher": -8.980864, "highlighting": -9.674011, "highlighting.": -10.367159, "his": -10.367159, "history": -8.980864, "hold": -9.268546, "hold.": -10.367159, "holding": -8.980864, "holds": -10.367159, "horizontal": -8.575399, "host": -7.802209, "hostname": -9.268546, "hosts": -9.674011, "how": -7.728101, "however": -8.980864, "however.": -10.367159, "hpgl": -10.367159, "http": -9.674011, "https": -10.367159, "hundreds": -10.367159, "hyphen": -8.575399, "hyphen.": -10.367159, "i": -6.870651, "i*": -10.367159, "i.": -9.674011, "i.e.": -8.757721, "i@": -10.367159, "i_": -7.728101, "iarg": -9.674011, "ic": -7.594570, "icol": -9.268546, "idea": -9.674011, "ideas": -10.367159, "identical": -10.367159, "identical.": -9.674011, "identified": -10.367159, "identifies": -8.980864, "if": -6.076699, "iflag": -7.802209, "ignore": -9.674011, "ignored": -8.169934, "ignored.": -8.980864, "ignores": -10.367159, "ii.": -9.674011, "iii.": -9.674011, "illustrate": -10.367159, "illustrated": -10.367159, "illustration": -10.367159, "image": -7.371426, "image.": -9.268546, "imediately": -10.367159, "imme": -10.367159, "immediate": -9.674011, "immediately": -10.367159, "implicitly": -10.367159, "implied.": -10.367159, "implies": -10.367159, "imply": -10.367159, "important": -10.367159, "importantly": -10.367159, "improperly": -10.367159, "in": -4.750388, "in/out": -9.674011, "inability": -10.367159, "inarchive.zip": -9.268546, "inch": -8.980864, "inches": -9.674011, "inches.": -10.367159, "incidental": -10.367159, "inclosed": -10.367159, "include": -8.169934, "included": -7.882252, "included.": -10.367159, "includes": -8.169934, "including": -7.802209, "inclusion": -10.367159, "incoming": -9.268546, "incompatibilities": -10.367159, "incompatible": -10.367159, "incorporated": -9.268546, "increase": -9.674011, "increment": -7.969263, "incremental": -9.674011, "increments.": -10.367159, "indefinitely": -10.367159, "independence": -10.367159, "independent": -9.674011, "independently": -9.268546, "index": -8.575399, "index.": -10.367159, "indexed": -10.367159, "indexes": -10.367159, "indexs": -10.367159, "indicate": -8.757721, "indicates": -10.367159, "indicating": -10.367159, "indicator": -9.674011, "indirect": -10.367159, "indirection": -10.367159, "individuals": -10.367159, "infamy": -10.367159, "infamy.zip.": -10.367159, "info": -9.268546, "info.": -10.367159, "information": -7.882252, "information.": -9.268546, "informational": -9.674011, "infozip.who": -10.367159, "inhibit": -10.367159, "initial": -10.367159, "initialization": -10.367159, "initialization.": -10.367159, "initialize": -9.674011, "initialized": -10.367159, "initially": -10.367159, "initiated.": -10.367159, "input": -6.933171, "input.": -9.674011, "inputs.": -10.367159, "inserted": -9.674011, "inserts": -10.367159, "inside": -9.674011, "inspired": -10.367159, "installation": -9.268546, "installations": -9.268546, "installed": -8.980864, "installed.": -10.367159, "instance": -10.367159, "instead": -8.064574, "instead.": -10.367159, "instruct": -10.367159, "instructs": -9.268546, "int": -9.268546, "intact.": -10.367159, "integer": -8.421249, "integers": -9.674011, "integrity": -9.674011, "intelligent": -10.367159, "intended": -8.575399, "interaction": -10.367159, "interactive": -9.674011, "interative": -10.367159, "interested": -9.674011, "interface": -10.367159, "interfaces": -10.367159, "intermediate": -10.367159, "internal": -8.421249, "internally": -10.367159, "interpolated": -10.367159, "interpolation": -9.674011, "interpret": -9.674011, "interval": -9.268546, "intervals": -10.367159, "intervals.": -10.367159, "intialization": -10.367159, "into": -6.999863, "introduction": -10.367159, "invalid": -10.367159, "invalidate": -10.367159, "invoking": -10.367159, "involve": -10.367159, "ip": -8.757721, "is": -4.390808, "issue": -10.367159, "issued": -8.757721, "issued.": -9.674011, "issues": -9.674011, "it": -6.495958, "it.": -8.757721, "its": -7.476787, "itself": -9.674011, "ix": -7.802209, "iy": -8.421249, "j": -8.287717, "job": -9.268546, "jth": -9.674011, "junk": -8.980864, "just": -8.064574, "k": -7.034954, "keep": -8.757721, "keeping": -10.367159, "kept": -9.268546, "keyword": -8.287717, "keywords": -7.882252, "kilobytes.": -10.367159, "kind": -9.268546, "known": -9.674011, "kwd": -10.367159, "l": -6.999863, "l.": -9.674011, "l_": -8.421249, "la": -10.367159, "label": -9.674011, "labeled": -8.421249, "labeling": -9.268546, "labelling": -8.287717, "labels": -7.969263, "language": -7.969263, "language.": -9.674011, "languages": -9.268546, "languages.": -10.367159, "languages.yml": -10.367159, "large": -8.421249, "laser": -9.674011, "last": -7.728101, "later": -8.575399, "latest": -8.757721, "lazy": -10.367159, "lead": -10.367159, "leading": -9.674011, "least": -8.287717, "leave": -9.268546, "leaves": -9.268546, "left": -8.575399, "left.": -10.367159, "legal": -10.367159, "length": -7.109062, "length.": -9.674011, "less": -8.757721, "let": -10.367159, "letter": -10.367159, "letters": -9.674011, "level": -9.268546, "levels": -9.674011, "levels.": -10.367159, "lf": -9.674011, "lfile": -9.674011, "lg": -9.674011, "lhs": -10.367159, "li": -10.367159, "liable": -10.367159, "lib/linguist/version.rb": -10.367159, "libr": -10.367159, "librarian": -10.367159, "libraries": -9.674011, "library": -6.495958, "library.": -8.064574, "license": -8.287717, "license.": -9.674011, "licenses": -10.367159, "like": -7.728101, "likelihood": -10.367159, "limit": -8.421249, "limitations": -9.674011, "limited": -8.980864, "limits": -9.674011, "line": -5.622227, "line.": -10.367159, "linear": -8.980864, "lines": -7.231664, "lines.": -9.674011, "lines/ticks": -9.674011, "linetype": -10.367159, "linetypes": -8.757721, "linguist": -9.674011, "link": -7.969263, "link.": -10.367159, "linked.": -10.367159, "linker": -9.268546, "linking": -9.268546, "links": -8.980864, "links.": -10.367159, "list": -6.118663, "list.": -7.322636, "listed": -9.674011, "listing": -10.367159, "listing.": -10.367159, "listname": -9.268546, "lists": -8.757721, "lit": -6.560496, "lited": -10.367159, "literal": -6.840798, "ll": -8.757721, "lo": -10.367159, "loaded": -10.367159, "local": -7.422720, "locally": -9.268546, "located": -9.268546, "location": -7.969263, "location.": -10.367159, "locations": -10.367159, "locked": -10.367159, "log": -7.371426, "logarithmic": -8.575399, "logfile": -9.674011, "logical": -8.064574, "long": -8.757721, "longer": -9.674011, "longer.": -10.367159, "longlib": -10.367159, "lookup": -10.367159, "loops": -10.367159, "loops.": -10.367159, "loup": -8.757721, "love": -10.367159, "low": -9.674011, "lower": -8.575399, "lunar": -10.367159, "m": -7.594570, "m_": -8.575399, "ma": -9.674011, "machine": -8.575399, "machines.": -9.268546, "made": -8.575399, "made.": -9.268546, "mag": -10.367159, "magnitude": -9.268546, "mail": -8.287717, "mailed": -9.268546, "mailers.": -10.367159, "mailing": -6.703597, "main": -8.757721, "mainly": -10.367159, "maintain": -10.367159, "maintained": -10.367159, "maintainer": -10.367159, "major": -7.659108, "major/minor": -9.674011, "majority": -10.367159, "make": -8.575399, "makes": -10.367159, "makesfx.com": -10.367159, "making": -10.367159, "managed": -10.367159, "management": -10.367159, "manager.": -10.367159, "manipulated": -10.367159, "manipulation": -10.367159, "manual": -9.674011, "many": -8.757721, "map": -9.268546, "mapped": -9.674011, "mark": -10.367159, "marked": -9.674011, "marking": -9.674011, "markings": -9.268546, "marks": -8.287717, "marks.": -10.367159, "mask": -10.367159, "master": -10.367159, "match": -7.969263, "matched": -9.268546, "matches.": -10.367159, "matching": -7.969263, "materials": -9.674011, "matrix": -8.757721, "matters.": -10.367159, "maximum": -7.422720, "may": -6.272814, "meaningful": -9.674011, "means": -10.367159, "measured": -10.367159, "media": -9.674011, "media.": -10.367159, "medium": -9.674011, "member": -9.674011, "memory": -9.674011, "memory.": -10.367159, "merge": -10.367159, "mess": -10.367159, "message": -6.435333, "message.": -8.064574, "messages": -7.231664, "messages.": -9.268546, "met": -10.367159, "meta": -9.674011, "metafile": -6.703597, "metafile.": -8.980864, "metafiles": -10.367159, "metafiles.": -10.367159, "method": -9.674011, "might": -8.980864, "mind.": -10.367159, "minimum": -7.594570, "minor": -8.064574, "minutes": -8.980864, "misclassifying": -9.674011, "misrepresentative": -10.367159, "misrepresented": -9.674011, "missing": -8.980864, "mixed": -10.367159, "ml": -8.287717, "mm": -8.757721, "mmddyyyy": -9.268546, "mn": -10.367159, "mode": -7.034954, "mode.": -7.882252, "moderator": -10.367159, "modes": -9.268546, "modes.": -9.674011, "modifed": -10.367159, "modification": -8.757721, "modification.": -9.674011, "modifications": -10.367159, "modified": -8.575399, "modify": -10.367159, "modifying": -9.674011, "more": -6.901423, "most": -7.659108, "motion": -9.268546, "motions": -9.674011, "move": -9.674011, "movement": -10.367159, "moves": -9.674011, "mthd": -10.367159, "much": -9.268546, "multi": -9.674011, "multiple": -8.064574, "multiplier": -10.367159, "multiplier.": -10.367159, "multiplying": -10.367159, "must": -6.901423, "n": -6.396867, "n_": -7.882252, "name": -6.324107, "name.": -9.674011, "named": -8.980864, "names": -6.965961, "natural": -10.367159, "nd": -9.674011, "nearest": -10.367159, "necessary": -9.674011, "need": -8.421249, "needed": -8.757721, "needed.": -10.367159, "needs": -10.367159, "negatable": -10.367159, "negate": -10.367159, "negating": -10.367159, "negating.": -10.367159, "negative": -8.980864, "neither": -10.367159, "netmask": -10.367159, "network": -8.287717, "new": -6.538517, "newest": -10.367159, "next": -9.268546, "nm": -9.268546, "nmax": -9.674011, "nmin": -9.268546, "nn": -9.268546, "no": -6.396867, "node": -8.287717, "node.": -10.367159, "nodes": -10.367159, "nodes.": -9.268546, "non": -7.969263, "none": -10.367159, "nor": -10.367159, "normal": -7.594570, "normally": -7.422720, "not": -5.732430, "not.": -9.674011, "notably": -10.367159, "note": -9.674011, "noted": -9.674011, "noted.": -10.367159, "notes": -10.367159, "nothing": -10.367159, "notice": -8.757721, "notices": -10.367159, "notification": -10.367159, "notifications": -10.367159, "noting": -10.367159, "now": -9.674011, "ns": -9.674011, "number": -6.118663, "numbered": -10.367159, "numbers": -7.728101, "numbers.": -10.367159, "numeric": -8.169934, "nx": -9.674011, "ny": -9.674011, "o": -8.287717, "object": -9.268546, "obsolete": -9.674011, "obsolte": -9.674011, "obtain": -9.674011, "obtained": -10.367159, "obtaining": -10.367159, "obviously": -10.367159, "occur": -8.980864, "occurs": -9.674011, "occurs.": -9.674011, "oddities.": -10.367159, "of": -4.229432, "off": -8.757721, "off.": -10.367159, "offer": -10.367159, "offers": -9.674011, "offset": -10.367159, "offsets": -8.287717, "offsets.": -10.367159, "often": -10.367159, "okay": -10.367159, "old": -8.287717, "omit": -8.575399, "omitted": -8.421249, "on": -5.349879, "once": -9.268546, "once.": -10.367159, "one": -6.560496, "only": -6.192771, "open": -9.268546, "opened": -10.367159, "opening/closing": -10.367159, "opens": -10.367159, "operates": -9.674011, "operating": -9.268546, "operation": -8.287717, "operation.": -8.575399, "operations": -9.268546, "opposite": -9.268546, "opt": -9.674011, "optimal": -10.367159, "option": -6.435333, "option.": -8.169934, "optional": -8.757721, "optional.": -10.367159, "optionally": -9.674011, "options": -7.802209, "options.": -8.980864, "or": -5.146803, "order": -8.575399, "organization": -10.367159, "orientation": -10.367159, "origin": -8.757721, "original": -7.476787, "originates": -10.367159, "orthogonal": -9.268546, "other": -7.189105, "otherwise": -9.268546, "our": -10.367159, "out": -8.064574, "out.": -9.674011, "out.lis": -9.674011, "out_file": -9.674011, "outage": -10.367159, "outarchive.zip": -9.268546, "outarchive.zip.": -10.367159, "outbound": -9.268546, "outline": -8.575399, "output": -6.341807, "output.": -8.757721, "outputing": -10.367159, "outside": -9.674011, "over": -9.674011, "override": -9.674011, "overwritten": -10.367159, "own": -9.268546, "owner": -8.169934, "owner.": -10.367159, "owners": -10.367159, "p": -9.268546, "package": -7.533945, "package.": -8.757721, "packaged": -10.367159, "packages": -9.268546, "packaging": -10.367159, "page": -7.594570, "page.": -9.268546, "pages": -10.367159, "pages.": -10.367159, "paging": -10.367159, "pairs": -10.367159, "paralel": -9.268546, "parameter": -10.367159, "parameter.": -10.367159, "parameters": -8.287717, "parameters.": -9.674011, "paramters": -9.674011, "parent": -9.674011, "parentheses.": -10.367159, "parser": -10.367159, "part": -8.757721, "participating": -10.367159, "particular": -8.575399, "parts": -9.674011, "pass": -9.268546, "passed": -10.367159, "passes": -9.268546, "password": -8.575399, "pat": -8.980864, "patches": -10.367159, "path": -7.594570, "path.": -10.367159, "paths": -8.287717, "pattern": -6.999863, "pattern.": -9.674011, "patterns": -8.980864, "pause": -8.757721, "pauses": -10.367159, "pen": -7.422720, "pens.": -10.367159, "penup": -9.674011, "per": -8.287717, "perceived": -10.367159, "percent": -9.268546, "perform": -10.367159, "performed": -9.268546, "performed.": -10.367159, "performs": -9.674011, "periodically.": -10.367159, "permission": -10.367159, "permission.": -10.367159, "permissions": -10.367159, "permit": -8.980864, "permits": -8.575399, "permitted": -9.268546, "permitted.": -10.367159, "permitting": -10.367159, "phase": -10.367159, "phi": -9.674011, "pi": -9.674011, "picking": -10.367159, "pid": -10.367159, "pieces": -9.674011, "pipe": -10.367159, "pixel": -9.268546, "pixels": -10.367159, "pixels.": -10.367159, "place": -10.367159, "place.": -10.367159, "placed": -8.169934, "places": -8.980864, "placing": -10.367159, "plain": -10.367159, "plan": -10.367159, "planes": -10.367159, "pleasing": -10.367159, "plot": -6.999863, "plotnd": -10.367159, "plots": -7.476787, "plotted": -7.371426, "plotter": -8.757721, "plotter.": -9.674011, "plottests": -9.674011, "plotting": -6.840798, "plotting.": -9.268546, "plus": -8.287717, "point": -7.728101, "pointed": -10.367159, "points": -7.659108, "popular": -10.367159, "port": -10.367159, "portable": -8.980864, "portion": -9.674011, "ports": -9.674011, "positive": -9.268546, "positives": -10.367159, "possible": -8.575399, "possible.": -10.367159, "posted": -8.980864, "postings": -10.367159, "postings.": -10.367159, "posts.": -9.674011, "postscript": -10.367159, "power": -9.268546, "powerful": -10.367159, "powers": -9.674011, "ppen": -9.674011, "practical.": -10.367159, "pre": -10.367159, "precise": -10.367159, "prefer": -10.367159, "prefix": -8.980864, "prefixed": -10.367159, "prematurely": -10.367159, "prepared": -10.367159, "present": -10.367159, "preserve": -10.367159, "preserving": -10.367159, "prevails.": -10.367159, "prevent": -9.674011, "prevents": -9.674011, "previous": -8.287717, "previously": -9.674011, "principally": -10.367159, "print": -8.287717, "print/que": -8.980864, "printable": -9.268546, "printed": -9.268546, "printer": -7.476787, "printer.": -9.268546, "printers": -8.757721, "printers.": -10.367159, "printing": -9.268546, "printronix": -9.674011, "prints": -10.367159, "prior": -8.169934, "private": -10.367159, "privilege": -10.367159, "probably": -9.674011, "procedure": -8.169934, "procedures": -10.367159, "process": -7.189105, "process.": -10.367159, "processed": -8.169934, "processed.": -9.268546, "processes": -8.757721, "processes.": -10.367159, "processing": -8.064574, "processing.": -8.980864, "processor": -8.169934, "produce": -8.064574, "produced": -10.367159, "produces": -8.980864, "production": -10.367159, "production.": -10.367159, "products": -10.367159, "program": -6.653587, "program.": -9.268546, "programs": -7.322636, "programs.": -10.367159, "progress": -8.575399, "prohibited": -10.367159, "project": -9.674011, "project.": -10.367159, "promote": -10.367159, "prompt": -8.980864, "prompted": -8.980864, "prompts": -10.367159, "prompts.": -9.674011, "proper": -10.367159, "properly": -8.757721, "properly.": -9.674011, "protection": -8.421249, "provide": -8.757721, "provided": -7.882252, "provided.": -9.268546, "provider": -10.367159, "provides": -8.575399, "providing": -9.674011, "ps": -9.674011, "public": -10.367159, "pull": -9.674011, "purge": -10.367159, "purged": -10.367159, "purges": -10.367159, "purpose": -10.367159, "purposes": -9.674011, "purposes.": -10.367159, "push": -9.268546, "put": -9.268546, "q": -10.367159, "qdgds": -10.367159, "qualified": -10.367159, "qualifier": -6.582969, "qualifier.": -8.064574, "qualifiers": -8.064574, "quantization": -10.367159, "queue": -6.840798, "queue.": -8.421249, "queues": -8.980864, "quic": -10.367159, "quiet": -10.367159, "quotation": -10.367159, "r": -8.757721, "r_": -9.268546, "rake": -9.268546, "ramtek": -9.268546, "ranges": -8.980864, "raster": -7.728101, "rasterization": -10.367159, "rate": -8.757721, "rather": -8.757721, "rating": -10.367159, "ratings": -10.367159, "re": -8.980864, "read": -7.802209, "read.": -10.367159, "readable": -9.268546, "readable.": -9.268546, "readied": -10.367159, "readied.": -10.367159, "readme.txt": -10.367159, "reads": -8.980864, "ready": -10.367159, "real": -8.169934, "reappear.": -10.367159, "reasons": -9.674011, "receipt": -10.367159, "receiving": -10.367159, "recently": -10.367159, "recipient": -8.575399, "recipient.": -10.367159, "recipients": -8.757721, "recognize": -10.367159, "recognized": -10.367159, "recommended": -10.367159, "reconstruct": -10.367159, "record": -8.757721, "records": -8.169934, "recover": -10.367159, "recovery.": -10.367159, "rectangle": -9.268546, "recurse": -10.367159, "redirect": -9.674011, "redisplayed": -10.367159, "redistribute": -10.367159, "redistribution": -10.367159, "redistribution.": -10.367159, "redraws": -10.367159, "reduce": -10.367159, "reducing": -10.367159, "redundant": -10.367159, "ref": -10.367159, "reference": -10.367159, "referred": -10.367159, "refresh": -10.367159, "refuse": -10.367159, "refuses": -10.367159, "regarding": -10.367159, "regressions": -10.367159, "regular": -9.268546, "reinitalize": -10.367159, "reject": -9.268546, "rejected": -10.367159, "rejected.": -10.367159, "rejection.": -10.367159, "related": -9.268546, "relative": -8.757721, "relay": -8.757721, "relay.": -10.367159, "relayed": -10.367159, "relays": -10.367159, "release": -8.757721, "releases": -10.367159, "releases.": -10.367159, "relevant": -10.367159, "relies": -9.674011, "reload": -10.367159, "reloading": -10.367159, "remain": -10.367159, "remaining": -10.367159, "remains": -9.674011, "remote": -9.268546, "removable": -9.674011, "removal": -9.268546, "remove": -8.980864, "removed": -8.980864, "removed.": -10.367159, "removes": -10.367159, "rename": -10.367159, "renaming": -9.674011, "renumbering": -10.367159, "reopen": -10.367159, "replace": -10.367159, "replaced": -9.674011, "replacements": -10.367159, "replacing": -10.367159, "replies": -9.674011, "replot": -10.367159, "replotted.": -10.367159, "replotting": -10.367159, "reply": -8.980864, "report": -8.980864, "report.": -10.367159, "reports": -10.367159, "reports.": -10.367159, "repositories": -10.367159, "represent": -10.367159, "representation": -9.674011, "representing": -10.367159, "reproduce": -9.674011, "reproduced": -9.674011, "request": -8.575399, "requested": -10.367159, "requested.": -10.367159, "requests": -8.757721, "requeue": -10.367159, "requeuing": -10.367159, "require": -8.980864, "required": -8.421249, "required.": -9.674011, "requires": -9.268546, "requiring": -9.674011, "res": -8.980864, "reserved.": -9.674011, "reset": -8.064574, "reset.": -9.674011, "resets": -9.268546, "reside": -10.367159, "resolution": -8.575399, "resolution.": -9.674011, "resolved.": -10.367159, "respectively.": -9.268546, "response": -9.674011, "restore": -8.757721, "restored": -10.367159, "restores": -9.674011, "restrict": -9.674011, "restrictions": -9.674011, "result": -9.674011, "resulted": -10.367159, "resulting": -8.575399, "results": -10.367159, "retain": -9.268546, "retained": -10.367159, "retains": -10.367159, "return": -7.882252, "returned": -8.757721, "returning": -10.367159, "returns": -9.674011, "reverse": -10.367159, "revision": -10.367159, "rewrite": -9.674011, "rewrites": -10.367159, "rewriting": -10.367159, "rewritten.": -10.367159, "right": -8.169934, "rights": -9.268546, "ring": -9.674011, "risking": -10.367159, "rl": -10.367159, "rm": -9.674011, "rmpen": -10.367159, "roff": -9.674011, "room": -9.268546, "root": -9.268546, "rooted": -10.367159, "rotates": -10.367159, "rotation": -9.268546, "routed.": -10.367159, "router": -10.367159, "routine": -7.189105, "routine.": -10.367159, "routines": -6.495958, "routines.": -8.757721, "rplots": -10.367159, "rt": -10.367159, "rubygems.org": -10.367159, "rule": -8.980864, "run": -7.969263, "running": -8.287717, "runs": -9.674011, "runs.": -10.367159, "s": -6.396867, "s_": -8.287717, "safe": -10.367159, "same": -6.965961, "sample": -9.674011, "samples": -8.757721, "save": -8.287717, "saved": -8.980864, "saves": -10.367159, "saving": -9.674011, "say": -10.367159, "sb": -9.674011, "sc": -10.367159, "scale": -6.965961, "scaled": -9.268546, "scales": -10.367159, "scaling": -8.064574, "scan": -7.659108, "scanned": -10.367159, "scans": -10.367159, "scope": -9.674011, "scratch": -10.367159, "scratch.": -10.367159, "screen": -7.189105, "screen.": -9.674011, "screens": -9.674011, "screens.": -10.367159, "script": -10.367159, "script/bootstrap": -10.367159, "script/convert": -10.367159, "script/licensed.": -10.367159, "sd": -10.367159, "search": -9.674011, "second": -8.287717, "seconds": -9.674011, "section": -9.268546, "sections": -10.367159, "sections.": -10.367159, "security": -9.268546, "see": -7.148283, "seek": -10.367159, "seems": -9.674011, "seen": -10.367159, "segments": -8.980864, "select": -10.367159, "selected": -8.421249, "selected.": -10.367159, "selecting": -10.367159, "selection": -8.575399, "selects": -7.802209, "self": -8.421249, "semi": -9.674011, "send": -9.268546, "sender": -10.367159, "sender.": -9.674011, "sending": -10.367159, "sends": -9.674011, "sense": -9.674011, "sensitive": -9.268546, "sensitive.": -9.674011, "sent": -8.287717, "sent.": -9.268546, "separate": -8.980864, "separately": -8.980864, "sequence": -10.367159, "sequence.": -10.367159, "sequentially": -10.367159, "series": -10.367159, "server": -7.969263, "server.": -8.169934, "servers": -10.367159, "service": -10.367159, "set": -7.109062, "sets": -8.064574, "setting": -8.980864, "setting.": -9.674011, "settings": -8.980864, "several": -8.287717, "severe": -10.367159, "severity": -9.268546, "severity.": -10.367159, "sf": -10.367159, "sfx": -9.268546, "shade": -8.980864, "shading": -8.980864, "shall": -10.367159, "shareable": -8.169934, "shared": -10.367159, "shifted": -10.367159, "short": -9.268546, "shorter": -10.367159, "should": -6.272814, "show": -8.064574, "showing": -9.268546, "shown": -8.421249, "shown.": -10.367159, "shows": -10.367159, "shrink": -10.367159, "shut": -10.367159, "shutdown": -10.367159, "shutdowns": -9.674011, "side": -7.802209, "sign": -9.674011, "signal": -9.674011, "significantly": -9.674011, "signoff": -10.367159, "signs": -10.367159, "similar": -8.575399, "similarily": -10.367159, "simliar": -10.367159, "simple": -8.757721, "simply": -9.674011, "simulate": -10.367159, "simulated": -8.757721, "simulates": -9.674011, "sin": -9.674011, "since": -9.268546, "sine": -9.674011, "single": -7.802209, "site": -9.268546, "sites": -9.674011, "six": -10.367159, "size": -7.231664, "size.": -9.268546, "sizes": -9.674011, "skilled": -10.367159, "skipped": -9.674011, "skipped.": -9.674011, "skips": -10.367159, "slightly": -10.367159, "sm": -9.674011, "small": -8.980864, "smaller": -9.674011, "smaller.": -10.367159, "smarter.": -10.367159, "smoothed": -8.575399, "smoothing": -10.367159, "so": -7.371426, "software": -7.969263, "software.": -10.367159, "softwared": -10.367159, "sole": -10.367159, "solid": -8.064574, "solution.": -10.367159, "solved": -10.367159, "some": -7.231664, "somewhat": -9.674011, "soon": -10.367159, "source": -7.969263, "source.": -10.367159, "sp": -8.757721, "space": -9.674011, "space.": -10.367159, "spaced": -10.367159, "spacing": -8.757721, "spanned": -9.268546, "spawn": -10.367159, "spawned": -9.268546, "spawning": -10.367159, "spec": -8.169934, "special": -8.421249, "specifed": -10.367159, "specific": -7.371426, "specifically": -10.367159, "specification": -7.882252, "specification.": -9.674011, "specifications": -8.757721, "specified": -6.049671, "specified.": -8.980864, "specifies": -9.674011, "specify": -7.148283, "specifying": -8.287717, "spelling": -10.367159, "spliced": -10.367159, "spline": -9.674011, "splines": -10.367159, "split": -6.678279, "split.": -10.367159, "split.zip": -9.268546, "splits": -8.064574, "splitting": -9.674011, "square": -10.367159, "ss": -8.980864, "st": -10.367159, "stack": -9.268546, "staff": -9.674011, "standard": -8.287717, "start": -8.169934, "starting": -8.757721, "state.": -9.268546, "statement": -10.367159, "static": -10.367159, "statistical": -10.367159, "statistics": -10.367159, "status": -8.757721, "status.": -10.367159, "stays": -9.674011, "stdin": -9.268546, "step": -9.674011, "steps": -10.367159, "stick": -10.367159, "still": -8.421249, "stolen": -10.367159, "stop": -10.367159, "storage": -9.268546, "store": -8.421249, "stored": -8.421249, "stores": -8.980864, "storing": -9.674011, "stream": -10.367159, "string": -7.533945, "string.": -10.367159, "strings": -10.367159, "strip": -8.287717, "stripped": -9.674011, "stripping": -9.674011, "stripping.": -10.367159, "strips": -9.268546, "structure": -9.674011, "structures": -9.268546, "stuff": -9.674011, "stuff.zip": -10.367159, "style": -8.757721, "sub_prompt": -10.367159, "subdirectories": -9.268546, "subdirectory.": -10.367159, "subexpression.": -10.367159, "subexpressions": -10.367159, "subject": -8.980864, "submodule": -9.268546, "submodules": -10.367159, "subpackage": -10.367159, "subprocess": -8.421249, "subprocess.": -9.674011, "subroutine": -8.757721, "subroutines": -8.575399, "subscribe": -9.674011, "subscriber": -10.367159, "subscribers": -8.757721, "subscribing": -10.367159, "subscription": -8.757721, "subsections": -10.367159, "subsequent": -9.674011, "subsequently": -10.367159, "substantial": -10.367159, "substitute": -9.674011, "substituted.": -10.367159, "substitution": -9.268546, "success": -9.674011, "successful": -9.268546, "successfully": -10.367159, "such": -7.659108, "suffix": -9.674011, "suffixes": -10.367159, "suggested": -10.367159, "suggestions": -10.367159, "suitable": -9.674011, "suite": -10.367159, "supercedes": -10.367159, "supplied": -8.757721, "support": -7.659108, "support.": -10.367159, "supported": -7.594570, "supported.": -8.575399, "supporting": -9.268546, "supports": -7.802209, "suppressed.": -10.367159, "suppresses": -10.367159, "sure": -10.367159, "surround": -9.674011, "sv": -9.674011, "switch": -10.367159, "switched": -10.367159, "swithing": -10.367159, "symbol": -7.882252, "symbol.": -10.367159, "symbolic": -8.575399, "symbols": -9.674011, "symlinks": -10.367159, "synchronization.": -10.367159, "syntax": -10.367159, "sys": -9.674011, "sysdevice": -10.367159, "system": -6.901423, "system.": -8.757721, "systems": -8.169934, "systems.": -10.367159, "t": -7.659108, "t_": -9.268546, "table": -8.575399, "table.": -10.367159, "tag": -10.367159, "tags": -10.367159, "tail": -10.367159, "take": -8.575399, "taken": -9.268546, "takes": -9.674011, "taking": -10.367159, "tar": -10.367159, "target": -9.268546, "task": -10.367159, "tell": -10.367159, "temp": -9.674011, "temporary": -8.421249, "ten": -10.367159, "terminal": -6.729573, "terminal.": -8.757721, "terminals": -8.287717, "terminated": -10.367159, "test": -8.575399, "tested": -9.674011, "testing": -9.674011, "tests": -9.674011, "text": -7.659108, "text/graphics": -10.367159, "th": -8.287717, "than": -7.476787, "thank": -10.367159, "that": -5.639771, "that.": -10.367159, "the": -3.186327, "their": -7.533945, "them": -7.969263, "them.": -10.367159, "then": -7.189105, "there": -8.575399, "there.": -10.367159, "thereby": -10.367159, "therefore": -10.367159, "thereof": -10.367159, "these": -7.882252, "they": -8.169934, "things": -10.367159, "third": -10.367159, "this": -6.147651, "those": -6.999863, "though": -8.421249, "three": -8.575399, "through": -7.533945, "tick": -7.476787, "ticks": -8.064574, "ticks.": -10.367159, "time": -6.538517, "time.": -8.757721, "times": -8.064574, "tireless": -10.367159, "title": -7.728101, "titled": -10.367159, "tmp": -10.367159, "to": -3.950426, "to.": -9.674011, "tones.": -10.367159, "too": -9.268546, "top": -10.367159, "total": -10.367159, "trailing": -9.268546, "transaction": -10.367159, "transactions.": -10.367159, "transfer": -9.268546, "transformed": -9.674011, "translate": -9.674011, "translates": -10.367159, "transportability": -10.367159, "transports": -10.367159, "treat": -10.367159, "treated": -10.367159, "tree": -10.367159, "tree.": -10.367159, "tries": -9.268546, "trilog": -8.980864, "trol": -10.367159, "true": -9.674011, "truncated": -10.367159, "try": -8.575399, "ts": -9.674011, "tt": -9.268546, "turn": -10.367159, "turns": -10.367159, "twice": -10.367159, "two": -8.980864, "type": -6.455136, "type.": -8.980864, "types": -7.422720, "types.": -9.268546, "typically": -10.367159, "typing": -10.367159, "u": -9.268546, "u_": -8.980864, "unable": -9.674011, "unambiguous": -10.367159, "unavailable.": -10.367159, "unchanged": -9.674011, "unchanged.": -10.367159, "uncompressed": -10.367159, "under": -8.757721, "underlying": -10.367159, "undo": -10.367159, "unified": -9.674011, "unit": -9.268546, "unitary": -10.367159, "units": -8.757721, "unity": -10.367159, "unknown": -10.367159, "unless": -10.367159, "unnatural": -10.367159, "unpack": -9.674011, "unreadable": -9.674011, "unsplit.zip": -10.367159, "unsubscribing": -10.367159, "unsupported": -10.367159, "until": -8.980864, "unzip": -9.268546, "unzip_cmd": -9.674011, "up": -7.533945, "up/down": -10.367159, "update": -8.421249, "updated": -8.421249, "updated.": -10.367159, "updates": -9.674011, "updating": -8.757721, "upgrade": -10.367159, "upgraded": -10.367159, "upgrage": -10.367159, "uphold": -10.367159, "upon": -8.980864, "upper": -9.674011, "upstream": -10.367159, "upwardly": -10.367159, "us": -10.367159, "usage": -10.367159, "usage.": -10.367159, "use": -6.147651, "use.": -9.268546, "useable.": -10.367159, "used": -5.639771, "used.": -7.802209, "useful": -8.064574, "useful.": -10.367159, "user": -6.965961, "username": -8.575399, "username.": -9.674011, "users": -8.575399, "users.": -10.367159, "uses": -8.421249, "using": -6.560496, "usize": -10.367159, "usual": -8.980864, "usually": -8.980864, "utility": -9.268546, "utilized": -10.367159, "v": -8.287717, "val": -10.367159, "valid": -9.268546, "value": -6.811811, "value.": -8.421249, "valued": -9.674011, "valued.": -9.674011, "values": -7.659108, "values.": -9.268546, "van": -9.674011, "variable": -8.169934, "variables": -8.980864, "variables.": -9.674011, "variation": -10.367159, "variety": -9.268546, "various": -8.980864, "vax/vms": -10.367159, "vector": -8.287717, "vector.": -9.674011, "vectors": -9.268546, "vectors.": -10.367159, "vendor/grammars/MyGrammar": -10.367159, "vendor/grammars/language": -10.367159, "verb": -10.367159, "verbose": -8.064574, "versa.": -10.367159, "version": -6.901423, "version.": -10.367159, "versions": -7.148283, "versions.": -10.367159, "versus": -10.367159, "vertical": -10.367159, "very": -8.287717, "via": -8.757721, "vice": -10.367159, "viewing": -10.367159, "viewport": -10.367159, "virtual": -10.367159, "visible": -10.367159, "vms": -8.980864, "volume": -9.268546, "von": -10.367159, "vpen": -9.674011, "vx.xx.xx": -10.367159, "vxx.xx.xx": -10.367159, "w": -8.421249, "w/Selanar": -9.674011, "w/no": -10.367159, "wait": -8.757721, "waiting": -9.674011, "want": -9.268546, "wants": -10.367159, "warning": -8.064574, "warning.": -10.367159, "warnings": -9.674011, "warranty": -10.367159, "was": -7.802209, "wasn": -9.674011, "wave": -9.674011, "way": -9.674011, "way.": -10.367159, "we": -8.575399, "web": -10.367159, "week": -10.367159, "well": -9.268546, "well.": -10.367159, "were": -8.064574, "what": -10.367159, "whatever": -8.757721, "when": -6.378175, "whenever": -10.367159, "where": -7.422720, "whether": -7.882252, "which": -6.010450, "whichever": -10.367159, "while": -8.575399, "who": -9.674011, "whole": -8.980864, "whose": -9.268546, "wide": -9.268546, "wide.": -10.367159, "width": -7.533945, "width.": -9.674011, "widths": -8.980864, "widths.": -9.674011, "wild": -10.367159, "wildcard": -8.980864, "wildcards": -9.268546, "will": -6.010450, "windowing": -10.367159, "wish": -10.367159, "with": -5.279562, "within": -10.367159, "without": -7.882252, "won": -10.367159, "word": -10.367159, "work": -8.421249, "work.": -10.367159, "workflow": -10.367159, "working": -9.268546, "works": -10.367159, "would": -7.728101, "writable": -10.367159, "write": -9.268546, "writes": -10.367159, "writing": -9.674011, "writing/reading": -10.367159, "written": -7.728101, "wrong": -9.268546, "ww": -9.268546, "www...": -10.367159, "www.dir": -10.367159, "x": -5.792448, "x/NT/XP": -10.367159, "x@": -10.367159, "x_": -9.674011, "xlen": -8.980864, "xlen*dx": -9.674011, "xlen.": -9.674011, "xm": -6.933171, "xmin": -8.980864, "xplotted": -8.169934, "xx": -9.674011, "xxx": -9.674011, "y": -6.324107, "y.": -9.674011, "y_": -8.980864, "ym": -8.421249, "ymin": -8.757721, "you": -6.653587, "you.": -10.367159, "your": -7.371426, "your_file_name": -10.367159, "your_file_name.OBJ": -10.367159, "your_file_name.OPT": -10.367159, "your_file_name.OPT/OPT": -10.367159, "your_file_name.obj": -10.367159, "yplotted": -10.367159, "yyyy": -10.367159, "z": -8.287717, "zero": -9.674011, "zeros.": -10.367159, "zip": -6.517011, "zip.org/pub/infozip/license.html": -10.367159, "zip.org/pub/infozip/license.html.": -10.367159, "zipcloak": -10.367159, "zipped": -10.367159, "zipsplit.": -10.367159, "zom": -10.367159, "zone": -10.367159, "zoom": -9.674011, "zooming": -10.367159, "{": -8.980864, "|": -9.674011, "}": -8.980864, "~": -5.343278, }, "Racket": map[string]float64{ "#lang": -5.786897, "(": -2.651403, ")": -2.651403, ",": -3.840987, "-": -1.298261, "//racket": -5.786897, ":": -5.093750, ";": -4.688285, "=": -5.786897, "@": -4.688285, "@author": -5.786897, "@filepath": -5.786897, "@include": -3.840987, "@index": -5.786897, "@table": -5.786897, "@title": -5.786897, "Clean": -5.786897, "Documentation": -5.786897, "HTML": -5.786897, "Latex": -5.786897, "More": -5.786897, "PDF": -5.786897, "Racket": -5.786897, "Scribble": -4.688285, "Scribble.": -5.786897, "The": -5.786897, "This": -5.786897, "Tool": -5.786897, "You": -5.786897, "[": -3.078847, "]": -3.078847, "a": -5.786897, "and": -5.786897, "any": -5.786897, "are": -5.786897, "at": -5.786897, "be": -5.093750, "books": -5.786897, "bottles": -4.400603, "can": -5.786897, "case": -5.786897, "code": -5.786897, "collection": -5.786897, "content": -5.093750, "contents": -5.786897, "creating": -5.786897, "define": -5.786897, "displayln": -5.093750, "document": -5.786897, "documentation": -5.786897, "documents": -5.786897, "efficient": -5.786897, "else": -5.786897, "etc.": -5.786897, "file.": -5.786897, "for": -5.093750, "form": -5.786897, "form.": -5.786897, "generally": -5.786897, "generated": -5.786897, "helps": -5.786897, "http": -5.786897, "if": -5.786897, "in": -4.688285, "is": -4.688285, "its": -5.786897, "itself": -5.786897, "lang.org/": -5.786897, "let": -5.786897, "library": -5.786897, "link": -5.786897, "more": -5.093750, "n": -3.707456, "of": -4.688285, "or": -5.093750, "other": -5.786897, "papers": -5.786897, "printf": -5.093750, "programmatically.": -5.786897, "programs": -5.786897, "prose": -5.093750, "range": -5.786897, "require": -5.786897, "rich": -5.786897, "scribble.scrbl": -5.786897, "scribble/bnf": -5.786897, "scribble/manual": -5.786897, "section": -3.707456, "see": -5.786897, "simple": -5.786897, "source": -5.786897, "starting": -5.786897, "sub": -5.786897, "text": -5.786897, "textual": -5.786897, "that": -5.786897, "the": -5.093750, "to": -5.093750, "tools": -5.786897, "typeset": -5.786897, "url": -4.688285, "using": -5.786897, "via": -5.786897, "whether": -5.786897, "with": -5.786897, "write": -5.786897, "written": -5.786897, "you": -5.786897, "{": -5.093750, "}": -5.093750, }, "Ragel": map[string]float64{ "$": -5.692047, "%": -3.389462, "(": -3.052990, ")": -3.052990, "*": -4.187970, "+": -4.593435, ",": -5.286582, "-": -4.775756, "..": -6.385194, "./": -6.385194, ".freeze": -6.385194, ".pack": -4.593435, ".to_i": -6.385194, ":": -3.820245, ";": -3.017899, "<": -6.385194, "=": -2.210807, ">": -3.987299, "?": -5.286582, "@path": -6.385194, "ARGV": -5.692047, "DateTime.parse": -6.385194, "ENV": -6.385194, "EPHEMERIS_DATA": -5.692047, "Emit": -4.998900, "EphemerisParser": -6.385194, "File.open": -6.385194, "MyTe": -5.692047, "MyTs": -5.692047, "SimpleScanner": -6.385194, "SimpleScanner.new": -6.385194, "SimpleTokenizer.new": -6.385194, "String": -6.385194, "Struct.new": -6.385194, "Tengai": -6.385194, "[": -3.494823, "\\": -5.286582, "]": -3.494823, "action": -4.187970, "adbc": -5.692047, "alnum": -6.385194, "any": -4.998900, "any*": -5.286582, "attr_reader": -6.385194, "begin": -5.286582, "chunk": -6.385194, "chunk.unpack": -6.385194, "class": -5.692047, "data": -3.987299, "data.is_a": -6.385194, "data.length": -5.286582, "data.unpack": -6.385194, "date": -5.692047, "datetime": -5.286582, "def": -4.439284, "digit": -4.439284, "do": -6.385194, "else": -5.692047, "emit": -5.286582, "end": -3.494823, "eoe": -5.692047, "eof": -5.692047, "ephemeris": -5.692047, "ephemeris_parser": -6.385194, "ephemeris_table": -5.286582, "f": -6.385194, "f.read": -6.385194, "fhold": -6.385194, "foo": -4.593435, "hours": -5.692047, "if": -4.998900, "ignored": -5.692047, "initialize": -6.385194, "leftover": -4.593435, "lower": -6.385194, "machine": -5.286582, "main": -5.286582, "mark": -4.593435, "mark..p": -4.998900, "minutes": -5.692047, "module": -6.385194, "month": -5.692047, "my_te": -4.593435, "my_ts": -4.593435, "my_ts..": -6.385194, "my_ts...my_te": -6.385194, "n": -6.385194, "new": -6.385194, "nil": -4.998900, "p": -4.305753, "parse_ephemeris_table": -5.692047, "parse_start_time": -5.692047, "parse_step_size": -5.692047, "parse_stop_time": -5.692047, "parse_time": -5.286582, "parser": -5.692047, "parser.ephemeris_table": -6.385194, "parser.start_time": -6.385194, "parser.step_size": -6.385194, "parser.stop_time": -6.385194, "path": -4.998900, "pe": -5.286582, "perform": -6.385194, "private": -6.385194, "r": -6.385194, "require": -6.385194, "s": -4.998900, "s.perform": -5.692047, "seconds": -5.692047, "self.parse": -6.385194, "simple_scanner": -6.385194, "simple_tokenizer": -6.385194, "soe": -5.692047, "space*": -5.692047, "start_time": -4.998900, "stdout.puts": -6.385194, "step_size": -5.286582, "stop_time": -4.998900, "super": -5.692047, "t": -6.385194, "te": -6.385194, "time": -4.593435, "time_unit": -5.692047, "ts": -4.998900, "ts..pe": -6.385194, "tz": -5.692047, "upper": -6.385194, "while": -6.385194, "ws": -5.692047, "year": -5.692047, "{": -3.440755, "|": -4.187970, "||": -6.385194, "}": -3.440755, }, "Rascal": map[string]float64{ "!": -3.920076, "$": -7.077076, "&": -7.770223, "(": -4.369026, ")": -4.369026, "*": -5.285317, "+": -4.474386, ",": -4.879851, "-": -2.991100, ".": -6.671611, "..": -7.077076, "...": -7.770223, "/": -7.077076, "//www.eclipse.org/legal/epl": -7.770223, "/State": -7.770223, ":": -2.481956, ";": -3.878403, "<": -5.205274, "<->": -7.770223, "<<": -7.077076, "<Id>": -7.077076, "<Trans*>": -7.770223, "<\\>": -7.077076, "<]>": -6.671611, "<for>": -7.077076, "<q.name>": -7.770223, "<t.event>": -7.770223, "<t.to>": -7.770223, "<}>": -7.077076, "=": -3.627088, ">": -3.595836, "?": -5.690782, "@": -6.160785, "@Foldable": -6.160785, "@category": -5.690782, "@contributor": -6.160785, "@doc": -7.770223, "@license": -7.770223, "A": -4.592169, "All": -7.770223, "Analyze": -7.770223, "Arnold": -7.770223, "Arnold.Lankamp@cwi.nl": -7.770223, "Backslash": -7.770223, "Body": -7.077076, "BooleanLiteral": -7.077076, "CWI": -6.383929, "CaseInsensitiveStringConstant": -7.077076, "Catch": -7.770223, "Class": -7.770223, "Comment": -6.671611, "Compile": -7.770223, "Comprehension": -7.770223, "Concrete": -6.671611, "ConcreteHole": -7.077076, "ConcretePart": -7.770223, "ConcretePart*": -7.770223, "Constant": -6.383929, "Copyright": -7.770223, "DateAndTime": -7.770223, "DatePart": -7.077076, "DateTimeLiteral": -7.770223, "DecimalIntegerLiteral": -7.770223, "Eclipse": -7.770223, "Expression": -3.106784, "F": -5.572999, "Fa": -7.770223, "Field": -7.770223, "FunctionBody": -7.770223, "FunctionModifiers": -7.077076, "Header": -7.077076, "HexIntegerLiteral": -7.770223, "Id": -5.978464, "Import": -7.770223, "Import*": -7.077076, "ImportedModule": -6.671611, "IntegerLiteral": -6.671611, "J.": -7.770223, "Jurgen": -7.770223, "Jurgen.Vinju@cwi.nl": -7.770223, "KeywordArguments": -7.770223, "Kind": -7.770223, "Klint": -7.770223, "LAYOUTLIST": -6.671611, "Label": -7.770223, "Lankamp": -7.770223, "Layout": -7.770223, "License": -7.770223, "Literal": -7.077076, "LocationLiteral": -7.077076, "Machine": -6.671611, "Mapping": -7.770223, "Michael": -7.770223, "Michael.Steindorfer@cwi.nl": -7.770223, "Module": -7.770223, "ModuleActuals": -7.077076, "ModuleParameters": -7.077076, "Name": -4.997634, "Nonterminal": -6.383929, "NonterminalLabel": -7.077076, "OctalIntegerLiteral": -7.077076, "OptionalExpression": -6.160785, "Parameters": -6.383929, "PathChars": -7.770223, "Pattern": -6.160785, "Paul": -7.770223, "Paul.Klint@cwi.nl": -7.770223, "PreProtocolChars": -7.770223, "PreStringChars": -7.770223, "Prod": -6.383929, "ProtocolChars": -7.077076, "ProtocolPart": -7.770223, "ProtocolTail": -7.770223, "Public": -7.770223, "QualifiedName": -5.467638, "Rascal": -7.077076, "RascalKeywords": -7.770223, "RationalLiteral": -7.770223, "RealLiteral": -7.770223, "RegExpLiteral": -7.770223, "Renaming": -7.770223, "Renamings": -7.077076, "Signature": -7.770223, "Start": -7.770223, "State": -6.671611, "Statement": -6.383929, "Statement*": -5.131166, "Steindorfer": -7.770223, "Storm": -7.770223, "Strategy": -7.770223, "StringCharacter": -7.770223, "StringCharacter*": -7.770223, "StringConstant": -7.770223, "StringLiteral": -7.770223, "StringMiddle": -5.978464, "StringTemplate": -7.770223, "Sym": -4.243863, "Syntax": -6.671611, "SyntaxDefinition": -7.077076, "Tags": -7.077076, "Target": -7.770223, "The": -7.770223, "This": -7.770223, "Tijs": -7.770223, "Tijs.van.der.Storm@cwi.nl": -7.770223, "TimePartNoTZ": -6.671611, "TimeZonePart": -7.077076, "Toplevel*": -7.770223, "Trans": -6.671611, "Trans*": -7.770223, "Type": -5.572999, "TypeArg": -7.770223, "TypeVar": -7.770223, "U": -7.770223, "URLChars": -6.671611, "UnicodeEscape": -7.770223, "UserType": -7.770223, "Variable": -7.770223, "Vinju": -7.770223, "Visibility": -7.770223, "Visit": -7.770223, "Z": -5.467638, "[": -3.339406, "\\": -3.016633, "]": -3.351383, "_": -5.372328, "`": -5.978464, "a": -4.774491, "accompanies": -7.770223, "accompanying": -7.770223, "actuals": -6.671611, "actualsRenaming": -7.770223, "addition": -7.770223, "alias": -7.770223, "all": -7.077076, "alternative": -7.770223, "alternatives": -7.770223, "and": -6.671611, "anno": -7.770223, "any": -7.770223, "appendAfter": -7.770223, "are": -7.770223, "argument": -5.824313, "arguments": -7.770223, "asType": -7.770223, "ascii": -7.770223, "assoc": -5.467638, "at": -7.077076, "available": -7.077076, "b": -7.770223, "binding": -7.770223, "body": -5.824313, "boolean": -7.770223, "booleanLiteral": -7.770223, "bottomUp": -7.770223, "bottomUpBreak": -7.770223, "bq": -7.770223, "bracket": -7.077076, "bs": -7.770223, "c": -7.770223, "callOrTree": -7.770223, "caseInsensitiveLiteral": -7.770223, "category": -7.770223, "charClass": -7.770223, "characterClass": -7.770223, "chars": -7.077076, "cistring": -7.770223, "closure": -7.770223, "column": -7.077076, "compile": -7.770223, "composition": -7.770223, "comprehension": -7.077076, "concrete": -6.160785, "condition": -6.671611, "conditions": -7.077076, "data": -7.770223, "dateTime": -7.770223, "dateTimeLiteral": -7.770223, "decimal": -7.770223, "decimalIntegerLiteral": -7.770223, "default": -5.467638, "defined": -6.383929, "definition": -7.770223, "definitions": -7.770223, "der": -7.770223, "distribution": -7.770223, "division": -7.770223, "doWhile": -7.770223, "elements": -6.671611, "elseExp": -7.770223, "elseString": -7.770223, "empty": -7.077076, "endOfLine": -7.770223, "enumerator": -7.770223, "equals": -7.770223, "equivalence": -7.770223, "event": -7.770223, "except": -7.770223, "exceptions": -7.770223, "excluding": -7.770223, "expression": -4.825784, "extend": -6.671611, "external": -7.770223, "f": -5.372328, "field": -7.770223, "fieldAccess": -7.770223, "fieldProject": -7.770223, "fieldUpdate": -7.770223, "fields": -7.770223, "first": -6.383929, "follow": -7.770223, "for": -7.770223, "fragments": -7.770223, "from": -7.770223, "function": -7.770223, "generators": -6.383929, "getAnnotation": -7.770223, "greaterThan": -7.770223, "greaterThanOrEq": -7.770223, "gt": -7.770223, "has": -7.770223, "header": -7.770223, "hex": -7.770223, "hexIntegerLiteral": -7.770223, "hole": -7.077076, "html": -7.770223, "http": -7.770223, "ifDefinedOtherwise": -7.770223, "ifThen": -7.770223, "ifThenElse": -7.077076, "implication": -7.770223, "import": -7.077076, "imports": -7.077076, "in": -7.770223, "init": -7.770223, "initial": -7.770223, "initialized": -7.770223, "innermost": -7.770223, "insertBefore": -7.770223, "integer": -7.770223, "integerLiteral": -7.770223, "interpolated": -7.770223, "intersection": -7.770223, "is": -7.077076, "isDefined": -5.978464, "it": -7.770223, "iter": -7.770223, "iterSep": -7.770223, "iterStar": -7.770223, "iterStarSep": -7.770223, "java": -7.770223, "join": -7.770223, "key": -7.770223, "keyword": -7.770223, "keywordArguments": -7.770223, "l": -6.671611, "label": -6.671611, "labeled": -7.077076, "lang": -6.671611, "language": -7.770223, "last": -7.077076, "layout": -7.770223, "left": -5.467638, "lessThan": -7.770223, "lessThanOrEq": -7.770223, "lexical": -4.997634, "lhs": -4.592169, "list": -7.770223, "literal": -6.671611, "location": -7.770223, "locationLiteral": -7.770223, "lt": -7.770223, "m": -6.383929, "m.states": -7.770223, "machine": -7.770223, "made": -7.770223, "map": -7.770223, "mappings": -7.770223, "match": -5.467638, "materials": -7.770223, "modifiers": -7.077076, "module": -5.824313, "modulo": -7.770223, "n": -6.160785, "name": -4.679181, "named": -7.770223, "negation": -7.770223, "negative": -7.770223, "newline": -7.770223, "noExpression": -7.770223, "noMatch": -6.160785, "noThrows": -7.770223, "non": -5.690782, "nonEmptyBlock": -7.770223, "nonEquals": -7.770223, "nonInterpolated": -7.770223, "nonterminal": -6.160785, "notFollow": -7.770223, "notIn": -7.770223, "notPrecede": -7.770223, "notin": -7.770223, "octal": -7.770223, "octalIntegerLiteral": -7.770223, "of": -7.077076, "one": -7.770223, "optFirst": -7.077076, "optLast": -7.077076, "optional": -7.770223, "or": -7.770223, "out": -7.077076, "outermost": -7.770223, "parameter": -7.770223, "parameters": -5.690782, "parametric": -7.770223, "parametrized": -7.770223, "params": -7.770223, "parts": -7.770223, "pattern": -6.383929, "postStats": -6.383929, "postStatsElse": -7.770223, "postStatsThen": -7.770223, "pre": -7.770223, "preStats": -6.383929, "preStatsElse": -7.770223, "preStatsThen": -7.770223, "precede": -7.770223, "product": -7.770223, "production": -6.383929, "program": -7.770223, "protocolChars": -7.770223, "q": -5.572999, "q.name": -7.770223, "qs": -6.671611, "qualifiedName": -7.077076, "r": -6.383929, "range": -7.770223, "rascal": -7.770223, "rational": -7.770223, "rationalLiteral": -7.770223, "real": -7.770223, "realLiteral": -7.770223, "reducer": -7.770223, "regExp": -7.770223, "regExpLiteral": -7.770223, "reifiedType": -7.770223, "reifyType": -7.770223, "remainder": -7.770223, "renamings": -6.671611, "replacement": -7.770223, "reserved.": -7.770223, "result": -7.770223, "return": -7.770223, "rhs": -4.592169, "right": -6.671611, "rights": -7.770223, "second": -7.077076, "selector": -7.770223, "sep": -7.077076, "sequence": -7.077076, "set": -7.077076, "setAnnotation": -7.770223, "slice": -7.770223, "sliceStep": -7.770223, "splice": -7.770223, "start": -6.383929, "startOfLine": -7.770223, "state": -7.077076, "statements": -6.383929, "states": -7.077076, "std": -7.077076, "stepRange": -7.770223, "str": -7.770223, "string": -7.077076, "stringLiteral": -7.770223, "subscript": -7.770223, "subscripts": -7.770223, "subtraction": -7.770223, "symbol": -4.879851, "syntax": -4.214875, "t": -6.383929, "tag": -7.770223, "tags": -7.077076, "tail": -7.770223, "terms": -7.770223, "test": -7.770223, "text": -7.770223, "the": -6.671611, "thenExp": -7.770223, "thenString": -7.770223, "this": -7.770223, "to": -7.077076, "topDown": -7.770223, "topDownBreak": -7.770223, "toplevels": -7.077076, "trans": -7.770223, "transitiveClosure": -5.824313, "transitiveReflexiveClosure": -5.824313, "ts": -7.077076, "tuple": -7.770223, "type": -5.690782, "typed": -7.770223, "u": -5.062173, "unInitialized": -7.770223, "under": -7.770223, "unequal": -7.770223, "unreachable": -7.770223, "utf": -7.077076, "v": -7.077076, "value": -7.770223, "van": -7.770223, "variable": -7.770223, "view": -7.770223, "vis": -7.770223, "visit": -7.077076, "voidClosure": -7.770223, "when": -7.770223, "which": -7.770223, "while": -7.770223, "withThrows": -7.770223, "z": -5.467638, "{": -4.402927, "|": -2.828581, "}": -4.402927, }, "Reason": map[string]float64{ "!": -6.635947, "&&": -6.299474, "(": -2.959646, ")": -2.967270, "*/": -7.146772, "*@": -6.105318, "+": -5.154342, ",": -3.921252, "-": -6.230481, ".": -5.537334, "...": -7.329094, "..._": -8.245384, "...env": -8.938532, "...used": -8.938532, ".a": -8.938532, ".merlin": -8.938532, "/": -4.405932, "/Foo": -8.938532, "/List": -7.329094, "2": -8.938532, ":": -2.977526, ";": -2.648816, "<": -5.472796, "<)>": -8.245384, "</>": -5.606327, "</Exp>": -8.938532, "</Foo>": -6.741307, "</LotsOfArguments>": -8.938532, "</Much>": -8.245384, "</Namespace.Foo>": -8.245384, "</One>": -8.938532, "</Sibling>": -8.938532, "</So>": -7.552237, "</Text>": -8.245384, "</span>": -8.938532, "</tagOne>": -8.938532, "</tagTwo>": -8.938532, "<Bar>": -6.230481, "<Exp>": -8.938532, "<Foo>": -4.594726, "<LotsOfArguments>": -8.938532, "<Much>": -7.329094, "<Namespace.Foo>": -6.859090, "<Nesting>": -8.245384, "<One>": -8.245384, "<Pun>": -8.938532, "<Sibling>": -8.938532, "<So>": -7.552237, "<Test>": -8.938532, "<Text>": -8.245384, "<Two>": -8.938532, "<\\/)>": -8.938532, "<\\/>": -8.938532, "<a>": -6.992621, "<b>": -6.992621, "<div>": -8.938532, "<span>": -8.938532, "<tagOne>": -7.552237, "<tagTwo>": -7.552237, "<v>": -6.859090, "=": -2.329182, ">": -2.980107, "?": -5.274970, "@@": -8.245384, "@@@autoFormat": -8.938532, "@@@thisIsAThing": -8.938532, "@JSX": -7.839919, "@foo": -8.938532, "@lookAtThisAttribute": -8.938532, "@warning": -8.245384, "A": -7.146772, "App": -6.453625, "Atom.Config.get": -7.839919, "Atom.Env.setEnvVar": -8.938532, "Atom.JsonValue.unsafeExtractString": -8.245384, "B": -7.146772, "Bar": -8.938532, "BasicStructures.run": -8.938532, "Black": -6.230481, "C": -7.329094, "Char.chr": -8.938532, "Char.escaped": -8.938532, "Clo": -5.571236, "Clo.Clo": -8.938532, "Clo.from": -8.245384, "Clo.t": -8.245384, "Cmp": -5.994093, "CssAlignAuto": -8.938532, "CssAlignCenter": -7.839919, "CssAlignFlexEnd": -8.245384, "CssAlignFlexStart": -8.245384, "CssAlignStretch": -7.839919, "CssFlexDirectionColumn": -6.859090, "CssFlexDirectionRow": -6.635947, "CssMeasureModeAtMost": -8.245384, "CssMeasureModeExactly": -6.992621, "CssMeasureModeUndefined": -6.635947, "CssPositionAbsolute": -8.938532, "CssPositionRelative": -8.245384, "D": -7.839919, "D.x": -8.938532, "D.y": -8.938532, "Delim": -8.938532, "Delim.pp": -7.146772, "Dot": -6.540636, "Endo": -8.938532, "Env": -8.938532, "Env.used": -8.245384, "Exp": -8.938532, "Foo": -7.329094, "Foo.createElement": -8.938532, "Format": -8.938532, "Green": -6.540636, "Halt": -7.552237, "Id": -6.540636, "Invalid_argument": -8.245384, "Js.Unsafe.any": -8.938532, "Js.Unsafe.fun_call": -8.938532, "Js.Unsafe.inject": -5.224960, "Js.Unsafe.js_expr": -8.938532, "Js.Unsafe.obj": -8.938532, "Js.array": -6.741307, "Js.number_of_float": -8.938532, "Js.string": -5.537334, "Js.to_string": -8.938532, "Js.wrap_callback": -8.245384, "JsonString": -8.245384, "Lam": -6.741307, "LayoutPrint.printCssNode": -8.938532, "List": -6.859090, "List.nth": -8.938532, "LotsOfArguments": -8.938532, "M_RK__G.Types.instance": -8.938532, "M_RK__Gesture.Types.instance": -8.245384, "Machine": -8.938532, "Machine.norm": -8.938532, "Modules.run": -8.938532, "Much": -8.938532, "Name": -8.938532, "Name.gen": -8.938532, "Name.t": -8.245384, "Namespace": -8.938532, "Nesting": -8.938532, "None": -6.048160, "Not_found": -8.938532, "Ocamlmerlin": -7.839919, "One": -8.938532, "Polymorphism.run": -8.938532, "Prec": -8.938532, "Prec.calc": -8.245384, "Pretty": -8.938532, "Pretty.Clo.pp": -8.245384, "Pretty.Env.mk": -7.839919, "Pretty.Term.pp": -8.938532, "Pretty.Zip.pp": -8.938532, "Printf.printf": -6.741307, "Pun": -8.938532, "Red": -6.373582, "Run": -8.938532, "Shift": -6.859090, "Sibling": -8.938532, "So": -8.938532, "Some": -6.373582, "Stream.from": -8.938532, "Stream.next": -8.938532, "Stream.t": -8.938532, "Style": -7.552237, "Sub": -8.938532, "Sub.apply": -8.938532, "Sub.map": -8.938532, "Sub.pp": -8.938532, "Sub.t": -8.938532, "Syntax": -8.245384, "Syntax.Sub": -7.552237, "Syntax.Term": -7.329094, "TGRecognizer.tGFields": -8.938532, "TGRecognizer.tGMethods": -8.938532, "TGRecognizerFinal.tGFields": -8.938532, "TGRecognizerFinal.tGMethods": -8.938532, "Term": -8.938532, "Term.App": -7.552237, "Term.Lam": -7.839919, "Term.Var": -6.859090, "Term.pp": -8.938532, "Term.t": -8.938532, "Test": -8.245384, "Test.init": -8.938532, "TestUtils.printSection": -8.938532, "Text": -8.938532, "TryToExportTwice": -8.938532, "Two": -8.938532, "Unexpected": -8.938532, "Var": -5.472796, "Variants.run": -8.938532, "X": -7.146772, "Zip": -7.839919, "Zip.App": -8.245384, "Zip.Halt": -8.938532, "Zip.Lam": -8.938532, "Zip.apply": -8.938532, "Zip.map": -8.938532, "Zip.t": -8.938532, "[": -5.177332, "]": -5.177332, "^": -7.552237, "_": -5.412171, "`": -6.859090, "a": -4.395237, "a=": -7.839919, "aTypeAnnotation": -8.245384, "acc": -6.859090, "add": -8.938532, "addPoints": -8.938532, "addThreeNumbers": -8.245384, "addThreeNumbersTupled": -8.245384, "addTwoNumbers": -8.245384, "adders": -8.938532, "age": -7.552237, "aliasedToThisVar": -8.245384, "alignContent": -7.552237, "alignItem": -7.552237, "allParensCanBeRemoved": -8.938532, "an": -8.938532, "and": -8.938532, "andNotFunctionInvocations": -8.938532, "andOtherArg": -8.938532, "annotatedResult": -8.938532, "annotatedSpreadRecord": -8.245384, "anotherArg": -7.329094, "anotherOptional": -6.992621, "anotherOptional=": -7.146772, "apply": -6.540636, "arg": -8.245384, "argOne": -8.938532, "argument": -5.894009, "argument1=": -8.938532, "argument2=": -8.938532, "argument3=": -8.938532, "argument4=": -8.938532, "argument5=": -8.938532, "argument6=": -8.938532, "as": -8.938532, "asd": -8.938532, "atomReasonMerlinFlags": -8.245384, "atomReasonMerlinLogFile": -8.245384, "atomReasonPathToMerlin": -8.245384, "availableHeight": -6.299474, "availableInnerCrossDim": -7.839919, "availableWidth": -6.299474, "b": -5.109890, "b=": -7.146772, "beginAtFilePath": -8.938532, "blah": -5.994093, "blahBlah": -7.552237, "blahCurriedX": -7.552237, "bool": -8.938532, "boundAxis": -8.245384, "butTheyWillBePrintedWithAppropriateSpacing": -8.938532, "butWeWillPrint": -8.938532, "c": -6.635947, "cachedMeasurementAt": -7.839919, "cachedMeasurementAtIndex": -7.329094, "cachedMeasurementAtIndex.availableHeight": -8.938532, "cachedMeasurementAtIndex.availableWidth": -8.938532, "cachedMeasurementAtIndex.heightMeasureMode": -8.938532, "cachedMeasurementAtIndex.widthMeasureMode": -8.938532, "cachedResults.contents": -6.859090, "cachedResults_": -8.938532, "cachedResults_.computedHeight": -8.245384, "cachedResults_.computedWidth": -8.245384, "calc": -8.938532, "callSomeFunction": -8.938532, "canUseCachedMeasurement": -8.245384, "char": -8.245384, "child": -8.938532, "child.contents": -5.300945, "child.contents.layout.computedFlexBasis": -7.552237, "child.contents.layout.measuredHeight": -8.938532, "child.contents.layout.measuredWidth": -8.938532, "child.contents.lineIndex": -8.938532, "child.contents.style.flexBasis": -8.245384, "child.contents.style.height": -8.938532, "child.contents.style.positionType": -7.839919, "child.contents.style.width": -8.245384, "childCount": -8.938532, "childHeight": -7.552237, "childHeight.contents": -7.329094, "childHeightMeasureMode": -8.245384, "childHeightMeasureMode.contents": -7.839919, "childWidth": -8.245384, "childWidth.contents": -7.146772, "childWidthMeasureMode": -8.245384, "childWidthMeasureMode.contents": -7.552237, "child_process": -8.938532, "children": -5.642695, "class": -8.938532, "classWithNoArg": -8.938532, "clo": -5.537334, "close": -8.938532, "closed.": -8.938532, "cmd": -7.329094, "code": -8.245384, "colors": -8.938532, "component": -8.245384, "computeChildFlexBasis": -8.938532, "const": -8.938532, "constraintedSequenceItem": -8.938532, "containerCrossAxis.contents": -8.938532, "contents": -5.942799, "contextify": -7.839919, "count": -7.839919, "cr": -8.245384, "createElement": -6.048160, "createElementobvioustypo": -8.938532, "createMerlinReaderFnOnce": -8.245384, "crossAxis": -5.847489, "crossDim.contents": -7.839919, "crossDimLead": -8.938532, "crossDimLead.contents": -8.245384, "cssUndefined": -8.245384, "css_max_cached_result_count": -8.938532, "ctx": -5.680435, "currentLead": -8.938532, "currentLead.contents": -6.635947, "curriedArg": -7.329094, "d": -7.839919, "data": -8.938532, "dateHired": -8.938532, "desiredFormattingForWrappedLambda": -8.938532, "desiredFormattingForWrappedLambdaReturnOnNewLine": -8.938532, "desiredFormattingForWrappedLambdaWrappedArrow": -8.938532, "desiredFormattingForWrappedSugar": -8.938532, "desiredFormattingForWrappedSugarReturnOnNewLine": -8.938532, "destruct": -8.938532, "developmentHabbits": -8.245384, "direction": -7.839919, "displayName": -5.894009, "div": -7.839919, "divideScalarByInt": -7.552237, "dontKnowWheYoudWantToActuallyDoThis": -8.938532, "dotMerlinPath": -8.245384, "dummyMeasure": -8.938532, "e": -4.949548, "eachItemInListCanBeAnnotated": -8.938532, "elem": -7.552237, "else": -5.894009, "endIndex": -8.938532, "endIndex.contents": -7.839919, "endOfLineIndex.contents": -8.245384, "endPosition": -7.839919, "entire": -8.938532, "env": -5.994093, "error": -8.245384, "exception": -8.938532, "explictlyPassed": -8.245384, "explictlyPassedAnnotated": -8.245384, "extension": -7.839919, "external": -8.938532, "f": -7.146772, "failure": -8.938532, "failwith": -8.245384, "false": -6.992621, "ff": -8.938532, "findNearestMerlinFile": -8.245384, "first": -7.839919, "firstNamedArgNeedsParens": -8.938532, "firstNamedArgShouldBeGroupedInParensAndSecondNamedArg": -8.938532, "firstTwoShouldBeGroupedAndFirstThree": -8.938532, "fix": -8.245384, "fixedEnv": -8.245384, "float": -8.245384, "fmaxf": -7.329094, "fmt": -5.942799, "foo": -6.540636, "foo=": -7.839919, "for": -7.329094, "format": -8.938532, "foundCached": -8.245384, "foundCached.contents": -7.552237, "fprintf": -6.230481, "fragment": -6.105318, "from": -7.329094, "fs": -8.938532, "fun": -5.760478, "gCurrentGenerationCount.contents": -7.839919, "gDepth.contents": -6.859090, "gPrintChanges.contents": -7.552237, "gPrintSkips.contents": -8.938532, "gPrintTree.contents": -8.938532, "gen": -8.938532, "getAlignItem": -8.245384, "getAutoCompleteSuggestions": -8.938532, "getDiagnostics": -8.938532, "getDimWithMargin": -8.938532, "getLeadingBorder": -8.938532, "getLeadingMargin": -7.552237, "getLeadingPositionWithFallback": -8.938532, "getMarginAxis": -6.859090, "getModeName": -7.146772, "getOccurrences": -8.938532, "getOutline": -8.938532, "getPaddingAndBorderAxis": -7.839919, "getSpacer": -7.839919, "getTrailingMargin": -8.938532, "getTypeHint": -8.938532, "go": -6.299474, "halted": -8.245384, "happened": -8.938532, "hasA": -8.938532, "height": -8.938532, "heightMeasureMode": -6.540636, "heightMode": -8.938532, "heresAFunctionWithNamedArgs": -8.938532, "hiredPerson": -8.938532, "i": -6.048160, "ident": -8.938532, "if": -5.067331, "in": -7.329094, "incr": -8.938532, "index": -7.839919, "init": -8.938532, "initialString": -8.938532, "innerOne": -8.245384, "innerTwo": -8.245384, "int": -4.569084, "intended": -6.453625, "intended=": -7.146772, "into": -8.245384, "isCrossSizeDefinite": -8.938532, "isCrossSizeDefinite.contents": -7.839919, "isLayoutDimDefined": -8.938532, "isLeadingPosDefinedWithFallback": -8.938532, "isMainAxisRow": -7.552237, "isRowDirection": -8.938532, "isStyleDimDefined": -6.992621, "isUndefined": -6.992621, "j": -7.839919, "j.contents": -7.329094, "jsxInFnCall": -8.938532, "jsxInList": -6.859090, "jsxInListA": -8.938532, "jsxInListB": -8.938532, "jsxInListC": -8.938532, "jsxInListD": -8.938532, "l": -5.803037, "lastArg": -7.329094, "layout": -7.839919, "layout.cachedLayout": -7.552237, "layout.cachedLayout.availableHeight": -8.938532, "layout.cachedLayout.availableWidth": -8.938532, "layout.cachedLayout.heightMeasureMode": -8.938532, "layout.cachedLayout.widthMeasureMode": -8.938532, "layout.generationCount": -8.938532, "layout.hasNewLayout": -8.938532, "layout.lastParentDirection": -8.938532, "layout.measuredHeight": -7.839919, "layout.measuredWidth": -7.839919, "layout.nextCachedMeasurementsIndex": -6.992621, "layoutMeasuredDimensionForAxis": -7.839919, "layoutNodeImpl": -8.938532, "layoutNodeInternal": -8.245384, "layoutPosPositionForAxis": -8.938532, "leadingCrossDim": -8.938532, "leadingCrossDim.contents": -7.329094, "leadingPaddingAndBorderCross": -7.839919, "let": -3.044129, "line": -8.938532, "lineCount.contents": -7.329094, "lineHeight": -8.938532, "lineHeight.contents": -6.992621, "list": -7.839919, "listOfItems": -7.839919, "locate": -8.938532, "long": -8.938532, "longWrappingTypeDefinitionExample": -8.938532, "longerInt": -7.552237, "lookES": -7.552237, "lookTuplesRequireParens": -8.938532, "lotsOfArguments": -8.938532, "lowerCase": -8.938532, "mainAxis": -7.839919, "mainDim.contents": -8.938532, "map": -8.245384, "marginAxisColumn": -7.552237, "marginAxisRow": -7.552237, "match": -8.245384, "maxLineMainDim.contents": -8.245384, "merlinFlags": -8.245384, "method": -8.245384, "mk": -8.938532, "mod": -8.245384, "module": -5.383184, "myAnnotatedValBinding": -8.938532, "myFun": -7.839919, "myOptional": -7.552237, "myRecord": -8.938532, "myRecord.nameBlah": -8.938532, "myRecordName": -8.938532, "myRecordWithFunctions": -8.938532, "myRecordWithFunctions.addThreeNumbers": -8.938532, "myRecordWithFunctions.addThreeNumbersTupled": -8.938532, "myVal": -8.938532, "n": -6.540636, "name": -6.741307, "nameBlah": -6.453625, "nameBlahType": -7.329094, "named": -7.839919, "namespace": -8.938532, "needToVisitNode": -7.552237, "nestedLet": -7.552237, "newCacheEntry": -8.938532, "newCacheEntry.availableHeight": -8.938532, "newCacheEntry.availableWidth": -8.938532, "newCacheEntry.computedHeight": -8.938532, "newCacheEntry.computedWidth": -8.938532, "newCacheEntry.heightMeasureMode": -8.938532, "newCacheEntry.widthMeasureMode": -8.938532, "newCacheEntry_": -8.245384, "newRecord": -7.329094, "next": -6.373582, "noParens": -8.938532, "noParensNeeded": -8.938532, "node": -6.165943, "node.children.": -7.839919, "node.childrenCount": -8.938532, "node.context": -7.839919, "node.layout.direction": -8.938532, "node.layout.height": -8.938532, "node.layout.measuredHeight": -8.245384, "node.layout.measuredWidth": -8.245384, "node.layout.width": -8.938532, "node.measure": -8.938532, "node.print": -7.839919, "node.style.alignContent": -8.938532, "node.style.flexDirection": -8.938532, "node.style.height": -8.938532, "node.style.maxHeight": -8.245384, "node.style.maxWidth": -8.245384, "node.style.width": -8.938532, "norm": -8.938532, "not": -6.635947, "o": -8.245384, "ocamlmerlin": -8.938532, "offset": -8.245384, "one": -7.329094, "oneArg": -7.552237, "onelineConstrain": -8.938532, "onlyDoingThisTopLevelLetToBypassTopLevelSequence": -8.938532, "open": -6.165943, "option": -8.938532, "outerOne": -7.839919, "outerTwo": -7.839919, "output": -8.938532, "p": -8.245384, "p.name": -8.245384, "parentDirection": -7.839919, "path": -5.224960, "pathToMerlin": -8.245384, "performLayout": -6.373582, "person": -7.329094, "pi": -7.552237, "point": -7.839919, "position": -6.453625, "positionToJsMerlinPosition": -7.146772, "pp": -6.048160, "pp_elem": -6.540636, "pp_print_string": -8.245384, "prefix": -7.839919, "prepareCommand": -6.859090, "prev": -5.894009, "prime": -8.245384, "printChildren": -8.938532, "printLayout": -8.938532, "printPerson": -8.938532, "printPoint": -8.938532, "printStyle": -8.938532, "print_int": -6.230481, "print_string": -7.329094, "printer": -6.992621, "punning": -8.938532, "q": -8.938532, "query": -6.373582, "raise": -7.839919, "readOneLine": -7.839919, "readerFn": -7.329094, "readline": -8.938532, "reason": -7.839919, "rec": -6.635947, "recordVal": -8.245384, "ref": -7.552237, "reject": -6.105318, "remainingAlignContentDim": -7.552237, "remainingCrossDim": -7.839919, "res": -7.146772, "resAnnotated": -8.245384, "resolve": -6.105318, "resolveAxis": -8.938532, "rest": -7.329094, "result": -7.839919, "returned": -8.938532, "returnsASequenceExpressionWithASingleIdentifier": -8.938532, "rho": -7.146772, "rule": -6.373582, "s": -8.245384, "sameThingInLocal": -8.938532, "scalarToString": -6.859090, "script": -8.245384, "second": -8.245384, "selfClosing": -7.552237, "semiLongWrappingTypeDefinitionExample": -8.938532, "semiLongWrappingTypeWithConstraint": -8.938532, "setLayoutLeadingPositionForAxis": -6.992621, "setPosition": -8.938532, "sgm": -5.067331, "shift": -8.938532, "should": -8.938532, "shouldContinue": -8.938532, "shouldContinue.contents": -8.245384, "siblingNotSpaced": -8.938532, "soAsToInstill": -8.938532, "soAsToInstillBestDevelopmentPractices": -8.938532, "someRec": -7.552237, "something": -6.859090, "spaceBefore": -8.245384, "startIndex": -7.839919, "startMerlinProcess": -8.245384, "startOfLineIndex.contents": -8.245384, "startPosition": -7.839919, "startedMerlin": -8.938532, "startedMerlin.contents": -7.839919, "state": -6.230481, "state.clo": -8.938532, "state.ctx": -8.938532, "std_formatter": -7.839919, "step": -8.245384, "stretchString": -8.938532, "string": -6.540636, "string_of_int": -8.938532, "succ": -7.329094, "suffix": -7.552237, "switch": -6.299474, "t": -6.540636, "tag": -7.552237, "tagOne": -8.938532, "tagTwo": -8.938532, "term": -8.245384, "test": -6.859090, "testFunc": -8.245384, "text": -5.537334, "that": -8.938532, "the": -8.938532, "them": -8.245384, "themAsSpaceSeparated": -8.938532, "thing": -7.146772, "third": -8.938532, "thisIsANamedArg": -8.245384, "thisIsAlsoOkay": -8.938532, "thisIsOkay": -8.938532, "thisIsRight": -7.839919, "thisReturnsA": -8.245384, "thisReturnsAAsWell": -8.938532, "thisReturnsARecord": -8.938532, "three": -8.938532, "to": -7.146772, "toInfluenceYour": -8.938532, "token": -8.245384, "totalLineCrossDim.contents": -7.329094, "true": -6.048160, "try": -8.938532, "tt": -8.938532, "tupleConstraints": -8.938532, "tupleInsideALetSequence": -8.938532, "tupleInsideAParenSequence": -8.938532, "two": -7.329094, "ty": -8.938532, "type": -5.472796, "typeAnnotation": -8.938532, "typeConstraints": -8.938532, "typeWithNestedNamedArgs": -8.938532, "typeWithNestedOptionalNamedArgs": -8.245384, "unit": -6.992621, "unitVal": -8.938532, "used": -7.329094, "v": -8.245384, "values": -8.938532, "video": -8.245384, "while": -8.245384, "width": -7.552237, "widthMeasureMode": -6.540636, "widthMode": -8.938532, "with": -8.245384, "withArg": -8.938532, "wrap": -8.245384, "wrappedArg": -8.938532, "wrong": -8.938532, "x": -4.968240, "x.contents": -8.938532, "y": -7.329094, "yo": -7.839919, "youCanEvenCallMethodsHereAndAnnotate": -8.245384, "zero": -6.635947, "zip": -5.942799, "{": -3.429143, "|": -3.857127, "||": -8.938532, "}": -3.421079, }, "Rebol": map[string]float64{ "!": -3.408070, "$": -5.389072, "%": -6.082219, "(": -3.014166, ")": -2.946725, "*": -4.829456, "+": -5.389072, ",": -4.695925, "-": -3.408070, ".": -5.165928, "/": -5.389072, "//www.apache.org/licenses/LICENSE": -6.775366, "/as": -6.775366, "/i": -6.775366, ":": -3.374169, ";": -3.061794, "<!--(?:[^^-]|-(?!->": -6.775366, "<(?:[^^\\>": -6.775366, ">": -6.775366, "?": -4.472781, "@": -6.775366, "A": -6.775366, "Apache": -6.775366, "BIND_SET": -6.775366, "Bind": -6.775366, "C": -6.775366, "Copyright": -6.775366, "Creates": -6.082219, "F": -6.775366, "License": -6.082219, "Licensed": -6.775366, "PR": -6.082219, "PR_LITERAL": -3.517270, "Purpose": -6.775366, "REB": -6.775366, "REBOL": -5.165928, "Rebol": -5.389072, "Rights": -6.775366, "S": -5.389072, "SHALLOW": -6.775366, "See": -6.775366, "Special": -6.775366, "System": -6.775366, "Technologies": -6.082219, "The": -6.775366, "These": -6.775366, "This": -6.775366, "Title": -6.082219, "Version": -6.775366, "[": -2.405918, "\\": -2.714923, "]": -2.332715, "^": -4.290459, "a": -6.082219, "abs": -6.775366, "action": -6.082219, "actions.": -6.775366, "and": -6.082219, "any": -6.775366, "are": -6.082219, "as": -6.775366, "at": -6.775366, "attributes": -6.775366, "author": -6.775366, "b": -6.775366, "b/": -6.082219, "be": -6.775366, "binary": -6.775366, "binary_base_sixteen": -6.775366, "binary_base_sixty_four": -6.775366, "binary_base_two": -6.775366, "block": -5.165928, "boot": -6.775366, "cd": -6.775366, "code.": -6.775366, "compose": -6.775366, "copy": -6.775366, "created": -6.775366, "d": -4.983607, "datatype": -5.676754, "date": -4.983607, "decimal": -6.775366, "define": -6.775366, "defined": -6.775366, "do": -6.775366, "dp": -6.775366, "ds": -6.775366, "dt": -6.775366, "e.g.": -6.775366, "either": -6.775366, "email": -6.775366, "file": -6.775366, "find": -6.775366, "first.": -6.775366, "for": -5.389072, "func": -5.165928, "function": -5.389072, "functions": -6.775366, "get": -6.775366, "grammar": -6.775366, "hello": -4.695925, "helper": -6.775366, "http": -6.775366, "i": -6.775366, "if": -6.775366, "in": -6.775366, "integer": -6.775366, "internal": -6.082219, "is": -6.082219, "issue": -6.775366, "keywords": -6.775366, "lit": -6.775366, "literal": -6.775366, "little": -6.775366, "local": -6.775366, "logic": -6.775366, "ls": -6.775366, "make": -6.775366, "manually": -6.775366, "map": -6.775366, "money": -6.775366, "must": -6.775366, "naive": -6.775366, "native": -5.165928, "natives": -6.775366, "next": -6.775366, "none": -6.775366, "not": -6.775366, "number": -5.165928, "of": -6.775366, "only": -6.082219, "op": -6.775366, "or": -6.082219, "pair": -6.775366, "percent": -6.775366, "print": -5.389072, "pwd": -6.775366, "re": -3.014166, "re/i": -5.389072, "rebol": -6.775366, "reduce": -6.775366, "refinement": -6.775366, "regex": -6.082219, "rejoin": -6.775366, "relative": -6.775366, "replace": -6.775366, "rm": -6.775366, "s": -4.983607, "s/": -6.775366, "set": -6.775366, "spec": -5.676754, "special": -6.775366, "standard": -6.775366, "string": -6.082219, "string_email": -6.775366, "string_issue": -6.775366, "string_url": -6.775366, "test": -6.775366, "the": -5.676754, "this": -6.775366, "time": -6.082219, "to": -5.389072, "trademark": -6.775366, "tuple": -6.775366, "type": -6.775366, "under": -6.775366, "url": -6.775366, "usage": -6.082219, "used": -5.676754, "value": -6.775366, "value_date": -6.775366, "value_money": -6.775366, "value_number": -6.775366, "value_pair": -6.775366, "value_time": -6.775366, "value_tuple": -6.775366, "values": -6.775366, "within": -6.775366, "word": -4.377471, "word_datatype": -6.775366, "word_get": -6.775366, "word_header": -6.775366, "word_lit": -6.775366, "word_logic": -6.775366, "word_native": -6.775366, "word_none": -6.775366, "word_refine": -6.775366, "word_set": -6.775366, "words": -6.775366, "{": -4.695925, "|": -3.517270, "}": -4.695925, "~": -6.775366, }, "Red": map[string]float64{ "!": -2.702659, "#": -4.883884, "#define": -6.136647, "#either": -5.731181, "#if": -6.829794, "#import": -6.829794, "#include": -6.829794, "#some": -6.829794, "#system": -6.829794, "%": -6.136647, "'": -6.829794, "(": -5.038034, ")": -5.443499, "+": -6.829794, ",": -6.829794, "-": -2.670911, "../common/FPU": -6.829794, "//github.com/dockimbel/Red/blob/master/BSL": -6.829794, "//www.red": -6.136647, "/local": -6.829794, "/wAAA": -6.136647, "/wAAAA": -6.829794, ":": -2.840810, ";": -3.395807, "=": -3.996580, ">": -6.829794, "?": -4.431898, "A": -6.136647, "ASCII": -6.829794, "Add": -6.829794, "Allocate": -6.829794, "AttachConsole": -6.829794, "AttachCurrentThread": -6.829794, "AttachCurrentThreadAsDaemon": -6.829794, "Author": -6.829794, "Boost": -6.829794, "C": -6.829794, "CATCH_ALL": -6.829794, "Console": -6.829794, "DestroyJavaVM": -6.829794, "DetachCurrentThread": -6.829794, "Distributed": -6.829794, "Error": -6.829794, "FF": -6.136647, "File": -6.829794, "GetEnv": -6.829794, "History": -6.829794, "JNICALL": -5.220356, "JVM": -5.038034, "LIBC": -6.829794, "Language": -6.136647, "License": -6.136647, "License.txt": -6.829794, "MacOSX": -6.136647, "Memory": -6.829794, "Negative": -6.829794, "OS": -5.731181, "Print": -6.829794, "Purpose": -6.136647, "Red": -5.731181, "Red/System": -6.829794, "Resize": -6.829794, "Return": -6.829794, "Rights": -6.829794, "SET_RETURN": -6.829794, "See": -6.829794, "SetConsoleTitle": -6.829794, "Since": -6.829794, "Software": -6.829794, "Sunday": -6.829794, "Tabs": -6.829794, "Title": -6.136647, "Version": -6.829794, "Windows": -6.136647, "[": -2.129313, "]": -2.102406, "^": -6.136647, "add": -6.136647, "alias": -6.136647, "allocation.": -6.829794, "alpha": -6.829794, "args": -6.136647, "as": -5.443499, "binary": -5.443499, "bind": -6.829794, "bla": -6.136647, "block": -5.731181, "buffer": -5.443499, "byte": -5.731181, "c": -4.883884, "case": -6.136647, "cdecl": -5.731181, "char": -6.829794, "chunks": -6.829794, "clock": -6.829794, "cnt/": -6.829794, "code": -5.731181, "comment": -6.829794, "configuration.reds": -6.829794, "console": -6.136647, "console.red": -6.829794, "copy": -6.136647, "count": -5.731181, "datatypes": -6.829794, "date": -6.829794, "day": -6.829794, "daylight": -6.829794, "delimiters": -6.829794, "description.": -6.829794, "do": -6.136647, "error": -5.220356, "escaped": -6.136647, "eval": -6.829794, "exe": -6.829794, "ff": -6.829794, "file": -6.829794, "filled": -6.829794, "foo": -5.731181, "for": -6.829794, "foreach": -6.829794, "form": -6.829794, "free": -6.829794, "func": -6.829794, "function": -5.038034, "global": -6.829794, "h": -6.829794, "halt": -6.136647, "handling": -6.829794, "hash": -6.829794, "head": -6.829794, "history": -6.136647, "history.": -6.829794, "hour": -6.829794, "http": -6.136647, "https": -6.829794, "if": -6.136647, "in": -6.829794, "init": -6.829794, "input": -6.136647, "insert": -5.731181, "inside": -6.136647, "instead": -6.829794, "int": -5.038034, "integer": -4.057205, "interpreter": -6.829794, "jint": -5.220356, "just": -6.829794, "key": -5.731181, "lang.org/": -6.136647, "len": -6.829794, "length": -6.829794, "library": -6.829794, "line": -4.632569, "list": -6.829794, "load/all": -6.829794, "long": -6.136647, "make": -6.829794, "management": -6.829794, "memory": -6.136647, "memory.": -6.829794, "minute": -6.829794, "mode": -5.731181, "mono": -5.731181, "month": -6.829794, "no": -6.829794, "none": -6.829794, "not": -6.829794, "numbers": -6.829794, "of": -6.829794, "only": -6.829794, "output.": -6.829794, "p": -5.731181, "path": -6.829794, "penv": -5.731181, "print": -5.220356, "prompt": -5.731181, "ptr": -4.190736, "push": -5.731181, "quit": -6.136647, "red": -6.829794, "reserved": -5.731181, "resize": -6.829794, "ret": -5.220356, "return": -4.527209, "rl": -5.443499, "routine": -6.829794, "saving": -6.829794, "script": -6.829794, "script/": -6.829794, "second": -6.829794, "set/any": -6.829794, "since": -6.829794, "size": -5.220356, "skip": -6.829794, "some": -6.136647, "space": -6.136647, "standard": -6.829794, "str": -5.443499, "string": -4.527209, "string/load": -6.829794, "string/rs": -6.829794, "struct": -5.220356, "supported": -6.829794, "switch": -5.731181, "system/platform": -6.829794, "system/stack/frame": -6.136647, "system/stack/top": -6.829794, "tab": -5.731181, "tail": -6.829794, "testing": -6.829794, "the": -6.136647, "time": -6.136647, "to": -6.136647, "type": -6.829794, "types": -6.829794, "under": -6.829794, "unknown": -6.829794, "unless": -6.829794, "version": -5.731181, "vm": -5.220356, "weekday": -6.829794, "which": -6.829794, "with": -5.443499, "wrapper": -6.136647, "year": -6.829794, "yearday": -6.829794, "zero": -5.731181, "{": -4.431898, "}": -4.431898, }, "Regular Expression": map[string]float64{ "!": -4.543295, "#": -5.929589, "#.*": -5.929589, "$": -4.830977, "(": -2.433082, ")": -2.433082, "*": -3.444682, "+": -4.137830, "-": -3.364640, ".": -5.929589, ".*": -5.236442, "/": -3.983679, "/#": -4.830977, ":": -2.710713, ";": -4.543295, "<": -4.830977, "=": -3.627004, ">": -5.929589, "?": -2.145400, "MODE_NAME_HERE": -5.929589, "[": -3.157000, "\\": -1.904237, "]": -3.157000, "^": -3.627004, "b": -5.236442, "d": -5.236442, "d*": -4.320151, "ex": -5.929589, "filetype": -5.929589, "ft": -5.929589, "m": -5.236442, "mode": -5.929589, "n": -5.236442, "nd": -5.929589, "rd": -5.236442, "s": -3.531694, "s*": -3.627004, "set": -5.236442, "st": -5.236442, "syntax": -5.929589, "t": -5.929589, "th": -4.830977, "vi": -5.929589, "w*": -5.929589, "x": -5.929589, "|": -3.039217, }, "Ren'Py": map[string]float64{ "!": -6.608001, "##": -7.706613, "$": -3.945413, "%": -6.608001, "(": -2.935928, ")": -2.944439, "**properties": -7.013466, "+": -7.013466, ",": -2.308450, "-": -6.097175, ".": -5.760703, "//www.bishoujo.us/renpy/.": -7.706613, ":": -3.922423, "=": -2.816264, "?": -6.608001, "A": -7.706613, "And": -7.706613, "Animation": -7.706613, "Anyway": -7.706613, "Blue": -7.706613, "But": -7.706613, "Carillon.": -7.706613, "Character": -7.013466, "DC": -7.706613, "DC.": -7.706613, "DynamicCharacter": -7.706613, "English": -7.706613, "Even": -7.706613, "False": -6.608001, "Finally": -7.013466, "For": -7.706613, "Frame": -6.608001, "Good": -7.706613, "I": -5.760703, "IM": -7.706613, "If": -6.608001, "Image": -5.914853, "ImageDissolve": -6.320319, "Is": -7.013466, "It": -6.097175, "Joplin": -7.706613, "Lemma": -7.706613, "Lemmasoft": -7.706613, "Mall.": -7.706613, "Menu": -7.706613, "Move": -7.706613, "Movie": -7.706613, "Mutopia": -7.706613, "National": -7.706613, "Netherlands": -7.706613, "No.": -7.706613, "None": -5.221706, "Okay": -7.706613, "Once": -7.706613, "Pan": -7.706613, "Position": -7.013466, "Pressing": -7.013466, "Py": -5.627171, "Py.": -6.608001, "Question": -7.706613, "Rather": -7.706613, "Ren": -5.509388, "Right": -7.706613, "S": -7.706613, "S.": -7.706613, "Solid": -6.608001, "Thanks": -7.013466, "That": -7.013466, "The": -5.509388, "Too": -7.706613, "True": -5.914853, "Washington": -7.706613, "We": -6.608001, "Well": -6.608001, "What": -6.608001, "When": -7.706613, "Why": -7.706613, "Yes.": -7.706613, "You": -5.914853, "[": -5.760703, "]": -5.760703, "_call_demonstrate_": -7.706613, "_call_find_out_more_": -7.706613, "_call_washington_": -7.706613, "_call_writing_": -7.706613, "a": -5.404028, "about": -6.320319, "access": -7.706613, "action": -7.706613, "addresses": -7.706613, "afraid": -7.706613, "all": -6.608001, "alpha": -6.320319, "already.": -7.013466, "also": -7.706613, "and": -5.308718, "anim.Blink": -7.013466, "anim.Edge": -5.914853, "anim.SMAnimation": -7.706613, "anim.State": -6.608001, "animated": -7.013466, "anything": -6.320319, "are": -7.013466, "around": -7.706613, "as": -6.097175, "ask": -7.706613, "asking": -7.706613, "at": -4.762174, "author": -7.013466, "available.": -7.013466, "back": -6.608001, "background": -7.706613, "bad.": -7.706613, "base": -6.608001, "be": -7.706613, "best": -7.706613, "bg": -4.528559, "bishoujo": -7.706613, "black": -6.608001, "blinds": -7.013466, "bmap": -7.706613, "bounce": -7.706613, "break": -7.706613, "bring": -7.706613, "bumblebee": -7.706613, "button": -6.608001, "by": -6.320319, "call": -6.320319, "can": -5.308718, "care": -7.706613, "center": -7.706613, "change": -7.706613, "changes": -7.706613, "choice.": -7.706613, "choices": -5.760703, "circiris": -7.013466, "circirisin": -7.013466, "circirisout": -7.013466, "clicked": -7.013466, "clicking": -7.706613, "code.": -7.706613, "color": -6.608001, "composite": -7.013466, "concerned": -7.706613, "control": -7.013466, "course": -7.706613, "create": -7.706613, "crop": -7.013466, "ctc": -7.013466, "ctc_position": -7.706613, "cute": -7.706613, "cyan": -5.308718, "cyanpos": -5.914853, "d": -6.608001, "date": -7.013466, "date.": -7.706613, "day": -7.013466, "day.": -7.706613, "day_planner": -7.013466, "def": -7.013466, "demo": -7.706613, "demo.": -7.706613, "demo_menu": -7.013466, "demonstrate": -6.608001, "demotrans": -7.013466, "dialogue": -6.608001, "dialogue.": -7.706613, "different": -7.706613, "displayed": -7.706613, "displaying": -7.706613, "dissolve": -4.710881, "do": -6.608001, "don": -7.706613, "done": -7.706613, "down": -7.013466, "e": -2.801338, "each": -7.706613, "ectc": -6.608001, "ectcf": -7.013466, "edit": -7.706613, "editing": -5.627171, "eileen": -4.210105, "elif": -7.706613, "else": -6.608001, "email": -7.706613, "encouraged": -7.706613, "ending": -7.706613, "entire": -7.706613, "escape": -7.706613, "even": -7.706613, "everyone": -7.706613, "example": -7.706613, "experience": -7.706613, "face": -7.013466, "fade": -7.706613, "fadeout": -7.706613, "features": -6.097175, "feel": -7.706613, "few": -7.706613, "figured": -7.706613, "find_out_more": -7.706613, "finish": -7.706613, "first": -7.706613, "five": -7.706613, "for": -5.404028, "forum.": -7.706613, "forums": -7.706613, "four": -7.706613, "frame.": -7.706613, "frames": -7.013466, "free": -7.706613, "freeing": -7.706613, "from": -6.097175, "fullscreen": -7.706613, "game": -5.509388, "game.": -6.097175, "game/script.rpy": -7.706613, "gameplay": -7.706613, "games": -6.608001, "get": -7.706613, "girl": -7.706613, "gives": -7.706613, "giving": -7.706613, "go": -6.608001, "good": -7.706613, "green": -7.013466, "guy": -7.013466, "happy": -4.487737, "has": -7.706613, "has.": -7.706613, "have": -7.706613, "haven": -7.706613, "he": -7.706613, "height": -6.097175, "heights.": -7.706613, "help": -7.013466, "help.": -7.706613, "her": -7.706613, "here": -7.013466, "hide": -6.097175, "him.": -7.706613, "his": -7.706613, "home": -7.706613, "hope": -7.706613, "hosting": -7.706613, "how": -7.706613, "hpunch": -7.706613, "http": -7.706613, "i": -5.509388, "if": -5.308718, "im.Alpha": -7.013466, "im.Composite": -7.706613, "im.Crop": -7.706613, "im.Map": -7.706613, "im.ramp": -7.706613, "image": -5.404028, "in": -5.627171, "in.": -7.706613, "include": -7.706613, "init": -6.608001, "into": -7.706613, "irisin": -7.706613, "irisout": -7.706613, "is": -6.608001, "is.": -7.706613, "it": -6.097175, "jump": -5.627171, "just": -7.013466, "keyboard": -7.706613, "know": -7.013466, "label": -7.013466, "language": -7.706613, "last": -7.706613, "least": -7.706613, "left": -6.320319, "let": -6.608001, "lets": -6.097175, "library.enter_sound": -7.706613, "library.enter_transition": -7.706613, "library.exit_sound": -7.706613, "library.exit_transition": -7.706613, "library.sample_sound": -7.706613, "like": -7.706613, "limit": -7.706613, "little": -7.706613, "ll": -7.706613, "load": -7.706613, "luck": -7.706613, "make": -6.608001, "makes": -7.706613, "making": -7.706613, "many": -7.706613, "maybe": -7.706613, "me": -7.706613, "menu": -6.097175, "menu.": -7.013466, "menus.": -7.706613, "minutes": -7.013466, "minwidth": -7.706613, "mode": -7.706613, "most": -7.706613, "mouse": -7.013466, "mouse.": -7.706613, "move": -5.627171, "movie": -6.608001, "music": -7.013466, "name": -7.013466, "navigate": -7.706613, "need": -7.706613, "needs": -7.706613, "next": -7.013466, "nice.": -7.706613, "not": -7.706613, "note.": -7.706613, "now": -7.013466, "number": -6.608001, "of": -5.141664, "off.": -7.706613, "offscreenleft": -7.706613, "offscreenright": -7.706613, "okay.": -7.706613, "old.": -7.706613, "on": -6.320319, "once.": -7.706613, "onememorial": -7.706613, "online.": -7.706613, "only": -7.706613, "or": -5.404028, "original": -7.706613, "our": -7.706613, "out": -7.013466, "outside": -7.706613, "over": -7.706613, "own": -7.013466, "page": -7.013466, "people": -7.013466, "performance": -7.706613, "periods": -7.013466, "pixellate": -6.608001, "place": -7.706613, "plan": -6.097175, "play": -7.706613, "played": -7.706613, "pov": -7.013466, "povname": -7.013466, "preferences": -7.706613, "pressing": -7.013466, "probably": -7.706613, "project": -7.706613, "project.": -7.706613, "provides": -7.706613, "python": -6.608001, "questions": -7.706613, "quickly": -7.706613, "quit": -7.706613, "range": -7.013466, "re": -7.013466, "read": -7.013466, "real": -7.706613, "really": -7.013466, "redraw": -7.706613, "reference.": -7.706613, "renpy.exists": -7.706613, "renpy.imagemap": -7.706613, "renpy.input": -7.706613, "renpy.movie_cutscene": -7.706613, "renpy.movie_start_displayable": -7.706613, "renpy.movie_stop": -7.706613, "renpy.music_start": -7.706613, "renpy.music_stop": -7.706613, "renpy.play": -6.608001, "repeat": -7.706613, "restart": -7.706613, "result": -6.608001, "return": -7.013466, "returns": -7.013466, "reverse": -7.706613, "right": -7.013466, "s": -6.320319, "save": -6.608001, "save_name": -7.706613, "saw": -7.706613, "scene": -4.339317, "screen": -6.608001, "script": -7.706613, "scrolling": -7.013466, "seconds": -7.013466, "seconds.": -7.706613, "secret": -7.706613, "see": -7.013466, "seen": -7.013466, "seen_set": -7.013466, "selected": -7.013466, "service": -7.706613, "show": -4.151265, "skip": -7.706613, "skipping": -7.013466, "skips": -7.706613, "slideawaydown": -7.706613, "slideawayleft": -7.706613, "slideawayright": -7.706613, "slideawayup": -7.706613, "slidedown": -7.706613, "slideleft": -7.706613, "slideright": -7.706613, "slideup": -7.706613, "slots": -7.013466, "slowcirciris": -7.013466, "smanim": -7.013466, "so": -7.706613, "some": -7.013466, "song": -7.706613, "sound": -7.706613, "sounds": -7.706613, "speed": -7.706613, "speedtest": -7.013466, "squares": -7.013466, "stand.": -7.706613, "stats": -7.013466, "style": -6.097175, "style.bar.hover_thumb": -7.706613, "style.bar.left_bar": -7.706613, "style.bar.left_gutter": -7.706613, "style.bar.right_bar": -7.706613, "style.bar.right_gutter": -7.706613, "style.bar.thumb": -7.706613, "style.bar.thumb_offset": -7.706613, "style.bar.thumb_shadow": -7.706613, "style.button.activate_sound": -7.706613, "style.gm_root_window.background": -7.706613, "style.imagemap.activate_sound": -7.706613, "style.mm_root_window.background": -7.706613, "style.window.background": -7.706613, "style.window.bottom_padding": -7.706613, "style.window.top_padding": -7.706613, "style.window.xmargin": -7.706613, "style.window.xpadding": -7.706613, "style.window.ymargin": -7.706613, "style_text": -6.608001, "summer.": -7.706613, "supposed": -7.706613, "system": -7.013466, "t": -6.097175, "take": -7.706613, "talking": -7.706613, "taxes": -7.706613, "tell": -7.706613, "testing": -7.706613, "text": -6.608001, "textalign": -7.706613, "than": -7.706613, "thank": -7.013466, "that": -7.013466, "the": -4.272626, "their": -7.706613, "them": -7.013466, "them.": -7.706613, "there": -6.320319, "these": -7.706613, "this": -6.320319, "this.": -7.706613, "though": -7.706613, "three": -7.706613, "through": -7.706613, "time": -7.706613, "to": -4.762174, "took": -7.706613, "town": -7.706613, "transition.": -7.706613, "transitions": -7.706613, "turn": -7.706613, "tutorial": -7.706613, "type": -6.320319, "ui.bar": -7.706613, "ui.button": -7.706613, "ui.close": -6.097175, "ui.hbox": -7.706613, "ui.interact": -7.706613, "ui.null": -6.097175, "ui.returns": -7.013466, "ui.text": -5.914853, "ui.textbutton": -7.706613, "ui.vbox": -6.320319, "ui.window": -6.320319, "up": -6.320319, "us": -6.608001, "us.": -7.706613, "use": -7.706613, "user": -7.013466, "using": -7.706613, "value": -6.097175, "ve": -6.608001, "vhappy": -7.706613, "viewing": -7.706613, "visible": -7.706613, "vpunch": -7.706613, "wait": -7.706613, "want": -6.320319, "was": -6.320319, "washington": -4.934024, "ways": -7.706613, "we": -6.608001, "well": -7.706613, "what": -7.706613, "wheel": -7.706613, "wheel.": -7.706613, "while": -7.013466, "whitehouse": -5.627171, "who": -6.608001, "will": -7.013466, "wipedown": -7.706613, "wipeleft": -7.706613, "wiperight": -7.706613, "wipeup": -7.706613, "with": -3.612268, "would": -7.706613, "wouldn": -7.706613, "write": -7.013466, "writing": -7.013466, "xanchor": -5.627171, "xfill": -6.608001, "xminimum": -7.013466, "xpos": -5.509388, "yanchor": -5.914853, "years": -7.706613, "yminimum": -7.706613, "you": -4.410776, "your": -6.097175, "ypos": -5.760703, "{": -7.706613, "}": -7.706613, "\ufeff": -7.706613, }, "RenderScript": map[string]float64{ "!": -7.249926, "#define": -3.848728, "#endif": -7.249926, "#ifndef": -7.249926, "#include": -7.249926, "#pragma": -5.640488, "&": -5.458166, "(": -2.696049, ")": -2.696049, "*": -3.917721, "*cam": -6.556778, "*camTransform": -7.249926, "*gPixels": -7.249926, "*in": -7.249926, "*lTransform": -7.249926, "*light": -7.249926, "*obj": -7.249926, "*out": -6.556778, "*pnt": -6.556778, "*usrData": -7.249926, "*vec": -6.556778, "+": -4.254193, ",": -3.122791, "-": -3.512256, "/": -6.151313, ";": -2.040439, "<": -6.556778, "=": -3.242592, ">": -3.848728, "B": -5.640488, "C": -6.556778, "CULL_ALWAYS": -7.249926, "CULL_FRUSTUM": -7.249926, "Camera_s": -7.249926, "D": -7.249926, "LIGHT_DIRECTIONAL": -7.249926, "LIGHT_POINT": -7.249926, "Light_s": -7.249926, "RenderPass_s": -7.249926, "SHADER_PARAM_CAMERA": -7.249926, "SHADER_PARAM_DATA_ONLY": -7.249926, "SHADER_PARAM_FLOAT": -5.458166, "SHADER_PARAM_LIGHT": -7.249926, "SHADER_PARAM_TEXTURE": -7.249926, "SHADER_PARAM_TRANSFORM_DATA": -7.249926, "SHADER_PARAM_TRANSFORM_MODEL": -7.249926, "SHADER_PARAM_TRANSFORM_MODEL_VIEW": -7.249926, "SHADER_PARAM_TRANSFORM_MODEL_VIEW_PROJ": -7.249926, "SHADER_PARAM_TRANSFORM_PROJ": -7.249926, "SHADER_PARAM_TRANSFORM_VIEW": -7.249926, "SHADER_PARAM_TRANSFORM_VIEW_PROJ": -7.249926, "SgCamera": -6.151313, "SgLight": -6.556778, "SgRenderPass": -7.249926, "SgRenderable": -6.556778, "SgShaderParam": -7.249926, "SgShaderParamData": -7.249926, "SgTexture": -7.249926, "SgTransform": -5.458166, "SgTransformComponent": -7.249926, "ShaderParamData_s": -7.249926, "ShaderParam_s": -7.249926, "TEXTURE_": -7.249926, "TEXTURE_CUBE": -7.249926, "TEXTURE_NONE": -7.249926, "TEXTURE_RENDER_TARGET": -7.249926, "TRANSFORM_NONE": -7.249926, "TRANSFORM_ROTATE": -7.249926, "TRANSFORM_SCALE": -7.249926, "TRANSFORM_TRANSLATE": -7.249926, "Texture_s": -7.249926, "TransformComponent_s": -7.249926, "VertexShader_s": -7.249926, "[": -4.205403, "]": -4.205403, "_CAMERA_DIR": -7.249926, "_CAMERA_POS": -7.249926, "_DATA": -7.249926, "_LIGHT_COLOR": -7.249926, "_LIGHT_DIR": -7.249926, "_LIGHT_POS": -7.249926, "_TRANSFORM_DEF_": -6.556778, "__attribute__": -7.249926, "_t": -4.305487, "aligned": -7.249926, "aspect": -6.556778, "b": -7.249926, "bVolInitialized": -7.249926, "bool": -6.151313, "boundingSphere": -7.249926, "bufferOffset": -7.249926, "cam": -4.477337, "camTransform": -6.556778, "camera": -6.556778, "char*": -7.249926, "children": -7.249926, "clamp": -7.249926, "clear_color": -7.249926, "clear_depth": -7.249926, "color": -6.556778, "color_target": -7.249926, "com.android.gallery": -7.249926, "com.android.scenegraph": -7.249926, "components": -7.249926, "const": -4.765019, "cullType": -7.249926, "d.filtershow.filters": -7.249926, "data": -7.249926, "dataTimestamp": -7.249926, "depth_target": -7.249926, "discriminant": -5.458166, "dot": -6.556778, "false": -6.556778, "far": -6.556778, "float": -3.465736, "float_value": -7.249926, "float_vecSize": -7.249926, "frustumPlanes": -7.249926, "g": -7.249926, "gCoeffs": -4.947340, "gHeight": -6.556778, "gIn": -7.249926, "gPixels": -5.052701, "gWidth": -4.852030, "getCameraRay": -7.249926, "globalMat": -7.249926, "height": -6.151313, "horizontalFOV": -6.556778, "if": -5.863631, "int": -4.254193, "intensity": -6.556778, "intersect": -7.249926, "isDirty": -6.556778, "isVisible": -7.249926, "java_package_name": -6.556778, "lTransform": -6.556778, "light": -5.170484, "localMat": -7.249926, "max": -6.556778, "mesh": -7.249926, "meshIndex": -7.249926, "min": -6.556778, "mvpInv": -5.863631, "name": -4.765019, "near": -6.556778, "normalize": -7.249926, "obj": -6.151313, "objects": -7.249926, "oneOverW": -6.556778, "originMinusCenter": -5.863631, "p": -3.586364, "packed": -7.249926, "paramName": -7.249926, "pf_const": -7.249926, "pf_constParams": -7.249926, "pf_num_textures": -7.249926, "pf_textures": -7.249926, "pnt": -6.556778, "pos": -6.151313, "pos.w": -7.249926, "pos.x": -5.863631, "pos.xy": -6.556778, "pos.xyz": -6.556778, "pos.y": -5.863631, "pos.z": -7.249926, "position": -5.863631, "position.x": -7.249926, "position.xyz": -6.556778, "position.y": -7.249926, "position.z": -7.249926, "printCameraInfo": -7.249926, "printLightInfo": -7.249926, "printName": -5.640488, "program": -7.249926, "proj": -6.556778, "pv_constParams": -7.249926, "r": -7.249926, "return": -5.863631, "root": -7.249926, "rs": -6.556778, "rsDebug": -3.753418, "rsGetElementAt": -6.151313, "rsIsObject": -7.249926, "rsMatrixInverse": -7.249926, "rsMatrixLoad": -7.249926, "rsMatrixMultiply": -7.249926, "rsPackColorTo": -7.249926, "rsUnpackColor": -5.052701, "rs_allocation": -3.882630, "rs_fp_relaxed": -7.249926, "rs_matrix": -5.458166, "rs_mesh": -7.249926, "rs_program_vertex": -7.249926, "rsgGetHeight": -7.249926, "rsgGetWidth": -7.249926, "screenX": -5.863631, "screenY": -6.151313, "shaderConst": -7.249926, "shaderConstParams": -7.249926, "should_clear_color": -7.249926, "should_clear_depth": -7.249926, "sqrt": -7.249926, "static": -5.640488, "struct": -5.052701, "t": -5.052701, "temp": -6.556778, "texture": -6.556778, "timestamp": -6.151313, "transform": -7.249926, "transformMatrix": -5.640488, "transformTimestamp": -6.556778, "true": -7.249926, "type": -5.640488, "typedef": -5.052701, "uchar": -6.151313, "uint": -4.684976, "value": -7.249926, "vec": -5.640488, "version": -6.556778, "view": -6.556778, "viewProj": -6.556778, "void": -5.458166, "width": -6.556778, "worldBoundingSphere": -7.249926, "worldBoundingSphere.w": -6.556778, "worldBoundingSphere.xyz": -7.249926, "x": -4.205403, "y": -4.541875, "z": -7.249926, "{": -4.254193, "}": -4.254193, }, "RobotFramework": map[string]float64{ "$": -3.571543, "*": -4.824306, "***": -3.438011, "+": -4.418841, ",": -5.517453, "-": -3.502550, ".": -4.824306, "...": -2.878396, "/": -4.601162, "//cukes.info": -6.210600, ":": -6.210600, "=": -4.418841, "Addition": -5.517453, "All": -6.210600, "An": -6.210600, "Arguments": -5.517453, "C": -4.824306, "Calculate": -5.111988, "Calculation": -5.111988, "Calculator": -6.210600, "CalculatorLibrary": -4.601162, "Cases": -5.111988, "Clear": -6.210600, "Creating": -6.210600, "Cucumber": -6.210600, "Division": -5.517453, "Documentation": -5.111988, "EMPTY": -5.517453, "Example": -5.111988, "Expected": -6.210600, "Expression": -6.210600, "Failing": -6.210600, "Given": -6.210600, "If": -6.210600, "Invalid": -5.517453, "It": -6.210600, "Keywords": -5.517453, "Library": -5.111988, "Longer": -6.210600, "Multiplication": -6.210600, "Notice": -6.210600, "Push": -3.438011, "Result": -4.131159, "Settings": -5.111988, "Should": -5.517453, "Simple": -6.210600, "Subtraction": -6.210600, "Template": -5.517453, "Test": -4.824306, "Tests": -6.210600, "The": -5.517453, "Then": -6.210600, "This": -5.111988, "User": -5.517453, "When": -6.210600, "[": -4.824306, "]": -4.824306, "_gherkin_": -5.517453, "_template": -6.210600, "`": -4.418841, "a": -5.111988, "abstraction": -6.210600, "act": -6.210600, "also": -5.517453, "and": -5.517453, "approach.": -5.517453, "are": -6.210600, "arguments": -6.210600, "as": -6.210600, "automation.": -6.210600, "be": -4.013375, "been": -5.111988, "better.": -6.210600, "business": -5.517453, "button": -3.645651, "buttons": -4.824306, "by": -5.111988, "calculation": -5.517453, "calculator": -6.210600, "case": -6.210600, "cases": -5.517453, "cause": -6.210600, "cleared": -5.517453, "constructed": -6.210600, "contain": -6.210600, "created": -6.210600, "custom": -6.210600, "data": -5.517453, "difference": -6.210600, "driven": -4.824306, "easily": -6.210600, "easy": -6.210600, "editing": -6.210600, "embedded": -6.210600, "equal": -6.210600, "equals": -5.517453, "error": -4.824306, "especially": -6.210600, "even": -6.210600, "examples": -6.210600, "examples.": -6.210600, "exception": -6.210600, "existing": -6.210600, "expected": -4.824306, "expression": -4.601162, "expression.": -6.210600, "fail": -5.517453, "fails": -6.210600, "failures": -6.210600, "file": -6.210600, "for": -5.517453, "from": -6.210600, "gherkin": -6.210600, "has": -4.601162, "higher": -6.210600, "how": -6.210600, "http": -6.210600, "in": -4.824306, "into": -6.210600, "is": -4.601162, "kekkonen": -6.210600, "keyword": -4.824306, "keyword_.": -6.210600, "keywords": -5.111988, "kind": -5.517453, "last": -6.210600, "level": -6.210600, "like.": -6.210600, "look": -6.210600, "made": -6.210600, "may": -6.210600, "multiple": -5.517453, "names.": -6.210600, "need": -5.111988, "new": -6.210600, "normal": -6.210600, "of": -5.111988, "on": -6.210600, "one": -6.210600, "or": -6.210600, "people": -5.517453, "people.": -6.210600, "popular": -6.210600, "programming": -6.210600, "purpose": -6.210600, "pushes": -5.517453, "repeat": -6.210600, "result": -5.517453, "same": -6.210600, "should": -4.013375, "show": -6.210600, "similar": -6.210600, "skills.": -6.210600, "style": -5.111988, "syntax": -6.210600, "syntax.": -6.210600, "test": -4.418841, "testing": -5.517453, "tests": -4.601162, "that": -4.601162, "the": -4.013375, "their": -6.210600, "these": -6.210600, "this": -6.210600, "times.": -6.210600, "to": -4.601162, "turn": -6.210600, "types": -5.517453, "understand": -6.210600, "understood": -6.210600, "use": -5.517453, "user": -5.517453, "uses": -6.210600, "using": -4.824306, "well": -5.111988, "when": -5.517453, "without": -6.210600, "work": -6.210600, "workflow": -5.111988, "works": -5.111988, "you": -6.210600, "zero.": -6.210600, "{": -3.571543, "|": -6.210600, "}": -3.571543, }, "Roff": map[string]float64{ "!": -6.304730, "#": -8.869679, "#define": -6.384773, "$": -6.790238, "&": -6.471784, "'": -7.771067, "(": -4.002145, ")": -4.326385, "*": -5.979308, "*/": -8.869679, "*nc_prevdir": -7.483385, "*ni_cdir": -8.869679, "*ni_cred": -8.869679, "*ni_dvp": -8.869679, "*ni_ptr": -8.869679, "*ni_rdir": -8.869679, "*ni_vp": -8.869679, "*v_op": -8.869679, "*v_text": -8.869679, "*v_vfsmountedhere": -8.176532, "*v_vfsp": -8.869679, "*vfs_vnodecovered": -8.869679, "*vn_abortop": -8.869679, "*vn_access": -8.869679, "*vn_close": -8.869679, "*vn_create": -8.869679, "*vn_fsync": -8.869679, "*vn_getattr": -8.869679, "*vn_inactive": -8.869679, "*vn_ioctl": -8.869679, "*vn_link": -8.869679, "*vn_lock": -8.869679, "*vn_lookup": -8.869679, "*vn_mkdir": -8.869679, "*vn_mknod": -8.869679, "*vn_mmap": -8.869679, "*vn_open": -8.869679, "*vn_read": -8.869679, "*vn_readdir": -8.869679, "*vn_readlink": -8.869679, "*vn_remove": -8.869679, "*vn_rename": -8.869679, "*vn_rmdir": -8.869679, "*vn_seek": -8.869679, "*vn_select": -8.869679, "*vn_setattr": -8.869679, "*vn_symlink": -8.869679, "*vn_unlock": -8.869679, "*vn_write": -8.869679, "+": -5.232093, ",": -3.234890, "-": -4.234950, ".": -3.872467, "..": -6.672455, "...": -8.176532, ".AB": -8.869679, ".AI": -8.869679, ".AU": -8.869679, ".B": -8.176532, ".BR": -8.869679, ".CE": -8.869679, ".CS": -8.869679, ".DE": -7.260241, ".DS": -7.771067, ".FE": -8.176532, ".FF": -8.869679, ".FS": -7.771067, ".I": -8.869679, ".ID": -8.869679, ".IP": -5.778637, ".LP": -7.483385, ".NS": -8.869679, ".PP": -5.573843, ".PQ": -7.771067, ".RE": -7.483385, ".RS": -7.771067, ".SH": -6.790238, ".TH": -8.869679, ".TL": -8.869679, ".TP": -6.304730, ".UX": -6.384773, ".bp": -7.771067, ".br": -8.176532, ".ce": -8.176532, ".de": -7.260241, ".el": -8.869679, ".fi": -8.869679, ".g": -8.869679, ".ie": -8.869679, ".if": -7.771067, ".in": -8.869679, ".ip": -7.077920, ".ne": -8.869679, ".nf": -8.176532, ".nr": -8.176532, ".po": -8.869679, ".pp": -7.771067, ".sp": -6.567094, ".ta": -7.260241, ".tr": -8.869679, ".ul": -8.869679, "/": -7.260241, ":": -6.230622, ";": -4.552191, "</a>": -7.483385, "<a>": -7.483385, "<esr@thyrsus.com>": -8.869679, "<newline>": -8.869679, "<wl@gnu.org>": -8.869679, "=": -8.176532, ">": -7.771067, "?": -8.869679, "@": -8.869679, "A": -5.825157, "ABANDON": -8.869679, "ALL": -8.869679, "ALSO": -8.869679, "AND": -7.771067, "ANY": -8.176532, "ARISING": -8.869679, "AS": -8.869679, "AT": -6.672455, "Abbreviation": -8.869679, "Accordingly": -8.869679, "After": -8.869679, "Agreement": -8.869679, "Algebra": -8.869679, "All": -7.771067, "Also": -8.176532, "Although": -7.077920, "An": -8.869679, "Angeles": -8.176532, "Another": -8.176532, "Any": -8.869679, "Applicative": -8.869679, "April": -8.869679, "As": -6.567094, "Audible": -8.869679, "August": -8.869679, "Automatic": -8.869679, "Award": -8.869679, "B": -7.771067, "BSD": -6.471784, "BSD.": -7.771067, "BUSINESS": -8.869679, "BY": -8.869679, "Babaoglu": -8.869679, "Backslash": -8.176532, "Backspace": -8.869679, "Backus": -8.869679, "Basically": -8.869679, "Be": -8.869679, "Berkeley": -6.672455, "Both": -7.483385, "Brownbridge": -8.869679, "C": -8.176532, "CApture": -8.869679, "CB": -8.869679, "CI": -8.869679, "CLoak": -8.869679, "COMPATIBILITY": -8.869679, "CONSEQUENTIAL": -8.869679, "CONTRIBUTORS": -8.869679, "CR": -8.869679, "CREATE": -8.869679, "California": -6.672455, "California.": -8.869679, "Carnegie": -8.869679, "Carriage": -8.869679, "Check": -8.869679, "Cole": -8.869679, "Command": -8.176532, "Commands": -8.869679, "Compatibility": -8.869679, "Compatible": -8.869679, "Computation": -8.869679, "Computer": -7.260241, "Conference": -8.869679, "Connection": -8.869679, "Consumes": -8.869679, "Copyright": -8.869679, "Corp.": -8.869679, "Criteria": -8.869679, "D": -8.176532, "DAMAGE.": -8.869679, "DATA": -8.869679, "DAmages": -8.869679, "DEC": -7.260241, "DESCRIPTION": -8.176532, "DESTRUCT": -8.869679, "DIRECT": -8.869679, "DISCLAIMER": -8.869679, "DOck": -8.869679, "Declare": -8.869679, "Department": -8.869679, "Design": -8.869679, "Differences": -8.869679, "Digital": -7.771067, "Division": -8.176532, "Dorab": -8.176532, "DragonFly": -8.869679, "EE": -8.869679, "EXAMPLES": -8.869679, "EXEMPLARY": -8.869679, "Each": -6.790238, "Edition": -8.869679, "Eighth": -8.869679, "Electrical": -8.869679, "End": -7.771067, "Engineering": -8.869679, "Enterprise": -8.869679, "Equipment": -8.176532, "European": -8.869679, "Exp": -8.869679, "FITNESS": -8.869679, "FOO": -8.869679, "FOR": -8.176532, "FREAD": -8.869679, "FSS": -8.176532, "FSS.": -8.869679, "FWRITE": -8.869679, "File": -7.260241, "Filesystem": -8.176532, "Filesystems": -8.869679, "Foderaro": -8.869679, "Foo": -8.176532, "For": -6.471784, "Form": -8.869679, "Functional": -8.869679, "Functions": -8.869679, "GFS": -7.077920, "Generic": -8.869679, "Given": -8.869679, "Group": -8.869679, "HELP": -8.869679, "HP": -8.869679, "HTML": -7.483385, "HY": -7.771067, "However": -7.771067, "I": -8.176532, "I/O": -8.176532, "ID": -7.771067, "IMPLIED": -8.869679, "IN": -8.869679, "INCIDENTAL": -8.869679, "INCLUDING": -8.869679, "INDIRECT": -8.869679, "INTERRUPTION": -8.869679, "IO": -8.869679, "IO_APPEND": -8.869679, "IO_SYNC": -8.869679, "IO_UNIT": -8.869679, "IS": -8.176532, "If": -6.923769, "Implicit": -8.869679, "Impulse": -8.869679, "In": -6.790238, "Inc.": -8.869679, "Inodes": -8.869679, "Instead": -8.869679, "Intent": -8.869679, "Interface": -8.869679, "Interpreter": -8.869679, "It": -7.483385, "Its": -8.869679, "J.": -8.176532, "John": -8.176532, "Joy": -8.869679, "June": -8.869679, "K.": -8.869679, "Karels": -8.869679, "Kirk": -8.869679, "Klingon": -8.176532, "Klingons": -8.869679, "L.R.": -8.869679, "LIABILITY": -8.869679, "LISP": -8.869679, "LOSS": -8.869679, "LRU": -8.869679, "L_INCR": -8.869679, "L_SET": -8.869679, "L_XTND.": -8.869679, "Language": -8.176532, "Lecture": -8.869679, "Leffler": -8.869679, "Lemberg": -8.869679, "Liberated": -8.869679, "License": -8.869679, "Long": -8.869679, "Los": -8.176532, "Lrscan": -8.869679, "M.S": -8.869679, "ME": -8.869679, "MERCHANTABILITY": -8.869679, "Machine": -8.869679, "Manual": -7.483385, "Marshall": -8.869679, "McCarthy": -8.869679, "McKusick": -8.176532, "Mckusick": -8.869679, "Mellon": -8.869679, "Michael": -8.869679, "Microsystems": -8.176532, "Mnemonic": -8.869679, "Modified": -8.869679, "Most": -8.869679, "Move": -8.869679, "Multiple": -8.869679, "NAME": -8.869679, "NEGLIGENCE": -8.869679, "NFS": -7.771067, "NIX": -7.771067, "NOTES": -8.869679, "NS": -7.483385, "Name": -8.869679, "Neither": -8.869679, "Network": -8.869679, "Neumann": -8.869679, "Newcastle": -8.869679, "Newline": -8.869679, "No": -8.869679, "November": -8.869679, "Numerous": -8.869679, "O.": -8.869679, "OF": -7.771067, "OP": -8.869679, "OR": -7.077920, "OTHERWISE": -8.869679, "O_APPEND": -8.869679, "O_CREAT": -8.869679, "O_EXCL.": -8.869679, "O_TRUNC": -8.869679, "One": -8.176532, "Organization": -8.869679, "Other": -8.176532, "PAGE": -8.869679, "PARAMETERS": -8.869679, "PARTICULAR": -8.869679, "PROFITS": -8.869679, "PROVIDED": -8.869679, "PURPOSE": -8.869679, "Part": -8.869679, "Patel": -8.176532, "Per": -8.869679, "Perhaps": -8.869679, "Phasers": -8.176532, "Programmer": -8.869679, "Programming": -8.176532, "Programs": -8.869679, "Properties": -8.869679, "Proposal": -8.869679, "R": -8.869679, "RAM": -8.869679, "RANZ": -8.869679, "RB": -8.869679, "REFERENCE": -8.869679, "REGENTS": -8.869679, "RFS": -8.176532, "RI": -8.869679, "Range": -8.176532, "Ratan": -8.869679, "Redistribution": -8.869679, "Report": -8.869679, "Research": -8.869679, "Rest": -8.869679, "Ritchie": -8.869679, "Rodriguez": -8.869679, "S.R.": -8.869679, "SCORING": -8.869679, "SEE": -8.869679, "SERVICES": -8.869679, "SHELL": -8.869679, "SHields": -8.869679, "SINS": -7.771067, "SOFTWARE": -8.869679, "SPECIAL": -8.869679, "SQL": -8.176532, "STatus": -8.869679, "SUCH": -8.869679, "SYNOPSIS": -8.869679, "Sandberg": -8.869679, "Satyanarayanan": -8.176532, "Scan": -8.176532, "Science": -7.771067, "Separate": -8.869679, "September": -8.869679, "Several": -7.483385, "Short": -8.869679, "Shortest": -8.869679, "Srscan": -8.869679, "Statements": -8.869679, "Status": -8.869679, "Style": -8.176532, "Substitutions": -8.176532, "Such": -8.869679, "Sun": -5.925240, "Support": -8.869679, "Switch": -8.176532, "Symbolic": -8.869679, "System": -6.923769, "Systems": -8.869679, "T": -6.790238, "T.": -8.869679, "TERMINATE": -8.869679, "THE": -8.869679, "THIS": -8.869679, "TORT": -8.869679, "TTY": -8.869679, "Tab": -8.869679, "Tcl": -8.176532, "Temporarily": -8.869679, "The": -4.710796, "There": -8.176532, "These": -7.483385, "Thesis": -8.869679, "This": -6.161629, "Thus": -8.869679, "Torpedo": -8.869679, "Toward": -8.869679, "Turing": -8.869679, "U": -6.384773, "UE": -8.869679, "UIO_USERISPACE": -8.869679, "ULTRIX": -7.077920, "URL": -7.483385, "URL.": -8.869679, "USE": -8.869679, "UX": -7.771067, "Undock": -8.869679, "Unicode": -6.161629, "University": -6.923769, "Up/Down": -8.176532, "Use": -8.869679, "User": -8.869679, "Users": -8.869679, "Uses": -8.869679, "V": -8.176532, "VBLK": -8.869679, "VCHR": -8.869679, "VDIR": -8.869679, "VEXLOCK": -8.869679, "VFS": -6.672455, "VFS_EXPORTED": -8.869679, "VFS_MLOCK": -8.869679, "VFS_MWAIT": -8.869679, "VFS_NOSUID": -8.869679, "VIEW": -8.869679, "VLNK": -8.869679, "VLWAIT": -8.869679, "VNON": -8.869679, "VREG": -8.869679, "VROOT": -8.869679, "VSHLOCK": -8.869679, "VSOCK": -8.869679, "VTEXT": -8.869679, "Vertical": -8.869679, "Virtual": -8.869679, "Visual": -8.869679, "W.N.": -8.869679, "WARRANTIES": -8.869679, "WARRANTIES.": -8.869679, "WAY": -8.869679, "Warp": -8.869679, "Weinberger": -8.869679, "Werner": -8.869679, "When": -8.176532, "XXX": -8.176532, "Yes": -7.771067, "Yes/No": -8.176532, "You": -7.483385, "[": -6.097091, "\\": -2.798942, "]": -6.097091, "^": -8.176532, "`": -5.925240, "a": -4.116089, "abandon": -8.869679, "able": -8.869679, "about": -8.176532, "above": -8.176532, "above.": -8.176532, "access": -8.176532, "accommodate": -8.869679, "accommodated.": -8.869679, "accommodates": -8.869679, "according": -8.869679, "accounting": -8.869679, "across": -8.869679, "active": -8.869679, "actual": -7.483385, "actually": -8.869679, "addition": -8.869679, "additional": -8.176532, "address": -7.483385, "address.": -8.869679, "addresses": -8.869679, "adopts": -8.869679, "advance": -8.869679, "advanced": -8.869679, "advantages": -8.869679, "affect": -8.869679, "after": -7.483385, "against": -8.869679, "alert": -8.869679, "algorithm": -8.869679, "aligned": -8.869679, "all": -6.790238, "allocate": -8.869679, "allocates": -8.869679, "allocation": -8.176532, "allow": -8.176532, "allowing": -8.869679, "allows": -7.260241, "along": -8.176532, "already": -8.869679, "also": -6.790238, "always": -8.176532, "among": -7.771067, "amount": -8.869679, "amt": -8.869679, "an": -6.567094, "analogous": -8.869679, "and": -4.438863, "and/or": -8.176532, "angle/No": -8.869679, "another": -8.176532, "another.": -8.869679, "any": -7.483385, "appears": -8.176532, "arbitrary": -8.869679, "architecture": -8.869679, "are": -5.180800, "areas": -8.176532, "argument": -7.260241, "arm": -8.869679, "around": -8.176532, "arranged": -8.869679, "array": -8.869679, "array.": -8.869679, "as": -5.573843, "assigned": -8.869679, "associated": -8.869679, "at": -6.230622, "attempt": -8.176532, "attempting": -8.869679, "attempts": -7.771067, "attributes": -8.869679, "automatically": -8.869679, "avoid": -7.483385, "avoided": -8.869679, "avoiding": -8.869679, "back": -8.176532, "backslash": -7.077920, "bar": -7.483385, "based": -8.869679, "basic": -8.869679, "baz": -8.869679, "baz.": -8.869679, "be": -4.621184, "becomes": -8.869679, "been": -6.471784, "before": -6.923769, "beginning": -8.869679, "behave": -8.869679, "bell": -8.869679, "below": -7.483385, "best": -7.771067, "beta": -8.869679, "better": -8.869679, "between": -7.077920, "binary": -8.176532, "bit": -7.483385, "bits": -7.483385, "block": -6.672455, "blocks": -6.923769, "blocks.": -7.771067, "bonus": -8.869679, "boundaries": -8.869679, "br": -8.176532, "braces": -7.771067, "brackets": -8.869679, "broken": -8.869679, "buffer": -5.925240, "buffer.": -8.176532, "buffers": -7.771067, "but": -7.077920, "by": -5.206118, "bypasses": -8.869679, "c": -7.771067, "cache": -5.435692, "cache.": -7.771067, "cached": -8.869679, "caching": -8.176532, "caddr_t": -7.077920, "call": -6.471784, "call.": -8.869679, "called": -8.869679, "caller": -8.869679, "callers": -8.869679, "calling": -7.483385, "calls": -6.672455, "cannot": -8.869679, "carefully": -8.869679, "case": -8.869679, "cases": -8.869679, "casualty": -8.869679, "centered": -8.869679, "central": -8.869679, "change": -8.176532, "changed": -8.869679, "changes": -7.260241, "char": -8.869679, "character": -5.873947, "character.": -8.869679, "characteristics": -8.869679, "characterized": -8.869679, "characters": -8.176532, "check": -8.869679, "checked": -8.869679, "checking": -8.869679, "chop": -8.176532, "chosen": -8.869679, "circumstances": -8.869679, "clean": -8.176532, "client": -8.176532, "cloaking": -8.869679, "close": -8.869679, "closely": -8.869679, "code": -8.176532, "collected": -8.869679, "com": -8.869679, "command": -7.077920, "command.": -8.176532, "comment": -8.176532, "comments": -8.869679, "commodore": -8.869679, "common": -8.869679, "communicate": -8.869679, "compares": -8.869679, "comparison": -8.176532, "compatibility": -7.771067, "complete": -7.771067, "completely": -8.176532, "completeness": -8.869679, "completion": -8.176532, "completion.": -8.869679, "complicated.": -8.869679, "complications.": -8.869679, "component": -7.077920, "components": -8.869679, "computer": -7.077920, "conditions": -7.771067, "conference": -8.869679, "conflict": -8.869679, "considerably": -8.176532, "considered": -7.483385, "consistency": -7.771067, "consistency.": -8.869679, "consistent": -8.176532, "containing": -8.869679, "contains": -7.771067, "contents": -8.869679, "context": -8.176532, "contrast": -8.869679, "contributors": -8.869679, "conveniently": -8.869679, "convention": -8.176532, "conventions": -8.869679, "copied": -7.771067, "copies": -8.869679, "copy": -7.771067, "copying": -7.483385, "copying.": -8.176532, "core": -8.869679, "corollary": -8.869679, "corrected": -8.176532, "costly.": -8.869679, "could": -8.869679, "count": -8.176532, "course": -7.077920, "create": -8.176532, "created": -8.176532, "creates": -8.869679, "creating": -8.869679, "creation": -6.384773, "cred": -8.869679, "credentials": -8.176532, "current": -6.567094, "currently": -8.869679, "cylinder": -8.869679, "damaged": -8.869679, "data": -5.979308, "data.": -8.176532, "date": -8.869679, "dd": -8.176532, "declared": -8.869679, "defined": -7.771067, "degrees": -8.869679, "delete": -8.869679, "deletion": -7.483385, "deletion.": -8.176532, "demand": -8.176532, "dependent": -7.483385, "derives": -8.176532, "describe": -8.176532, "described": -7.077920, "describes": -8.869679, "describing": -8.869679, "description": -8.869679, "design": -6.923769, "designs.": -7.771067, "desirable": -8.176532, "destination": -8.869679, "destroy": -7.771067, "detail.": -8.869679, "details": -8.176532, "determine": -8.869679, "determining": -8.869679, "developed.": -8.869679, "device": -6.471784, "device.": -8.176532, "devised": -8.176532, "devising": -8.869679, "dg": -8.176532, "di": -8.176532, "difference": -8.869679, "differences": -7.771067, "different": -6.304730, "difficult": -8.869679, "digit.": -8.869679, "digits": -7.077920, "dillon": -8.869679, "directly": -7.771067, "directories": -8.869679, "directory": -6.567094, "directory.": -8.176532, "diroffcache": -8.869679, "disadvantages": -8.869679, "disclaimer": -8.869679, "disclaimer.": -8.869679, "disk": -7.483385, "disk.": -8.869679, "distance": -7.771067, "distorts": -8.869679, "distressed": -8.869679, "distribute": -8.869679, "disturbed.": -8.869679, "div": -7.483385, "diversion": -8.176532, "diversity": -8.869679, "divide": -8.869679, "division": -8.869679, "do": -6.230622, "does": -7.771067, "dollar": -8.869679, "done": -7.483385, "done.": -8.869679, "double": -8.869679, "doublequotes": -8.869679, "dramatically": -8.869679, "driven": -8.869679, "driver": -8.869679, "drivers": -7.771067, "drivers.": -8.869679, "dropped": -8.869679, "ds": -8.176532, "duplication": -8.869679, "during": -7.483385, "dynamically": -8.869679, "e": -6.097091, "each": -6.567094, "easily": -8.869679, "effects": -8.869679, "efficiency": -7.771067, "effort": -8.869679, "eight": -7.483385, "either": -7.771067, "el": -7.771067, "email": -8.869679, "emit": -8.176532, "emphasized": -8.869679, "en": -8.869679, "enU": -7.260241, "enclosed": -8.869679, "end": -8.869679, "energy": -6.923769, "engines": -7.771067, "enhanced": -8.869679, "entire": -8.176532, "entirely": -8.869679, "entries": -8.869679, "entry": -6.567094, "enum": -7.771067, "equivalent": -8.869679, "error": -8.869679, "escapes": -8.869679, "esthetics.": -8.869679, "ev": -8.176532, "evaluate": -8.869679, "evaluated": -8.869679, "even": -7.483385, "exactly": -8.869679, "examined": -8.176532, "example": -7.483385, "example.": -8.869679, "except": -7.260241, "exceptional": -8.869679, "exec": -8.869679, "exist": -8.869679, "existence": -8.869679, "existing": -7.771067, "exists": -8.869679, "expansion": -8.869679, "expected": -8.869679, "expecting": -8.869679, "expense": -8.176532, "expensive": -8.869679, "expert": -8.869679, "explicitly": -8.869679, "expressions": -8.869679, "extended": -8.869679, "extension": -8.869679, "extent": -8.869679, "external": -8.869679, "fB": -5.734185, "fBU": -8.869679, "fBa": -8.869679, "fBb": -8.869679, "fBf": -8.869679, "fBn": -8.869679, "fBr": -8.869679, "fBt": -8.869679, "fBu": -8.869679, "fBv": -8.869679, "fBx": -8.869679, "fI": -7.771067, "fICACM": -8.176532, "fILookuppn": -8.869679, "fINamei": -8.869679, "fIUsenix": -8.869679, "fIbackslash": -8.869679, "fIbmap": -8.176532, "fIbuf": -8.869679, "fIhh": -8.176532, "fIhhhh": -8.176532, "fIhhhhhhhh": -8.176532, "fIiget": -7.483385, "fIioctl": -8.176532, "fIiput": -8.869679, "fIlookup": -8.176532, "fIlookupname": -8.869679, "fIlookuppn": -8.869679, "fInamei": -6.161629, "fInameidata": -7.260241, "fIoff_t": -8.176532, "fIooo": -8.176532, "fIstrategy": -8.869679, "fIucred": -8.869679, "fIuio": -7.483385, "fIunsigned": -8.869679, "fIuser": -8.869679, "fIvattr": -8.869679, "fIvn_lookup": -8.869679, "fIvnode": -8.176532, "fIwhiteSpace": -8.869679, "fIy": -8.869679, "fP": -4.664987, "fP.": -6.790238, "fR": -5.873947, "fR.": -8.869679, "facilities": -7.771067, "facility": -8.869679, "fail": -8.869679, "fails": -8.869679, "fair": -8.869679, "fam": -8.869679, "familiar": -8.869679, "far": -8.869679, "faster": -8.869679, "faults.": -8.869679, "features": -8.176532, "feed": -8.869679, "few": -7.771067, "fewer": -8.869679, "fflags": -8.869679, "fhp": -8.869679, "fi": -8.869679, "fields": -8.176532, "file": -5.691626, "file.": -8.176532, "files": -7.077920, "filesystem": -4.621184, "filesystem.": -6.923769, "filesystems": -5.925240, "filesystems.": -8.869679, "fill": -8.176532, "final": -6.790238, "find": -7.771067, "first": -7.771067, "flags": -8.176532, "flushed": -8.869679, "flushing": -8.869679, "follow": -8.869679, "following": -6.923769, "foo": -8.176532, "for": -4.726545, "forbids": -8.869679, "forces": -8.176532, "form": -7.771067, "format": -8.869679, "forms": -8.869679, "found": -8.869679, "four": -8.869679, "framework": -8.869679, "framework.": -8.176532, "free": -8.176532, "freely": -8.869679, "frees": -8.869679, "frequently": -8.869679, "from": -5.611583, "fsinterface.ms": -8.869679, "ft": -8.869679, "ftr": -7.771067, "function": -7.771067, "function.": -8.869679, "further": -8.869679, "future.": -8.869679, "galaxy": -8.869679, "game": -8.869679, "game.": -8.176532, "general": -8.176532, "generality": -8.869679, "generalization": -7.771067, "generalized": -8.869679, "generally": -8.869679, "generic": -7.077920, "get": -7.771067, "getting": -8.869679, "give": -7.483385, "given": -7.771067, "global": -8.869679, "goal": -8.176532, "goals": -7.260241, "goals.": -8.869679, "good": -8.869679, "groff": -8.869679, "grohtml.": -8.869679, "group": -7.483385, "groups": -7.483385, "groups.": -8.869679, "guarantee": -8.869679, "handle": -8.176532, "handle.": -8.869679, "handled": -8.869679, "handling": -8.176532, "hard": -8.176532, "has": -6.161629, "hash": -8.176532, "have": -6.471784, "header": -8.869679, "held": -8.176532, "help": -8.176532, "here.": -8.869679, "hexadecimal": -7.077920, "highly": -8.869679, "hold": -8.176532, "holding": -8.869679, "holds": -8.869679, "however": -8.869679, "href": -8.176532, "html": -8.869679, "hy": -7.771067, "i": -7.771067, "i.e.": -7.771067, "identification": -8.869679, "identified": -8.869679, "ie": -7.771067, "if": -6.567094, "ignored.": -8.869679, "image": -8.869679, "implementation": -7.771067, "implementations": -7.483385, "implementations.": -8.176532, "implemented": -7.483385, "implementing": -8.869679, "implementors": -8.869679, "implicit": -8.869679, "importance": -8.869679, "important": -8.176532, "impossible": -8.869679, "improvements": -7.771067, "impulse": -8.869679, "in": -4.403771, "include": -7.483385, "included": -8.176532, "includes": -8.176532, "including": -8.869679, "incompatible": -8.869679, "incorporated.": -8.869679, "incr": -8.176532, "increments": -8.869679, "incur.": -8.869679, "independent": -7.483385, "index": -7.771067, "indirect": -8.176532, "indirecting": -8.869679, "individual": -7.483385, "inefficient": -8.869679, "information": -7.260241, "inhabited": -8.176532, "inode": -6.097091, "inode.": -8.176532, "inodes": -8.176532, "inserted": -7.771067, "inserted.": -8.176532, "installs": -8.869679, "instead": -8.869679, "int": -5.537475, "integrating": -8.869679, "interaction": -8.869679, "interactions": -8.869679, "interface": -5.502384, "interface.": -7.077920, "interfaces": -6.567094, "interfaces.": -8.869679, "internal": -7.260241, "internally": -8.176532, "internally.": -8.869679, "interpolating": -8.869679, "interpreter": -8.176532, "interrupted": -8.869679, "into": -6.161629, "introduced": -7.771067, "inumber": -8.869679, "involved": -8.869679, "ioflag": -8.869679, "is": -4.512971, "isolate": -8.869679, "issues": -7.771067, "it": -5.650804, "it.": -8.176532, "iteration": -8.869679, "iterative": -8.869679, "its": -7.077920, "itself.": -8.176532, "jump": -8.869679, "just": -8.176532, "kept": -8.869679, "kernel": -7.771067, "kernel.": -8.869679, "kill": -8.176532, "killed": -8.176532, "known": -8.176532, "large": -8.869679, "larger": -8.869679, "last": -7.771067, "later": -8.176532, "layer": -7.483385, "layer.": -7.771067, "layering.": -8.869679, "layers": -8.176532, "leading": -8.869679, "least": -8.176532, "left": -8.176532, "length": -8.869679, "less": -8.869679, "lesser": -8.869679, "letter": -8.869679, "level": -7.771067, "library": -8.869679, "license.terms": -8.869679, "like": -7.483385, "limitations": -8.869679, "linear": -8.869679, "link.": -8.869679, "links": -8.869679, "list": -7.771067, "listed": -8.869679, "lists": -8.869679, "little": -8.869679, "loading": -8.869679, "local": -6.672455, "locate": -8.869679, "located": -8.176532, "locates": -8.869679, "location": -8.869679, "location.": -8.869679, "lock": -8.869679, "locking": -7.483385, "log": -8.869679, "logical": -8.176532, "long": -7.771067, "looked": -8.869679, "lookup": -6.230622, "lookup.": -8.869679, "lookups": -8.869679, "lose": -8.869679, "low": -8.869679, "lower": -8.869679, "lqA": -8.869679, "lqCan": -8.869679, "lqFunctional": -8.869679, "lqRecursive": -8.869679, "lqThe": -8.869679, "lqUNIX": -8.869679, "m": -7.771067, "mE": -8.869679, "mF": -8.869679, "mH": -7.260241, "mTu": -8.869679, "macro": -8.869679, "macros": -8.176532, "made": -7.771067, "made.": -8.869679, "mailto": -8.869679, "maintained": -8.176532, "maintained.": -8.869679, "maintains": -8.869679, "major": -7.771067, "make": -7.771067, "makes": -8.176532, "making": -8.869679, "man": -8.176532, "management": -8.869679, "manner": -8.869679, "many": -8.176532, "mapped": -8.869679, "mapping": -8.869679, "maximum": -8.176532, "may": -5.435692, "means": -8.869679, "meantime": -8.869679, "mechanism": -8.869679, "mechanisms": -8.869679, "medium": -8.869679, "memory": -6.790238, "merged": -8.869679, "met": -8.869679, "methods": -8.869679, "might": -7.771067, "minor": -8.869679, "mo": -8.869679, "mode": -8.869679, "modification": -8.176532, "modification.": -8.869679, "modifications": -8.869679, "modified": -7.077920, "modified.": -8.869679, "modify": -8.176532, "modularity": -8.176532, "modularity.": -8.869679, "module": -8.869679, "modules": -8.176532, "more": -7.077920, "most": -7.077920, "mount": -8.176532, "mounting": -8.176532, "mov": -8.869679, "move": -8.869679, "moved": -8.869679, "much": -8.869679, "multi": -8.869679, "multiple": -7.771067, "must": -6.790238, "n": -6.230622, "name": -5.778637, "name.": -8.869679, "named": -8.176532, "nameidata": -8.869679, "names": -7.771067, "nc_id": -8.869679, "ndp": -8.869679, "needed.": -8.869679, "nested": -8.176532, "network": -7.077920, "never": -8.869679, "new": -6.790238, "newline": -7.260241, "newline.": -8.869679, "next": -8.176532, "next.": -8.869679, "nh": -8.176532, "ni_dirp": -8.869679, "ni_loopcnt": -8.869679, "ni_more": -8.869679, "ni_nameiop": -8.869679, "ni_pathlen": -8.869679, "ni_pnbuf": -8.869679, "ni_seg": -8.869679, "no": -6.923769, "node.": -8.869679, "nor": -8.869679, "normal": -8.176532, "normally": -8.869679, "not": -6.384773, "notably": -8.869679, "note": -8.869679, "notice": -8.176532, "novice": -8.869679, "now": -8.869679, "nroff": -8.869679, "number": -6.790238, "number.": -8.869679, "numbers": -8.176532, "numerous": -8.869679, "object": -7.771067, "objects": -8.176532, "objects.": -8.176532, "observation": -8.869679, "obtain": -8.176532, "obtained": -8.869679, "obtaining": -8.869679, "obvious": -8.869679, "occur": -8.869679, "occurs": -7.483385, "occurs.": -8.869679, "octal": -8.869679, "of": -3.906835, "off": -7.771067, "offp": -8.869679, "offset": -7.483385, "old": -8.869679, "on": -6.384773, "on.": -8.869679, "once": -8.176532, "one": -6.471784, "only": -7.260241, "open": -8.869679, "operating": -7.771067, "operation": -6.567094, "operation.": -8.176532, "operations": -6.384773, "operations.": -8.869679, "optimization": -8.869679, "optimizations.": -8.869679, "option.": -8.869679, "optional": -8.869679, "or": -5.343319, "ordinary": -8.869679, "organization.": -8.869679, "oriented": -8.869679, "original": -8.869679, "originally": -8.176532, "other": -6.567094, "others.": -8.869679, "otherwise": -7.483385, "out": -8.869679, "outside": -8.869679, "over": -7.771067, "overflow": -8.869679, "overflows": -8.176532, "overhead.": -8.869679, "own": -8.869679, "ownership": -8.176532, "p": -7.260241, "package": -8.869679, "page": -7.771067, "pages": -8.176532, "pages.": -8.869679, "paper": -8.869679, "parameters": -7.483385, "parsed.": -8.869679, "parser": -8.176532, "part": -7.771067, "particular": -8.176532, "parts": -7.483385, "pass": -7.483385, "passed": -8.176532, "pathname": -6.672455, "pattern": -8.869679, "patterns": -8.869679, "per": -6.923769, "performance": -7.483385, "performance.": -7.771067, "performed": -6.923769, "performing": -7.483385, "performs": -8.176532, "permeates": -8.869679, "permission.": -8.869679, "permissions": -8.176532, "phasers": -8.176532, "philosophical": -8.869679, "philosophies": -8.869679, "physical": -7.260241, "place": -8.176532, "places": -8.869679, "play": -8.869679, "pointer": -6.672455, "points": -6.790238, "points.": -8.869679, "pool": -8.869679, "portability": -8.869679, "portable": -8.176532, "possible": -7.771067, "possibly": -8.869679, "pre": -8.869679, "preference.": -8.869679, "present": -8.176532, "presentation": -8.176532, "presented": -7.771067, "preserve": -8.869679, "previous": -8.869679, "previously": -8.869679, "primary": -8.869679, "primitive": -8.869679, "primitives": -8.176532, "prior": -8.869679, "private": -8.176532, "probably": -8.869679, "problem": -7.771067, "problem.": -8.869679, "problems": -7.260241, "problems.": -8.869679, "procedures": -8.869679, "process": -6.471784, "process.": -8.869679, "processed": -8.176532, "processes": -8.176532, "processing.": -8.869679, "programs.": -8.869679, "prologue": -8.869679, "prominent": -8.869679, "promoted": -8.869679, "promotion": -8.869679, "properties": -8.176532, "proposal": -8.176532, "proposed": -8.869679, "provide": -8.176532, "provided": -7.771067, "provides": -7.483385, "public": -8.869679, "published": -8.869679, "purged": -8.869679, "quite": -8.869679, "quotes": -8.869679, "quotes.": -8.869679, "quux.": -8.869679, "ra": -7.771067, "radio": -8.176532, "range": -6.790238, "rate": -8.869679, "rather": -6.790238, "raw": -7.771067, "reached": -8.869679, "reached.": -8.176532, "read": -6.672455, "read.": -8.869679, "reading": -8.869679, "reads": -8.869679, "reasons": -8.869679, "received": -8.869679, "recent": -8.869679, "recompilation": -8.869679, "recursive": -8.176532, "redesigned": -8.869679, "redundant": -8.869679, "reentrancy": -8.869679, "reference": -6.471784, "reference.": -8.869679, "references": -8.176532, "reflecting": -8.869679, "registered": -8.869679, "related": -7.771067, "released": -8.869679, "remain": -8.869679, "remains": -8.869679, "remote": -6.790238, "repeat": -8.869679, "replaced": -7.771067, "replaces": -7.771067, "representation": -8.869679, "request": -7.483385, "requested.": -8.869679, "requests": -8.869679, "require": -8.176532, "requires": -8.869679, "research": -8.176532, "reserved": -8.176532, "reserved.": -8.176532, "resolved": -8.869679, "responsible": -8.869679, "rest": -8.176532, "restart": -8.176532, "restriction": -8.869679, "result": -7.771067, "resulting": -8.869679, "retain": -7.483385, "retrieved": -8.869679, "return": -7.483385, "returned": -8.176532, "returns": -7.771067, "reusable": -8.869679, "right": -8.869679, "rights": -8.176532, "robustness": -8.869679, "room": -8.869679, "root": -8.869679, "routine": -7.260241, "routine.": -8.869679, "routines": -7.260241, "routines.": -8.869679, "rq": -7.077920, "rule": -8.869679, "s": -5.778637, "same": -7.077920, "satisfy": -8.869679, "scan": -8.869679, "scan.": -8.869679, "scans": -8.869679, "scheme": -7.771067, "scheme.": -8.869679, "scoring": -8.869679, "script.": -8.869679, "searched.": -8.869679, "searching": -8.869679, "sections": -8.869679, "see": -8.869679, "seems": -8.869679, "seen": -8.176532, "select": -8.869679, "semantic": -8.869679, "semaphores": -8.869679, "sensors": -8.176532, "separate": -7.260241, "separated": -8.869679, "separating": -8.869679, "separation": -8.869679, "separator": -8.869679, "sequence": -8.176532, "sequence.": -8.869679, "sequences": -8.869679, "sequential": -8.869679, "server": -8.869679, "serves": -8.869679, "set": -6.923769, "setting": -8.869679, "several": -7.260241, "severely": -8.869679, "share": -8.869679, "shell": -7.771067, "shell.": -8.869679, "shields": -8.869679, "short": -7.483385, "should": -7.260241, "shuttlecraft": -8.869679, "side": -8.869679, "significance": -8.869679, "signs": -8.869679, "similar": -7.483385, "simply": -8.869679, "single": -6.471784, "sixteen": -8.869679, "size": -8.869679, "sleep/wakeup": -8.869679, "slightly": -8.869679, "so": -7.260241, "soft": -8.176532, "software": -8.869679, "some": -8.176532, "somewhat": -7.771067, "source": -8.176532, "space": -7.483385, "space.": -8.176532, "spaces": -8.869679, "special": -8.869679, "specially": -8.869679, "specific": -6.790238, "specifications.": -8.869679, "specified": -8.869679, "spread": -8.869679, "src/games/trek/DOC/trekmanual.nr": -8.869679, "standard": -7.771067, "star": -8.869679, "starbase": -8.176532, "stardate": -8.869679, "stars.": -8.869679, "starsystem": -8.176532, "start": -8.869679, "starting": -8.869679, "startup": -8.869679, "stateless": -8.869679, "statelessness": -8.869679, "status": -8.176532, "stop": -8.176532, "stored": -7.771067, "strangely": -8.869679, "strip": -8.176532, "struct": -5.979308, "structure": -6.304730, "structure.": -6.923769, "structures": -8.176532, "study": -8.869679, "style": -7.771067, "stylized": -7.771067, "subroutine": -8.176532, "subsequent": -8.176532, "subspace": -8.176532, "substitution": -7.077920, "substitutions": -7.771067, "subsystem": -8.869679, "successful": -8.869679, "such": -6.790238, "suffers": -8.176532, "sufficiently": -8.869679, "suitably": -8.869679, "summarized": -8.869679, "superblocks": -8.869679, "support": -7.483385, "supported": -8.869679, "swap": -8.869679, "symbolic": -8.176532, "synchronization": -8.176532, "synchronize": -8.869679, "system": -5.925240, "system.": -7.483385, "systems": -6.790238, "systems.": -7.483385, "t": -8.869679, "tab": -8.869679, "table": -8.176532, "table.": -8.176532, "tabs": -8.869679, "take": -8.869679, "target": -7.483385, "targetted": -8.176532, "tends": -8.869679, "terminator.": -8.869679, "test": -8.869679, "text": -8.176532, "than": -6.567094, "that": -5.206118, "the": -2.967046, "their": -8.869679, "them": -6.790238, "them.": -8.176532, "then": -6.790238, "there": -8.869679, "therefore": -8.869679, "these": -6.161629, "they": -7.771067, "this": -5.979308, "those": -7.483385, "three": -7.077920, "through": -8.176532, "throughout": -8.869679, "thus": -8.176532, "time": -6.567094, "time.": -8.869679, "timestamps": -8.176532, "to": -4.041366, "to/from": -8.869679, "too": -8.869679, "torpedo": -8.869679, "torpedoes": -8.869679, "trademark": -8.176532, "transient": -8.869679, "translate": -8.869679, "translated": -8.869679, "translates": -8.869679, "translation": -6.471784, "translation.": -8.869679, "translations": -8.869679, "transparent": -8.869679, "transport": -8.869679, "transporter": -8.869679, "treated": -7.771067, "triggering": -8.869679, "tubes": -8.869679, "twenty": -8.869679, "two": -6.923769, "type": -6.790238, "typedefs": -8.869679, "types": -7.483385, "types.": -8.176532, "u": -6.471784, "u_short": -7.483385, "ucred": -8.869679, "uio_seg": -8.869679, "uiop": -8.869679, "unacceptable.": -8.869679, "under": -8.869679, "underlying": -8.176532, "understood": -8.176532, "unexpectedly": -8.869679, "uniform": -8.869679, "union.": -8.869679, "unique": -8.869679, "university": -8.869679, "unknown": -8.869679, "unlike": -8.869679, "unmodified": -8.869679, "unmodified.": -8.869679, "up": -7.260241, "update": -8.869679, "upon": -7.483385, "upper": -7.483385, "uppercase": -8.869679, "us.": -8.869679, "use": -5.979308, "used": -5.873947, "user": -7.260241, "uses": -7.483385, "using": -6.923769, "v": -8.869679, "v_count": -8.869679, "v_data": -8.869679, "v_exlockc": -8.869679, "v_flag": -8.869679, "v_shlockc": -8.869679, "v_type": -8.869679, "validating": -8.869679, "value": -6.672455, "vap": -8.869679, "variable": -7.077920, "varieties": -8.869679, "various": -7.771067, "varying": -7.260241, "verbatim.": -8.869679, "version": -8.176532, "versions": -8.176532, "very": -8.176532, "vfs": -8.176532, "vfsops": -8.869679, "views": -8.869679, "violation": -8.869679, "virtual": -6.790238, "vnode": -5.573843, "vnode.": -8.869679, "vnodeops": -7.771067, "vnodes": -7.260241, "von": -8.869679, "vp": -8.869679, "vtype": -8.176532, "w": -6.471784, "warp": -8.176532, "warp_factor": -8.869679, "was": -8.176532, "ways": -8.869679, "ways.": -8.869679, "we": -8.869679, "well": -7.483385, "well.": -8.869679, "were": -7.260241, "when": -6.672455, "whence": -8.869679, "whether": -8.176532, "which": -6.161629, "while": -8.869679, "wide": -8.869679, "widely": -8.869679, "will": -5.691626, "willing": -8.869679, "win": -8.869679, "with": -5.650804, "within": -6.672455, "without": -7.077920, "word": -7.077920, "word.": -8.869679, "words": -7.771067, "work": -8.176532, "works": -8.869679, "worth": -8.869679, "would": -8.869679, "write": -8.869679, "written": -7.260241, "wrong": -8.869679, "x": -7.771067, "y": -8.869679, "yes": -8.869679, "yet": -8.176532, "you": -6.672455, "your": -8.869679, "zero": -8.869679, "{": -6.471784, "}": -6.923769, }, "Ruby": map[string]float64{ "!": -5.390086, "#": -5.594880, "####": -7.992776, "###############################################################################": -7.992776, "#c": -8.685923, "#cgi_server.serve": -8.685923, "#exit": -8.685923, "#remove": -8.685923, "$": -5.913334, "%": -7.076485, "&": -5.977873, "&&": -6.606481, "(": -3.152533, ")": -3.152533, "*added_methods": -8.685923, "*args": -6.383338, "*extensions": -7.299628, "*methods": -8.685923, "+": -5.022361, ",": -2.160893, "-": -4.381858, ".": -8.685923, "..": -8.685923, "./": -8.685923, ".basename": -8.685923, ".deep_merge": -8.685923, ".destroy": -8.685923, ".disable": -8.685923, ".each": -7.992776, ".flatten": -8.685923, ".flatten.uniq": -8.685923, ".freeze": -8.685923, ".gsub": -7.992776, ".include": -7.992776, ".join": -8.685923, ".map": -7.299628, ".pop": -8.685923, ".rb": -8.685923, ".read": -7.587311, ".run": -8.685923, ".should": -7.587311, ".size": -8.685923, ".slice": -8.685923, ".sort": -8.685923, ".sort_by": -8.685923, ".split": -8.685923, ".to_i": -7.992776, ".to_s": -7.587311, ".to_s.split": -8.685923, ".to_sym": -8.685923, ".unshift": -7.992776, "/": -5.913334, "/.*": -8.685923, "//": -8.685923, "//rubygems.org/": -8.685923, "/@name": -8.685923, "/Library/Taps/": -8.685923, "/h": -8.685923, "/not": -8.685923, "/redis": -8.685923, "/usr/bin/env": -6.740013, "0": -8.685923, "404": -8.685923, ":": -2.743123, ";": -4.879260, "<": -6.740013, "<#{@instance.class}>": -8.685923, "<(data)>": -8.685923, "<-EOF>": -8.685923, "<-HTML).gsub(/^>": -8.685923, "</body>": -8.685923, "</div>": -8.685923, "</head>": -8.685923, "</html>": -8.685923, "</pre>": -8.685923, "</style>": -8.685923, "</tt>": -8.685923, "<<": -6.383338, "<body>": -8.685923, "<david.calavera@gmail.com>": -8.685923, "<div>": -8.685923, "<head>": -8.685923, "<html>": -8.685923, "<img>": -8.685923, "<internal:/,>": -8.685923, "<pre>": -8.685923, "<source>": -8.685923, "<style>": -8.685923, "<tt>": -8.685923, "=": -3.005750, ">": -4.060950, "?": -4.368435, "@after_fork": -7.992776, "@before_first_fork": -7.992776, "@before_fork": -7.992776, "@bottle_sha": -8.685923, "@bottle_url": -8.685923, "@buildpath": -7.992776, "@coder": -8.685923, "@courts": -8.685923, "@downloader": -8.685923, "@env": -7.992776, "@handler": -8.685923, "@handler.end_array": -8.685923, "@handler.end_object": -8.685923, "@handler.scalar": -7.992776, "@handler.start_array": -8.685923, "@handler.start_object": -8.685923, "@head": -7.992776, "@instance": -7.992776, "@instance.settings": -8.685923, "@name": -7.587311, "@path": -8.685923, "@queues": -7.992776, "@queues.delete": -8.685923, "@redis": -6.894163, "@spec_to_use": -7.299628, "@spec_to_use.detect_version": -8.685923, "@spec_to_use.specs": -8.685923, "@spec_to_use.url": -8.685923, "@specs": -8.685923, "@stack": -8.685923, "@stack.call": -8.685923, "@standard": -7.992776, "@standard.nil": -8.685923, "@tokenizer": -8.685923, "@tokenizer.next_token": -8.685923, "@unstable": -8.685923, "@uri": -7.076485, "@url": -7.587311, "@url.nil": -8.685923, "@user": -8.685923, "@version": -7.076485, "ARGV": -7.299628, "ARGV.build_head": -8.685923, "ARGV.formulae.include": -8.685923, "ARGV.named.empty": -8.685923, "AUTO_INDENT": -8.685923, "ActiveSupport": -8.685923, "Allows": -8.685923, "Any": -7.992776, "Any.serialize": -7.299628, "Any.unserialize": -7.587311, "Application": -7.992776, "Archive": -7.992776, "ArgumentError": -8.685923, "Array": -7.992776, "Base": -8.685923, "Bundler.require": -8.685923, "CGIServer.new": -8.685923, "CHECKSUM_TYPES": -7.992776, "CHECKSUM_TYPES.detect": -8.685923, "CHECKSUM_TYPES.each": -8.685923, "CHECKSUM_TYPES=": -8.685923, "CLI.new": -8.685923, "Cache": -8.685923, "Cannot": -8.685923, "Cast_mdata_server_t.create_dir_ifneeded": -8.685923, "Cast_mdata_server_t.del_cast_mdata": -8.685923, "Cast_mdata_server_t.get_cast_mdata": -8.685923, "Cast_mdata_server_t.set_cast_mdata_pull": -8.685923, "Cast_mdata_server_t.set_cast_mdata_push": -8.685923, "Class": -8.685923, "Compiler": -8.685923, "Compiler.new": -8.685923, "Control": -8.685923, "CurlDownloadStrategyError": -8.685923, "DCMAKE_BUILD_TYPE": -8.685923, "DCMAKE_FIND_FRAMEWORK": -8.685923, "DCMAKE_INSTALL_PREFIX": -8.685923, "DEFAULTS": -7.992776, "DEFAULTS.deep_merge": -8.685923, "DEPENDENCIES": -8.685923, "DOCTYPE": -8.685923, "DSL": -8.685923, "Delegator": -8.685923, "Delegator.delegate": -8.685923, "Delegator.target.helpers": -8.685923, "Delegator.target.send": -8.685923, "Delegator.target.use": -8.685923, "Digest.const_get": -8.685923, "Dir": -7.587311, "Dir.pwd": -7.587311, "Dir.pwd.split": -7.992776, "Downloading": -8.685923, "ENV": -6.201016, "EOF": -7.992776, "Environment.run": -8.685923, "EventMachine": -8.685923, "Exception": -8.685923, "Expected": -7.992776, "Experimental": -8.685923, "ExtendedCommands": -8.685923, "FALSE": -8.685923, "FCGI.each_request": -8.685923, "FCGI_PURE_RUBY": -8.685923, "FaultException.new": -8.685923, "File.basename": -8.685923, "File.dirname": -6.740013, "File.exist": -7.992776, "File.expand_path": -7.299628, "File.join": -6.606481, "File.write": -8.685923, "FileUtils": -8.685923, "FileUtils.rm": -8.685923, "Foo": -8.685923, "For": -8.685923, "Formula": -7.587311, "Formula.canonical_name": -8.685923, "Formula.expand_deps": -8.685923, "Formula.factory": -7.992776, "Formula.path": -8.685923, "FormulaUnavailableError.new": -8.685923, "GEM": -8.685923, "Got": -7.992776, "Grit": -8.685923, "HOMEBREW_CACHE.mkpath": -8.685923, "HOMEBREW_CACHE_FORMULA": -8.685923, "HOMEBREW_CACHE_FORMULA.mkpath": -8.685923, "HOMEBREW_CELLAR": -7.992776, "HOMEBREW_PREFIX": -8.685923, "HOMEBREW_REPOSITORY": -7.992776, "HOMEBREW_REPOSITORY/": -8.685923, "HTML": -8.685923, "HTTP": -8.685923, "Handler.new": -8.685923, "Hash": -7.587311, "Hash.new": -8.685923, "Helpers": -8.685923, "IRB.conf": -8.685923, "Ilib": -8.685923, "Interrupt": -7.992776, "Invalid": -8.685923, "JSON.parse": -7.992776, "Jekyll": -7.587311, "Jenkins": -8.685923, "LAST": -8.685923, "LOAD_PATH": -8.685923, "Literal": -7.992776, "Literal.new": -7.992776, "LoadError": -7.587311, "MacOS": -7.992776, "MultiJsonCoder.new": -8.685923, "NULL": -8.685923, "NUMBER": -8.685923, "NameError": -7.992776, "Namespace": -8.685923, "Namespace.new": -7.992776, "Neoip": -7.076485, "None": -8.685923, "NotFound": -8.685923, "NotImplementedError": -8.685923, "Object": -8.685923, "Object.const_get": -8.685923, "PATH": -8.685923, "PLATFORMS": -8.685923, "Parser": -7.587311, "Parser.new": -8.685923, "Patches": -8.685923, "Patches.new": -8.685923, "Patching": -8.685923, "Pathname": -7.587311, "Pathname.new": -7.587311, "Pathname.pwd": -8.685923, "Plugin": -8.685923, "Proc.new": -6.288028, "Pry": -8.685923, "Pry.config.color": -8.685923, "Pry.config.commands.alias_command": -8.685923, "Pry.config.commands.command": -8.685923, "Pry.config.commands.import": -8.685923, "Pry.config.history.should_save": -8.685923, "Pry.config.pager": -8.685923, "Pry.config.prompt": -8.685923, "Pry.plugins": -8.685923, "Q": -8.685923, "Queue.new": -8.685923, "RDF": -6.894163, "RJSON": -8.685923, "RUBY_ENGINE": -7.992776, "Racc": -8.685923, "Racc_arg": -8.685923, "Racc_debug_parser": -8.685923, "Racc_token_to_s_table": -8.685923, "Rack": -8.685923, "Rainbows": -8.685923, "Redis": -7.587311, "Redis.connect": -8.685923, "Redis.new": -8.685923, "Redis.respond_to": -8.685923, "Request": -7.992776, "Resque": -7.992776, "Rexpl": -8.685923, "RuntimeError": -8.685923, "SHEBANG#!jruby": -8.685923, "SHEBANG#!macruby": -8.685923, "SHEBANG#!rake": -8.685923, "SHEBANG#!rbx": -8.685923, "SHEBANG#!ruby": -7.992776, "STRING": -8.685923, "SecureRandom.hex": -8.685923, "Set": -8.685923, "Shoes": -8.685923, "Sinatra": -7.992776, "SoftwareSpecification": -7.992776, "SoftwareSpecification.new": -8.685923, "Specification.new": -8.685923, "Specify": -8.685923, "Spira": -6.606481, "Stat": -7.992776, "Stream": -7.587311, "String": -7.992776, "SystemCallError": -8.685923, "TRUE": -8.685923, "The": -7.587311, "Thin": -8.685923, "This": -8.685923, "ThreadError": -8.685923, "To": -7.992776, "Try": -8.685923, "TypeError": -7.992776, "Types": -6.606481, "URI": -7.299628, "URI.const_defined": -8.685923, "URI.escape": -8.685923, "VERSION": -8.685923, "W": -8.685923, "Wno": -8.685923, "Wrapper": -8.685923, "XMLRPC": -7.992776, "XSD.integer": -8.685923, "YAML.load_file": -8.685923, "You": -8.685923, "Z": -8.685923, "Z/": -8.685923, "[": -4.267082, "\\": -5.550429, "]": -4.267082, "^": -7.587311, "_.": -8.685923, "__FILE__": -6.740013, "__sinatra__": -8.685923, "_reduce_": -5.690191, "_reduce_none": -5.852709, "_values": -6.288028, "a": -7.076485, "above": -8.685923, "above.": -8.685923, "absolute_redirects": -8.685923, "acc": -7.992776, "accept": -8.685923, "accept_entry": -8.685923, "add_charset": -8.685923, "add_git_tag": -8.685923, "added_methods": -8.685923, "after": -7.587311, "after_all": -8.685923, "after_fork": -7.992776, "alias": -7.992776, "alias_method": -7.992776, "align": -7.992776, "all": -8.685923, "along": -8.685923, "alpha": -8.685923, "an": -7.992776, "analyze": -8.685923, "ancestor": -7.587311, "ancestor.const_defined": -8.685923, "and": -6.894163, "app": -7.299628, "app_file": -7.299628, "app_icon": -8.685923, "app_id": -7.992776, "app_id.to_s": -8.685923, "app_identifier": -8.685923, "app_review_information": -8.685923, "apply_inflections": -8.685923, "appraise": -7.992776, "apps": -7.992776, "are": -8.685923, "args": -7.992776, "args.length": -8.685923, "arial": -8.685923, "async": -8.685923, "attr": -7.299628, "attr_accessor": -7.992776, "attr_reader": -6.894163, "attr_rw": -7.076485, "attr_writer": -7.299628, "attributes": -7.992776, "attrs": -7.992776, "auto": -8.685923, "automatic_release": -8.685923, "b": -7.587311, "be": -7.299628, "be_a": -7.992776, "been": -7.992776, "before": -7.992776, "before_all": -8.685923, "before_first_fork": -7.992776, "before_fork": -7.992776, "begin": -6.488698, "below": -8.685923, "beta": -7.587311, "bin": -7.299628, "bind": -8.685923, "block": -5.318627, "block_given": -7.587311, "body": -7.587311, "bottle": -8.685923, "bottle_base_url": -8.685923, "bottle_block": -7.587311, "bottle_filename": -8.685923, "bottle_sha": -8.685923, "bottle_sha1": -7.992776, "bottle_url": -7.587311, "bottle_version": -7.587311, "break": -7.587311, "brew": -6.488698, "build_devel": -7.992776, "build_head": -8.685923, "buildpath": -7.587311, "bunzip2": -8.685923, "bzip": -8.685923, "bzip2": -8.685923, "cache_control": -8.685923, "caches": -8.685923, "call": -7.992776, "callback": -7.587311, "callbacks": -8.685923, "called": -8.685923, "camel_cased_word": -7.299628, "camel_cased_word.split": -8.685923, "camel_cased_word.to_s": -8.685923, "camelcase": -8.685923, "camelize": -8.685923, "cannot": -8.685923, "case": -7.076485, "cask": -8.685923, "cast_id": -7.992776, "cast_mdata": -7.992776, "cast_name": -6.606481, "cast_privhash": -7.992776, "cast_privtext": -6.894163, "cat": -8.685923, "cc": -7.587311, "cc.build": -8.685923, "cc.is_a": -8.685923, "cc.name": -8.685923, "cc_failures": -8.685923, "center": -8.685923, "cgi_server": -8.685923, "cgi_server.add_handler": -7.299628, "cgi_server.serve": -8.685923, "cgi_server.set_default_handler": -8.685923, "changelog": -8.685923, "changes": -8.685923, "char": -7.299628, "characters": -8.685923, "charlock_holmes": -7.992776, "checksum": -8.685923, "checksum_type": -7.992776, "child": -8.685923, "class": -6.488698, "class_eval": -8.685923, "class_name": -7.992776, "class_value": -7.587311, "classify": -8.685923, "clean": -8.685923, "clear": -8.685923, "client": -8.685923, "close": -7.992776, "closed": -8.685923, "coder": -7.587311, "coderay": -7.992776, "color": -8.685923, "commit_version_bump": -8.685923, "compressed_filename": -7.992776, "compression": -8.685923, "config": -7.587311, "config.is_a": -8.685923, "config_file": -7.992776, "configuration": -7.587311, "configure": -7.992776, "connect": -8.685923, "const": -7.587311, "const_regexp": -7.587311, "constant": -7.299628, "constant.ancestors.inject": -8.685923, "constant.const_get": -8.685923, "constantize": -8.685923, "content_type": -7.587311, "context": -8.685923, "count": -7.076485, "court": -7.587311, "court_url": -8.685923, "created_at": -8.685923, "curl": -8.685923, "current": -7.992776, "dasherize": -8.685923, "data": -7.076485, "datatype": -8.685923, "db": -7.587311, "declared_trivial": -7.992776, "decode": -7.992776, "deconstantize": -8.685923, "def": -3.890132, "default": -7.992776, "default_encoding": -8.685923, "default_platform": -8.685923, "define": -8.685923, "define_method": -8.685923, "defined": -8.685923, "delegate": -8.685923, "delete": -8.685923, "deliver": -7.587311, "demo_password": -8.685923, "demo_user": -8.685923, "demodulize": -8.685923, "dep": -8.685923, "dep.to_s": -8.685923, "deployment_target": -8.685923, "deps": -8.685923, "dequeue": -8.685923, "desc": -7.076485, "describe": -8.685923, "description": -8.685923, "destination": -8.685923, "dev": -8.685923, "devel": -8.685923, "development": -6.894163, "devices": -8.685923, "did": -8.685923, "directives": -7.992776, "disable": -8.685923, "ditty.": -8.685923, "do": -4.660571, "do_parse": -8.685923, "doc": -8.685923, "doesn": -8.685923, "don": -8.685923, "download": -7.299628, "download_strategy.new": -7.992776, "downloader": -6.740013, "downloader.fetch": -8.685923, "downloader.stage": -8.685923, "dump_errors": -8.685923, "dup": -8.685923, "e": -6.606481, "e.message": -7.992776, "e.name.to_s": -8.685923, "each": -7.587311, "else": -5.641400, "elsif": -6.740013, "email": -7.992776, "empty": -7.992776, "empty_path_info": -8.685923, "enable": -8.685923, "enc": -7.076485, "encoded": -8.685923, "end": -3.226337, "enqueue_to": -8.685923, "ensure_git_status_clean": -8.685923, "entries": -8.685923, "entries.map": -8.685923, "env": -7.587311, "environment": -7.992776, "err": -8.685923, "err.to_s": -8.685923, "errback": -8.685923, "error": -7.076485, "errors": -8.685923, "escape_utils": -7.992776, "etc": -8.685923, "even": -8.685923, "evented": -8.685923, "exception": -8.685923, "exclusive": -8.685923, "executed": -8.685923, "exit": -8.685923, "expand_deps": -8.685923, "extend": -8.685923, "extends": -8.685923, "extensions.map": -8.685923, "external_deps": -8.685923, "external_patches": -8.685923, "f": -6.288028, "f.deps.map": -8.685923, "f_dep": -7.587311, "fail": -8.685923, "failed": -7.992776, "fails_with": -8.685923, "failure": -8.685923, "failure.build": -8.685923, "failure.build.zero": -8.685923, "failure.compiler": -8.685923, "false": -5.251936, "family": -8.685923, "fastlane_version": -8.685923, "fetch": -7.992776, "fetched": -6.740013, "fetched.kind_of": -8.685923, "file": -7.587311, "filename": -7.992776, "first": -8.685923, "first_name": -8.685923, "fn": -7.587311, "fn.incremental_hash": -8.685923, "folder": -8.685923, "font": -7.992776, "for": -7.992776, "force": -7.992776, "format": -8.685923, "formula": -7.992776, "formula_with_that_name.file": -8.685923, "formula_with_that_name.readable": -8.685923, "framework_version": -7.587311, "freeze": -8.685923, "freshness": -8.685923, "from": -8.685923, "from_name": -7.992776, "from_path": -8.685923, "from_url": -8.685923, "front": -8.685923, "ftp": -8.685923, "gem": -7.992776, "generated": -8.685923, "get": -7.992776, "get_version_short_string": -8.685923, "git.modified_files.include": -8.685923, "git_commit_log": -8.685923, "github": -7.299628, "github.pr_body": -8.685923, "github.pr_title": -8.685923, "glob": -7.992776, "grammars": -7.992776, "gunzip": -8.685923, "gzip": -7.992776, "h": -7.587311, "handler": -7.299628, "has": -8.685923, "has_app_changes": -8.685923, "hash": -7.076485, "hash.upcase": -8.685923, "hasher": -7.992776, "have": -8.685923, "head": -7.076485, "head_prefix": -7.992776, "head_prefix.directory": -8.685923, "header": -8.685923, "helpers": -7.587311, "helvetica": -8.685923, "hockey": -7.587311, "homepage": -7.992776, "host": -7.587311, "html": -8.685923, "http": -8.685923, "https": -7.992776, "i": -7.992776, "id": -7.992776, "if": -4.527040, "in": -7.587311, "include": -7.587311, "incomplete": -7.992776, "increment_build_number": -8.685923, "inflections.uncountables.include": -8.685923, "info": -7.992776, "inhibit_all_warnings": -8.685923, "initialize": -7.587311, "inline": -7.587311, "inspect": -8.685923, "install_type": -7.299628, "installed_prefix": -8.685923, "instance": -7.992776, "instance_eval": -7.587311, "instance_variable_defined": -7.992776, "instance_variable_get": -7.992776, "instance_variable_set": -8.685923, "integrity": -8.685923, "internal": -8.685923, "invalid": -8.685923, "ios": -7.587311, "ipa": -7.587311, "is": -7.992776, "it": -6.894163, "item": -7.299628, "javascript": -8.685923, "jruby": -8.685923, "js_file": -8.685923, "json": -7.992776, "json.array": -8.685923, "json.extract": -8.685923, "json.url": -8.685923, "junit.headers": -8.685923, "junit.report": -8.685923, "just": -8.685923, "k": -7.992776, "keep_open": -7.992776, "keg_only": -8.685923, "keg_only_reason": -8.685923, "key": -7.076485, "keys": -7.076485, "keywords": -8.685923, "kind_of": -8.685923, "klass": -7.587311, "klass.new": -7.992776, "klass_name": -7.587311, "know": -8.685923, "lambda": -8.685923, "lane": -6.740013, "languages": -8.685923, "last": -7.587311, "later": -8.685923, "layout": -8.685923, "left": -8.685923, "lib": -8.685923, "lib_directory": -7.992776, "libexec": -8.685923, "like": -8.685923, "linguist": -7.299628, "linked_keg": -8.685923, "lion": -8.685923, "list_range": -8.685923, "load": -7.587311, "location": -8.685923, "lock": -8.685923, "logging": -7.992776, "m": -7.587311, "m.public_instance_methods": -8.685923, "macruby": -8.685923, "make": -8.685923, "man": -5.852709, "map": -8.685923, "margin": -7.992776, "match": -7.076485, "max_age": -7.992776, "may": -8.685923, "md": -7.992776, "md5": -7.992776, "means": -8.685923, "message": -7.587311, "metaclass": -7.992776, "method": -7.992776, "method_added": -8.685923, "method_name": -7.076485, "method_override": -7.299628, "method_source": -7.992776, "methodoverride": -7.992776, "methods": -8.685923, "methods.each": -8.685923, "mime": -7.992776, "mime_type": -8.685923, "min_stale": -8.685923, "mirror": -8.685923, "mirror_list": -8.685923, "mirror_list.empty": -8.685923, "mirror_list.shift.values_at": -8.685923, "mirrors": -6.740013, "mismatch": -7.992776, "missing": -8.685923, "mktemp": -7.992776, "mocha": -7.992776, "module": -6.606481, "must": -7.992776, "must_revalidate": -7.992776, "n": -7.076485, "n.count": -8.685923, "n.id": -8.685923, "n.to_f": -8.685923, "n.to_i": -8.685923, "name": -4.814722, "name.basename": -8.685923, "name.capitalize.gsub": -8.685923, "name.include": -8.685923, "name.kind_of": -8.685923, "name.to_s": -7.992776, "name_r": -8.685923, "names": -8.685923, "names.each": -8.685923, "namespace": -7.587311, "nend": -8.685923, "new": -7.076485, "next": -8.685923, "next_token": -8.685923, "nil": -4.175063, "no_cache": -8.685923, "no_store": -8.685923, "node": -7.992776, "node_numbers": -8.685923, "nodes": -8.685923, "nodoc": -7.587311, "non": -7.992776, "not": -7.299628, "not_found": -8.685923, "notes": -7.299628, "notify": -7.587311, "number": -7.587311, "number.to_i.abs": -7.992776, "object": -7.992776, "of": -7.587311, "ohai": -7.299628, "only": -8.685923, "onoe": -8.685923, "open": -7.587311, "opoo": -7.992776, "options": -8.685923, "or": -6.894163, "ordinal": -8.685923, "ordinalize": -8.685923, "out": -7.587311, "output": -7.992776, "output.puts": -8.685923, "override": -7.299628, "p": -6.894163, "p.compressed_filename": -7.992776, "p.compression": -8.685923, "package": -8.685923, "parameter": -8.685923, "params": -8.685923, "parse": -8.685923, "part": -8.685923, "part.empty": -8.685923, "partial": -8.685923, "parts": -7.992776, "parts.pop": -8.685923, "parts.reverse.inject": -8.685923, "passed": -8.685923, "patch": -7.076485, "patch_args": -8.685923, "patch_list": -6.894163, "patch_list.download": -8.685923, "patch_list.each": -8.685923, "patch_list.empty": -8.685923, "patch_list.external_patches": -8.685923, "patches": -7.587311, "path": -5.852709, "path.keys": -8.685923, "path.names": -8.685923, "path.nil": -8.685923, "path.realpath.to_s": -8.685923, "path.relative_path_from": -8.685923, "path.respond_to": -7.076485, "path.rindex": -7.992776, "path.stem": -8.685923, "path.to_s": -7.587311, "pattern": -8.685923, "pcase": -8.685923, "peek": -8.685923, "pending": -8.685923, "person": -8.685923, "phone_number": -8.685923, "phone_numbers": -8.685923, "platform": -7.992776, "plist": -7.992776, "plist_version": -8.685923, "plugin": -7.587311, "plugin.description": -8.685923, "plugin.display_name": -8.685923, "plugin.name": -8.685923, "plugin.version": -8.685923, "pluralize": -8.685923, "png": -7.992776, "pnumbers": -8.685923, "pod": -6.740013, "policy": -8.685923, "pop": -8.685923, "port": -7.299628, "port_lview": -7.992776, "port_pview": -7.992776, "possible_alias.file": -8.685923, "possible_alias.realpath.basename": -8.685923, "possible_cached_formula.file": -8.685923, "possible_cached_formula.to_s": -8.685923, "post": -8.685923, "preferred_type": -8.685923, "prefix": -6.120973, "prefix.parent": -8.685923, "prefixed_redirects": -8.685923, "price_tier": -8.685923, "primary_category": -8.685923, "private": -7.076485, "proc": -7.992776, "processed": -7.992776, "production": -8.685923, "prompt": -8.685923, "protected": -8.685923, "protection": -8.685923, "provide": -8.685923, "proxy_revalidate": -8.685923, "pry": -7.992776, "public": -7.587311, "public_folder": -7.587311, "push": -8.685923, "push_to_git_remote": -8.685923, "put": -8.685923, "puts": -6.201016, "pwd": -8.685923, "px": -7.587311, "queue": -5.852709, "queue.to_s": -8.685923, "queues": -7.587311, "queues.inject": -8.685923, "queues.size": -8.685923, "r": -7.992776, "racc_action_check": -7.992776, "racc_action_default": -7.992776, "racc_action_pointer": -7.992776, "racc_action_table": -7.992776, "racc_error": -8.685923, "racc_goto_check": -7.992776, "racc_goto_default": -7.992776, "racc_goto_pointer": -7.992776, "racc_goto_table": -7.992776, "racc_nt_base": -7.992776, "racc_reduce_n": -7.992776, "racc_reduce_table": -7.992776, "racc_shift_n": -7.992776, "racc_token_table": -7.992776, "racc_use_result_var": -7.992776, "rack": -8.685923, "raise": -5.977873, "raise_error": -8.685923, "raise_errors": -8.685923, "rake": -7.587311, "ratings_config_path": -8.685923, "rbx": -8.685923, "recursive_deps": -8.685923, "redis": -6.894163, "redis.client.id": -8.685923, "redis.lindex": -8.685923, "redis.lrange": -8.685923, "redis.nodes.map": -8.685923, "redis.respond_to": -7.992776, "redis.server": -8.685923, "redis.smembers": -8.685923, "redis_id": -7.992776, "reference": -8.685923, "region": -8.685923, "region_r": -8.685923, "registered_at": -8.685923, "release": -8.685923, "relevant": -8.685923, "reload_templates": -8.685923, "remote": -7.992776, "remove": -7.992776, "remove_queue": -8.685923, "replacement": -7.992776, "report": -7.992776, "reports": -8.685923, "request": -8.685923, "request.env": -7.992776, "request.finish": -8.685923, "request.in": -8.685923, "request.out": -8.685923, "request.request_method.downcase": -8.685923, "require": -4.423243, "require_all": -7.299628, "rescue": -6.288028, "reset": -8.685923, "respond_to": -8.685923, "response": -7.992776, "response.status": -8.685923, "resque": -7.992776, "restart_service": -8.685923, "result": -5.353718, "result.downcase": -8.685923, "result.sub": -8.685923, "retry": -7.587311, "return": -5.594880, "role": -8.685923, "root": -7.076485, "rsquo": -8.685923, "ruby": -6.740013, "ruby_engine": -6.894163, "ruby_engine.nil": -8.685923, "rugged": -7.992776, "rule": -7.992776, "rules": -8.685923, "rules.each": -8.685923, "run": -7.992776, "running": -8.685923, "rv": -7.587311, "s": -7.992776, "s_max_age": -8.685923, "safe_system": -7.076485, "sbin": -8.685923, "schedule": -8.685923, "scheduler": -7.587311, "scheme": -7.299628, "screenshots_path": -8.685923, "secondary_category": -8.685923, "self": -5.913334, "self.all": -8.685923, "self.class.cc_failures.find": -8.685923, "self.class.cc_failures.nil": -8.685923, "self.class.dependencies.deps": -8.685923, "self.class.dependencies.external_deps": -8.685923, "self.class.keg_only_reason": -8.685923, "self.class.mirrors": -8.685923, "self.class.path": -8.685923, "self.class.skip_clean_all": -8.685923, "self.class.skip_clean_paths.include": -8.685923, "self.class_s": -7.992776, "self.configuration": -8.685923, "self.delegate": -8.685923, "self.each": -8.685923, "self.expand_deps": -8.685923, "self.factory": -8.685923, "self.helpers": -8.685923, "self.map": -8.685923, "self.names": -8.685923, "self.path": -8.685923, "self.redis": -7.992776, "self.register": -8.685923, "self.target": -8.685923, "self.use": -8.685923, "send": -8.685923, "send_file": -8.685923, "sending": -8.685923, "serialized": -7.992776, "serialized.should": -7.992776, "server": -6.606481, "server.split": -7.992776, "server.unshift": -6.894163, "servers": -7.992776, "session_secret": -7.587311, "sessions": -8.685923, "set": -5.102404, "set_instance_variable": -6.201016, "settings": -7.992776, "settings.add_charset": -8.685923, "sha": -7.992776, "sha1": -6.201016, "sha256": -8.685923, "share": -8.685923, "shift": -8.685923, "should": -8.685923, "show_exceptions": -8.685923, "sigh": -7.587311, "singularize": -8.685923, "size": -7.587311, "skip_clean": -8.685923, "skip_clean_all": -8.685923, "skip_deploy": -7.587311, "slop": -7.992776, "source": -7.587311, "specified": -7.992776, "specifies": -8.685923, "specs": -6.120973, "specs=": -7.587311, "src": -8.685923, "srv_str": -7.299628, "stable": -7.992776, "stack": -7.992776, "stage": -7.299628, "standard": -7.587311, "start": -6.740013, "static": -8.685923, "static_cache_control": -8.685923, "status": -7.299628, "std_cmake_args": -8.685923, "stderr.puts": -7.992776, "stdin": -8.685923, "stdout": -8.685923, "stdout.puts": -8.685923, "sticky": -8.685923, "store": -8.685923, "stream": -8.685923, "super": -7.299628, "supplied": -6.894163, "supplied.empty": -8.685923, "supplied.upcase": -8.685923, "t": -7.587311, "table_name": -8.685923, "table_name.to_s.sub": -8.685923, "tableize": -8.685923, "tag": -8.685923, "tap": -7.587311, "target": -7.992776, "target_file": -6.894163, "task": -7.992776, "template": -8.685923, "test": -6.740013, "test_disabled": -7.992776, "text": -7.587311, "the": -6.288028, "then": -7.076485, "there": -8.685923, "this": -7.992776, "though": -8.685923, "thread_safe": -8.685923, "threaded": -8.685923, "title": -8.685923, "to": -7.992776, "to_check": -7.992776, "to_s": -7.587311, "tokenizer": -7.992776, "true": -5.550429, "type": -6.046865, "type.to_s.upcase": -8.685923, "types": -7.992776, "u": -8.685923, "u.phone_numbers": -8.685923, "underscore": -8.685923, "underscored_word": -8.685923, "underscored_word.tr": -8.685923, "uninitialized": -8.685923, "unless": -6.120973, "unstable": -7.587311, "upcase": -7.992776, "uri_pathquery": -7.992776, "url": -5.690191, "url=": -8.685923, "use": -8.685923, "use_code": -8.685923, "user": -7.992776, "user.is_admin": -8.685923, "username": -8.685923, "usr": -7.587311, "v": -7.587311, "val": -5.467047, "val=": -7.992776, "validate_variable": -6.740013, "value": -6.894163, "value.should": -7.992776, "verify": -8.685923, "verify_download_integrity": -7.587311, "version": -5.913334, "views": -8.685923, "w": -6.894163, "web": -7.299628, "webrick": -8.685923, "website": -8.685923, "when": -6.288028, "whether": -8.685923, "width": -8.685923, "with": -7.992776, "with_params": -8.685923, "word": -8.685923, "word.empty": -8.685923, "word.to_s.dup": -8.685923, "workers": -8.685923, "workers.size.to_i": -8.685923, "working": -7.992776, "working.size": -8.685923, "wrong": -8.685923, "xcodeproj": -8.685923, "xctest": -8.685923, "xhtml": -8.685923, "xml": -7.992776, "yajl": -7.992776, "yet": -8.685923, "yield": -6.740013, "your": -8.685923, "zA": -8.685923, "zero": -8.685923, "{": -4.642872, "|": -4.355189, "||": -5.913334, "}": -4.642872, "~": -6.046865, }, "Rust": map[string]float64{ "!": -5.233779, "#": -4.422849, "&": -5.010635, "&&": -8.006368, "(": -2.525729, ")": -2.525729, "*": -6.214608, "*rust_task": -6.214608, "*uint": -8.006368, "+": -7.313220, ",": -3.162180, "-": -4.605170, "..": -5.926926, ".recv": -8.006368, ".sched_mode": -8.006368, ".spawn": -6.620073, ".spawn_with": -8.006368, ".supervised": -7.313220, ".try": -8.006368, ".unlinked": -7.313220, "/": -4.368781, "//": -6.907755, "0": -7.313220, "2": -7.313220, ":": -2.393239, ";": -3.050541, "<": -8.006368, "<&V>": -8.006368, "<&mut>": -8.006368, "<&str,>": -6.620073, "<(&str,>": -8.006368, "<()>": -6.060457, "<(K,>": -6.620073, "<..>": -8.006368, "<<": -8.006368, "<A,>": -6.620073, "<A:Owned>": -7.313220, "<F:>": -8.006368, "<K,>": -3.945925, "<K,V>": -8.006368, "<K:>": -8.006368, "<LICENSE-APACHE>": -7.313220, "<LICENSE-MIT>": -7.313220, "<Q:>": -6.620073, "<Q>": -6.060457, "<T,()>": -7.313220, "<T:>": -7.313220, "<T:Owned>": -7.313220, "<T>": -8.006368, "<TaskResult>": -6.907755, "<U>": -6.907755, "<V>": -7.313220, "<X:>": -8.006368, "<_,>": -5.926926, "<_>": -7.313220, "<int>": -7.313220, "<isize,>": -6.620073, "<isize>": -8.006368, "<uint>": -7.313220, "<usize>": -6.214608, "<util::NonCopyable>": -8.006368, "=": -3.863233, ">": -4.540632, "@fn": -8.006368, "A": -6.620073, "AllowFailure": -6.396930, "Borrow": -8.006368, "Bucket": -8.006368, "BucketState": -8.006368, "C": -7.313220, "Cell": -7.313220, "Chan": -8.006368, "Clone": -7.313220, "CurrentScheduler": -8.006368, "Debug": -8.006368, "Default": -8.006368, "DefaultResizePolicy": -6.620073, "DefaultScheduler": -8.006368, "DeferInterrupts": -6.396930, "Deref": -8.006368, "DisallowFailure": -6.396930, "Empty": -8.006368, "EmptyBucket": -8.006368, "Entry": -8.006368, "Eq": -6.907755, "Err": -7.313220, "ExactSizeIterator": -8.006368, "Extend": -8.006368, "F": -8.006368, "Failure": -8.006368, "FnMut": -8.006368, "FnOnce": -8.006368, "FromIterator": -8.006368, "Full": -8.006368, "FullBucket": -8.006368, "FullBucketImm": -8.006368, "FullBucketMut": -8.006368, "GenericChan": -8.006368, "GenericPort": -8.006368, "Get": -8.006368, "Hash": -8.006368, "HashState": -8.006368, "INITIAL_CAPACITY": -8.006368, "INITIAL_LOG": -7.313220, "Index": -8.006368, "IntoIterator": -8.006368, "Iterator": -8.006368, "K": -7.313220, "LICENSE": -7.313220, "M": -5.703782, "MIT": -7.313220, "ManualThreads": -7.313220, "Map": -8.006368, "None": -4.915325, "Ok": -7.313220, "Option": -7.313220, "PartialEq": -8.006368, "PlatformThread": -8.006368, "Port": -7.313220, "RandomState": -6.620073, "RawTable": -6.907755, "Result": -6.620073, "Rng": -8.006368, "S": -4.710531, "SafeHash": -8.006368, "SchedMode": -6.907755, "SchedOpts": -6.907755, "Scheduler": -7.313220, "SchedulerHandle": -7.313220, "SearchResult": -8.006368, "SharedChan": -8.006368, "SingleThreaded": -8.006368, "SipHasher": -8.006368, "Sized": -8.006368, "Some": -6.907755, "Success": -8.006368, "T": -7.313220, "Task": -7.313220, "TaskBuilder": -5.010635, "TaskHandle": -7.313220, "TaskOpts": -5.703782, "ThreadPerCore": -7.313220, "ThreadPerTask": -8.006368, "True": -8.006368, "U": -6.214608, "V": -6.396930, "VacantEntryState": -8.006368, "Yield": -8.006368, "[": -4.422849, "]": -4.422849, "_CAP": -7.313220, "_allow_failure": -7.313220, "_interrupts": -8.006368, "_p": -8.006368, "a": -6.907755, "add_wrapper": -8.006368, "apache": -7.313220, "arg": -6.396930, "arg.take": -8.006368, "as": -6.396930, "assert": -6.620073, "atomically": -6.396930, "b": -5.809143, "b.spawn": -8.006368, "bar": -6.907755, "blk": -7.313220, "body": -6.620073, "bool": -8.006368, "borrow": -8.006368, "can_not_copy": -5.703782, "cap": -8.006368, "car": -8.006368, "cast": -7.313220, "cell": -8.006368, "cfg": -5.809143, "ch": -8.006368, "ch.send": -8.006368, "chan": -6.620073, "chan.send": -7.313220, "check": -8.006368, "child_no": -6.907755, "clone": -8.006368, "cmp": -7.313220, "comm": -6.620073, "const": -6.907755, "consume": -8.006368, "consumed": -7.313220, "control": -8.006368, "cores": -7.313220, "crate": -7.313220, "default": -8.006368, "default_task_opts": -6.620073, "derive": -8.006368, "deriving_eq": -7.313220, "do": -5.061929, "doc": -8.006368, "drop": -6.907755, "e.remove": -8.006368, "enum": -7.313220, "extern": -7.313220, "f": -4.828314, "fail": -5.703782, "failed": -8.006368, "failing": -7.313220, "false": -6.214608, "feature": -8.006368, "fmt": -8.006368, "fn": -3.879233, "foo": -7.313220, "for": -6.907755, "foreign_stack_size": -6.907755, "fr_task_builder": -8.006368, "fr_task_builder.spawn": -8.006368, "future_result": -8.006368, "gen_body": -6.907755, "generations": -7.313220, "get_scheduler": -8.006368, "get_task": -8.006368, "get_task_id": -8.006368, "handle": -8.006368, "has": -8.006368, "hash": -8.006368, "hidden": -8.006368, "http": -6.620073, "if": -6.396930, "ignore": -5.809143, "impl": -6.907755, "inline": -7.313220, "int": -6.620073, "iter": -6.620073, "killed": -7.313220, "let": -4.245167, "licenses": -6.620073, "linked": -5.703782, "local_data": -8.006368, "local_data_priv": -8.006368, "loop": -6.620073, "m": -8.006368, "main": -8.006368, "marker": -8.006368, "match": -8.006368, "max": -8.006368, "max_threads": -7.313220, "mem": -8.006368, "min_capacity": -8.006368, "mod": -6.620073, "mode": -6.060457, "mut": -5.441418, "new": -8.006368, "notify_chan": -4.870873, "notify_pipe_ch": -7.313220, "notify_pipe_po": -7.313220, "opensource": -7.313220, "ops": -8.006368, "option": -6.907755, "opts": -5.010635, "opts.linked": -7.313220, "opts.supervised": -7.313220, "org": -6.620073, "p": -7.313220, "panic": -8.006368, "po": -8.006368, "po.recv": -6.396930, "port": -6.620073, "port.recv": -7.313220, "pp": -7.313220, "prelude": -8.006368, "prev_gen_body": -7.313220, "println": -8.006368, "priv": -8.006368, "pub": -4.870873, "quix": -8.006368, "r": -7.313220, "rand": -8.006368, "recv": -8.006368, "rekillable": -8.006368, "repeat": -6.907755, "replace": -5.809143, "reported_threads": -7.313220, "result": -5.926926, "return": -8.006368, "rt": -4.828314, "running": -7.313220, "running_threads": -6.620073, "rust_get_sched_id": -8.006368, "rust_get_task": -6.396930, "rust_num_threads": -8.006368, "rust_sched_current_nonlazy_threads": -7.313220, "rust_sched_threads": -7.313220, "rust_task": -8.006368, "rust_task_allow_kill": -6.907755, "rust_task_allow_yield": -8.006368, "rust_task_inhibit_kill": -6.907755, "rust_task_inhibit_yield": -8.006368, "rust_task_is_unwinding": -8.006368, "rust_task_yield": -8.006368, "sched": -5.809143, "sched_id": -7.313220, "sched_mode": -8.006368, "scheduler": -8.006368, "self": -4.870873, "self.consume": -6.060457, "self.consumed": -7.313220, "self.future_result": -8.006368, "self.gen_body": -7.313220, "self.opts.linked": -6.620073, "self.opts.notify_chan": -6.060457, "self.opts.notify_chan.is_some": -8.006368, "self.opts.sched": -6.214608, "self.opts.supervised": -6.396930, "self.spawn": -8.006368, "self.t": -6.620073, "send": -8.006368, "should_fail": -6.060457, "spawn": -5.809143, "spawn_raw": -8.006368, "spawn_sched": -6.620073, "spawn_supervised": -6.214608, "spawn_unlinked": -7.313220, "spawn_with": -7.313220, "state": -8.006368, "stream": -6.214608, "struct": -6.396930, "super": -6.907755, "supervised": -5.703782, "t": -4.915325, "table": -7.313220, "task": -4.870873, "task_": -7.313220, "task_id": -7.313220, "test": -5.441418, "test_atomically": -7.313220, "test_atomically_nested": -8.006368, "test_cant_dup_task_builder": -8.006368, "test_child_doesnt_ref_parent": -8.006368, "test_sched_thread_per_core": -8.006368, "test_spawn_failure_propagate_secondborn": -8.006368, "test_spawn_linked_sup_fail_down": -8.006368, "test_spawn_linked_sup_propagate_sibling": -8.006368, "test_spawn_thread_on_demand": -8.006368, "test_spawn_unlinked_sup_fail_down": -8.006368, "test_spawn_unlinked_sup_no_fail_up": -8.006368, "test_spawn_unlinked_unsup_no_fail_up": -8.006368, "the": -6.907755, "to": -7.313220, "transmute": -7.313220, "true": -5.926926, "try": -7.313220, "uint": -6.396930, "unkillable": -8.006368, "unlinked": -8.006368, "unsafe": -5.115996, "unstable": -8.006368, "unwrap": -8.006368, "usable_capacity": -8.006368, "usable_size": -7.313220, "use": -4.540632, "usize": -6.214608, "util": -7.313220, "v": -6.620073, "windows": -5.809143, "wrapper": -7.313220, "www": -7.313220, "x": -6.620073, "x.gen_body": -8.006368, "x.opts.linked": -8.006368, "x.opts.sched": -8.006368, "x.opts.supervised": -8.006368, "yield": -5.608472, "{": -3.015935, "|": -6.214608, "||": -6.396930, "}": -2.969415, "~": -5.173154, }, "SAS": map[string]float64{ "!": -4.314726, "%": -2.762041, "&": -3.810820, "&&": -6.988874, "(": -3.538887, ")": -3.538887, "*": -6.988874, "**": -6.583409, ",": -2.814487, "-": -3.621579, ".": -6.988874, "/": -7.682022, ":": -5.042964, ";": -2.349303, "=": -2.320729, ">": -6.583409, "A": -4.909433, "AGREEMENT": -5.602580, "ALL": -5.602580, "AND": -5.284126, "ARE": -7.682022, "BDate": -7.682022, "BETA": -7.682022, "BUT": -7.682022, "BirthDate": -7.682022, "By": -6.988874, "CAREFULLY": -5.484797, "CHARACTER": -7.682022, "CHECKED": -7.682022, "COMPORTS": -5.602580, "CONTENT.": -7.682022, "CONTENTS": -7.682022, "Checking": -6.583409, "Contents": -7.682022, "DATA": -4.909433, "DATASETS": -7.682022, "DOB": -6.988874, "DOBs": -7.682022, "ERROR": -7.682022, "FOR": -5.484797, "FOUND": -7.682022, "HUMAN": -5.602580, "IN": -7.682022, "INSPECT": -5.484797, "INSPECTION": -5.602580, "IS": -5.484797, "ImportantVariable": -7.682022, "LIKE": -7.682022, "MACRO": -5.602580, "MAKE": -5.484797, "MI": -7.682022, "MRN": -6.583409, "Macro": -7.682022, "May": -7.682022, "MissingFlag": -7.682022, "NO": -7.682022, "NOT": -4.848808, "NOWARN": -7.682022, "Name": -6.583409, "No": -6.988874, "Nothing": -7.682022, "OF": -7.682022, "OR": -5.602580, "Outcome": -7.682022, "PHI": -7.682022, "PLEASE": -5.379436, "PRINTs": -7.682022, "PROBLEMS": -7.682022, "PROC": -7.682022, "Please": -7.682022, "Purge": -7.682022, "REPORT": -7.682022, "RESULTS": -7.682022, "RemoveDset": -6.295727, "Replicate": -6.988874, "SCRUTINIZE": -7.682022, "SELECTALL": -7.682022, "SHARING": -5.602580, "SOFTWARE": -7.682022, "SSN": -7.682022, "SUBSTITUTE": -5.602580, "SURE": -5.484797, "Site": -7.682022, "SocialSecurityNumber": -7.682022, "THE": -5.379436, "THEY": -5.602580, "THIS": -5.379436, "THOUGHT": -5.602580, "TO": -5.379436, "TODO": -7.682022, "TRIP": -5.602580, "The": -7.682022, "VAR": -7.682022, "VARIABLES": -5.602580, "Variable": -5.890262, "WARNING": -5.602580, "WHETHER": -5.602580, "WITH": -5.602580, "YOUR": -5.602580, "_Imputation_": -7.682022, "__gnu": -5.484797, "__sub_dset": -6.583409, "_n_": -6.988874, "a": -6.583409, "about": -7.682022, "across": -7.682022, "age": -7.682022, "all": -7.682022, "allowed": -7.682022, "an": -7.682022, "and": -6.295727, "are": -7.682022, "array": -6.988874, "as": -5.736111, "badcount": -5.890262, "badvalue": -6.295727, "badvar": -5.890262, "bdat": -7.682022, "bdtvar": -7.682022, "be": -6.072584, "best.": -6.988874, "birth.": -7.682022, "birth_date": -7.682022, "by": -6.072584, "calcage": -7.682022, "char": -5.736111, "check": -7.682022, "check_dataset": -6.583409, "check_varname": -5.890262, "check_vars_for_mrn": -6.583409, "check_vars_for_oldsters": -6.583409, "checks.": -7.682022, "compress": -6.583409, "contents": -6.072584, "count": -7.682022, "create": -6.583409, "d": -5.284126, "dat_array": -6.295727, "data": -5.197115, "datasets": -7.682022, "date": -6.583409, "defined": -6.988874, "delete": -7.682022, "descending": -7.682022, "describe": -7.682022, "detect_phi": -6.583409, "dictionary.tables": -6.988874, "dim": -6.988874, "distinct": -6.988874, "divined": -7.682022, "do": -4.791650, "drop": -6.988874, "dset": -5.042964, "dtfmts": -6.295727, "eldest_age": -5.484797, "elements": -7.682022, "else": -6.583409, "end": -4.791650, "following": -7.682022, "for": -6.295727, "format": -6.988874, "formats": -7.682022, "forth.": -7.682022, "found": -6.988874, "from": -5.042964, "ge": -6.988874, "given": -7.682022, "here": -6.988874, "hrn": -7.682022, "i": -4.909433, "if": -4.973971, "in": -5.736111, "indicate": -7.682022, "insert": -6.583409, "inset_name": -5.484797, "inset_name.": -6.988874, "into": -5.484797, "is": -7.682022, "items": -7.682022, "keep": -6.295727, "label": -6.072584, "length": -7.682022, "length_limit": -6.988874, "let": -5.890262, "libname": -6.583409, "like": -6.295727, "list": -6.988874, "local": -5.736111, "locally": -7.682022, "locally_forbidden_varnames": -6.072584, "logistic": -7.682022, "lowcase": -6.583409, "macro": -5.736111, "make": -7.682022, "match": -7.682022, "max": -5.890262, "may": -6.583409, "maybe_age": -6.295727, "memname": -7.682022, "memtype": -7.682022, "mend": -6.072584, "method": -6.988874, "model": -7.682022, "move": -7.682022, "mrn": -7.682022, "mrn_array": -6.295727, "mrn_regex": -6.988874, "mrn_regex_handle": -6.583409, "msg": -6.072584, "n": -7.682022, "name": -5.484797, "names": -6.583409, "never": -7.682022, "nimpute": -7.682022, "noprint": -5.602580, "not": -7.682022, "note": -7.682022, "nowarn": -7.682022, "num": -6.295727, "num_dsets": -6.295727, "num_warns": -6.583409, "number": -7.682022, "number.": -7.682022, "numeric": -7.682022, "obs": -6.583409, "obs_lim": -5.042964, "obvious": -6.988874, "of": -6.072584, "older": -7.682022, "on": -6.988874, "or": -6.988874, "order": -7.682022, "other": -7.682022, "out": -6.072584, "outhits": -7.682022, "outobs": -6.988874, "output": -6.988874, "p": -6.072584, "pardee.r@ghc.org.": -7.682022, "pathname": -7.682022, "pattern": -7.682022, "person": -7.682022, "phi": -7.682022, "phi_warnings": -5.736111, "possible": -6.988874, "possible_bad_vars": -6.583409, "print": -6.295727, "proc": -5.117072, "prxmatch": -6.988874, "prxparse": -7.682022, "put": -3.831874, "quit": -5.484797, "recs": -7.682022, "refdate": -7.682022, "regx": -6.072584, "reps": -7.682022, "reset": -6.988874, "retain": -7.682022, "risklimits": -7.682022, "round": -7.682022, "run": -5.284126, "samplingunit": -7.682022, "sampsize": -6.988874, "security": -7.682022, "seed": -6.583409, "select": -5.042964, "sensitive": -7.682022, "sent": -7.682022, "separated": -6.583409, "set": -6.072584, "should": -7.682022, "signifying": -7.682022, "signs": -7.682022, "sites.": -6.988874, "skipping": -7.682022, "so": -7.682022, "social": -7.682022, "social_security_number": -7.682022, "socsec": -7.682022, "source": -7.682022, "source.original_file.sas": -7.682022, "sql": -5.602580, "sqlobs": -6.295727, "srs": -7.682022, "standard": -6.988874, "str": -6.295727, "suggests": -6.583409, "surveyselect": -6.988874, "symexist": -6.988874, "sysfunc": -7.682022, "table": -5.890262, "than": -7.682022, "that": -6.072584, "the": -5.602580, "their": -7.682022, "then": -5.042964, "these": -6.988874, "these_vars": -5.890262, "they": -7.682022, "this": -6.583409, "those": -7.682022, "title": -6.295727, "to": -5.602580, "transfer_lib": -6.583409, "trim": -6.988874, "trip": -7.682022, "type": -6.583409, "urs": -7.682022, "value": -7.682022, "values": -7.682022, "var": -6.295727, "var_list": -6.988874, "variable": -5.602580, "variables": -6.072584, "varnum": -7.682022, "vars": -6.988874, "vname": -6.988874, "warning": -5.890262, "warnings.": -7.682022, "were": -7.682022, "where": -6.072584, "which": -7.682022, "work.boot": -6.988874, "work.bootmi": -6.988874, "work.data": -7.682022, "work.working_copy": -6.072584, "would": -7.682022, "x": -7.682022, "years.": -7.682022, "{": -5.736111, "|": -5.736111, "||": -5.602580, "}": -5.736111, }, "SCSS": map[string]float64{ "#": -4.007333, "$": -2.061423, "%": -4.007333, "(": -4.007333, ")": -4.007333, ",": -4.007333, "-": -2.908721, ".border": -4.007333, ".content": -4.007333, "/": -3.314186, ":": -2.061423, ";": -2.061423, "bbfce": -4.007333, "blue": -2.621039, "border": -3.314186, "color": -2.908721, "darken": -4.007333, "margin": -2.621039, "navigation": -4.007333, "padding": -4.007333, "px": -4.007333, "{": -3.314186, "}": -3.314186, }, "SMT": map[string]float64{ "#b": -2.853041, "#x": -9.099148, "%": -4.799598, "'": -9.504613, "(": -1.527331, ")": -1.527331, "*": -6.560174, "**": -8.251850, "***": -9.099148, "+": -10.197760, ",": -5.907301, "-": -3.723870, "...": -9.099148, ":": -6.901923, ";": -4.003355, "<": -6.901923, "=": -4.768415, ">": -6.671400, "?": -4.924761, "@.str": -8.406001, "@atoi": -8.811466, "@lhs": -7.153238, "@lhs_block_": -9.504613, "@lhs_result": -9.504613, "@main": -5.935080, "@main_block_": -7.153238, "@main_result": -10.197760, "@printf": -8.811466, "@rhs": -7.489710, "@rhs_block_": -9.504613, "@rhs_result": -9.504613, "AUFLIRA": -10.197760, "Address": -6.796563, "Array": -6.978885, "BLOCK": -8.118319, "BitVec": -5.015977, "Bitvector": -9.099148, "Bool": -6.796563, "Boolean": -10.197760, "Buggy": -10.197760, "Byte": -9.504613, "COMP": -10.197760, "DP": -10.197760, "Function": -8.588322, "Hyondeuk": -10.197760, "I": -7.489710, "Int": -7.307389, "Kim": -10.197760, "LIB": -10.197760, "List": -7.364547, "Mem": -6.671400, "Memory": -8.588322, "No": -8.118319, "PHI": -8.588322, "Predecessors": -8.118319, "QF_ABV": -10.197760, "QF_IDL": -10.197760, "QF_LIA": -10.197760, "Queens": -10.197760, "Read": -8.406001, "Real": -8.251850, "SMT": -9.504613, "Special": -10.197760, "This": -10.197760, "Vectors": -6.796563, "Write": -8.406001, "[": -8.811466, "]": -8.811466, "^": -6.796563, "_": -3.050988, "_entry_condition": -6.978885, "_to_bits": -9.099148, "a": -6.763773, "address": -7.632811, "align": -6.901923, "aligned": -9.504613, "alloca": -8.251850, "and": -7.307389, "append": -8.811466, "argc": -8.811466, "argv": -8.811466, "arrows": -8.118319, "assert": -8.000536, "assumes": -9.504613, "at": -7.632811, "b": -6.137317, "backward": -8.118319, "benchmark": -10.197760, "benchmarks": -10.197760, "bignumbers.": -10.197760, "bit": -7.558703, "bitvectors": -10.197760, "br": -8.588322, "bv": -5.515629, "bvadd": -5.949265, "bvand": -6.172409, "bvashr": -6.172409, "bvlshr": -6.172409, "bvmul": -6.172409, "bvor": -6.172409, "bvsdiv": -6.172409, "bvshl": -6.172409, "bvsrem": -6.172409, "bvsub": -6.054626, "bvudiv": -6.172409, "bvurem": -6.172409, "bvxor": -6.172409, "by": -10.197760, "c": -9.504613, "call": -8.406001, "car": -9.504613, "case": -10.197760, "cast_bits_to_vector_": -9.099148, "cast_vector_": -9.099148, "category": -9.099148, "cdr": -9.504613, "check": -8.588322, "concat": -7.799865, "cons": -8.118319, "constants": -10.197760, "conversion": -9.099148, "declare": -6.038877, "define": -4.467661, "designed": -10.197760, "eight": -8.118319, "elements": -6.642412, "end": -10.197760, "endian": -7.558703, "eq": -9.504613, "exit": -9.099148, "extract": -6.732024, "extractelement": -9.504613, "five": -10.197760, "forall": -8.588322, "format.": -10.197760, "four": -8.118319, "from": -9.099148, "fun": -4.354216, "generated": -10.197760, "getelementptr": -8.811466, "i": -5.515629, "i.e.": -7.489710, "icmp": -9.504613, "if": -9.504613, "in": -7.632811, "inbounds": -8.811466, "index": -8.118319, "info": -7.632811, "insertelement": -8.811466, "int": -6.642412, "is": -9.504613, "ite": -9.099148, "label": -8.251850, "len": -8.811466, "let": -5.038705, "lhs": -7.895175, "lib": -9.099148, "list": -10.197760, "little": -7.558703, "load": -7.558703, "logic": -8.811466, "mem": -6.460091, "memory": -6.436560, "nil": -9.099148, "non": -10.197760, "not": -5.256118, "notes": -10.197760, "of": -6.732024, "one": -8.588322, "or": -8.118319, "organizers": -10.197760, "prelude": -10.197760, "rank": -8.118319, "rather": -10.197760, "read": -7.019707, "representation": -9.504613, "ret": -9.099148, "returns": -10.197760, "rhs": -8.118319, "rsp": -7.019707, "s": -10.197760, "sat": -8.406001, "select": -2.899315, "set": -7.364547, "seven": -10.197760, "shufflevector": -9.504613, "six": -10.197760, "size": -10.197760, "smt": -9.099148, "sort": -6.901923, "source": -9.099148, "status": -9.099148, "store": -5.524932, "stored": -10.197760, "supports": -10.197760, "than": -10.197760, "the": -10.197760, "theorem": -10.197760, "this": -9.504613, "three": -9.099148, "to": -8.588322, "true": -8.811466, "two": -8.118319, "undef": -8.811466, "unsat": -10.197760, "use": -10.197760, "v": -7.307389, "v_": -5.091815, "value": -7.712854, "vbvadd_": -7.712854, "vbvand_": -7.712854, "vbvashr_": -7.712854, "vbvlshr_": -7.712854, "vbvmul_": -7.712854, "vbvor_": -7.712854, "vbvsdiv_": -7.712854, "vbvshl_": -7.712854, "vbvsrem_": -7.712854, "vbvsub_": -7.712854, "vbvudiv_": -7.712854, "vbvurem_": -7.712854, "vbvxor_": -7.712854, "vector_": -3.900651, "vectors": -8.406001, "version": -9.099148, "vmake_": -4.940265, "vundef_": -6.560174, "vzero_": -7.364547, "w": -7.799865, "we": -10.197760, "what": -10.197760, "where": -10.197760, "with": -7.632811, "write": -7.364547, "x": -2.957828, "y": -3.394255, "z": -2.903383, "zero": -8.251850, "|": -4.562971, }, "SPARQL": map[string]float64{ "!": -4.833633, "&&": -4.833633, "(": -2.498258, ")": -2.498258, ",": -3.629660, "-": -4.833633, ".": -4.322807, "/": -4.140486, "//www.w": -4.545951, "//xmlns.com/foaf/": -5.932245, "/owl#": -5.932245, "/skos/core#": -5.932245, "/skos/core#Concept": -5.932245, ":": -2.796751, "<": -4.322807, "<http://api.finto.fi/sparql>": -5.932245, "<http://www.yso.fi/onto/kauno/>": -5.932245, "=": -4.322807, ">": -4.322807, "?": -1.871802, "BIND": -4.833633, "BY": -5.239098, "DISTINCT": -4.833633, "EXISTS": -5.932245, "FILTER": -4.545951, "GRAPH": -5.932245, "GROUP": -5.932245, "GROUP_CONCAT": -5.932245, "IF": -4.833633, "LIMIT": -5.932245, "NOT": -5.932245, "OPTIONAL": -5.239098, "ORDER": -5.932245, "PREFIX": -4.545951, "Person.": -5.932245, "SELECT": -4.833633, "SERVICE": -5.932245, "STR": -5.932245, "VALUES": -5.932245, "WHERE": -4.833633, "a": -5.932245, "alabel": -4.833633, "altLabel": -5.239098, "as": -4.545951, "deprecated": -5.932245, "email": -5.932245, "email.": -5.932245, "foaf": -4.545951, "hiddenLabel": -5.239098, "hlabel": -4.833633, "http": -4.322807, "label": -3.629660, "lang": -4.545951, "langMatches": -5.239098, "lcase": -4.833633, "match": -3.447339, "mbox": -5.932245, "name": -5.239098, "name.": -5.932245, "ns#": -5.932245, "org/": -4.545951, "owl": -5.239098, "person": -4.833633, "plabel": -4.833633, "prefLabel": -4.545951, "prop": -3.986335, "rdf": -4.545951, "s": -3.629660, "skos": -3.735021, "str": -4.833633, "strstarts": -5.239098, "syntax": -5.932245, "true": -5.932245, "type": -4.545951, "types": -5.932245, "{": -3.629660, "}": -3.629660, }, "SQF": map[string]float64{ "!": -5.560682, "#VAR": -5.560682, "#define": -4.174387, "#include": -5.560682, "(": -3.075775, ")": -3.075775, ",": -1.923095, ":": -4.174387, ";": -2.094946, "<version.hqf>": -5.560682, "=": -3.258097, "AGM_Core_remoteFnc": -4.867534, "ALL_HITPOINTS_MAN": -5.560682, "ALL_HITPOINTS_VEH": -5.560682, "ARRAY": -4.867534, "CONV": -5.560682, "POOL": -4.867534, "SET": -5.560682, "VALUE": -4.867534, "VAR": -3.951244, "[": -4.174387, "\\": -3.162786, "]": -4.174387, "_arguments": -3.768922, "_function": -3.768922, "_id": -4.867534, "_this": -4.174387, "_unit": -3.768922, "call": -3.768922, "case": -4.174387, "compile": -5.560682, "do": -5.560682, "else": -4.174387, "exitWith": -5.560682, "find": -5.560682, "if": -3.614771, "isDedicated": -5.560682, "isNil": -5.560682, "isServer": -4.462069, "local": -5.560682, "owner": -5.560682, "private": -4.867534, "publicVariable": -5.560682, "publicVariableClient": -5.560682, "publicVariableServer": -4.462069, "select": -4.174387, "set": -5.560682, "switch": -5.560682, "then": -3.768922, "typeName": -5.560682, "{": -2.788093, "}": -2.788093, }, "SQL": map[string]float64{ "!": -10.015923, "$": -8.224164, "%": -10.015923, "'": -9.322776, "(": -2.354867, ")": -2.355338, "*": -8.406485, ",": -0.302507, "-": -5.955480, ":": -5.888789, ";": -5.739257, "</a>": -7.618028, "</p>": -7.618028, "</pre>": -10.015923, "</strong>": -9.322776, "<a>": -7.618028, "<br>": -6.064679, "<p>": -7.618028, "<pre>": -10.015923, "<strong>": -9.322776, "<varchar>": -9.322776, "=": -8.070013, "@@global.debug": -10.015923, "@@global.max_connect_errors": -10.015923, "@@global.max_connections": -10.015923, "@@global.max_user_connections": -10.015923, "ALL": -9.322776, "AND": -10.015923, "AS": -9.322776, "ASC": -8.224164, "ATOLL": -10.015923, "AUTO_INCREMENT": -8.917311, "AvailableInSearchSel": -10.015923, "BEGIN": -10.015923, "BJ": -10.015923, "BY": -8.070013, "Bj/JtLJJR": -10.015923, "BxCHeVG": -10.015923, "CLUSTERING": -8.224164, "CONNECT": -10.015923, "CRAMER": -10.015923, "CREATE": -6.648627, "Class": -10.015923, "DATE": -8.917311, "DBO.SYSOBJECTS": -10.015923, "DB_NAME": -10.015923, "DEFAULT": -7.243334, "DESC": -8.224164, "DMS": -10.015923, "DROP": -8.917311, "DUAL": -10.015923, "DuRVo": -10.015923, "END": -10.015923, "EXECUTE": -10.015923, "EXISTS": -8.224164, "FILIAL": -7.713338, "FROM": -9.322776, "GIS": -9.322776, "GO": -8.629629, "GRANT": -8.224164, "Good": -10.015923, "HPSM": -10.015923, "He": -10.015923, "Host": -8.629629, "I.": -10.015923, "ID": -9.322776, "IDENTIFIED": -10.015923, "IF": -8.070013, "INSERT": -8.917311, "INTO": -8.917311, "Izon": -9.322776, "KEY": -7.071484, "KEYSPACE": -9.322776, "Luck": -10.015923, "Mplanas": -10.015923, "N": -8.070013, "NOT": -7.182710, "NULL": -5.872788, "NUMBER": -9.322776, "Network": -10.015923, "OBJECTPROPERTY": -10.015923, "OBJECT_ID": -10.015923, "ON": -10.015923, "ORDER": -8.224164, "P": -8.917311, "P.": -10.015923, "PH": -10.015923, "PK_ID": -10.015923, "PLANMONITOR": -10.015923, "PRIMARY": -7.071484, "PROCEDURE": -9.322776, "Private": -10.015923, "Procedure": -10.015923, "REPLICATION": -9.322776, "RESOURCE": -10.015923, "RMF": -10.015923, "SELECT": -8.406485, "SHOW": -9.322776, "SIEBEL": -10.015923, "Sample": -10.015923, "TABLE": -6.880429, "TIME": -10.015923, "TIMESTAMP": -10.015923, "TO": -8.224164, "TYPE": -10.015923, "The": -10.015923, "UNION": -9.322776, "USER": -10.015923, "Use": -10.015923, "User": -8.629629, "VALUES": -8.917311, "VARCHAR": -8.406485, "VBIS": -10.015923, "VIEW": -9.322776, "VPORTAL": -10.015923, "Vasileios": -10.015923, "Virtual": -10.015923, "W": -10.015923, "WARNINGS": -9.322776, "WHERE": -10.015923, "WITH": -7.818698, "WXL": -10.015923, "When": -10.015923, "You": -10.015923, "ZONE": -10.015923, "[": -10.015923, "\\": -6.924881, "]": -10.015923, "`": -4.940749, "a": -8.629629, "able": -10.015923, "abstract": -9.322776, "access": -9.322776, "add": -10.015923, "afraid.": -10.015923, "along.": -10.015923, "also": -10.015923, "alter": -10.015923, "and": -8.629629, "any": -10.015923, "are": -10.015923, "articles": -9.322776, "as": -9.322776, "author": -9.322776, "availability": -9.322776, "bUD": -10.015923, "bar": -9.322776, "bar@owasp.com": -10.015923, "basic": -10.015923, "be": -9.322776, "behave": -10.015923, "bigint": -9.322776, "body": -10.015923, "brilliant": -10.015923, "but": -10.015923, "cascade": -10.015923, "category": -9.322776, "challenge.": -10.015923, "challenge_id": -10.015923, "challenges": -9.322776, "city": -10.015923, "col": -8.629629, "come": -10.015923, "command": -10.015923, "comment": -8.629629, "comment_ts": -7.531016, "comments_by_user": -9.322776, "comments_by_video": -9.322776, "common": -10.015923, "complete": -10.015923, "constraint": -10.015923, "content": -9.322776, "counter": -8.629629, "country": -10.015923, "create": -9.322776, "created_by": -9.322776, "created_date": -9.322776, "credit_change_date": -9.322776, "date_posted": -8.629629, "datediff": -10.015923, "datetime": -8.629629, "dbo.AvailableInSearchSel": -9.322776, "default_duration": -9.322776, "default_points": -9.322776, "description": -8.629629, "dq": -10.015923, "drop": -7.713338, "dst": -10.015923, "dual": -10.015923, "dumb": -10.015923, "duration": -9.322776, "each": -10.015923, "either": -10.015923, "email": -8.917311, "event": -8.224164, "event_timestamp": -8.224164, "exec": -10.015923, "exists": -10.015923, "exploited": -10.015923, "firstname": -9.322776, "flush": -8.629629, "foo": -9.322776, "foo@owasp.com": -10.015923, "fooClass": -10.015923, "four": -10.015923, "friend": -10.015923, "from": -8.070013, "function": -10.015923, "functionname": -10.015923, "gain": -10.015923, "get": -8.917311, "go": -10.015923, "goal": -9.322776, "grant": -7.936481, "hacking": -10.015923, "have": -10.015923, "he": -9.322776, "hides": -10.015923, "higher": -10.015923, "his": -10.015923, "holes": -10.015923, "host": -10.015923, "hosts": -10.015923, "id": -7.936481, "if": -9.322776, "important": -10.015923, "in": -8.406485, "infiltrate": -10.015923, "information": -10.015923, "int": -7.618028, "is": -9.322776, "is_published": -9.322776, "key": -10.015923, "knowledge": -10.015923, "last": -10.015923, "last_modified": -9.322776, "last_modified_by": -9.322776, "lastname": -9.322776, "latitude": -10.015923, "left": -10.015923, "level": -9.322776, "like": -8.629629, "linguist_package": -9.322776, "list": -9.322776, "ll": -10.015923, "longitude": -10.015923, "longtext": -10.015923, "m": -10.015923, "minutes": -9.322776, "modify_date": -10.015923, "modify_user": -10.015923, "most": -8.917311, "mr.": -9.322776, "mysql.": -8.629629, "nI": -9.322776, "nSixty": -10.015923, "nThere": -10.015923, "nYou": -10.015923, "nYour": -10.015923, "name": -10.015923, "ncover": -10.015923, "need": -10.015923, "nmany": -10.015923, "not": -8.406485, "not.": -10.015923, "now": -10.015923, "null": -8.629629, "object_ddl": -10.015923, "obstacles": -10.015923, "obvious": -10.015923, "of": -10.015923, "offer": -10.015923, "on": -7.936481, "one": -10.015923, "or": -10.015923, "oracle": -10.015923, "order": -9.322776, "ordering": -9.322776, "other": -10.015923, "out.": -10.015923, "overcome": -10.015923, "package": -9.322776, "pass": -10.015923, "password": -8.917311, "pkg_name": -9.322776, "place": -10.015923, "primary": -10.015923, "privileges": -10.015923, "procedure": -10.015923, "programmer": -10.015923, "public": -9.322776, "publish": -9.322776, "r": -7.936481, "rating_counter": -9.322776, "rating_total": -9.322776, "real": -10.015923, "related": -10.015923, "remember": -10.015923, "remove_date": -10.015923, "role": -10.015923, "rv": -10.015923, "s": -8.917311, "said": -10.015923, "select": -7.071484, "sense": -10.015923, "sensei": -10.015923, "series": -10.015923, "sifu": -10.015923, "simple": -10.015923, "site.": -8.917311, "sixty": -10.015923, "skills": -10.015923, "solution": -9.322776, "some": -9.322776, "sql": -10.015923, "state": -10.015923, "status": -10.015923, "stuff": -10.015923, "suffice.": -10.015923, "suspended": -10.015923, "suspendedtoday": -9.322776, "sysobjects": -10.015923, "system.": -10.015923, "t": -9.322776, "tXZYqS/Lokm": -10.015923, "table": -8.629629, "tag": -8.629629, "tag_index": -9.322776, "tags": -9.322776, "target=": -7.618028, "task": -10.015923, "tasks": -10.015923, "tell": -10.015923, "tests": -10.015923, "text": -10.015923, "that": -9.322776, "the": -8.406485, "their": -10.015923, "they": -10.015923, "this": -9.322776, "through": -10.015923, "timestamp": -7.376866, "timeuuid": -8.629629, "timezone": -10.015923, "title": -8.629629, "title_eng": -10.015923, "title_ru": -10.015923, "title_ua": -10.015923, "to": -6.971401, "token": -10.015923, "total_credits": -9.322776, "translog": -10.015923, "try": -10.015923, "type": -8.917311, "typename": -9.322776, "upload_date": -8.629629, "use": -8.629629, "user": -8.070013, "user_has_challenge_token": -9.322776, "user_id": -10.015923, "user_resources": -10.015923, "username": -6.614726, "username_video_index": -9.322776, "users": -9.322776, "uuid": -7.376866, "varchar": -6.103900, "video_event": -9.322776, "video_rating": -9.322776, "video_timestamp": -9.322776, "videodb": -8.629629, "videoid": -6.614726, "videoname": -8.629629, "videos": -9.322776, "view": -8.917311, "viewname": -9.322776, "visibility": -9.322776, "wants": -10.015923, "was": -10.015923, "waspy": -10.015923, "waspy@owasp.sifu": -10.015923, "web": -10.015923, "were": -10.015923, "where": -8.224164, "who_called_me": -10.015923, "will": -9.322776, "x": -9.322776, "xwRbrVQtPA": -10.015923, "y": -9.322776, "yOwAq.": -10.015923, "you": -8.406485, "your": -9.322776, "zFMwcxO": -10.015923, "zip": -10.015923, "zipcodes": -10.015923, "{": -9.322776, "}": -9.322776, }, "SQLPL": map[string]float64{ "!": -4.818263, "#SET": -6.204558, "(": -2.985682, ")": -2.985682, "*": -6.204558, "+": -4.412798, ",": -3.314186, "-": -5.105945, "/": -6.204558, ":": -6.204558, ";": -2.197225, "<": -5.511411, "=": -3.113515, ">": -4.595120, "@": -6.204558, "ATOMIC": -5.511411, "BEGIN": -5.511411, "CHAR": -5.511411, "CHECK_HIREDATE": -6.204558, "COMM_AMOUNT": -5.511411, "COMM_INCR": -4.818263, "COMM_PAID": -4.818263, "COUNT": -4.595120, "CREATE": -5.511411, "DATA": -6.204558, "DEC": -5.105945, "DECLARE": -5.105945, "DEFAULT": -5.105945, "DEPTNO": -6.204558, "DO": -5.511411, "DROP": -5.511411, "EMPLOYEE": -5.511411, "END": -6.204558, "END@": -6.204558, "FOUND": -6.204558, "FROM": -6.204558, "FUNCTION": -5.511411, "IF": -6.204558, "INSERT": -6.204558, "INT": -5.511411, "INTO": -6.204558, "L": -6.204558, "LANGUAGE": -6.204558, "MAX_COMM": -5.511411, "MESSAGE_TEXT": -5.511411, "N": -6.204558, "NOT": -6.204558, "READS": -6.204558, "REMAINDER": -5.105945, "RETURN": -6.204558, "RETURNS": -6.204558, "RTRIM": -6.204558, "SALARY": -4.818263, "SELECT": -6.204558, "SET": -4.258648, "SIGNAL": -6.204558, "SQL": -5.511411, "SQLCODE": -5.511411, "SQLSTATE": -5.511411, "SUM": -6.204558, "TABLE": -5.511411, "TDEPT": -5.105945, "TERMINATOR": -6.204558, "THEN": -6.204558, "VALUES": -6.204558, "WHILE": -5.105945, "_out": -4.412798, "active_blocks_out": -5.511411, "allocate": -6.204558, "and": -6.204558, "as": -5.511411, "associate": -6.204558, "before": -6.204558, "begin": -5.105945, "call": -6.204558, "card_out": -5.511411, "cascade": -6.204558, "check_reorg_tables": -6.204558, "close": -6.204558, "concat": -4.818263, "continue": -6.204558, "create": -4.818263, "current": -5.105945, "cursor": -6.204558, "cursor_end": -5.105945, "date": -6.204558, "db": -6.204558, "declare": -3.314186, "default": -6.204558, "do": -5.511411, "each": -6.204558, "end": -4.007333, "execute": -6.204558, "f": -4.412798, "fetch": -6.204558, "for": -4.595120, "fpages_out": -5.511411, "from": -5.511411, "handler": -6.204558, "if": -4.412798, "immediate": -6.204558, "in": -5.511411, "insert": -6.204558, "integer": -3.565500, "into": -6.204558, "line": -6.204558, "line.tabname": -6.204558, "line.tabschema": -6.204558, "loc": -5.105945, "locator": -6.204558, "mode": -6.204558, "mycursor": -4.818263, "n.hiredate": -6.204558, "new": -6.204558, "no": -6.204558, "npages_out": -5.511411, "nr_ok": -4.818263, "nr_tables": -4.818263, "on": -6.204558, "open": -6.204558, "out": -5.105945, "overflow_out": -5.511411, "procedure": -4.818263, "referencing": -6.204558, "reorg_out": -5.105945, "reorgchk_tb_stats": -5.511411, "repeat": -5.511411, "result": -5.511411, "result_set_locator": -6.204558, "row": -6.204558, "rtrim": -6.204558, "runstats": -6.204558, "schema_out": -5.511411, "seconds": -6.204558, "select": -6.204558, "set": -3.719651, "signal": -6.204558, "sleep": -6.204558, "sleeptime": -5.511411, "smallint": -6.204558, "sql": -6.204558, "stmt": -5.105945, "syscat.tables": -6.204558, "table_out": -5.511411, "tabname": -6.204558, "tabschema": -5.511411, "then": -5.105945, "timestamp": -5.105945, "trigger": -6.204558, "tsize_out": -5.511411, "type": -6.204558, "until": -6.204558, "v_reorg_counter": -4.818263, "v_schema": -5.511411, "varchar": -4.595120, "varying": -6.204558, "wait_until": -5.105945, "where": -6.204558, "while": -5.511411, "with": -6.204558, "||": -6.204558, }, "SRecode Template": map[string]float64{ "!": -4.941642, "(": -4.941642, ")": -4.941642, "-": -2.744418, ":": -3.149883, ";": -2.108429, ">": -4.941642, "?": -4.248495, "AUTHOR": -4.941642, "BAD": -4.941642, "C": -4.941642, "Copyright": -4.941642, "DOLLAR": -4.941642, "EXPAT": -4.941642, "EXPLETIVE": -4.941642, "GPL": -4.248495, "GitHub": -4.941642, "LICENSE": -4.941642, "Not": -4.941642, "PEOPLE": -4.941642, "Stallman": -4.941642, "TUO": -4.941642, "WAN": -4.941642, "WE": -4.941642, "YEAR": -4.941642, "YOU": -4.941642, "YUO": -4.941642, "ass.": -4.941642, "bite": -4.941642, "can": -4.941642, "comment_end": -4.941642, "comment_prefix": -2.995732, "comment_start": -4.941642, "context": -4.941642, "copyright": -4.941642, "copyrighted": -4.941642, "end": -4.941642, "file": -4.248495, "filecomment": -4.941642, "license": -4.941642, "linguist.srt": -4.941642, "metal": -4.941642, "mode": -4.941642, "my": -4.941642, "set": -3.555348, "shiny": -4.941642, "template": -4.248495, "time": -4.941642, "user": -4.941642, "whatsoever.": -4.941642, "{": -1.763589, "}": -1.763589, }, "STON": map[string]float64{ "#a": -5.484797, "#b": -5.484797, "#beta": -5.484797, "#boolean": -5.484797, "#bytes": -5.484797, "#code": -5.484797, "#color": -5.484797, "#contentLength": -5.484797, "#contentType": -5.484797, "#corner": -5.484797, "#created": -5.484797, "#description": -5.484797, "#encoder": -5.484797, "#entity": -5.484797, "#float": -5.484797, "#green": -5.484797, "#headers": -4.791650, "#integer": -5.484797, "#main": -5.484797, "#medium": -5.484797, "#modified": -5.484797, "#origin": -5.484797, "#parameters": -5.484797, "#reason": -5.484797, "#statusLine": -5.484797, "#string": -5.484797, "#sub": -5.484797, "#tags": -5.484797, "#two": -5.484797, "#version": -5.484797, ",": -1.325914, "-": -4.791650, ":": -1.295142, "</body>": -5.484797, "</head>": -5.484797, "</html>": -5.484797, "</p>": -5.484797, "</title>": -5.484797, "<body>": -5.484797, "<head>": -5.484797, "<html>": -5.484797, "<p>": -5.484797, "<title>": -5.484797, "ByteArray": -5.484797, "DateAndTime": -4.791650, "Encoder": -5.484797, "Point": -4.791650, "Rectangle": -5.484797, "TestDomainObject": -5.484797, "ZnHeaders": -5.484797, "ZnMimeType": -5.484797, "ZnMultiValueDictionary": -5.484797, "ZnResponse": -5.484797, "ZnStatusLine": -5.484797, "ZnStringEntity": -5.484797, "ZnUTF": -5.484797, "[": -3.086902, "]": -3.086902, "false": -5.484797, "{": -2.776747, "}": -2.776747, }, "Sage": map[string]float64{ "!": -4.966335, "(": -2.118523, ")": -2.118523, "*": -6.352629, "*cs": -4.966335, "+": -4.050044, ",": -4.050044, "-": -4.406719, ".coefficient": -6.352629, ".degree": -5.659482, "/": -5.659482, ":": -2.886893, "<davidabian>": -6.352629, "<http://www.gnu.org/licenses/>": -6.352629, "=": -2.460809, ">": -5.254017, "False": -4.966335, "GF": -4.966335, "K": -4.560870, "None": -5.659482, "V": -5.659482, "VectorSpace": -6.352629, "[": -3.020425, "]": -3.020425, "^": -4.273188, "and": -6.352629, "com": -6.352629, "completar": -6.352629, "cs": -3.787680, "cs*xs": -5.254017, "cs.append": -6.352629, "davidabian": -6.352629, "def": -4.406719, "else": -6.352629, "excluirReducibles": -6.352629, "for": -3.787680, "fp": -5.254017, "grado": -3.519416, "grado*": -6.352629, "grado.is_integer": -5.254017, "grado.round": -5.254017, "i": -4.050044, "if": -3.644579, "in": -3.787680, "irreds": -4.966335, "len": -5.254017, "list": -6.352629, "lpols": -3.713572, "mostrar": -4.273188, "not": -5.254017, "p": -3.644579, "p.expand": -6.352629, "p.factor_list": -6.352629, "pol": -4.273188, "polVec": -5.659482, "pols": -6.352629, "polsMismoGrado": -6.352629, "polsNoCtes": -6.352629, "print": -4.966335, "random_vector": -6.352629, "range": -5.254017, "return": -4.406719, "reversed": -6.352629, "var": -4.406719, "vec": -5.254017, "vec*xs": -6.352629, "vecPol": -6.352629, "vector": -4.560870, "x": -3.519416, "xs": -4.966335, }, "SaltStack": map[string]float64{ "(": -4.658711, ")": -4.658711, "-": -1.984562, "//ceph/apt.list": -5.351858, "//ceph/eval.conf": -5.351858, "/ceph": -5.351858, "/etc/apt/sources.list.d/ceph.list": -4.658711, "/etc/ceph/ceph.conf": -5.351858, "/etc/eval.conf": -5.351858, "/var/lib/ceph": -5.351858, "/var/lib/ceph/": -5.351858, ":": -1.132350, "False": -3.965564, "True": -5.351858, "[": -4.658711, "]": -4.658711, "a": -5.351858, "base": -5.351858, "ceph": -3.965564, "ceph.extras": -5.351858, "cmd": -5.351858, "cmd.run": -5.351858, "coffeestats": -5.351858, "dead": -5.351858, "dir.split": -4.658711, "enable": -5.351858, "file": -4.658711, "file.directory": -5.351858, "file.managed": -4.658711, "full_name": -3.965564, "gimp": -5.351858, "gpg": -5.351858, "include": -5.351858, "install_flags": -3.965564, "installer": -3.965564, "jinja": -4.658711, "key": -4.658711, "light": -5.351858, "makedirs": -5.351858, "mds": -5.351858, "name": -5.351858, "names": -5.351858, "openoffice": -5.351858, "packages": -5.351858, "pkg": -4.658711, "pkg.installed": -4.658711, "reboot": -4.253246, "refresh": -5.351858, "repo": -4.658711, "require": -3.965564, "salt": -4.658711, "service": -5.351858, "source": -4.658711, "template": -4.658711, "true": -5.351858, "truecrypt": -5.351858, "uninstall_flags": -3.965564, "uninstaller": -3.965564, "unless": -5.351858, "win": -5.351858, "{": -3.049273, "}": -3.965564, }, "Sass": map[string]float64{ "#": -3.784190, "$": -1.838279, "%": -3.784190, "(": -3.784190, ")": -3.784190, ",": -3.784190, "-": -2.685577, ".border": -3.784190, ".content": -3.784190, "/": -3.091042, ":": -1.838279, "bbfce": -3.784190, "blue": -2.397895, "border": -3.091042, "color": -2.685577, "darken": -3.784190, "margin": -2.397895, "navigation": -3.784190, "padding": -3.784190, "px": -3.784190, }, "Scala": map[string]float64{ "!": -5.382199, "#": -6.075346, "%": -5.669881, "(": -2.534387, ")": -2.534387, "*random.toInt": -6.768493, "+": -2.876673, ",": -3.723971, "-": -5.382199, ".capitalize": -6.768493, ".currentRef.project": -6.768493, ".foreach": -6.768493, ".iterator": -6.768493, "/": -5.669881, "//": -3.549617, "/bin/sh": -6.075346, ":": -2.641359, "<": -6.768493, "<base>": -6.768493, "<build-root>": -6.768493, "=": -2.325842, ">": -3.590439, "Application": -6.768493, "Array": -6.768493, "Beers": -6.768493, "CanAwait": -6.768493, "Compile": -5.382199, "Credentials": -6.075346, "DateFormat.SHORT": -6.075346, "DateFormat.getDateTimeInstance": -6.768493, "Elapsed": -6.768493, "Exception": -6.075346, "ExecutionContext": -6.768493, "ExecutionContext.Implicits.global": -6.768493, "ExecutionException": -6.768493, "Failure": -6.075346, "Future": -5.159055, "Future.failed": -6.768493, "HelloWorld": -6.768493, "Hi": -4.465908, "Int": -4.370598, "Iteration": -5.159055, "Iterator": -6.075346, "Level.Debug": -6.768493, "OnCompleteRunnable": -6.768493, "Path.userHome": -6.768493, "Project.extract": -6.768493, "SHEBANG#!sh": -6.075346, "Scala": -6.768493, "Seq": -5.669881, "Some": -4.976734, "String": -5.159055, "Success": -6.075346, "System.getProperty": -6.768493, "T": -4.689052, "Test": -5.669881, "ThisBuild": -6.768493, "Thread.sleep": -6.075346, "TimeoutException": -6.768493, "Try": -6.768493, "Unit": -6.768493, "UpdateLogging.Full": -6.768493, "Welcome": -6.768493, "[": -4.370598, "]": -4.370598, "_": -6.075346, "a": -6.075346, "args": -6.768493, "artifactClassifier": -6.768493, "at": -5.669881, "attempts": -6.768493, "attempts.foldLeft": -6.768493, "baseDirectory": -6.768493, "beers": -5.669881, "block": -4.689052, "blocking": -5.669881, "bottles": -5.669881, "case": -4.689052, "console": -6.768493, "credentials": -6.075346, "crossPaths": -6.768493, "def": -4.465908, "duration._": -6.768493, "else": -6.075346, "exec": -6.075346, "extends": -6.768493, "f": -5.382199, "failed": -6.075346, "fallbackTo": -6.768493, "false": -4.976734, "file": -5.669881, "fork": -6.075346, "headOfSong": -6.768493, "i": -4.571269, "i.toString": -5.159055, "if": -6.075346, "implicit": -6.075346, "import": -4.571269, "in": -4.465908, "initialCommands": -6.075346, "ivyLoggingLevel": -6.768493, "java.lang.Exception": -6.768493, "java.text.DateFormat": -6.768493, "javaHome": -6.768493, "javaOptions": -6.768493, "javacOptions": -6.768493, "libosmVersion": -6.768493, "libraryDependencies": -5.669881, "main": -6.768493, "mainClass": -6.075346, "map": -6.768493, "match": -6.075346, "math.random": -6.768493, "maxErrors": -6.768493, "n": -5.669881, "name": -6.768493, "new": -6.768493, "nextQty": -6.075346, "node": -6.768493, "ns": -6.768493, "ns.map": -6.768493, "object": -5.669881, "offline": -6.768493, "onComplete": -6.768493, "organization": -6.768493, "packageBin": -6.768493, "packageDoc": -6.075346, "parallelExecution": -6.075346, "persistLogLevel": -6.768493, "pollInterval": -6.768493, "println": -4.689052, "publishArtifact": -6.075346, "publishTo": -6.768493, "qty": -4.283587, "r": -6.768493, "r.toString": -6.768493, "rb": -5.669881, "refrain": -6.075346, "resolvers": -6.075346, "retrieveManaged": -6.768493, "retry": -5.669881, "ri": -6.075346, "run": -6.768493, "s": -6.075346, "s.toString": -6.768493, "scala": -6.075346, "scala.concurrent.": -6.768493, "scala.concurrent.Fut": -6.768493, "scala.concurrent.Future": -6.768493, "scala.concurrent._": -6.768493, "scala.language.postfixOps": -6.768493, "scala.util.": -6.768493, "scala.util._": -6.768493, "scalaHome": -6.768493, "scalaVersion": -6.768493, "scalacOptions": -6.768493, "shellPrompt": -6.075346, "showSuccess": -6.768493, "showTiming": -6.768493, "sing": -5.669881, "song": -5.669881, "state": -5.669881, "t": -6.768493, "t.toString": -6.768493, "takeOne": -6.075346, "the": -6.768493, "timingFormat": -6.768493, "to": -5.669881, "toList": -6.768493, "traceLevel": -6.075346, "true": -5.159055, "unmanagedJars": -6.768493, "ure": -6.768493, "val": -4.976734, "version": -6.768493, "watchSources": -6.768493, "worksheet": -6.768493, "x": -5.669881, "{": -3.632999, "|": -3.824054, "}": -3.632999, }, "Scaml": map[string]float64{ "!": -1.791759, "%": -1.791759, ",": -1.791759, "Hello": -1.791759, "World": -1.791759, "p": -1.791759, }, "Scheme": map[string]float64{ "!": -4.849096, "#": -6.523073, "#f": -6.523073, "(": -2.078463, ")": -2.078463, "*": -7.216220, "+": -4.788472, "-": -2.851000, ".": -6.368922, "...": -5.829926, "/": -6.235391, ":": -6.523073, ";": -0.845748, "<": -6.928538, "=": -7.216220, ">": -6.012247, "?": -7.621685, "\\": -6.523073, "_": -6.368922, "a": -5.270310, "a*": -5.481619, "a.pos": -6.523073, "a.radius": -6.705394, "a.vel": -8.314832, "agave": -6.928538, "ammo": -6.235391, "angle": -6.523073, "append": -6.705394, "apply": -7.216220, "args": -7.621685, "asteroid": -5.675775, "asteroids": -5.606782, "b": -7.621685, "b.birth": -8.314832, "b.pos": -8.314832, "background": -8.314832, "base": -7.621685, "basic": -7.621685, "be": -8.314832, "begin": -7.621685, "birth": -8.314832, "bits": -8.314832, "buffered": -8.314832, "bullet": -5.542243, "bullet.birth": -8.314832, "bullet.pos": -7.621685, "bullet.vel": -8.314832, "bullets": -6.368922, "c": -6.928538, "case": -7.216220, "char": -8.314832, "color": -7.621685, "compat": -8.314832, "comprehensions": -8.314832, "cond": -7.621685, "cons": -8.314832, "contact": -7.621685, "cos": -8.314832, "current": -5.606782, "d": -8.314832, "default": -8.314832, "define": -4.759484, "degrees": -7.621685, "dharmalab": -7.621685, "display": -6.928538, "distance": -7.216220, "dt": -6.368922, "e": -5.749883, "e*": -7.621685, "each": -6.368922, "eager": -8.314832, "ec": -6.523073, "else": -7.621685, "excursion": -6.705394, "export": -7.621685, "exported": -8.314832, "fields": -6.928538, "filter": -6.928538, "for": -6.368922, "force": -8.314832, "geometry": -8.314832, "get": -7.216220, "gl": -5.829926, "glColor": -6.705394, "glRotated": -7.621685, "glTranslated": -8.314832, "glamour": -7.621685, "glu": -8.314832, "glut": -7.621685, "glutIdleFunc": -8.314832, "glutKeyboardFunc": -8.314832, "glutMainLoop": -8.314832, "glutPostRedisplay": -8.314832, "glutWireCone": -8.314832, "glutWireCube": -8.314832, "glutWireSphere": -7.216220, "h": -6.523073, "height": -6.235391, "i": -6.523073, "if": -7.621685, "import": -7.621685, "in": -5.675775, "inexact": -5.542243, "initialize": -8.314832, "integer": -5.095956, "is": -6.235391, "key": -7.621685, "lambda": -5.370393, "lambda*": -6.928538, "lambdastar": -8.314832, "last": -7.216220, "let": -7.216220, "letrec": -7.621685, "level": -6.705394, "library": -7.621685, "libs": -8.314832, "lifetime": -8.314832, "list": -6.235391, "lists": -8.314832, "make": -5.916937, "map": -6.928538, "math": -8.314832, "matrix": -6.705394, "micro": -8.314832, "milli": -8.314832, "misc": -8.314832, "mod": -7.621685, "more": -6.705394, "mutable": -5.675775, "nanosecond": -8.314832, "nanoseconds": -7.621685, "newline": -7.621685, "not": -8.314832, "null": -7.621685, "number": -7.216220, "objs": -7.621685, "of": -7.216220, "only": -8.314832, "p": -6.523073, "pack": -5.916937, "pack.pos": -6.928538, "pack.vel": -8.314832, "par": -6.523073, "par.birth": -8.314832, "par.lifetime": -8.314832, "par.pos": -7.621685, "par.vel": -8.314832, "particle": -6.235391, "particles": -5.916937, "pi": -7.621685, "polyvariadic": -7.621685, "pos": -6.368922, "posary": -7.621685, "procedure": -8.314832, "pt": -4.464685, "pt*n": -6.012247, "radians": -6.235391, "radius": -7.621685, "random": -5.018995, "randomize": -8.314832, "rec": -5.916937, "record": -6.705394, "records": -8.314832, "ref": -7.216220, "rename": -8.314832, "reshape": -8.314832, "rest": -6.523073, "rnrs": -7.621685, "rules": -6.928538, "s": -6.705394, "say": -6.117608, "score": -6.928538, "second": -8.314832, "seconds": -5.829926, "set": -5.370393, "ship": -6.705394, "ship.pos": -6.235391, "ship.theta": -6.012247, "ship.vel": -6.705394, "ships": -8.314832, "should": -8.314832, "sin": -8.314832, "size": -8.314832, "some": -6.523073, "source": -7.621685, "space": -8.314832, "spaceship": -6.705394, "starting": -7.216220, "step": -8.314832, "surfage": -6.928538, "syntax": -6.235391, "system": -7.621685, "theta": -8.314832, "time": -5.136778, "title": -8.314832, "translate": -6.523073, "type": -6.705394, "update": -7.621685, "utilities": -8.314832, "val": -7.216220, "vector": -6.523073, "vel": -6.928538, "w": -8.314832, "when": -6.705394, "width": -6.235391, "window": -7.621685, "wrap": -6.928538, "x": -6.012247, "y": -7.216220, }, "Scilab": map[string]float64{ "$": -4.442651, "%": -3.056357, "(": -2.496741, ")": -2.496741, "+": -2.833213, ",": -2.833213, "-": -4.442651, ":": -4.442651, ";": -2.496741, "<scilab.support@scilab.org>": -4.442651, "=": -2.140066, "[": -4.442651, "]": -4.442651, "a": -3.056357, "assert_checkequal": -4.442651, "assert_checkfalse": -4.442651, "b": -3.056357, "cos": -4.442651, "cosh": -4.442651, "d": -3.749504, "disp": -4.442651, "e": -3.344039, "e.field": -4.442651, "else": -4.442651, "end": -4.442651, "endfunction": -4.442651, "f": -3.749504, "function": -4.442651, "home": -4.442651, "if": -4.442651, "myfunction": -4.442651, "myvar": -4.442651, "pi": -3.344039, "return": -4.442651, "then": -4.442651, }, "ShaderLab": map[string]float64{ "!": -6.317165, "#define": -5.624018, "#elif": -5.806339, "#else": -6.317165, "#endif": -4.471338, "#if": -4.471338, "#include": -4.850828, "#pragma": -3.832258, "&&": -7.415777, "(": -2.670845, ")": -2.670845, "*": -4.083572, "+": -4.930870, ",": -2.984960, "-": -4.371255, ".a": -7.415777, ".r": -7.415777, ".rgb": -6.029483, ".rgba": -7.415777, ".xxx": -5.624018, ".xxxx": -6.722630, "/": -5.336335, ":": -5.113192, ";": -2.445964, "<": -6.029483, "=": -2.715297, "AcesLuminance": -7.415777, "Always": -6.317165, "ApplyLut": -6.317165, "AttributesDefault": -6.722630, "BLOOM": -6.722630, "BLOOM_LENS_DIRT": -6.722630, "CGINCLUDE": -6.317165, "CGPROGRAM": -5.113192, "CHROMATIC_ABERRATION": -6.029483, "COLOR_GRADING": -6.722630, "COLOR_GRADING_LOG_VIEW": -6.722630, "ComputeDistance": -6.317165, "ComputeFog": -6.317165, "Cull": -6.317165, "D": -4.048481, "DEPTH_OF_FIELD": -5.624018, "DEPTH_OF_FIELD_COC_VIEW": -6.722630, "DITHERING": -7.415777, "D_float": -7.415777, "Depth": -6.722630, "Dlod": -6.317165, "ENDCG": -4.850828, "EYE_ADAPTATION": -6.722630, "FOG_EXP": -6.317165, "FOG_LINEAR": -6.722630, "FallBack": -7.415777, "FragBlur": -6.029483, "FragFog": -6.722630, "FragFogExcludeSkybox": -6.722630, "FragPostBlur": -7.415777, "FragPrefilter": -6.722630, "FragUber": -6.722630, "GRAIN": -7.415777, "GammaToLinearSpace": -6.317165, "KERNEL_LARGE": -7.415777, "KERNEL_MEDIUM": -7.415777, "KERNEL_SMALL": -7.415777, "KERNEL_VERYLARGE": -7.415777, "Linear": -6.722630, "LinearEyeDepth": -7.415777, "LinearToGammaSpace": -6.722630, "LinearToLogC": -6.722630, "Off": -5.469867, "PREFILTER_TAA": -7.415777, "Pass": -5.113192, "Properties": -6.317165, "SAMPLE_DEPTH_TEXTURE": -6.317165, "SKYBOX_THREASHOLD_VALUE": -6.722630, "SV_POSITION": -6.722630, "SV_Target": -6.317165, "Shader": -6.317165, "SubShader": -6.317165, "TEXCOORD": -5.806339, "UNITY_COLORSPACE_GAMMA": -5.624018, "UNITY_UV_STARTS_AT_TOP": -7.415777, "USER_LUT": -6.722630, "UberSecondPass": -7.415777, "UnityObjectToClipPos": -6.722630, "UnityStereoScreenSpaceUVAdjust": -5.806339, "UpsampleFilter": -7.415777, "VIGNETTE_CLASSIC": -6.722630, "VIGNETTE_MASKED": -6.722630, "VIGNETTE_ROUND": -6.722630, "Varyings": -5.806339, "VaryingsFlipped": -6.029483, "VertDOF": -5.469867, "VertFog": -6.317165, "VertUber": -6.722630, "ZTest": -6.317165, "ZWrite": -6.317165, "_": -7.415777, "_AutoExposure": -6.317165, "_BloomTex": -6.317165, "_BloomTex_TexelSize": -7.415777, "_BloomTex_TexelSize.xy": -7.415777, "_Bloom_DirtIntensity": -6.722630, "_Bloom_DirtTex": -6.317165, "_Bloom_Settings": -7.415777, "_Bloom_Settings.x": -7.415777, "_Bloom_Settings.y": -7.415777, "_CameraDepthTexture": -5.806339, "_ChromaticAberration_Amount": -6.722630, "_ChromaticAberration_Spectrum": -6.317165, "_Density": -6.317165, "_DepthOfFieldParams": -7.415777, "_DepthOfFieldParams.x": -7.415777, "_DepthOfFieldParams.y": -7.415777, "_DepthOfFieldTex": -6.029483, "_DepthOfFieldTex_TexelSize": -7.415777, "_DitheringTex": -7.415777, "_End": -6.317165, "_ExposureEV": -6.317165, "_FogColor": -6.317165, "_GrainTex": -7.415777, "_LogLut": -6.317165, "_LogLut_Params": -6.722630, "_MainTex": -5.469867, "_MainTex_ST": -5.806339, "_MainTex_TexelSize.y": -6.722630, "_MainTex_TexelSize.zw": -7.415777, "_ProjectionParams.y": -7.415777, "_ProjectionParams.z": -7.415777, "_ScreenParams.x": -7.415777, "_ScreenParams.y": -7.415777, "_Start": -6.029483, "_UserLut": -6.029483, "_UserLut_Params": -7.415777, "_UserLut_Params.w": -7.415777, "_UserLut_Params.xyz": -6.722630, "_Vignette_Center": -6.317165, "_Vignette_Color": -6.029483, "_Vignette_Mask": -6.317165, "_Vignette_Opacity": -6.722630, "_Vignette_Settings": -7.415777, "_Vignette_Settings.x": -6.722630, "_Vignette_Settings.y": -6.722630, "_Vignette_Settings.z": -7.415777, "__": -4.850828, "abs": -6.722630, "autoExposure": -6.029483, "bloom": -6.317165, "clamp": -7.415777, "coc": -6.029483, "color": -3.726898, "colorGraded": -5.624018, "colorLogC": -6.722630, "coords": -6.029483, "d": -4.850828, "d.x": -7.415777, "delta": -6.317165, "depth": -4.776720, "diff": -6.317165, "dirt": -6.722630, "dist": -5.469867, "dof": -6.317165, "dof.a": -7.415777, "dof.rgb": -7.415777, "dofDelta": -6.722630, "dofDelta.y": -6.722630, "dofPos": -6.317165, "dofPos.y": -6.722630, "dofSum": -6.317165, "dot": -6.317165, "end": -6.722630, "exclude_renderers": -7.415777, "exp": -6.722630, "filter": -6.029483, "filterSum": -6.029483, "float": -3.860429, "fog": -4.930870, "for": -7.415777, "fragment": -5.113192, "half": -3.544576, "i": -5.469867, "i.uv": -5.806339, "i.uvFlipped": -7.415777, "i.uvFlippedSPR": -6.317165, "i.uvSPR": -7.415777, "if": -6.722630, "int": -6.317165, "length": -7.415777, "lerp": -5.218552, "multi_compile": -4.850828, "new_color": -6.722630, "o": -6.029483, "o.pos": -7.415777, "o.uv": -6.722630, "o.uvFlipped": -6.722630, "o.uvFlipped.y": -6.722630, "o.uvFlippedSPR": -7.415777, "o.uvSPR": -7.415777, "o.vertex": -7.415777, "pos": -5.806339, "pow": -6.317165, "return": -5.469867, "rgb": -5.469867, "s": -6.722630, "sampler": -5.113192, "samples": -5.806339, "saturate": -5.218552, "sdof": -6.722630, "skybox": -6.722630, "src": -7.415777, "struct": -6.722630, "sum": -6.317165, "t": -6.722630, "target": -6.722630, "tex": -5.017882, "uv": -4.850828, "uvFlipped": -7.415777, "uvFlippedSPR": -7.415777, "uvSPR": -7.415777, "v": -6.722630, "v.texcoord": -7.415777, "v.texcoord.xy": -6.317165, "v.vertex": -6.722630, "vertex": -5.017882, "vfactor": -5.624018, "x": -7.415777, "z": -6.029483, "{": -3.338240, "}": -3.338240, }, "Shell": map[string]float64{ "!": -5.265223, "#": -5.308708, "#############################################################################": -6.282157, "#*": -8.016758, "#Append": -8.422223, "#CDPATH": -8.422223, "#Erase": -8.422223, "#Immediately": -8.422223, "#Number": -8.422223, "#Share": -8.422223, "#Where": -8.422223, "#fils": -8.422223, "#function": -8.422223, "#preproc": -9.115370, "#residual_args": -9.115370, "#scalac_args": -9.115370, "#sec": -9.115370, "#sudo": -8.422223, "#try": -9.115370, "$": -3.445489, "%": -7.505932, "&": -7.505932, "&&": -4.972235, "(": -4.033966, ")": -3.777832, "*": -6.224998, "*.vac": -9.115370, "*eqn*": -9.115370, "*grap*": -9.115370, "*pic*": -9.115370, "*tbl*": -9.115370, "+": -3.234837, ",": -7.169460, "-": -3.089504, ".": -8.016758, ".*": -9.115370, "..": -8.016758, "./": -9.115370, ".jobs.cron": -9.115370, ".sbt_completion.sh": -8.422223, ".vac": -9.115370, "/": -6.282157, "/*": -8.422223, "/.bashrc": -9.115370, "/.ivy": -9.115370, "/.sbt/": -8.422223, "/.sbt/boot": -9.115370, "/.zsh_history": -8.422223, "//LVgGf/suzAzqkJt": -9.115370, "//github.com/bumptech/stud.git": -9.115370, "/AH": -9.115370, "/DmKjAW": -9.115370, "/E": -9.115370, "/EAD": -9.115370, "/F": -9.115370, "/FOanhPUBnXKxp/": -9.115370, "/Gc": -9.115370, "/HrlJ": -9.115370, "/HzX": -9.115370, "/IF": -9.115370, "/Iu": -9.115370, "/JOyrWKjy": -9.115370, "/JiOMc": -9.115370, "/KinLCSvjRNBVzMUv": -9.115370, "/KsQvfDKcB": -9.115370, "/MMBpSNxdB": -9.115370, "/NgJB": -9.115370, "/PrAI": -9.115370, "/QK": -9.115370, "/QOer": -9.115370, "/RyBXI": -9.115370, "/ShZrj": -9.115370, "/TPp": -9.115370, "/Td": -9.115370, "/WjlMrQ": -9.115370, "/X": -9.115370, "/Y": -9.115370, "/YKY": -9.115370, "/YxtQjCzJqxJPmqdxNgWXpJsEsTlV": -9.115370, "/Z": -9.115370, "/ZeE": -9.115370, "/aH": -9.115370, "/bImU": -9.115370, "/bin": -7.323611, "/bin/bash": -7.323611, "/bin/page": -8.422223, "/bin/php": -9.115370, "/bin/rc": -8.422223, "/bin/sh": -8.016758, "/bin/test": -8.016758, "/bin/zsh": -8.422223, "/bjtOcWm": -9.115370, "/cB": -9.115370, "/cv": -9.115370, "/dev/null": -6.918146, "/fh": -9.115370, "/hRHaWEezzw": -9.115370, "/hV": -9.115370, "/iPbNpFdJ": -9.115370, "/jY": -9.115370, "/kduASSb": -9.115370, "/kj": -9.115370, "/lib/php.ini": -9.115370, "/lib/vac/": -8.422223, "/lnJ": -9.115370, "/m": -9.115370, "/mnt/wiki": -9.115370, "/mnt/wsys/acme": -9.115370, "/n/": -9.115370, "/n/dump": -8.016758, "/n/juke": -9.115370, "/n/kfs": -9.115370, "/n/other": -9.115370, "/n/snap": -9.115370, "/n/sources": -9.115370, "/n/sourcesdump": -9.115370, "/n/sourcessnap": -9.115370, "/ntu": -9.115370, "/o": -9.115370, "/opt/local/bin": -8.422223, "/opt/local/sbin": -8.422223, "/opt/mysql/current/bin": -7.729076, "/q": -9.115370, "/qVNwhTz": -9.115370, "/qoVc": -9.115370, "/s": -8.422223, "/srv/boot": -7.505932, "/srv/il": -9.115370, "/srv/kfs": -8.422223, "/srv/sources": -8.422223, "/sys/man": -9.115370, "/sys/man/fonts": -9.115370, "/unez": -9.115370, "/usr": -9.115370, "/usr/bin": -7.323611, "/usr/bin/clear": -8.422223, "/usr/bin/env": -7.323611, "/usr/ccs/bin": -7.729076, "/usr/local/bin": -7.729076, "/usr/local/man": -8.422223, "/usr/local/php/inst/php": -9.115370, "/usr/local/php/phpfarm/inst/php": -9.115370, "/usr/local/sbin": -7.729076, "/usr/openwin/bin": -7.729076, "/usr/sbin": -7.729076, "/usr/sfw/bin": -7.729076, "/usr/share/man": -8.422223, "/usr/xpg": -7.729076, "/vIyVmh": -9.115370, "/w": -9.115370, "/wccm": -9.115370, "/y": -9.115370, "0": -6.717475, "1": -6.119638, "13": -9.115370, "2": -6.119638, "210": -9.115370, "28": -9.115370, "29": -9.115370, "3": -8.016758, "4": -9.115370, "7": -8.422223, "9": -8.422223, ":": -5.072319, ";": -4.084932, "<": -8.016758, "<$type>": -9.115370, "</body>": -9.115370, "</dev/null>": -9.115370, "</dev/null}>": -9.115370, "</html>": -9.115370, "</pre>": -7.729076, "<EOM>": -9.115370, "<a>": -9.115370, "<body>": -9.115370, "<danielmicay@gmail.com>": -9.115370, "<html>": -9.115370, "<integer>": -9.115370, "<path>": -7.323611, "<paulp@typesafe.com>": -9.115370, "<port>": -9.115370, "<pre>": -7.729076, "<version>": -8.016758, "<{echo>": -9.115370, "=": -3.442047, ">": -6.024328, "?": -8.016758, "@": -6.918146, "A": -5.819533, "AALbK": -9.115370, "AAmD": -9.115370, "ABDLgFvC": -9.115370, "ACcZnREtHKno/X": -9.115370, "ACnQHQpiWITuJddA": -9.115370, "AEFQUEUe": -9.115370, "AEyz": -9.115370, "AFoxyZJjLuj": -9.115370, "AGPjqrm": -9.115370, "AGYxFjJr": -9.115370, "AIjZxXeciFHOXQvsGWdNDpp": -9.115370, "AKbyaUnNhOLjylwxqL": -9.115370, "AMnYt": -9.115370, "ANSI": -8.422223, "APP_BASE_NAME": -8.422223, "APP_HOME": -8.422223, "APP_HOME/gradle/wrapper/gradle": -9.115370, "APP_NAME": -9.115370, "AQCzLaW": -9.115370, "AR": -9.115370, "ASY": -9.115370, "AT": -9.115370, "ATB": -9.115370, "ATz": -9.115370, "AUcKXCkr": -9.115370, "AVXz": -9.115370, "AVlJa": -9.115370, "AXEl": -9.115370, "AXRB": -9.115370, "AZ": -9.115370, "AZOe": -9.115370, "AZiOtmCfBNb": -9.115370, "Aavlyf": -9.115370, "Ab": -9.115370, "AcOdeHj": -9.115370, "AcdWUu/SzzVQtYum": -9.115370, "AcydAhAZdt/m": -9.115370, "Ad": -9.115370, "AeIy": -9.115370, "Af": -9.115370, "AiOz": -9.115370, "Ajyaoq": -9.115370, "Ak": -9.115370, "Al": -9.115370, "AlSRSgWUKumyX": -9.115370, "AmHFK": -9.115370, "AoY/": -9.115370, "ApLMwojT": -9.115370, "AqQfE": -9.115370, "As": -8.016758, "AsBgs": -9.115370, "AswW": -9.115370, "Atscj": -9.115370, "Aywzaxlyy": -9.115370, "AzDJ": -9.115370, "AzOlDoJv": -9.115370, "AzahipC": -9.115370, "Azm": -9.115370, "B": -5.819533, "B/KJIYF": -9.115370, "B/MIA": -9.115370, "B/xgD/zkG/jgG/jQGPhgDn": -9.115370, "BCYYwKcI": -9.115370, "BDDxau": -9.115370, "BE": -9.115370, "BEBIaaIeV": -9.115370, "BGnusx": -9.115370, "BGyXV": -9.115370, "BH/Ski": -9.115370, "BHCMD": -9.115370, "BJGT": -9.115370, "BLMsLKUTYclNJ": -9.115370, "BLmi": -9.115370, "BM": -9.115370, "BNAQdKzB": -9.115370, "BQEXW": -9.115370, "BRXCyPihcTQNXMFdSoMSmV": -9.115370, "BSYlfXmfqZnZ/lCZK": -9.115370, "BTUkxjyShVbMbe": -9.115370, "BUkbRc": -9.115370, "BUrS": -9.115370, "BUsMzLXIZH": -9.115370, "BWwGS": -9.115370, "BXA": -9.115370, "BZHBEWXJZSgwMAPl": -9.115370, "BaFQ": -9.115370, "BanN/IvQxxpSfwj": -9.115370, "BaxPVrf": -9.115370, "Bb": -9.115370, "Bbl": -9.115370, "BctAazUoUTPvPmdPwhtEDQ": -9.115370, "BdfFdmh": -9.115370, "BfXS": -9.115370, "BhjYA": -9.115370, "BhrQLj": -9.115370, "Bhw": -9.115370, "BiHCj": -9.115370, "BisSSeX": -9.115370, "BiwR": -9.115370, "Bj": -9.115370, "BjHfroDoZl": -9.115370, "BjadbwMRe": -9.115370, "BjguU": -9.115370, "BkjUd": -9.115370, "BkpwnYlZxvBqGGv": -9.115370, "BlgLvzcqJ": -9.115370, "BmnYJH": -9.115370, "BnN": -9.115370, "BoD": -9.115370, "BoRz": -9.115370, "BocztwT": -9.115370, "BpDgX": -9.115370, "Br": -8.422223, "Bs": -9.115370, "Btcj/spByJxKe": -9.115370, "BtmkUnMId": -9.115370, "BtveMkMQvdrK": -9.115370, "BuqE": -9.115370, "Bxv": -9.115370, "By": -9.115370, "By/HdnViVsRoB": -9.115370, "Bz": -9.115370, "Bzedg": -9.115370, "BzqCb": -9.115370, "BzqlClIqlxLnKunV": -9.115370, "C": -6.224998, "C/ML": -9.115370, "CA": -9.115370, "CAXTLDpyq": -9.115370, "CBE": -9.115370, "CFVxfwcGoE": -9.115370, "CFg": -9.115370, "CFuP": -9.115370, "CHYWE": -9.115370, "CHYiPem": -9.115370, "CJXlgeIAPF": -9.115370, "CLASSPATH": -8.016758, "CLICOLOR": -8.422223, "CNgUDc": -9.115370, "CPGyeEsOOn": -9.115370, "CR": -8.422223, "CSO": -9.115370, "CSnqXj": -9.115370, "CT/WG": -9.115370, "CU/PjfaYbx": -9.115370, "CUxKAamXwBvdR": -9.115370, "CVEkoJ": -9.115370, "CVRpWLz": -9.115370, "CVb": -9.115370, "CW": -9.115370, "CX": -9.115370, "CX/KegUQ": -9.115370, "CYGWIN*": -9.115370, "CYlQwM": -9.115370, "CZ": -8.422223, "Ca": -9.115370, "CaJPiLD": -9.115370, "Cc": -9.115370, "CcSEfmqe": -9.115370, "CcmLzieFKf": -9.115370, "CevvvKLJNI": -9.115370, "CfKmx": -9.115370, "CghdZC": -9.115370, "CgkDWs": -9.115370, "ChBl": -9.115370, "Chi": -9.115370, "CiaxvCincy": -9.115370, "CjInOUxv": -9.115370, "CjtWRGlvuz": -9.115370, "CkYUpyn": -9.115370, "Cm": -9.115370, "Cmc": -9.115370, "CmoOsja": -9.115370, "CoKKzqqHxVBs": -9.115370, "Could": -8.422223, "Cqjf": -9.115370, "CrLEM": -9.115370, "CrsquEyREn": -9.115370, "Cs": -9.115370, "CsBMXSOR": -9.115370, "CscpOPrgGIBjCI": -9.115370, "CskZIujzvXEa": -9.115370, "CuVNXnGptNSgEcqkfYvzzJcrq": -9.115370, "Cx": -9.115370, "D": -6.630463, "D*": -9.115370, "DB": -9.115370, "DBe": -9.115370, "DC": -9.115370, "DCEqqm": -9.115370, "DChV/KyC": -9.115370, "DEFAULT_JVM_OPTS": -9.115370, "DESTDIR": -9.115370, "DGrO": -9.115370, "DH": -9.115370, "DHUV": -9.115370, "DILVuW": -9.115370, "DISPLAY": -8.422223, "DJl": -9.115370, "DLRZTU": -9.115370, "DNPQN": -9.115370, "DNfvYP": -9.115370, "DOK": -9.115370, "DOxZ": -9.115370, "DQSu/hsxZC": -9.115370, "DRE": -9.115370, "DSjeFTjELofYxwZq": -9.115370, "DTObjpHNx": -9.115370, "DTWnm": -9.115370, "DU": -9.115370, "DV/eMw/pss": -9.115370, "DW": -8.422223, "DXbTc": -9.115370, "DY": -8.422223, "DYe": -9.115370, "DYuOZBZIEodzHsrDw": -9.115370, "DZXCNmwJkSKIEXCsbiQpvjq": -9.115370, "DZuw": -9.115370, "DaNv": -9.115370, "DacPOdIwSfKrE/YlRpM": -9.115370, "Darwin*": -9.115370, "DdKr": -9.115370, "DdOe": -9.115370, "De": -9.115370, "DeSbRKiQ": -9.115370, "Debug": -8.016758, "Detected": -9.115370, "DfPuSeXDuKPHsPCQ/d/wRbhc": -9.115370, "DfWunRn": -9.115370, "Dfso": -9.115370, "Dg": -9.115370, "Di": -9.115370, "Disable": -9.115370, "Dj": -8.422223, "DlPZQXP": -9.115370, "DlzagVyeZRzQvBlmwG": -9.115370, "Dm": -8.422223, "DmRftAKfyYb": -9.115370, "DnRw": -9.115370, "DoL": -9.115370, "Dorg.gradle.appname": -9.115370, "DpCms": -9.115370, "DpHQKLS": -9.115370, "DqgdscAUIRBd": -9.115370, "DrqrN": -9.115370, "DscG": -9.115370, "DsrwiYafzPgga": -9.115370, "DttzE/Q": -9.115370, "DuYokpe": -9.115370, "Dvkvo": -9.115370, "DyCd": -9.115370, "DzLNeptoZZpZ": -9.115370, "DzutDCuxU": -9.115370, "E": -6.342781, "EAg": -9.115370, "EBTdCTPebEPmYhtedcL": -9.115370, "EBTi": -9.115370, "ECA": -9.115370, "ECR": -9.115370, "ECWiNrD": -9.115370, "EEwHbSrQPtxLlx": -9.115370, "EFpoEf": -9.115370, "EH": -8.422223, "EHZXkVtffKeyxg": -9.115370, "EIH": -9.115370, "EIViocxkAY": -9.115370, "EJGMz": -9.115370, "EJwaa": -9.115370, "EL": -9.115370, "ENghSA": -9.115370, "EOCVMlJ": -9.115370, "EOM": -8.422223, "EOj": -9.115370, "EPN": -9.115370, "ES": -9.115370, "ESmtqdoGqj": -9.115370, "ETN": -9.115370, "EY/md": -9.115370, "EZaGVi": -9.115370, "Ea": -9.115370, "EagscUiByVN": -9.115370, "Ec": -9.115370, "Ec/hAiE": -9.115370, "EcbKeQ/yg": -9.115370, "EdOdIiF": -9.115370, "EdVfBkx/fUyPdTf": -9.115370, "EdqAmR": -9.115370, "Eego": -9.115370, "EgwougkKTm": -9.115370, "EiEik": -9.115370, "EjtojePYQ": -9.115370, "EkQffzQYoQNjHnbK": -9.115370, "EkmN": -9.115370, "ElANY": -9.115370, "ElAV": -9.115370, "En": -9.115370, "Ens/nWw/fpb/": -9.115370, "EppCB": -9.115370, "EqNa/HHNJUzty": -9.115370, "EqP": -9.115370, "Er": -9.115370, "Error": -8.016758, "EuWttPcRuEAxOubvzj": -9.115370, "EujjRblfTFKOmzca": -9.115370, "Ev": -9.115370, "EvqA": -9.115370, "Ewle": -9.115370, "Experimental": -9.115370, "EyRsB": -9.115370, "EycMyYcfMVWwoKfubI": -9.115370, "Ezfez": -9.115370, "F": -7.035929, "FIAnG": -9.115370, "FONTS": -9.115370, "FShEBmy": -9.115370, "FTUjJny": -9.115370, "Fk": -9.115370, "FlokAD": -9.115370, "FlqXVhh": -9.115370, "FpPPFlBWl": -9.115370, "FvshC": -9.115370, "G": -6.630463, "G/za": -9.115370, "GAjKCGjUtEIIYFsekq": -9.115370, "GCEqHINnBXFEd": -9.115370, "GDE": -9.115370, "GEKBPndM": -9.115370, "GGRUTwAw": -9.115370, "GGma": -9.115370, "GI": -9.115370, "GJane": -9.115370, "GK": -9.115370, "GNIWd": -9.115370, "GNKpRow": -9.115370, "GNYkJeOxzvqayhqL": -9.115370, "GNZ": -9.115370, "GOa": -9.115370, "GPAn": -9.115370, "GQMtdxRMQ": -9.115370, "GQtJ": -9.115370, "GRADLE_CYGPATTERN": -8.422223, "GRADLE_OPTS": -9.115370, "GREP_OPTIONS": -9.115370, "GRGvdlLqNh": -9.115370, "GSwm": -9.115370, "GT/": -9.115370, "GTZnQXtd": -9.115370, "GU": -9.115370, "GUL": -9.115370, "GVMBb": -9.115370, "GVq": -9.115370, "GWZ/": -9.115370, "GXDDi": -9.115370, "GXXyJnoNhQk": -9.115370, "GYnrCt": -9.115370, "Ga": -9.115370, "GbQpBUjKRQVrTE": -9.115370, "GcHAZvT": -9.115370, "Gdl": -9.115370, "GdzWamXkyY": -9.115370, "GePtlaMDQ/": -9.115370, "GfE": -9.115370, "GgQ": -9.115370, "GiKHpDq/xuhXM": -9.115370, "GiQHtodfLG": -9.115370, "Global": -8.422223, "GmovIBtyo": -9.115370, "Gnb": -9.115370, "GqLV": -9.115370, "GqnC": -9.115370, "GscaUBi": -9.115370, "GtMOEeXA": -9.115370, "Gu": -9.115370, "GzjBJQ": -9.115370, "H": -6.282157, "HCR": -9.115370, "HChL": -9.115370, "HFG": -9.115370, "HFo": -9.115370, "HFvcgBEDZoqyNfSfcCEEyxaai": -9.115370, "HIJ/JuD": -9.115370, "HISTCONTROL": -8.422223, "HISTDUP": -8.422223, "HISTFILE": -8.422223, "HISTIGNORE": -8.422223, "HJ": -9.115370, "HJWSIc": -9.115370, "HK": -9.115370, "HLIHI": -9.115370, "HLQJ": -9.115370, "HM": -9.115370, "HNcwQoeYU": -9.115370, "HOME/.zsh/func": -8.422223, "HObwpJ": -9.115370, "HPA": -9.115370, "HPPPed": -9.115370, "HR": -9.115370, "HRRg": -9.115370, "HRzumcQMsAxeHsiZKsSRG": -9.115370, "HVbNioubPsrdK": -9.115370, "HXdb": -9.115370, "HYn": -9.115370, "HYq": -9.115370, "HZwqWAgd": -9.115370, "HaEg": -9.115370, "Hce": -9.115370, "HdjCsO": -9.115370, "Hfkdmiknb": -9.115370, "HfpRgz": -9.115370, "Hh": -9.115370, "HiQypOoqwANP": -9.115370, "Hidp": -9.115370, "Hj": -9.115370, "HkvjJLES": -9.115370, "HkvjYioBQYHkfnwYSiJ": -9.115370, "Hl": -9.115370, "Hm": -9.115370, "Ho": -9.115370, "HoWrKv": -9.115370, "Hp": -9.115370, "HplPFahnFO": -9.115370, "Hr": -9.115370, "HtnAq": -9.115370, "Hve": -9.115370, "Hw": -9.115370, "Hx": -9.115370, "I": -6.224998, "ICRC": -9.115370, "ICzNBXo": -9.115370, "IF": -9.115370, "IFS": -9.115370, "IFS=": -9.115370, "IFhx/": -9.115370, "IFvUJgxuDn": -9.115370, "IGLy": -9.115370, "IIUc": -9.115370, "IIidsV": -9.115370, "IJzrhiGuGfwUO": -9.115370, "IKhHoM": -9.115370, "IL/h": -9.115370, "IMQdgQhIZCbffsXyjTeLzlW": -9.115370, "IOMeZTFwws": -9.115370, "IPZo": -9.115370, "IQ": -9.115370, "IQynHn/p": -9.115370, "IR": -9.115370, "IRSAZOAE": -9.115370, "ISdId/INxb": -9.115370, "ISmgKNvPcCXI": -9.115370, "IStHUlaOsqwcSVk": -9.115370, "ITAxT": -9.115370, "ITtT": -9.115370, "ITw": -9.115370, "IUh": -9.115370, "IV": -9.115370, "IWmo/YrXjbe": -9.115370, "IYFKEHxGrvfNx": -9.115370, "IYwJFC": -9.115370, "IbkZoo": -9.115370, "Ic": -9.115370, "IcL": -9.115370, "Icbz": -9.115370, "IdGQejR": -9.115370, "IeVwFM": -9.115370, "Iefv": -9.115370, "Iew": -9.115370, "If": -9.115370, "IfVuuHW": -9.115370, "Ifuc": -9.115370, "IhO": -9.115370, "IkDO": -9.115370, "ImXeImXeImXeImXeImXeImXePl/LH": -9.115370, "Imr/gi": -9.115370, "In": -8.422223, "In/qjrMO": -9.115370, "InhOKrwcug": -9.115370, "Ink": -9.115370, "InnV": -9.115370, "IrJDNeJad": -9.115370, "IrsrMe": -9.115370, "It": -9.115370, "IuyDUf": -9.115370, "Ivy": -9.115370, "IwDHlwiP": -9.115370, "IxpL/aAZGXwVuaB//": -9.115370, "IywgRSeovki": -9.115370, "Iz": -9.115370, "IzlNs": -9.115370, "J": -6.630463, "J*": -9.115370, "JAAnS": -9.115370, "JAK": -9.115370, "JAVACMD": -8.422223, "JAVA_HOME": -9.115370, "JAVA_OPTS": -9.115370, "JAbGNBl": -9.115370, "JAja": -9.115370, "JB": -9.115370, "JBEQicj": -9.115370, "JBUeZJv": -9.115370, "JBfWbdjBebevPNQ": -9.115370, "JBsA": -9.115370, "JC": -9.115370, "JFfHQZL": -9.115370, "JGBG/WJJHsExnHPse": -9.115370, "JGCuAf/k": -9.115370, "JGSAMcFCxkAb": -9.115370, "JGvi": -9.115370, "JHeNIn": -9.115370, "JIMnaKkC": -9.115370, "JKLgKksj/MVgCZcGPhLoFFGzrHIYVVl": -9.115370, "JM": -9.115370, "JMG/WFqL": -9.115370, "JN": -9.115370, "JNthRp": -9.115370, "JNupa": -9.115370, "JOtq": -9.115370, "JPEx": -9.115370, "JR": -9.115370, "JSEKZlu": -9.115370, "JSGv": -9.115370, "JSllXEoZtRUTmyWSimjl": -9.115370, "JVBOsqeCsaIOkNzkthQCImwtQUVakga": -9.115370, "JVM": -9.115370, "JVM_OPTS": -9.115370, "JVU": -9.115370, "JXGUH": -9.115370, "JXgnui": -9.115370, "JYRlSqNYa": -9.115370, "JZF": -9.115370, "JZZ/G": -9.115370, "JaSM": -9.115370, "Java": -9.115370, "Jd": -9.115370, "JdlDmckFeUl": -9.115370, "Je": -9.115370, "JepSqstJ": -9.115370, "JfTS": -9.115370, "JiFVbqXgpmi": -9.115370, "Jj": -9.115370, "Jka": -9.115370, "Jm/A/": -9.115370, "JnH": -9.115370, "Jo": -9.115370, "JrwIGrvC": -9.115370, "Js": -9.115370, "JuUjBIF": -9.115370, "JuhRcBEfXXSNlzPIcTzg": -9.115370, "JvddjbV": -9.115370, "Jw": -9.115370, "JwFQpoF": -9.115370, "JwGS": -9.115370, "JwJspATXEPFy": -9.115370, "JxX": -9.115370, "JyhlWXUYszpIvZOOr": -9.115370, "JzAKeoV": -9.115370, "K": -6.282157, "KASeYfZ": -9.115370, "KAkOqexYKySrmfgPeBGIizR/VTNLcrxc": -9.115370, "KDO/RE": -9.115370, "KDRkJ": -9.115370, "KE": -9.115370, "KFUSHYNIlc": -9.115370, "KFz": -9.115370, "KKzy": -9.115370, "KLZTTfWfCB": -9.115370, "KM": -9.115370, "KMivoNJ/JIxy": -9.115370, "KOKJLlc": -9.115370, "KQ/yNZR": -9.115370, "KRQjwFpLKnQE": -9.115370, "KU": -9.115370, "KUF/": -9.115370, "KWK": -9.115370, "KZQxIfwwwO/iDI": -9.115370, "KZqgZ": -9.115370, "KZzcNM": -9.115370, "KbUNSWRq": -9.115370, "KbV": -9.115370, "Kd": -9.115370, "KdQQ": -9.115370, "KeWB": -9.115370, "Kei/yMoQpRhAsd": -9.115370, "KfxdZ": -9.115370, "Kgwy": -9.115370, "KhRz": -9.115370, "KiYL/i": -9.115370, "Kj": -9.115370, "KjJ": -9.115370, "Kjd": -9.115370, "KkukPUXa": -9.115370, "KnvqjFuTBr": -9.115370, "Kp": -9.115370, "KqKfW": -9.115370, "Kqe": -9.115370, "KrX": -9.115370, "Kubzmk": -9.115370, "Kuy": -9.115370, "KwledV": -9.115370, "KxNRkU": -9.115370, "KyXUgHiIQJM": -9.115370, "Kz": -9.115370, "L": -7.729076, "L/febGOpRO/QKUyEduPb": -9.115370, "LBgbVSluPTrqqShkOwEUIQ": -9.115370, "LIWha": -9.115370, "LTLUBG": -9.115370, "LZXoQ": -9.115370, "Lb/": -9.115370, "Level": -8.422223, "Lflag": -6.717475, "Lm": -9.115370, "M": -6.550421, "M/QdXCiDTjM": -9.115370, "MAN": -6.812785, "MANPATH": -8.422223, "MAX_FD": -7.729076, "MAX_FD_LIMIT": -8.422223, "MAq": -9.115370, "MB": -8.422223, "MBTXul": -9.115370, "MDf": -9.115370, "MFjHvaWyeEw": -9.115370, "MG": -9.115370, "MH": -9.115370, "MHAp": -9.115370, "MIF": -9.115370, "MINGW*": -9.115370, "MLx": -9.115370, "MMAdFeeSJAw": -9.115370, "MMKqgfiXSh": -9.115370, "MNCIXLf": -9.115370, "MQ": -9.115370, "MQHqJyjw": -9.115370, "MQLC": -9.115370, "MQNZKMKDG": -9.115370, "MQtf": -9.115370, "MRlyllf": -9.115370, "MRn": -9.115370, "MS": -9.115370, "MTeksb": -9.115370, "MYMMvceMEPLrpvx": -9.115370, "MZ": -9.115370, "MZE": -9.115370, "MbuaZN/Z": -9.115370, "McxhKqWIwY": -9.115370, "MdpaEhCWevIj": -9.115370, "MfToQ": -9.115370, "Mfl": -9.115370, "MfqETj": -9.115370, "MfuMUfsR": -9.115370, "Mg": -9.115370, "MhjOA": -9.115370, "MjgHYrd///CRmPYMJoPVne": -9.115370, "MjsaVug": -9.115370, "Mk": -9.115370, "MlWFHgRkIz": -9.115370, "Mm": -9.115370, "MoCTrDPH": -9.115370, "MoZ": -9.115370, "Mopj": -9.115370, "Mp": -9.115370, "MpDrJoMMnkOj": -9.115370, "MpoID": -9.115370, "MprCdZKnxPep": -9.115370, "Mq": -9.115370, "Mqy": -9.115370, "Mrr": -9.115370, "MwV": -9.115370, "MwiDbRmGQVxMYBOHH": -9.115370, "MxU": -9.115370, "MyFcvwjvz": -9.115370, "MykyStl": -9.115370, "MyndHUyicX": -9.115370, "MzGYw": -9.115370, "N": -7.323611, "N/baMSwUuJ": -9.115370, "NA": -9.115370, "NANjJaLd": -9.115370, "NBeaPxfsK/KNGfZz": -9.115370, "NF": -9.115370, "NFhsR/g": -9.115370, "NFs": -9.115370, "NI": -9.115370, "NLMIeYjuMOvN": -9.115370, "NLeE/xCH": -9.115370, "NOLxT": -9.115370, "NPW": -9.115370, "NPgDOxuLqSdQ": -9.115370, "NT": -8.422223, "NTDS": -9.115370, "NUEWc": -9.115370, "NUFjCIqRhGU": -9.115370, "NVAkOLDiDi": -9.115370, "NYcCo": -9.115370, "NZTTcQtxBK": -9.115370, "NZvI": -9.115370, "NaKYUVS": -9.115370, "NaTm": -9.115370, "NbL": -9.115370, "NbkZV": -9.115370, "Nd": -9.115370, "NdXWZ": -9.115370, "Ne": -9.115370, "NeuNXugCjI": -9.115370, "Nflag": -6.630463, "NfyQMR": -9.115370, "NhfLIv": -9.115370, "NhwcIXqONCI": -9.115370, "NjC": -9.115370, "NkItiHgYGO": -9.115370, "NkaBO": -9.115370, "Nlk": -9.115370, "Nm": -9.115370, "Nmmefxa/NNQVwmp": -9.115370, "NnaFYb": -9.115370, "Nooh": -9.115370, "NoxcA/": -9.115370, "NpaW": -9.115370, "Npv": -9.115370, "NpygY": -9.115370, "NqhTjUlAgP": -9.115370, "Ns": -9.115370, "NskZqi": -9.115370, "NtHLMPep": -9.115370, "NtYvFQiG": -9.115370, "NtaDB": -9.115370, "Nw": -9.115370, "Nwocnsxbt/pCxZK": -9.115370, "NxR": -9.115370, "NyDewiogE": -9.115370, "NyFq": -9.115370, "NyTAlv": -9.115370, "Nz": -9.115370, "O": -6.630463, "OA/jk/TUPDm": -9.115370, "ODSBrFbG": -9.115370, "OEfexmMKISvKzAiEr": -9.115370, "OFuyRTZeTgtIzgggiqrqv": -9.115370, "OIYWCU": -9.115370, "OMEFLaW": -9.115370, "OPYv": -9.115370, "OPtp": -9.115370, "OQ": -9.115370, "OQFiEpqCuz": -9.115370, "OTvnsHMuO": -9.115370, "OURCYGPATTERN": -8.422223, "OUlRAPkcfzA": -9.115370, "OUwc": -9.115370, "OWKU": -9.115370, "OWfmnzIH": -9.115370, "OX": -9.115370, "OY": -9.115370, "OYn": -9.115370, "OZTHZjFDaDSwdPhYTcCSKJRlltNuOTkQlhGh": -9.115370, "ObjXTvVRu": -9.115370, "OckgnkyZziYlKw": -9.115370, "OcvXSxBGjsq": -9.115370, "OdOeUlcogbDR": -9.115370, "OemYKiu": -9.115370, "OfvNKQaCuohNIxIuA": -9.115370, "Ogc": -9.115370, "OhTjo": -9.115370, "Ohxib": -9.115370, "OjyU": -9.115370, "Olak": -9.115370, "OlbTpiBZVmmCB": -9.115370, "Olnb": -9.115370, "OnF/": -9.115370, "Oncxvo": -9.115370, "Oqv": -9.115370, "Orko": -9.115370, "Osnmm": -9.115370, "OuYUcACdtcPeIfrNdiqz/wT": -9.115370, "Ov": -9.115370, "Overriding": -9.115370, "OvfuG/ue": -9.115370, "Ow": -9.115370, "Ox": -9.115370, "OxyMOUTnYPp": -9.115370, "OyFruT": -9.115370, "OyiNqr/": -9.115370, "OyrboOk": -9.115370, "OzPJLTCoK": -9.115370, "OzVE/pvZ": -9.115370, "P": -6.119638, "PAIWl": -9.115370, "PATH": -6.812785, "PAre/R": -9.115370, "PC": -9.115370, "PCNE": -9.115370, "PERg": -9.115370, "PFtTBMEnCKII": -9.115370, "PGGCzwPOGVAz": -9.115370, "PHPRC": -8.422223, "PHP_FCGI_CHILDREN": -8.422223, "PHP_FCGI_MAX_REQUESTS": -8.422223, "PKThJ": -9.115370, "PKU": -9.115370, "PLRwfe": -9.115370, "PMAggdhANpQfHlLh": -9.115370, "PMbjgAMTZQqKrgFzKzm": -9.115370, "POSTFIX": -8.422223, "PP": -9.115370, "PPunVBfpg": -9.115370, "PQ": -9.115370, "PREFIX": -9.115370, "PRG": -7.729076, "PROMPT_COMMAND": -8.422223, "PS": -9.115370, "PTJJ": -9.115370, "PUSHURL": -9.115370, "PVI": -9.115370, "PWH": -9.115370, "PYVKp": -9.115370, "PZjbcY": -9.115370, "PaKvbxUGkvN": -9.115370, "Pcpxq": -9.115370, "Pcs": -9.115370, "PgWagT": -9.115370, "Pgd": -9.115370, "Pk": -8.422223, "PkYTUtManblISOFg": -9.115370, "PkdqFthbX": -9.115370, "Pkoo": -9.115370, "Pl": -9.115370, "Please": -9.115370, "PnCC": -9.115370, "PoxtCSfj": -9.115370, "PpCzjMbxUJs": -9.115370, "PpM/tBcvr": -9.115370, "Pq": -9.115370, "PqAg": -9.115370, "PqG": -9.115370, "PqX": -9.115370, "Pqp": -9.115370, "PrZwfGzh": -9.115370, "Previous": -9.115370, "PsyIxLv": -9.115370, "Pt": -9.115370, "PtczipXeaXLo": -9.115370, "Pu": -9.115370, "PuH": -9.115370, "Pv": -9.115370, "PvkkFBeJGCMFgbh": -9.115370, "Pvzw/": -9.115370, "Pxo": -9.115370, "Pxpw": -9.115370, "PyD/": -9.115370, "PyRNIYZ": -9.115370, "Pyiqy": -9.115370, "Pyjf": -9.115370, "PzQ": -9.115370, "PzpoihGaxL": -9.115370, "PzuKpDo": -9.115370, "Q": -7.035929, "Q/": -9.115370, "QAI/PjyORym": -9.115370, "QArvTPAzKDot": -9.115370, "QCrd": -9.115370, "QDZyFowGtXrKyVSmkE": -9.115370, "QDziM": -9.115370, "QEGVovRp": -9.115370, "QGAEmdDIjtoPLtBck": -9.115370, "QHwYNVP": -9.115370, "QIsfO": -9.115370, "QKFNFGI/": -9.115370, "QLIH": -9.115370, "QLTjBAUl": -9.115370, "QLfu": -9.115370, "QLhrkwQX": -9.115370, "QNinm": -9.115370, "QQ": -9.115370, "QQQ": -9.115370, "QS": -9.115370, "QU": -9.115370, "QU/vug": -9.115370, "QV": -9.115370, "QVLdW": -9.115370, "QZdvAgwnE": -9.115370, "QaMLRPw": -9.115370, "Qbt/th": -9.115370, "QcyJ": -9.115370, "Qe": -8.422223, "Qh": -8.422223, "QhG/NAjqJoIQntOKRgHO/eS": -9.115370, "Qiu": -9.115370, "QjbY": -9.115370, "Qkhnx": -9.115370, "QltFpT": -9.115370, "QntlaMa": -9.115370, "QroPcdUZp": -9.115370, "Qtqv": -9.115370, "QttBH": -9.115370, "QuNLjkEQlSaJfAul": -9.115370, "QwtP": -9.115370, "Qyl": -9.115370, "QzFCfm": -9.115370, "Qzwhm": -9.115370, "R": -6.630463, "R/HkiMq": -9.115370, "R/ULKXB": -9.115370, "RAauZ": -9.115370, "RBENV_VERSION": -9.115370, "RBy": -9.115370, "RByhF": -9.115370, "RDAYIQl": -9.115370, "RDixlMLk": -9.115370, "RDkRbcHxGjPifJruygA": -9.115370, "REBYW": -9.115370, "RIdbN": -9.115370, "RKfePr": -9.115370, "RLtk": -9.115370, "RNGjg": -9.115370, "RNef": -9.115370, "ROII": -9.115370, "ROOTDIRS": -8.422223, "ROj": -9.115370, "ROrriCjA": -9.115370, "RPuo": -9.115370, "RQayK": -9.115370, "RRRA/zUYzhs": -9.115370, "RTC": -9.115370, "RU": -9.115370, "RUrrz": -9.115370, "RV": -9.115370, "RVmBjn": -9.115370, "RW": -9.115370, "RWw": -9.115370, "RYqC": -9.115370, "RZfN": -9.115370, "Rb": -9.115370, "RbkUT": -9.115370, "RdseRynoR": -9.115370, "RdwpSQ": -9.115370, "Re": -9.115370, "RebdPzS": -9.115370, "Rg": -9.115370, "RgsMcQvh": -9.115370, "RgwUEAvY": -9.115370, "RgxkfgnHgiwr": -9.115370, "Rh": -9.115370, "RhT": -9.115370, "RiJzjeD/PdqBhQyG": -9.115370, "RikZk": -9.115370, "RnHfuX": -9.115370, "RnR": -9.115370, "Rpnt": -9.115370, "Rr": -9.115370, "Rs": -9.115370, "Rt": -9.115370, "RtJCNHQdabeHXKzpbhqip": -9.115370, "RtZzT": -9.115370, "Ru": -9.115370, "RuZ": -9.115370, "RvM": -9.115370, "RvMNhL": -9.115370, "RvwaVL": -9.115370, "Rws": -9.115370, "RyLpd": -9.115370, "RzcdA": -9.115370, "S": -6.224998, "S*": -9.115370, "S/": -7.505932, "S/de": -9.115370, "SAVED": -9.115370, "SAVEHIST": -8.422223, "SB": -9.115370, "SBgG": -9.115370, "SBk": -9.115370, "SC": -8.422223, "SCQQmxlMAA": -9.115370, "SCREENDIR": -8.422223, "SDp": -9.115370, "SDppzBF": -9.115370, "SDqMkaQlGAjpSdBNidScKudHwaPS": -9.115370, "SEP": -9.115370, "SFypF": -9.115370, "SHEBANG#!bash": -6.812785, "SHEBANG#!rc": -8.422223, "SHEBANG#!sh": -8.016758, "SHEBANG#!zsh": -8.422223, "SHeTwerZf": -9.115370, "SM": -9.115370, "SMIZMwuH": -9.115370, "SMNmAFz": -9.115370, "SMflfiy": -9.115370, "SN/": -9.115370, "SNAPSHOT": -7.729076, "SNr": -9.115370, "SO": -9.115370, "SOJ": -9.115370, "SQFBHRCDUf": -9.115370, "SSIVORcM/EZxyR": -9.115370, "SUIH": -9.115370, "SUtn": -9.115370, "SVoqK/guvXQ": -9.115370, "SWBXtLPs": -9.115370, "SXyc": -9.115370, "SaUnGg": -9.115370, "SahvlDv": -9.115370, "SauWLEMco": -9.115370, "Sb": -9.115370, "SbHZGDQ": -9.115370, "Sc": -9.115370, "ScnIeB": -9.115370, "SesrncfS": -9.115370, "SfmkCFtMNlMx": -9.115370, "Sidvm": -9.115370, "SjIG": -9.115370, "SjZFlSmVR": -9.115370, "SjkQGNvkq/Xu": -9.115370, "Skdqmu": -9.115370, "Sls": -9.115370, "SnogjoD/WBcU": -9.115370, "So": -9.115370, "Some": -9.115370, "Sp/MzBaYsY": -9.115370, "SshmqwhtRBTVzCmPRlCFvK": -9.115370, "SvM": -9.115370, "T": -6.812785, "T/ZbL": -9.115370, "TAE": -9.115370, "TAStl": -9.115370, "TBBw": -9.115370, "TBQ": -9.115370, "TCKuoAXkvpG": -9.115370, "TCtXYXS": -9.115370, "TDheA": -9.115370, "TEB": -9.115370, "TERM": -7.729076, "TEh": -9.115370, "TFLNA": -9.115370, "TFl": -9.115370, "TGhZhuQqir": -9.115370, "THMaryA": -9.115370, "TI": -9.115370, "TIcat": -9.115370, "TJqjC/Gr": -9.115370, "TK": -9.115370, "TLQL": -9.115370, "TLTOcA": -9.115370, "TM": -9.115370, "TMDRC": -9.115370, "TMaEDwlPKP": -9.115370, "TNKl": -9.115370, "TNiXWcCw": -9.115370, "TOovVKyb": -9.115370, "TPDR": -9.115370, "TQGs/": -9.115370, "TQJMICWeP": -9.115370, "TQuI": -9.115370, "TREfiLuNzaO": -9.115370, "TTaXdfxs": -9.115370, "TThcDiCQYaa": -9.115370, "TTvTr/UZaZ": -9.115370, "TVRerS": -9.115370, "TXnwa": -9.115370, "TYMLk": -9.115370, "TYTP": -9.115370, "TYfxv": -9.115370, "Tc": -9.115370, "TcLLXg": -9.115370, "Tcv": -9.115370, "Tdt": -9.115370, "TejNL": -9.115370, "Testing": -9.115370, "Tf": -9.115370, "TfV": -9.115370, "TgIN": -9.115370, "TgR/sEE": -9.115370, "TgX": -9.115370, "That": -9.115370, "The": -9.115370, "ThisBuild": -8.422223, "TkrYL": -9.115370, "TlP": -9.115370, "Tmr": -9.115370, "TnRf": -9.115370, "TnYlW": -9.115370, "To": -9.115370, "TpqOy": -9.115370, "Tr": -9.115370, "TrEdw": -9.115370, "TrpOE": -9.115370, "TtYy": -9.115370, "Turn": -9.115370, "Tutf": -9.115370, "TvLzfJxiEQdSvXmjiBK": -9.115370, "TvSXE": -9.115370, "TwT": -9.115370, "TwW": -9.115370, "Ty": -9.115370, "TzOncuWqiFtmGypy": -9.115370, "Tzf": -9.115370, "U": -7.505932, "UCL": -9.115370, "UID": -9.115370, "UMavn": -9.115370, "URL": -9.115370, "USPmuYpmiCQQfdfIr": -9.115370, "UUiNCfgpHvbOhdt/cQl": -9.115370, "UbkEtk/Y/uKoX": -9.115370, "UiDGsAfKVIPkSadOgbFpOesB": -9.115370, "Update": -9.115370, "Updated": -9.115370, "Usage": -8.422223, "Uwg": -9.115370, "Uwmp": -9.115370, "V": -6.550421, "VCA/uERcvzYPQEGcyBbPAq": -9.115370, "VChKnOjo": -9.115370, "VEcSwy": -9.115370, "VFJ": -9.115370, "VGGzPv": -9.115370, "VGy": -9.115370, "VHt": -9.115370, "VIXtrKVuJNezk": -9.115370, "VIlAX": -9.115370, "VJAGYKW": -9.115370, "VKEyV": -9.115370, "VLTLAggv": -9.115370, "VLYTajusPiqblu": -9.115370, "VLq/yojKlo": -9.115370, "VM": -9.115370, "VNMT/P": -9.115370, "VOEg": -9.115370, "VPF/X": -9.115370, "VQgUT": -9.115370, "VSM": -9.115370, "VSZyFcxH": -9.115370, "VTW": -9.115370, "VTZdpIn": -9.115370, "VUsPxHD": -9.115370, "VVtHLzV": -9.115370, "VVxPaquuZYlLpdwdRmPoT": -9.115370, "VWcXp": -9.115370, "VY": -9.115370, "VYIPWOxcsRCSyTQVUj": -9.115370, "VZQOaURbCVXj": -9.115370, "Vad/": -9.115370, "VdhxeKUCY/fhTAXGQcKLF": -9.115370, "VfoiKU/u": -9.115370, "Vg": -9.115370, "VgHo/gnsqWhUAC/x": -9.115370, "Vgq": -9.115370, "VgzqSxTUoUcc": -9.115370, "Vj": -9.115370, "VjViJngFIfUtArBLFY": -9.115370, "VmZ": -9.115370, "VnSPJlMCUj": -9.115370, "VpbdVNyZugjZU": -9.115370, "VpfKr": -9.115370, "VprwgmRPvqHzr": -9.115370, "Vq": -8.422223, "VqHLwxmZ": -9.115370, "VqkuYpA": -9.115370, "VsdLvMRLvPx": -9.115370, "VtCDcekmG": -9.115370, "VtzHs": -9.115370, "VuKnaVsLyoqghgslNFvatjo/gWYeupj": -9.115370, "VvBiC": -9.115370, "VvKQe": -9.115370, "VzQfnMcq": -9.115370, "W": -6.224998, "W/UY": -9.115370, "WAAFoAAA": -9.115370, "WAtHSzwb": -9.115370, "WBA": -9.115370, "WFoAAATm": -9.115370, "WGo": -9.115370, "WI": -9.115370, "WLxAIz": -9.115370, "WM": -9.115370, "WN": -9.115370, "WOfNZ/oLBipvJSEHo": -9.115370, "WQdzSru": -9.115370, "WRHCR": -9.115370, "WS": -9.115370, "WSCQGcz": -9.115370, "WSO": -9.115370, "WTVZaeBmmXqKyulZ": -9.115370, "WUGdLEz": -9.115370, "WWNpTYJkf": -9.115370, "WZmOOq": -9.115370, "WcDJUk": -9.115370, "WcuDlp": -9.115370, "WdYfmPxj": -9.115370, "WfQN": -9.115370, "Whktj": -9.115370, "Wio": -9.115370, "Wj": -9.115370, "WkKjRd": -9.115370, "WkzXYTMr": -9.115370, "WlAkpVVal": -9.115370, "WlI": -9.115370, "Wm": -8.422223, "Wmd": -9.115370, "Wnssg": -9.115370, "WocVqx": -9.115370, "WojbcwoGFC": -9.115370, "Wp": -9.115370, "WpGRgHCRRjo": -9.115370, "WpXeOUG": -9.115370, "WqgSWMgAY": -9.115370, "WsjJWxMlbGymXlKYH": -9.115370, "Wud": -9.115370, "WuslegiREhKuplHVWcZjitZ/F": -9.115370, "Ww": -9.115370, "WwcumHK": -9.115370, "WwmYA": -9.115370, "WyrU": -9.115370, "WzXk": -9.115370, "X": -4.956487, "X/NHCNA": -9.115370, "X/XqZ": -9.115370, "X/XvhQHPtvwZbbW": -9.115370, "XAd": -9.115370, "XBEkBa": -9.115370, "XBHFu": -9.115370, "XBQNa": -9.115370, "XBhP": -9.115370, "XDuu": -9.115370, "XEBCyqd": -9.115370, "XFCoVG": -9.115370, "XIUGYqs": -9.115370, "XJ": -9.115370, "XKQOeRbu": -9.115370, "XKpyzGejc": -9.115370, "XNykwvjRuFmF": -9.115370, "XOqJVcAisOU": -9.115370, "XOxHJk": -9.115370, "XPGeuwDXGRlnKAHfhgkK": -9.115370, "XPwVMw": -9.115370, "XQRk": -9.115370, "XST": -9.115370, "XTJ": -9.115370, "XTMLqI": -9.115370, "XTUIfl": -9.115370, "XVwlOFv": -9.115370, "XWvCdKQ/OpFkmcLvwlIgzITfAWoOaAcMiXtYbRWcGN": -9.115370, "XXuSoRWUL/": -9.115370, "XYBph": -9.115370, "XZD": -9.115370, "XadN": -9.115370, "XblImKcB": -9.115370, "XcpEX": -9.115370, "Xe": -8.422223, "XeJ": -9.115370, "XeYCGI/RxbZ": -9.115370, "Xf": -9.115370, "XgJuBax": -9.115370, "XgXj": -9.115370, "XhG": -9.115370, "Xm": -9.115370, "XmeNhRoHMbbwBJNmyRXC": -9.115370, "XpvM": -9.115370, "Xq": -9.115370, "XqbUpcRSR": -9.115370, "XrZ": -9.115370, "Xrs": -9.115370, "Xs": -9.115370, "XsGLJfXFX": -9.115370, "XsvJSds": -9.115370, "XuD": -9.115370, "Xulz": -9.115370, "XveOeeer": -9.115370, "XxiB": -9.115370, "XyC": -9.115370, "Y": -6.476313, "YA": -9.115370, "YBOmBdhkq": -9.115370, "YBxahqIoEJ": -9.115370, "YCPQER": -9.115370, "YEB": -9.115370, "YF": -8.422223, "YHE": -9.115370, "YHPVnV": -9.115370, "YIKGtsyYpRMl": -9.115370, "YJJN": -9.115370, "YJPSKYO": -9.115370, "YJySVUuaUoC": -9.115370, "YKcXtsMYf": -9.115370, "YKyH": -9.115370, "YL": -9.115370, "YLi": -9.115370, "YMO": -9.115370, "YMuqdQzPouS": -9.115370, "YNYa": -9.115370, "YNrbXlF": -9.115370, "YODTaCi": -9.115370, "YSq/bHJAhdf": -9.115370, "YTxCMO": -9.115370, "YUqBvd": -9.115370, "YV": -9.115370, "YVL": -9.115370, "YWsXJgKgZSnSI": -9.115370, "YXIA": -9.115370, "YXIp": -9.115370, "YXQHPWuVdrASXk": -9.115370, "YYDdRS": -9.115370, "YZaRvVA": -9.115370, "YZtaLDdY": -9.115370, "YayS": -9.115370, "Yb": -9.115370, "YbP": -9.115370, "YcBHEM": -9.115370, "YcVhpByaWHowUxmg": -9.115370, "YcXxz/S": -9.115370, "Ycb": -9.115370, "YcmS": -9.115370, "YdYacrh": -9.115370, "Ye": -9.115370, "YhIrpgBbgk/BFlXRUrDs": -9.115370, "Yhmj": -9.115370, "Yjusqbj/": -9.115370, "YlVIZoEUCFg": -9.115370, "Ym": -9.115370, "YmqO/oW": -9.115370, "Ymqem": -9.115370, "YnR": -9.115370, "YocYk/": -9.115370, "YpovLbg": -9.115370, "YsPMf": -9.115370, "YuJBvUBsguFuV": -9.115370, "Yy": -9.115370, "YyLsnE/lmT": -9.115370, "YyY": -9.115370, "Z": -6.282157, "ZAzTmb": -9.115370, "ZB": -9.115370, "ZC": -9.115370, "ZCxHljbiqwR": -9.115370, "ZF": -9.115370, "ZFkZgS/wJSJJcD": -9.115370, "ZGN": -9.115370, "ZGniGE": -9.115370, "ZIWnmGnmIYo": -9.115370, "ZKBhUHIMFJxXnhZwLpLpM": -9.115370, "ZKCJxhyI": -9.115370, "ZMUMk": -9.115370, "ZOkW": -9.115370, "ZQxID": -9.115370, "ZRP": -9.115370, "ZS/": -9.115370, "ZTMFdx": -9.115370, "ZTOI": -9.115370, "ZWfmj": -9.115370, "ZYjEgvXdsT": -9.115370, "ZZSuh": -9.115370, "ZZgAJLgl": -9.115370, "Zb": -9.115370, "ZbGidQ": -9.115370, "ZcKioc": -9.115370, "Ze": -9.115370, "Zenb": -9.115370, "Zf": -9.115370, "ZgFDOEouGakDF": -9.115370, "ZgHhwB": -9.115370, "ZgPDQ": -9.115370, "ZgtptmjdEB": -9.115370, "ZgwULu": -9.115370, "ZhQ": -9.115370, "Zhqjp": -9.115370, "ZkfV": -9.115370, "Zko": -9.115370, "ZlJGXMmiMw": -9.115370, "Zm": -9.115370, "ZnpnbSikda": -9.115370, "Znw": -9.115370, "ZoJ": -9.115370, "Zp": -9.115370, "ZpucyvnbTLiaEwPOEfnGEiLdy": -9.115370, "ZqEOdYuObmLeqBfgNIb": -9.115370, "ZqtfD": -9.115370, "ZrTZquN": -9.115370, "Zt": -9.115370, "ZtFt": -9.115370, "ZuwsSEcg/heAhSoEEvTQfOgqDrZv": -9.115370, "ZvWnqPIFg": -9.115370, "Zw": -9.115370, "Zwo": -9.115370, "Zxspbgncu": -9.115370, "ZyAAHePIC": -9.115370, "Zyad": -9.115370, "ZzcP": -9.115370, "[": -4.461410, "\\": -6.024328, "]": -4.480641, "^": -6.812785, "_": -9.115370, "_gitname": -9.115370, "_gitroot": -9.115370, "`": -5.714173, "a": -5.979876, "a/": -8.422223, "a//Zrdqq": -9.115370, "aBG/Dwc": -9.115370, "aCe": -9.115370, "aD": -9.115370, "aDTORYfxpEyer": -9.115370, "aEbmpH": -9.115370, "aErrmJO": -9.115370, "aF": -9.115370, "aFvDEkgyVNrHt": -9.115370, "aHDd": -9.115370, "aI": -9.115370, "aIE": -9.115370, "aKiWDppD": -9.115370, "aLBKdSGNVpHqPwdbR": -9.115370, "aLEbifrm": -9.115370, "aLwEyd/XxmXuuoZKhAbHgglQmSz": -9.115370, "aN": -9.115370, "aONiaqKzt": -9.115370, "aOXvv/qh": -9.115370, "aPnewso": -9.115370, "aQaIJ": -9.115370, "aR": -9.115370, "aRDRHvjXsZwDOb": -9.115370, "aT": -9.115370, "aTnRu": -9.115370, "aVObYdAXbLNtPS": -9.115370, "aW": -9.115370, "aXSLzgbtyNKVKd": -9.115370, "aY": -9.115370, "ab": -9.115370, "abHvan": -9.115370, "above": -9.115370, "abrZZtNNs": -9.115370, "accomplish": -9.115370, "acgsR": -9.115370, "acme": -9.115370, "acquire_sbt_jar": -8.422223, "acroread": -8.422223, "across": -8.422223, "actual": -9.115370, "adWx": -9.115370, "addDebugger": -8.422223, "addJava": -6.630463, "addResidual": -8.016758, "addResolver": -9.115370, "addSbt": -6.070848, "addScalac": -8.016758, "aduSn": -9.115370, "ae": -9.115370, "aerAn": -9.115370, "af": -9.115370, "afNkmt": -9.115370, "afsgiF/uNyCUcYv": -9.115370, "ahh": -9.115370, "ahjC": -9.115370, "ahlzDuPZtxD": -9.115370, "ahnkVYgybH": -9.115370, "ahv": -9.115370, "aitqtyrXrY": -9.115370, "al": -9.115370, "alert": -9.115370, "alias": -5.426491, "all": -9.115370, "amVzNRJwER": -9.115370, "an": -8.422223, "any": -9.115370, "anyway": -9.115370, "aoOiehOacC": -9.115370, "aoyzbAwoLPUZKCynTAZyydbppJL": -9.115370, "ap": -9.115370, "append": -8.422223, "appendhistory": -8.422223, "aqSfDaohF": -9.115370, "aqxlNTVhGeepfYGJ": -9.115370, "arch": -9.115370, "areOWJzCaP": -9.115370, "arg": -7.035929, "args": -5.265223, "argument": -9.115370, "argumentCount": -8.422223, "argumentCount=": -9.115370, "artifactory": -9.115370, "ass": -9.115370, "at": -8.422223, "aviplay": -8.422223, "awk": -8.422223, "awsWGmhNAzTmYV": -9.115370, "awzy": -9.115370, "axKYbGRP": -9.115370, "ayNcxm": -9.115370, "az": -9.115370, "b": -6.224998, "bBnmvnRcXnAY": -9.115370, "bCUccssqyusXAwTySQSyekZyWNZmhgna": -9.115370, "bCi": -9.115370, "bE": -9.115370, "bEnCak": -9.115370, "bF": -9.115370, "bFB": -9.115370, "bFnrkhL": -9.115370, "bGF": -9.115370, "bIAuDJfFDGih": -9.115370, "bIuS": -9.115370, "bK": -9.115370, "bKeILa": -9.115370, "bMe": -9.115370, "bO": -9.115370, "bOD": -9.115370, "bONmEKZm/ZGpHSTuJM": -9.115370, "bPb": -9.115370, "bQD": -9.115370, "bQpipn": -9.115370, "bTFdshisX": -9.115370, "bVkZFZxP": -9.115370, "bWKmVvUd": -9.115370, "bXVFqL": -9.115370, "bXXtZprO": -9.115370, "bZ": -9.115370, "bZS": -9.115370, "bare": -9.115370, "base": -9.115370, "basename": -8.422223, "bash": -7.729076, "batch": -8.422223, "bbIOoTBLcObjnqF": -9.115370, "bcKbVL": -9.115370, "bdBBYBJgdTp": -9.115370, "be": -8.422223, "beCyRSf": -9.115370, "bejLQXtltlP": -9.115370, "bematRH": -9.115370, "bg": -8.422223, "bgI": -9.115370, "bgIREfqWlxJO": -9.115370, "bgQVCeBNlUHqLPfFyYr": -9.115370, "bgv": -9.115370, "bh": -9.115370, "bigdy": -9.115370, "bih": -9.115370, "bin": -8.422223, "bind": -8.422223, "binding": -8.422223, "bjZhBY": -9.115370, "blYZoOzn": -9.115370, "blzHLuNMOMyfGwBfBxPKxaOjy": -9.115370, "bntpPSw": -9.115370, "boFY": -9.115370, "boot": -8.016758, "bottles": -7.323611, "bpJDOzoF/C": -9.115370, "bqRwxqK": -9.115370, "brkNlA": -9.115370, "bs": -9.115370, "bsPCVB": -9.115370, "btdR": -9.115370, "btgDRqDq": -9.115370, "buiLa": -9.115370, "build": -7.729076, "build.properties": -9.115370, "build.scala.versions": -9.115370, "build_props_sbt": -8.016758, "build_props_scala": -9.115370, "bunzip": -8.422223, "bvN": -9.115370, "bw": -9.115370, "by": -8.422223, "byXG": -9.115370, "byiefmwKixcfEy": -9.115370, "bzbjycsKfKHTRQwaF": -9.115370, "bzcat": -8.422223, "bzcmp": -8.422223, "bzdiff": -8.422223, "bzegrep": -8.422223, "bzfgrep": -8.422223, "bzgrep": -8.422223, "bzme": -8.422223, "c": -6.476313, "cA": -9.115370, "cAvnm": -9.115370, "cB": -9.115370, "cBk": -9.115370, "cC": -9.115370, "cCWWMcwiUy": -9.115370, "cD": -9.115370, "cF": -9.115370, "cFRVln": -9.115370, "cFw": -9.115370, "cG": -9.115370, "cGNN": -9.115370, "cH": -9.115370, "cHOcx": -9.115370, "cHxs": -9.115370, "cIt": -9.115370, "cK/": -9.115370, "cMtg": -9.115370, "cNIRgK": -9.115370, "cNeEruRVcuz": -9.115370, "cNtjrGlYf": -9.115370, "cOjg": -9.115370, "cPQqf": -9.115370, "cPY": -9.115370, "cQz": -9.115370, "cUArwv": -9.115370, "cUJvTIdpx": -9.115370, "cUuGkeNWmrbU": -9.115370, "cW": -9.115370, "cWLiFnVYYkeoX": -9.115370, "cWjo": -9.115370, "cX": -9.115370, "cXtycdLd": -9.115370, "cZd": -9.115370, "cZlv": -9.115370, "cZr": -9.115370, "caches": -9.115370, "can": -9.115370, "case": -5.183545, "cat": -7.505932, "category": -9.115370, "cb": -9.115370, "cbeSL": -9.115370, "ccxwW": -9.115370, "cd": -6.812785, "cd..": -8.422223, "ce": -9.115370, "ceV": -9.115370, "cf/B": -9.115370, "cgOZFEMxUCrUcCrefoDSTQZiDQ": -9.115370, "cgUtwP": -9.115370, "cgi": -9.115370, "chattier": -8.422223, "choice": -9.115370, "ci": -9.115370, "cjAyWUQsGCWODPAm": -9.115370, "cjBrTwtgFrwJ": -9.115370, "ckbzIJ": -9.115370, "clN": -9.115370, "clYltBOtpPnmBbbcIF": -9.115370, "cljAmU": -9.115370, "clone": -8.422223, "cmake": -9.115370, "cmd": -7.035929, "cnrZNpdTF": -9.115370, "cnre": -9.115370, "coRCTIFoiEhtJW": -9.115370, "codecache": -9.115370, "codes": -8.422223, "col": -9.115370, "color": -8.422223, "colors": -8.016758, "combined": -9.115370, "command": -8.016758, "complete": -4.784637, "compress": -8.422223, "config": -8.422223, "conflicting": -9.115370, "conflicts": -9.115370, "contains": -8.016758, "contents": -9.115370, "continue": -9.115370, "coxWa": -9.115370, "cq": -9.115370, "cqOVrgsTpS": -9.115370, "cqr": -9.115370, "create": -7.505932, "crinyH": -9.115370, "crontab": -9.115370, "ctSvevDf/": -9.115370, "curl": -7.169460, "current": -8.422223, "cvjekfYc": -9.115370, "cw": -9.115370, "cwzT": -9.115370, "cx": -9.115370, "cxzZ/w": -9.115370, "cy": -9.115370, "cygwin": -8.016758, "cza": -9.115370, "d": -5.857274, "d/Jkr": -9.115370, "d/Q": -9.115370, "dAFZdr": -9.115370, "dBnSJ/K": -9.115370, "dC": -9.115370, "dClDCnHyr": -9.115370, "dDNLdtswCUKK": -9.115370, "dE": -9.115370, "dF": -9.115370, "dFGW": -9.115370, "dFmRhw": -9.115370, "dGjxsibduwmxrJ": -9.115370, "dGtmzELZiGVYYUS": -9.115370, "dJrzfOUkukDI//SSduKpINv": -9.115370, "dJvJ": -9.115370, "dMCt": -9.115370, "dN": -8.422223, "dO": -9.115370, "dOI": -9.115370, "dP/xhWvSTfzYlQpI": -9.115370, "dPMcr": -9.115370, "dQ": -9.115370, "dQq": -9.115370, "dTsX": -9.115370, "dU": -9.115370, "dUL": -9.115370, "dUNFH": -9.115370, "dV": -9.115370, "dXqGrhru": -9.115370, "dYic/TR": -9.115370, "darwin": -8.016758, "day": -9.115370, "dd": -9.115370, "ddYoR": -9.115370, "deZg": -9.115370, "debug": -6.476313, "debugging": -9.115370, "declare": -6.024328, "default": -7.729076, "default_jvm_opts": -9.115370, "default_sbt_mem": -8.422223, "default_sbt_opts": -9.115370, "depends": -9.115370, "descriptor": -8.422223, "die": -8.016758, "diff": -8.422223, "dillo": -8.422223, "dir": -7.323611, "directory": -7.729076, "dirname": -8.016758, "dirpersiststore": -8.422223, "disable": -8.422223, "disk": -7.505932, "disk.": -9.115370, "disk/kfs": -9.115370, "disown": -8.422223, "display": -8.422223, "dk": -9.115370, "dkd": -9.115370, "dlog": -6.918146, "dmAgzT": -9.115370, "dnsL": -9.115370, "do": -6.812785, "doctype": -9.115370, "done": -6.717475, "download_url": -8.422223, "drg": -9.115370, "dt": -9.115370, "dtgAy": -9.115370, "duWBbHAsVpnhC/AtTvipjEHx": -9.115370, "dump": -8.016758, "duplicated": -9.115370, "duplicates": -8.422223, "dv": -8.422223, "dvi": -8.422223, "dvips": -8.422223, "dviselect": -8.422223, "dvitype": -8.422223, "dw": -9.115370, "dwzMgjllPUgLmucXgXS": -9.115370, "dx": -9.115370, "dy": -9.115370, "dzt": -9.115370, "e": -5.714173, "eAttFwTztgJ": -9.115370, "eDBHM": -9.115370, "eDErImYskeg": -9.115370, "eEfaOQ": -9.115370, "eGDp": -9.115370, "eI": -9.115370, "eNULX": -9.115370, "eOdaxXfLRiT": -9.115370, "eOfMaRbZcxhzxh": -9.115370, "eOpKUjGUwIJA": -9.115370, "ePdOPJf": -9.115370, "eQd": -9.115370, "eQyFXnfE": -9.115370, "eR": -9.115370, "eS": -8.422223, "eUIx": -9.115370, "eUij/J": -9.115370, "eVheswxGH": -9.115370, "eWwHJsQVqaTatzyUc": -9.115370, "eWyWMlbEyVsbKWBkrY": -9.115370, "eXKtcfcWFlVKbmGYDrjGnXfGum": -9.115370, "eY": -9.115370, "eYlg": -9.115370, "eZEWhnqvQa": -9.115370, "eaXQTktoCetceUmj": -9.115370, "ebz": -9.115370, "eccNP": -9.115370, "echo": -4.387982, "echoerr": -8.016758, "ecwT": -9.115370, "edit": -9.115370, "ee": -8.422223, "eedtN": -9.115370, "ef": -8.422223, "efTXe/mUFbFisxet/fAQYdHQmH": -9.115370, "efmyZQ": -9.115370, "eftXQmQXynnOGtNPHBKW": -9.115370, "eiNH": -9.115370, "eiiEaKPjiEL": -9.115370, "ej": -9.115370, "ekB/V": -9.115370, "elif": -7.729076, "elinks": -8.422223, "elixdn": -9.115370, "else": -6.717475, "emacs": -8.422223, "endif": -8.422223, "entries": -8.422223, "environment": -9.115370, "eoni": -9.115370, "eq": -8.422223, "eqn": -9.115370, "eqywrGmCsV": -9.115370, "erase": -8.422223, "esac": -6.717475, "etMSeNHa": -9.115370, "etyTSYsE": -9.115370, "even": -8.422223, "evey": -9.115370, "ew": -9.115370, "exKdB": -9.115370, "exec": -7.729076, "execRunner": -8.422223, "exists": -9.115370, "exit": -6.224998, "explicit": -9.115370, "export": -5.857274, "expr": -8.422223, "eyLJUcaLRz": -9.115370, "eylG": -9.115370, "ez": -9.115370, "f": -4.811305, "fYze": -9.115370, "fZJQJcuRc": -9.115370, "fail": -9.115370, "false": -7.169460, "fg": -8.422223, "fi": -5.681383, "file": -6.476313, "fils": -7.323611, "find": -8.422223, "finds": -9.115370, "fj/WyJwIEbFr": -9.115370, "fjj": -9.115370, "flLNFLvWvxV": -9.115370, "fn": -8.016758, "foodforthought.jpg": -9.115370, "for": -6.812785, "fosVcH": -9.115370, "fpath": -7.323611, "freeamp": -8.422223, "fxMFEBEP": -9.115370, "fxMTgT": -9.115370, "g": -6.407320, "g/vTLUFMCXFGCf": -9.115370, "gA": -9.115370, "gAXlgVJSvV": -9.115370, "gBKimHCLNYIVbRSEKnN": -9.115370, "gBcxq": -9.115370, "gDYsG": -9.115370, "gE": -9.115370, "gECnVqaamiOldHqWxA": -9.115370, "gETzIkSSLoDLwEldveND": -9.115370, "gEvzDLftJlSSp": -9.115370, "gFR": -9.115370, "gFSWFTbnKi": -9.115370, "gFsX": -9.115370, "gJ": -9.115370, "gJoa": -9.115370, "gK": -9.115370, "gKQUujW": -9.115370, "gKvsYreYlj": -9.115370, "gMbn": -9.115370, "gNle": -9.115370, "gOFrpRAzEfOV": -9.115370, "gPFXIiu": -9.115370, "gPt": -9.115370, "gQMlUIbUW": -9.115370, "gR": -9.115370, "gT": -9.115370, "gTqMOgdRj": -9.115370, "gU": -9.115370, "gULGpBpGVrNLxMg": -9.115370, "gUugFwR": -9.115370, "gVWWWo": -9.115370, "gWD": -9.115370, "gWdsZtZDVO": -9.115370, "gWeoGVLEG": -9.115370, "gXOVdhl": -9.115370, "gXdTH/zy": -9.115370, "gYeDST": -9.115370, "gZT": -9.115370, "gZbXQsToRI": -9.115370, "gZd/NlzQvktLk": -9.115370, "ga": -9.115370, "gadAlPOxEqCgTBVE": -9.115370, "gaduYI": -9.115370, "galeon": -8.422223, "gauYFf": -9.115370, "gcbtVjCEFV": -9.115370, "gcdejx": -9.115370, "gctAqV": -9.115370, "gd": -9.115370, "ge": -9.115370, "get_jvm_opts": -8.422223, "get_mem_opts": -8.016758, "get_script_path": -8.422223, "gfu": -9.115370, "ggeckpEO": -9.115370, "ggv": -8.422223, "ghoY": -9.115370, "ghvVaJcCDSfZXoj": -9.115370, "gi": -9.115370, "giVI": -9.115370, "git": -7.169460, "given": -8.422223, "gives": -9.115370, "gj": -9.115370, "glTCmdbjnus": -9.115370, "global": -9.115370, "gmNK": -9.115370, "gnE/": -9.115370, "goJfNQAmrIMTDJMYXUwFiO": -9.115370, "gpY": -9.115370, "gpaU": -9.115370, "gpfEDNLKwyqpM": -9.115370, "gpxM": -9.115370, "gqCnxvTD": -9.115370, "gqmpeg": -8.422223, "gqzHw": -9.115370, "grap": -9.115370, "grep": -6.717475, "groupid": -9.115370, "gryBUK": -9.115370, "gtHwcAeeMuCURFNnZDN": -9.115370, "gunzip": -8.422223, "gv": -8.422223, "gview": -8.422223, "gvim": -8.422223, "gw": -9.115370, "gxFOBAIdrY": -9.115370, "gy": -9.115370, "gz": -9.115370, "h": -6.550421, "h/MPg": -9.115370, "h/hRUZivc": -9.115370, "hDhnHD": -9.115370, "hDohJ/": -9.115370, "hFmjs": -9.115370, "hGIzNULiAtkYgGICLdfACZVniAFgiMvWSCgqbpJjtM": -9.115370, "hI": -8.422223, "hJTLydJnGIio": -9.115370, "hJXg/ylr": -9.115370, "hLQ": -9.115370, "hNM": -9.115370, "hNSoFvhpevN": -9.115370, "hOPl": -9.115370, "hOYk/": -9.115370, "hOp": -9.115370, "hTZng": -9.115370, "hUa": -9.115370, "hV": -9.115370, "hVw": -9.115370, "hW": -9.115370, "hWVmcZHJSzImFkzJOSjiZx": -9.115370, "hZ": -9.115370, "haXe": -9.115370, "heZ": -9.115370, "heaAKlBmT": -9.115370, "head": -8.016758, "hebaq": -9.115370, "help": -7.323611, "helptopic": -8.422223, "here": -9.115370, "hftpk": -9.115370, "hfyii": -9.115370, "hgi": -9.115370, "hhnhHL": -9.115370, "hhtqLwiKoMPDHk": -9.115370, "highest.": -9.115370, "histappend": -8.422223, "history": -6.342781, "hj": -9.115370, "hlSMcfq/": -9.115370, "hldUSXB": -9.115370, "hn": -9.115370, "hoAiVZn": -9.115370, "home": -7.505932, "home/lib/vac/": -8.422223, "hour": -9.115370, "hp": -9.115370, "hpCIARXsiJ/HVZi": -9.115370, "hqYYM": -9.115370, "hqcUbuI": -9.115370, "hs/JCmCBpkEVQUUFjKEKUM": -9.115370, "html": -8.422223, "httMQi": -9.115370, "https": -9.115370, "hvT": -9.115370, "hvq": -9.115370, "hxfcW": -9.115370, "hyE": -9.115370, "hzCt": -9.115370, "i": -5.748074, "i/": -9.115370, "i/INDEX": -8.422223, "i/PNm": -9.115370, "iAKUEqpeaN": -9.115370, "iBoAlzF": -9.115370, "iCpMFJbSc": -9.115370, "iDv": -9.115370, "iFDvfjsnGDD": -9.115370, "iGQbWNSvsR": -9.115370, "iHXeTILUNZpxmBARCosaxgdwKU": -9.115370, "iJ": -9.115370, "iKOJgi": -9.115370, "iMkqbiprjoxvKMMqgnt": -9.115370, "iMufaLO": -9.115370, "iNF": -9.115370, "iOVywDm": -9.115370, "iPCRuitcaCT": -9.115370, "iR": -9.115370, "iRLk": -9.115370, "iRyOTii": -9.115370, "iTRgFuI": -9.115370, "iTXOxatQo": -9.115370, "iTXvjnxMtTgi": -9.115370, "iThtSKOyusrzbM": -9.115370, "iU": -9.115370, "iUyRKrlOXCBJAfVo": -9.115370, "iV": -9.115370, "iXkjkh": -9.115370, "iXsHFXbq": -9.115370, "iYVfCMtD": -9.115370, "iYXoF": -9.115370, "iYtvqqEyhr": -9.115370, "iaTA": -9.115370, "iajMmr": -9.115370, "ibElDQwtAvkQpL/IuT": -9.115370, "icg": -9.115370, "id": -9.115370, "if": -4.696530, "igUU": -9.115370, "ignoreboth": -8.422223, "iiaplmNQBZq": -9.115370, "iiuuN": -9.115370, "ijZdRuT": -9.115370, "il": -9.115370, "ilTy": -9.115370, "im": -9.115370, "in": -5.783166, "inc": -9.115370, "incappendhistory": -8.422223, "init.stud": -9.115370, "install": -8.422223, "installation.": -9.115370, "integer": -9.115370, "interactive": -9.115370, "intro": -7.729076, "ipjnSXlY": -9.115370, "ipvLYU": -9.115370, "ipx": -9.115370, "iqrB": -9.115370, "irRPRO": -9.115370, "is": -6.918146, "istrip": -8.422223, "it": -9.115370, "its": -9.115370, "ivDF": -9.115370, "ivLApfU": -9.115370, "ivwNwxQAntAIf": -9.115370, "ivy": -8.422223, "iwIhOuEeBEalwpwIjauEjCowIhj": -9.115370, "ix": -9.115370, "iy": -9.115370, "j": -6.282157, "j/l": -9.115370, "jAWtIvB/n": -9.115370, "jCEHOyfAZBp": -9.115370, "jCFHZOZec": -9.115370, "jCfunzxZYpg": -9.115370, "jDpw": -9.115370, "jFNfudTXqyubV": -9.115370, "jFtP/DfdvImYazIHl": -9.115370, "jGrCg": -9.115370, "jHVpeJRoj": -9.115370, "jHVye": -9.115370, "jK": -9.115370, "jL": -9.115370, "jLSlXPBdXdOiOxhK": -9.115370, "jLrj": -9.115370, "jM": -9.115370, "jNQlqerz": -9.115370, "jNZeN": -9.115370, "jOUz": -9.115370, "jPfEqK": -9.115370, "jSBGknIvgF": -9.115370, "jSmU": -9.115370, "jUIwdXelXGiw": -9.115370, "jUkINZUBuCbdwtcjd": -9.115370, "jYQtFndXBToD": -9.115370, "jYwvGxheNjC": -9.115370, "jZdktuOZkYwC": -9.115370, "jaS": -9.115370, "jaTyE": -9.115370, "jadetex": -8.422223, "jar": -7.729076, "jar_file": -9.115370, "jar_url": -9.115370, "java": -8.016758, "java_args": -8.016758, "java_cmd": -8.422223, "java_cmd=": -9.115370, "java_home": -9.115370, "jbKd": -9.115370, "jbwEDIh": -9.115370, "jeG": -9.115370, "jf": -9.115370, "jfEYqFUynyq": -9.115370, "jfpuX": -9.115370, "jgu": -9.115370, "jhKu": -9.115370, "jj": -9.115370, "jklxzRwzCHYuiZKJMZy": -9.115370, "jl": -9.115370, "jmELEWV": -9.115370, "jnGHA": -9.115370, "jobs": -8.422223, "jrXcLTdQBnfO/F": -9.115370, "jtECF": -9.115370, "jthlOdm": -9.115370, "juke": -9.115370, "jukefs": -8.422223, "just": -8.422223, "jv": -9.115370, "jvm": -8.422223, "jvm_opts_file": -9.115370, "jwiUVx": -9.115370, "jyqLTGq": -9.115370, "k": -6.550421, "k/": -9.115370, "kBtw": -9.115370, "kC": -9.115370, "kD": -9.115370, "kDjoKIC": -9.115370, "kFC": -9.115370, "kFI": -9.115370, "kFZVIhFQKiP": -9.115370, "kGXhZy": -9.115370, "kGhuKW/BaImXEf": -9.115370, "kHiMWuEx": -9.115370, "kI": -8.422223, "kJ": -9.115370, "kJbJ": -9.115370, "kLhRBSVAuKdjTS": -9.115370, "kLzuBLrzkQmSsIfHOdxtNsIvz": -9.115370, "kMDJGJaHetO": -9.115370, "kMDjCs": -9.115370, "kMKyQc": -9.115370, "kN": -9.115370, "kNNi/": -9.115370, "kNXYg": -9.115370, "kOEWLh": -9.115370, "kPvYk": -9.115370, "kRA": -9.115370, "kRN": -9.115370, "kRmZJ": -9.115370, "kRqYfuvo": -9.115370, "kTQlaO": -9.115370, "kUuHSTpWSSunzuY": -9.115370, "kVJws": -9.115370, "kVch": -9.115370, "kXnvQcgWjtkE": -9.115370, "kYY": -9.115370, "kc": -9.115370, "kczhcfAensNUuiLAl": -9.115370, "kdVr": -9.115370, "ke": -9.115370, "ke/dwPeXsQ": -9.115370, "keBPODX/htHuWASARtQvcJlFa": -9.115370, "keep": -9.115370, "kfVebZDkAbFXpew": -9.115370, "kfkXlSebtQzOJz": -9.115370, "kfs": -9.115370, "kgu": -9.115370, "kh": -9.115370, "killed": -8.422223, "kj": -9.115370, "kjVOdoyUrjOkaP": -9.115370, "kkX": -9.115370, "km": -9.115370, "koD/weMQeU": -9.115370, "kopJfsCUxYipKrMgdCNM": -9.115370, "krnibrt": -9.115370, "ksook": -9.115370, "kspiOj": -9.115370, "ku": -9.115370, "kuZi": -9.115370, "kwBT": -9.115370, "kwBZ": -9.115370, "kx": -9.115370, "ky": -9.115370, "lKPZbfqsmGpPiAN": -9.115370, "lM": -9.115370, "lRqs": -9.115370, "lZKArrtusVymaCMslUyTgHKYLxyVtxLqFSQvoMgZ": -9.115370, "labs.com": -9.115370, "latest_": -8.016758, "latest_210": -9.115370, "latest_28": -9.115370, "latest_29": -9.115370, "latex": -8.422223, "launch": -8.422223, "lc": -9.115370, "ld": -9.115370, "ldAStPTg": -9.115370, "level": -7.729076, "lfntqXa": -9.115370, "liIPE": -9.115370, "lib": -8.422223, "libev": -9.115370, "license": -9.115370, "limit": -8.422223, "line": -9.115370, "link": -9.115370, "links": -8.422223, "list": -9.115370, "ln": -9.115370, "loMc": -9.115370, "local": -5.979876, "location": -9.115370, "log": -7.729076, "logLevel": -8.422223, "lowest": -9.115370, "lqhYXXA": -9.115370, "ls": -8.016758, "lshMHHkZTrTRI": -9.115370, "ltuWoOLV": -9.115370, "lvuB": -9.115370, "lynx": -8.422223, "m": -6.119638, "m/DdPFrYa": -9.115370, "mAG": -9.115370, "mCK": -9.115370, "mDC": -9.115370, "mDM": -9.115370, "mDaCqSceEMz/SKJ": -9.115370, "mFIzPFCWb": -9.115370, "mFYD": -9.115370, "mFiCvL": -9.115370, "mKgeoUqx": -9.115370, "mNq": -9.115370, "mOZQxM": -9.115370, "mPkHNWzSXOI/dtOzRTYM/G": -9.115370, "mQs": -9.115370, "mRg": -9.115370, "mUD": -9.115370, "mUG": -9.115370, "mUim": -9.115370, "mVBsLqhLWHnA": -9.115370, "mWj": -9.115370, "mWucvu": -9.115370, "mXjrcmx": -9.115370, "mZdtcZYRwz": -9.115370, "main/archive": -8.422223, "main/snapshot": -8.422223, "make": -7.323611, "make_release_url": -8.016758, "make_snapshot_url": -8.016758, "make_url": -7.729076, "makedepends": -9.115370, "makeinfo": -8.422223, "man": -7.505932, "match": -9.115370, "max": -9.115370, "maximum": -8.016758, "mbxY": -9.115370, "mem": -7.729076, "memory": -9.115370, "message": -8.422223, "mf": -9.115370, "mhpwJDYT": -9.115370, "minute": -9.115370, "mj": -9.115370, "mkNh": -9.115370, "mkdir": -8.422223, "mlX": -9.115370, "mmm": -9.115370, "mnTzGYhO": -9.115370, "mnnGtPvNZ": -9.115370, "mnt": -9.115370, "moTZuzmr/O": -9.115370, "mode": -8.422223, "month": -9.115370, "mount": -6.918146, "mozilla": -8.422223, "mpg": -7.729076, "mqSPLyDZm": -9.115370, "mqTSekL": -9.115370, "mrhIKdGsyMuI": -9.115370, "msDzUugWLkoo": -9.115370, "msKUBm": -9.115370, "msg": -7.729076, "msys": -8.422223, "mtk": -9.115370, "muOd": -9.115370, "muUlkwB": -9.115370, "mv": -9.115370, "mwDhgeJYC": -9.115370, "mwgVLWSr": -9.115370, "mxysxkJxfLGpmbp": -9.115370, "myklcX": -9.115370, "mzxr": -9.115370, "n": -5.108037, "n/": -9.115370, "n/HkJdADweiKUCtAHJSsuY": -9.115370, "nAlCTd": -9.115370, "nBa": -9.115370, "nKW": -9.115370, "nKoir": -9.115370, "nL": -9.115370, "nLfBMGu": -9.115370, "nMiP": -9.115370, "nN": -9.115370, "nNO": -9.115370, "nNSm": -9.115370, "nO": -9.115370, "nOmeOi": -9.115370, "nPsT": -9.115370, "nR": -9.115370, "nSPlBOmiRvEIWdSonRTIerdeR": -9.115370, "nT": -9.115370, "nTBrXyz": -9.115370, "nTg": -9.115370, "nUd": -9.115370, "nWGNb": -9.115370, "nX": -9.115370, "nXJ": -9.115370, "nYObzsFN": -9.115370, "nYZG": -9.115370, "nZUO": -9.115370, "na": -9.115370, "naeBntDgO": -9.115370, "name": -9.115370, "name##*fo": -9.115370, "name1": -9.115370, "name2": -9.115370, "nc": -8.422223, "ncNk/uI": -9.115370, "ncQ": -9.115370, "neCPVN": -9.115370, "need": -9.115370, "nenAA": -9.115370, "netscape": -8.422223, "ng": -9.115370, "ngdKM": -9.115370, "nmrWvHrxd": -9.115370, "nnKEnSN": -9.115370, "no": -6.170931, "nocasematch": -9.115370, "noshare_opts": -9.115370, "not": -6.342781, "np": -9.115370, "npBFGXTIA": -9.115370, "nq": -9.115370, "ns": -9.115370, "ntGqYsFVGwvC": -9.115370, "nu": -9.115370, "nv": -9.115370, "nvCyun": -9.115370, "nw": -9.115370, "nw/UgmVGFZDxujrbk": -9.115370, "nwE": -9.115370, "nxxravr": -9.115370, "nyytilZ": -9.115370, "nzZ/d": -9.115370, "o": -6.170931, "o/DbVkMr": -9.115370, "o/T": -9.115370, "o/U": -9.115370, "oAXSQBZ": -9.115370, "oBJIXYUonbZMDlkLUmCbTHEd": -9.115370, "oEkK": -9.115370, "oFx": -9.115370, "oG": -9.115370, "oHSneya": -9.115370, "oJWqLKrGddPxz": -9.115370, "oKJFVFpPTLyEoB": -9.115370, "oKs": -9.115370, "oLxTPG": -9.115370, "oNIsSlTH": -9.115370, "oObUDv": -9.115370, "oP": -9.115370, "oPpx": -9.115370, "oQNhz": -9.115370, "oSGjKcLD": -9.115370, "oSUr": -9.115370, "oTl": -9.115370, "oVBH": -9.115370, "oVtadMvayTQZ/CEfXc/iXQJ": -9.115370, "oWC": -9.115370, "oWUOGRYAAAAAAs": -9.115370, "oXhJmIH": -9.115370, "oZZmE": -9.115370, "obBcjreNoshlDjVL": -9.115370, "obtgl": -9.115370, "od": -9.115370, "oeG": -9.115370, "oeSFVs": -9.115370, "of": -7.729076, "offline": -8.016758, "og": -9.115370, "ogTb": -9.115370, "ogg": -8.422223, "ogh/": -9.115370, "ojGywfuITCuM": -9.115370, "ojHit": -9.115370, "ojNY": -9.115370, "okC": -9.115370, "ol": -9.115370, "olaHnJt": -9.115370, "old": -8.016758, "omh": -9.115370, "on": -8.422223, "onHzvAJhJ": -9.115370, "only": -8.422223, "ooZU": -9.115370, "oozWGcDZoZD": -9.115370, "open": -9.115370, "openssl": -9.115370, "opera": -8.422223, "opt": -8.016758, "options": -7.505932, "opts": -9.115370, "oqgJUQVaLF": -9.115370, "or": -9.115370, "order": -9.115370, "org.scala": -7.729076, "origin": -9.115370, "osaVR": -9.115370, "otQGsYX": -9.115370, "other": -8.422223, "ouQwziM": -9.115370, "ourbB": -9.115370, "output": -9.115370, "overwrite": -8.016758, "overwriting": -8.422223, "ovlI": -9.115370, "ovoCC/Fl": -9.115370, "ovq": -9.115370, "owpQqI": -9.115370, "ozVg": -9.115370, "ozrS": -9.115370, "p": -6.024328, "p/": -9.115370, "pBZPBrefrWz": -9.115370, "pDIJGpF": -9.115370, "pEegVd": -9.115370, "pFAMpbZhvfGO": -9.115370, "pFL": -9.115370, "pFPrvS": -9.115370, "pFRJX": -9.115370, "pHVJA/iejpgFEPJSeTe": -9.115370, "pIwVTnBB": -9.115370, "pK": -9.115370, "pKO": -9.115370, "pMbLBR": -9.115370, "pQ": -9.115370, "pRKqvLb": -9.115370, "pSAsDWHkXmB": -9.115370, "pTfBNjIKvi": -9.115370, "pTofDlnnz": -9.115370, "pU": -9.115370, "pVSuvKgPsnS": -9.115370, "pVTGuH": -9.115370, "pWDpal": -9.115370, "pXRwFj": -9.115370, "pYjaN": -9.115370, "pZAG/tPWglviGHd/jKNKmNz": -9.115370, "package": -9.115370, "page": -7.505932, "pajeod": -9.115370, "pat": -8.016758, "patch": -8.422223, "path": -6.224998, "pbO": -9.115370, "pcZ": -9.115370, "pcletmxUKcC": -9.115370, "pcwnB": -9.115370, "pcwvIZ": -9.115370, "pd": -9.115370, "pdfjadetex": -8.422223, "pdflatex": -8.422223, "pdftex": -8.422223, "pdhQmzl": -9.115370, "pdide": -9.115370, "pdmn": -9.115370, "pe": -9.115370, "peYJdF": -9.115370, "pemKpRG": -9.115370, "perl": -8.016758, "perm": -7.323611, "pg": -8.422223, "ph": -9.115370, "pi": -9.115370, "pi/pX": -9.115370, "piVgH": -9.115370, "piZ": -9.115370, "pic": -9.115370, "ping": -8.422223, "pkgdesc": -9.115370, "pkgname": -9.115370, "pkgrel": -9.115370, "pkgver": -9.115370, "pkhbK": -9.115370, "playmidi": -8.422223, "plumb": -9.115370, "pnVos": -9.115370, "pnunM": -9.115370, "podr": -9.115370, "port": -9.115370, "port.": -9.115370, "postproc": -7.729076, "ppWRENgCIdf": -9.115370, "ppn": -9.115370, "pqYJXCSuuVJCSGpR": -9.115370, "pre": -9.115370, "precedence": -9.115370, "precmd": -8.422223, "prefix": -9.115370, "prepend": -9.115370, "preproc": -5.714173, "print": -8.422223, "print_help": -8.422223, "printf": -7.729076, "process": -9.115370, "process_args": -8.016758, "processed": -9.115370, "project": -8.422223, "project/build.properties": -6.918146, "prompt": -8.422223, "proof": -9.115370, "properties": -9.115370, "property": -9.115370, "provides": -9.115370, "ps": -8.422223, "psukyFX": -9.115370, "ptAwJwEaA": -9.115370, "ptXGfbQIuBozZeUz/": -9.115370, "puDtUgEsm": -9.115370, "puW": -9.115370, "pull": -9.115370, "pushd": -8.422223, "put": -9.115370, "puulzpPSg": -9.115370, "pvmxxUMhvQfIGY": -9.115370, "pwxQU": -9.115370, "pxSW": -9.115370, "q": -6.070848, "q/": -9.115370, "q/ZX": -9.115370, "qAQ": -9.115370, "qAbuIgebtMbII/fz": -9.115370, "qCQfl": -9.115370, "qCX": -9.115370, "qCXqM/r": -9.115370, "qCiU": -9.115370, "qETRkiIV": -9.115370, "qEldcjmNPkxHHiM": -9.115370, "qGxJY": -9.115370, "qIXX": -9.115370, "qLx": -9.115370, "qMFyUP": -9.115370, "qMdQax": -9.115370, "qNWWQ": -9.115370, "qNswYbuRc": -9.115370, "qOyvJrEoflj": -9.115370, "qQbzmiKvfvur/BLx": -9.115370, "qQij": -9.115370, "qTpklgi": -9.115370, "qUAgL": -9.115370, "qX": -8.422223, "qXJiM/ePDYwPcq": -9.115370, "qXgosgYiGJZNbzEiOoEB": -9.115370, "qYVK": -9.115370, "qZ": -9.115370, "qaaTV": -9.115370, "qadclm": -9.115370, "qasmS": -9.115370, "qcJNafOQ/BqhGwRpgwmzbOi": -9.115370, "qd": -9.115370, "qdcc": -9.115370, "qeOWFpc/FQFgzUepdYD": -9.115370, "qgLLHYROhflteDmKKVn": -9.115370, "qh": -9.115370, "qiamcdsl": -9.115370, "qiv": -8.422223, "qjNAV": -9.115370, "qlMiG": -9.115370, "qlcYeMcIx": -9.115370, "qmFfyshHU": -9.115370, "qnfUlde": -9.115370, "qnjxI": -9.115370, "qoLlun": -9.115370, "qp": -9.115370, "qqpqX": -9.115370, "qrg": -9.115370, "qsbUnWfhf/HJBcZHzNbP": -9.115370, "query": -9.115370, "quiet": -7.035929, "quit": -8.422223, "qv": -9.115370, "qxhuNssfirqXrkLJAyPW": -9.115370, "qxiBk": -9.115370, "qyU": -9.115370, "qzAasgPBrvWJtn": -9.115370, "qzkQvdkbUMf": -9.115370, "r": -5.937316, "r/XvFt": -9.115370, "rBvquqlXlAw": -9.115370, "rCOMRP": -9.115370, "rCVAAEwdadAW": -9.115370, "rDfRXMhZSS": -9.115370, "rEtxZ/lkSsYf": -9.115370, "rFxVfZHdbr/tcCHnb": -9.115370, "rHzZohvteIMgpChyzbMMtY": -9.115370, "rI": -9.115370, "rIoFr": -9.115370, "rIrxO": -9.115370, "rJlVB": -9.115370, "rL": -9.115370, "rNOOolvHeqIPjtvaTYJIUk": -9.115370, "rO": -9.115370, "rOpvWs": -9.115370, "rPRVLlj": -9.115370, "rRGAgAhARwAAAAQz": -9.115370, "rS/zmJPGo": -9.115370, "rSv": -9.115370, "rTi/a": -9.115370, "rU": -9.115370, "rYJyJwgvIzfBMGU": -9.115370, "rZXe": -9.115370, "ray": -9.115370, "rb": -9.115370, "rbGvwQ": -9.115370, "rbJ": -9.115370, "rbenv": -8.422223, "rctHO": -9.115370, "rdMFuvfp": -9.115370, "read": -8.422223, "readlink": -9.115370, "readonly": -8.422223, "realplay": -8.422223, "rehash": -8.422223, "releases": -8.422223, "remote.origin.pushurl": -9.115370, "remote.origin.url": -9.115370, "repository": -9.115370, "require_arg": -6.224998, "reset": -9.115370, "residual_args": -7.729076, "residuals": -9.115370, "return": -8.016758, "rf": -9.115370, "rfQlYXYTRQ": -9.115370, "rfork": -8.422223, "rgview": -8.422223, "rgvim": -8.422223, "rh": -9.115370, "riAYYMD": -9.115370, "rjlJdP": -9.115370, "rjvWPkvIpXBKBqMd": -9.115370, "rk": -9.115370, "rkv": -9.115370, "rm": -8.422223, "rmdir": -8.422223, "roff": -7.323611, "rp": -9.115370, "rpQUz": -9.115370, "rqz": -9.115370, "rrCcz/WxBl": -9.115370, "rrX": -9.115370, "rrsOGbrsbaLR": -9.115370, "rs/cmJzTEypO": -9.115370, "rt": -9.115370, "rtECqzmdq": -9.115370, "rtnSgW/nSLVe": -9.115370, "rtpXXV": -9.115370, "ruMzh": -9.115370, "run": -9.115370, "runner": -8.016758, "rview": -8.422223, "rvim": -8.422223, "rvm": -9.115370, "rvm_ignore_rvmrc": -9.115370, "rvm_is_not_a_shell_function": -8.422223, "rvm_path": -7.729076, "rvm_path/scripts": -9.115370, "rvm_rvmrc_files": -8.016758, "rvmrc": -8.016758, "rwVdfXebGJ": -9.115370, "rx": -9.115370, "rzr/": -9.115370, "s": -5.649634, "sB": -9.115370, "sCHb": -9.115370, "sDTLNHl": -9.115370, "sDubtNkLYx": -9.115370, "sEeAu": -9.115370, "sICHMSq": -9.115370, "sIHKdi": -9.115370, "sJSMs": -9.115370, "sLVO": -9.115370, "sNLmGNfekl": -9.115370, "sNZFRmHKtp/": -9.115370, "sPo": -9.115370, "sQr": -9.115370, "sRYzH": -9.115370, "sRlPgvdfAFtLIveNievHwSVrdj": -9.115370, "sU": -9.115370, "sVmQ": -9.115370, "sWUrXjgMRV": -9.115370, "sWlu/": -9.115370, "sWqrLVUdKewCWsZ": -9.115370, "sZ": -9.115370, "sZatbJmo": -9.115370, "saYNSd": -9.115370, "save": -7.729076, "sbt": -5.681383, "sbt.version": -8.016758, "sbt_artifactory_list": -8.016758, "sbt_commands": -8.422223, "sbt_create": -8.422223, "sbt_create=": -9.115370, "sbt_dir": -8.016758, "sbt_explicit_version": -7.169460, "sbt_explicit_version=": -8.422223, "sbt_groupid": -7.505932, "sbt_jar": -8.016758, "sbt_jar=": -9.115370, "sbt_launch_dir": -8.016758, "sbt_launch_dir=": -9.115370, "sbt_mem": -7.505932, "sbt_opts_file": -8.016758, "sbt_release_version": -8.422223, "sbt_snapshot": -9.115370, "sbt_snapshot_version": -8.422223, "sbt_url": -9.115370, "sbt_version": -6.630463, "sbtargs": -7.729076, "sbtargs=": -8.422223, "sbtopts": -9.115370, "scRn": -9.115370, "scala": -7.505932, "scalaHome": -9.115370, "scalaVersion": -9.115370, "scala_version": -8.016758, "scalacOptions": -8.016758, "scalac_args": -7.505932, "score": -7.323611, "score=": -8.016758, "script_dir": -9.115370, "script_name": -8.016758, "script_path": -9.115370, "sdyPPdARI": -9.115370, "seOEcSI": -9.115370, "search": -8.016758, "search=": -9.115370, "sec": -7.323611, "sec/INDEX": -9.115370, "second": -9.115370, "sed": -6.170931, "series": -9.115370, "service": -9.115370, "set": -5.819533, "setopt": -7.035929, "setting": -9.115370, "settings/plugins": -9.115370, "sez": -9.115370, "sffavAZPB": -9.115370, "sgTBAHyJoF": -9.115370, "sh": -9.115370, "shTPQ": -9.115370, "share": -8.422223, "shared": -9.115370, "sharehistory": -8.422223, "sharing": -9.115370, "shift": -5.164126, "shopt": -7.169460, "shows": -9.115370, "siQ": -9.115370, "silent": -9.115370, "sjXSat": -9.115370, "slLy/vgRkzshm": -9.115370, "slghgU": -9.115370, "slitex": -8.422223, "sll": -9.115370, "snap": -9.115370, "snapshot": -8.422223, "snapshots": -8.422223, "sncSSEA": -9.115370, "sncr": -9.115370, "so": -9.115370, "sort": -9.115370, "source": -7.729076, "sources": -7.729076, "sources.cs.bell": -9.115370, "sourcesdump": -9.115370, "sourcessnap": -9.115370, "sqcmhhO": -9.115370, "srv": -7.505932, "srvz": -9.115370, "stDPllv": -9.115370, "start": -8.016758, "stopped": -8.422223, "stripped": -9.115370, "stty": -8.422223, "stud": -7.729076, "stuff": -9.115370, "such": -8.422223, "sumRXhcPA": -9.115370, "svWHhQa": -9.115370, "svqNWFz": -9.115370, "switch": -7.323611, "sy": -9.115370, "syTE/TG": -9.115370, "system": -9.115370, "szETjtHhwYNv": -9.115370, "szKJvcu/": -9.115370, "szy": -9.115370, "t": -6.282157, "t/Iy": -9.115370, "t/ewXGFDf/MsHbuj": -9.115370, "tAkAE": -9.115370, "tAqaC": -9.115370, "tDOgS": -9.115370, "tE": -9.115370, "tHB": -9.115370, "tL": -9.115370, "tLECcOYOoDpvxlCEnbxtrt": -9.115370, "tLbs": -9.115370, "tMwgfO/CgWgkGXkd": -9.115370, "tOS": -9.115370, "tOnED": -9.115370, "tP": -9.115370, "tPBHUJt": -9.115370, "tRFjlyLrzK": -9.115370, "tTcviIwpdwmonpSwY": -9.115370, "tTrqjHRTkSQbw": -9.115370, "tVAHUbizPC": -9.115370, "tXC": -9.115370, "tYebd": -9.115370, "taIOCG": -9.115370, "tail": -9.115370, "tar": -9.115370, "target": -9.115370, "tbl": -9.115370, "tc": -9.115370, "tcp": -9.115370, "tdcgUZMysEAV": -9.115370, "term": -8.422223, "terminals": -8.422223, "test": -6.812785, "tex": -8.422223, "texi": -7.729076, "tfB": -9.115370, "tfV": -9.115370, "tg": -9.115370, "tgQeeAsurSlT": -9.115370, "the": -6.342781, "them": -9.115370, "then": -5.377701, "there": -8.422223, "this": -7.323611, "timidity": -8.422223, "tjqtZhDfSt": -9.115370, "tkVXfSc": -9.115370, "tlbgSp": -9.115370, "tloBApM": -9.115370, "tmrLFfs": -9.115370, "tn": -9.115370, "tnXscSRN": -9.115370, "to": -5.783166, "toJ": -9.115370, "tools.sbt": -8.016758, "torZ": -9.115370, "tpJUe": -9.115370, "tpOyTkboo": -9.115370, "tqJpS/": -9.115370, "tqMHKC": -9.115370, "tr": -9.115370, "troff": -6.812785, "true": -7.505932, "try": -7.505932, "tsrp": -9.115370, "tt": -9.115370, "tuG": -9.115370, "twTYYfiEpesSn": -9.115370, "type": -8.016758, "typeset": -7.505932, "tzTC": -9.115370, "u": -7.505932, "uGq": -9.115370, "uHKXmCL": -9.115370, "uI": -9.115370, "uSDSPCiLHxnril": -9.115370, "uTNLShr": -9.115370, "uXLGhqXNV": -9.115370, "uZ/gPp": -9.115370, "uZW": -9.115370, "ubHGY/q": -9.115370, "ucgZlb": -9.115370, "ue": -9.115370, "umask": -8.422223, "unalias": -8.422223, "uncompress": -8.422223, "unset": -7.035929, "unzip": -8.422223, "upKbLj/sRWnz": -9.115370, "update": -9.115370, "update_build_props_sbt": -8.016758, "url": -7.323611, "url=": -9.115370, "us": -9.115370, "usage": -7.729076, "use": -9.115370, "uyc": -9.115370, "uzPe": -9.115370, "v": -5.979876, "vAUObvi": -9.115370, "vAdksZ": -9.115370, "vDRI": -9.115370, "vDn": -9.115370, "vE": -9.115370, "vF": -9.115370, "vGvV/w": -9.115370, "vHexKX": -9.115370, "vI/OliDK": -9.115370, "vJbXhtf/Ybjq": -9.115370, "vKoTf": -9.115370, "vMQoVDqNB": -9.115370, "vO": -8.422223, "vOwU": -9.115370, "vPjiPlltLmEOvNp": -9.115370, "vQEW": -9.115370, "vQSPFg/hyqntcluKVrIF": -9.115370, "vQeldx": -9.115370, "vQkrbS": -9.115370, "vR": -9.115370, "vSTfyJgjVS": -9.115370, "vUSgTPAF": -9.115370, "vUZA": -9.115370, "vWr": -9.115370, "vX": -9.115370, "vYYsT": -9.115370, "vac": -7.729076, "vacfs": -8.422223, "value": -9.115370, "variable": -9.115370, "vbW": -9.115370, "vbt": -9.115370, "vc": -9.115370, "vcxyrs": -9.115370, "vcyCMQwCogR": -9.115370, "vdBB": -9.115370, "vekMg": -9.115370, "vekRCGiLdMRfB": -9.115370, "ver": -7.169460, "verbose": -7.169460, "version": -6.024328, "versionLine": -8.422223, "versionLine##build.scala.versions": -9.115370, "versionLine##sbt.version": -9.115370, "versionString": -8.016758, "versions": -9.115370, "vfXJZKUiVHuvWM": -9.115370, "vg": -9.115370, "vgMeIEHiYlCvzKf": -9.115370, "vhOUMmqAnZ": -9.115370, "vi": -8.422223, "view": -8.422223, "vim": -8.422223, "vjPYQO": -9.115370, "vlog": -9.115370, "vly": -9.115370, "vnFaVtLw": -9.115370, "vpDLAaAg": -9.115370, "vpIl": -9.115370, "vq": -9.115370, "vrLPZ": -9.115370, "vriHa": -9.115370, "vrnnxPX/q": -9.115370, "vs": -9.115370, "vtBRpt": -9.115370, "vvU": -9.115370, "vvY": -9.115370, "vxK": -9.115370, "vy/YKuCHEuNc": -9.115370, "vzaNVCD/Y": -9.115370, "vzu": -9.115370, "w": -6.119638, "w//": -9.115370, "wASbUq": -9.115370, "wAeC": -9.115370, "wAzVhjztfQH": -9.115370, "wBEgvhGcn": -9.115370, "wDJ": -9.115370, "wDTAq": -9.115370, "wEGb": -9.115370, "wGHHF": -9.115370, "wGzU": -9.115370, "wHzd": -9.115370, "wIAAAAABFla": -9.115370, "wIE": -9.115370, "wInBVE": -9.115370, "wJ": -9.115370, "wK": -9.115370, "wLKHam": -9.115370, "wLoKHaNUi": -9.115370, "wMDeoIJfXl/QSnUTdL": -9.115370, "wOVtn": -9.115370, "wPPJkoinlCNOyyWvRLw": -9.115370, "wPZp": -9.115370, "wPlhgp": -9.115370, "wSuv": -9.115370, "wTrC": -9.115370, "wTuPO": -9.115370, "wUt": -9.115370, "wVNfVeuOne": -9.115370, "wViBIwQ": -9.115370, "wYK": -9.115370, "want": -9.115370, "warn": -9.115370, "was": -9.115370, "way": -9.115370, "wbcVL": -9.115370, "wcG": -9.115370, "wd": -9.115370, "wdFhGnI": -9.115370, "we": -9.115370, "were": -9.115370, "wf": -9.115370, "wgeCLSeBLG": -9.115370, "wget": -8.422223, "wgn": -9.115370, "when": -8.422223, "which": -7.035929, "while": -7.169460, "whoami": -8.422223, "wi": -9.115370, "wifooev/": -9.115370, "wiki": -8.422223, "wine": -8.422223, "with": -9.115370, "wjPnwLp": -9.115370, "wkFd": -9.115370, "wm": -9.115370, "wmxuUrjmyOXVEn": -9.115370, "wnJBxK": -9.115370, "wor": -9.115370, "wp": -9.115370, "wpSbdLRLCixP": -9.115370, "wqMGNFjA": -9.115370, "wrapper.jar": -9.115370, "wrsFT": -9.115370, "wsAZJhz": -9.115370, "wsGw": -9.115370, "wsys": -9.115370, "wtOiHknMlnzUdiEje": -9.115370, "wuD": -9.115370, "wv": -9.115370, "wwvXs/DbVqQRLkckwYF": -9.115370, "wxIDS": -9.115370, "wziA": -9.115370, "x": -5.681383, "xAgfNToz": -9.115370, "xCJmoagZBO": -9.115370, "xFii": -9.115370, "xGoyAIqampubm": -9.115370, "xIHkE": -9.115370, "xK": -9.115370, "xOLi": -9.115370, "xQG": -9.115370, "xX": -9.115370, "xaWuevgEPh": -9.115370, "xakZuAOdVSGrUp": -9.115370, "xanim": -8.422223, "xcFMM": -9.115370, "xcWr": -9.115370, "xdsgwAReg": -9.115370, "xdvi": -8.422223, "xe": -9.115370, "xeCfCKHNY": -9.115370, "xeo": -9.115370, "xfig": -8.422223, "xine": -8.422223, "xjDF": -9.115370, "xjk": -9.115370, "xly": -9.115370, "xm": -9.115370, "xmkdFwO": -9.115370, "xmms": -8.422223, "xnP": -9.115370, "xoD": -8.422223, "xond": -9.115370, "xp": -9.115370, "xpdf": -8.422223, "xr": -9.115370, "xtL": -9.115370, "xtcM": -9.115370, "xv": -8.016758, "xx": -9.115370, "xxK": -9.115370, "xyfCjKjARYpoVYbN": -9.115370, "xzd": -9.115370, "y": -6.550421, "y/": -9.115370, "yATDyCs": -9.115370, "yAudU": -9.115370, "yBj": -9.115370, "yCjiZHKx": -9.115370, "yCkcKJEWiVfO": -9.115370, "yD": -9.115370, "yDIb": -9.115370, "yE": -9.115370, "yF": -9.115370, "yF/": -9.115370, "yFiJAKj": -9.115370, "yHk/UfkLBgUaAAS": -9.115370, "yHtG/ONcEQVQa": -9.115370, "yI/": -9.115370, "yLpCVumw": -9.115370, "yM": -9.115370, "yMpE": -9.115370, "yMys": -9.115370, "yODIh": -9.115370, "yP": -9.115370, "yPEb": -9.115370, "yQHq": -9.115370, "ySIr": -9.115370, "ySjinJojSOnMLg": -9.115370, "yTVpyqz": -9.115370, "yTi": -9.115370, "yUUu": -9.115370, "yV": -8.422223, "yVTAFu": -9.115370, "yWCvs": -9.115370, "yWu": -9.115370, "yX": -8.422223, "yXvvzH": -9.115370, "yYz//vTT": -9.115370, "yZ": -9.115370, "yZ/mObyoidqEH": -9.115370, "yayqiWeY": -9.115370, "ybKHckMYySx": -9.115370, "yeCBqPutYp": -9.115370, "yeU": -9.115370, "year": -9.115370, "yes": -8.422223, "yf": -8.422223, "yfpMJq": -9.115370, "ygSF": -9.115370, "ykr": -9.115370, "ylO": -9.115370, "ylesxWcgnChr": -9.115370, "ylrywZZPIX": -9.115370, "ymDr": -9.115370, "ynFdwoHr": -9.115370, "ynLcgYoXnIU": -9.115370, "yoQcUHIDBvr": -9.115370, "yorXH": -9.115370, "you": -9.115370, "your": -8.422223, "ypSFGaHlQ": -9.115370, "yquPiuK": -9.115370, "yrIyeNVRJGDSkKyCZHmw": -9.115370, "yrah": -9.115370, "yv": -9.115370, "yvyI": -9.115370, "ywY": -9.115370, "yxq": -9.115370, "yytaWb": -9.115370, "yzvdImA": -9.115370, "z": -6.024328, "z/": -9.115370, "zAzro": -9.115370, "zBDGGGGVE": -9.115370, "zCanNxWnvKKid": -9.115370, "zCkbAi": -9.115370, "zE": -9.115370, "zEEGVuOXo": -9.115370, "zH": -9.115370, "zIqZ": -9.115370, "zIzw": -9.115370, "zJ/Ow": -9.115370, "zJRG": -9.115370, "zJc": -9.115370, "zJe": -9.115370, "zKtAMH": -9.115370, "zLgI": -9.115370, "zLvcD": -9.115370, "zMEcTgV": -9.115370, "zMzv": -9.115370, "zPTuPfjNqKBT": -9.115370, "zPiR": -9.115370, "zQj": -9.115370, "zQkW": -9.115370, "zQsdQ": -9.115370, "zRFVTm": -9.115370, "zTaBRrPo": -9.115370, "zTggEIsdr": -9.115370, "zTh": -9.115370, "zVS": -9.115370, "zVZJMEzwuNqeXrJqoZ": -9.115370, "zVzGwXFhkCv": -9.115370, "zXBiPRU": -9.115370, "zXgSReFP": -9.115370, "zZLZNalgXdhdTRdlAYSgjkz/fJHClbtWUv": -9.115370, "zZnKokeDtCcWJnoeyf": -9.115370, "zZqClAGYr": -9.115370, "zbbOyHoUBA": -9.115370, "zbyQOA": -9.115370, "zca": -9.115370, "zcat": -8.422223, "zcmp": -8.422223, "zdVmCEEkkjMZCNSIwcIyt": -9.115370, "zdiff": -8.422223, "zegrep": -8.422223, "zfgrep": -8.422223, "zgrep": -8.422223, "zipinfo": -8.422223, "zitEpn": -9.115370, "zj": -9.115370, "zjnAsTWpmbl": -9.115370, "zkCd": -9.115370, "zkDrjNQuv": -9.115370, "zless": -8.422223, "zm": -9.115370, "zmore": -8.422223, "zn": -9.115370, "znHNXbTE": -9.115370, "znew": -8.422223, "znzaTTi": -9.115370, "zqCi": -9.115370, "zqh": -9.115370, "zrRaMkcrVWleMONdG": -9.115370, "zrpB": -9.115370, "zt": -9.115370, "zvReuPR": -9.115370, "zvqCoX": -9.115370, "zw/bhfp": -9.115370, "zwevglUxtXTellcCExpaKXv": -9.115370, "zxI": -9.115370, "zxT": -9.115370, "zxg": -9.115370, "zyZfncpMvSEHgO": -9.115370, "zyyvjz": -9.115370, "{": -4.540659, "|": -5.072319, "||": -6.476313, "}": -4.540659, "~": -5.937316, }, "ShellSession": map[string]float64{ "!": -4.867534, "#######################################################################": -5.560682, "$": -3.614771, "%": -5.560682, "'": -5.560682, "(": -4.462069, ")": -4.462069, "***": -4.867534, ",": -3.614771, "-": -3.075775, "...": -4.174387, "/": -5.560682, "//opensource.apple.com/tarballs/gcc": -5.560682, "//r.research.att.com/tools/gcc": -5.560682, "/usr/local/Cellar/apple": -5.560682, ":": -2.921624, "=": -3.768922, ">": -4.174387, "A": -5.560682, "All": -5.560682, "Apple": -5.560682, "Building": -4.867534, "Caveats": -5.560682, "Check": -5.560682, "Checking": -5.560682, "Cloning": -5.560682, "Compressing": -5.560682, "Could": -4.867534, "Counting": -5.560682, "Downloading": -5.560682, "FOOBAR": -4.867534, "Fetching": -5.560682, "GCC": -5.560682, "GFortran": -5.560682, "Hello": -4.867534, "Installing": -4.867534, "M": -5.560682, "Makefile": -5.560682, "NOTE": -5.560682, "RDoc": -5.560682, "Receiving": -5.560682, "Resolving": -5.560682, "Successfully": -5.560682, "Summary": -5.560682, "Tapped": -5.560682, "There": -5.560682, "This": -4.174387, "Total": -5.560682, "Warning": -5.560682, "World": -4.867534, "XCode": -4.867534, "You": -5.560682, "`": -4.867534, "a": -4.174387, "also": -5.560682, "and/or": -5.560682, "apple": -5.560682, "are": -5.560682, "available": -5.560682, "brew": -4.867534, "build": -5.560682, "built": -4.867534, "checking": -5.560682, "compiler": -5.560682, "compilers": -4.867534, "components": -5.560682, "configuration": -5.560682, "connectivity...": -5.560682, "contains": -5.560682, "could": -4.867534, "create": -5.560682, "darwin": -5.560682, "delta": -4.867534, "deltas": -5.560682, "details.": -5.560682, "documentation": -4.867534, "done": -5.560682, "done.": -5.560682, "due": -5.560682, "echo": -4.867534, "extconf.rb": -5.560682, "extensions.": -4.867534, "failed": -5.560682, "file": -5.560682, "files": -5.560682, "for": -4.174387, "formula": -4.174387, "from": -4.462069, "gcc": -4.867534, "gem": -4.174387, "have": -5.560682, "headers.": -5.560682, "homebrew/dupes": -5.560682, "homebrew/dupes/lsof": -5.560682, "http": -4.867534, "if": -5.560682, "in": -4.867534, "included.": -5.560682, "install": -4.174387, "installed": -4.867534, "into": -5.560682, "is": -4.867534, "lack": -5.560682, "libraries": -5.560682, "libxml/parser.h...": -5.560682, "may": -5.560682, "mkmf.log": -5.560682, "more": -5.560682, "mxcl/master/lsof": -5.560682, "native": -4.867534, "necessary": -5.560682, "need": -5.560682, "no": -5.560682, "nokogiri": -3.768922, "not": -4.867534, "objects": -4.462069, "of": -4.867534, "options.": -5.560682, "over": -5.560682, "pkg": -5.560682, "prior": -5.560682, "probably": -5.560682, "provides": -5.560682, "reason": -4.867534, "release.": -5.560682, "remote": -4.462069, "removed": -5.560682, "reused": -5.560682, "ri": -5.560682, "s": -5.560682, "seconds": -5.560682, "some": -5.560682, "sources": -5.560682, "suffix.": -5.560682, "take": -4.867534, "tap": -4.867534, "that": -5.560682, "the": -4.867534, "this": -5.560682, "to": -4.462069, "using": -5.560682, "v": -5.560682, "version": -5.560682, "were": -5.560682, "while...": -4.867534, "you": -5.560682, "🍺": -5.560682, }, "Shen": map[string]float64{ "&": -8.227910, "'": -7.534763, "(": -2.607509, ")": -2.611139, "*": -4.421247, "***": -6.618472, "+": -4.895705, ",": -4.399268, "-": -1.777439, ".": -8.227910, "/.": -6.841615, "0": -8.227910, "1": -8.227910, "2": -6.618472, ":": -6.030685, ";": -5.337538, "<": -8.227910, "<-address>": -6.282000, "<-dict>": -6.841615, "<-vector>": -8.227910, "</li>": -7.534763, "</ul>": -8.227910, "</~S>": -8.227910, "<graph>": -7.129298, "<li>": -7.534763, "<ul>": -8.227910, "=": -4.895705, ">": -3.258097, "?": -4.969813, "@p": -5.394696, "A": -4.731402, "ADVISED": -7.534763, "AND": -6.148468, "ANY": -6.148468, "ARE": -7.534763, "ARISING": -7.534763, "Acc": -7.534763, "Already": -6.618472, "B": -7.534763, "BE": -7.534763, "BUSINESS": -7.534763, "BUT": -6.841615, "BY": -7.534763, "C": -6.436150, "CAUSED": -7.534763, "CONSEQUENTIAL": -7.534763, "CONTRACT": -7.534763, "CONTRIBUTORS": -6.841615, "COPYRIGHT": -6.841615, "CS": -7.129298, "Char": -7.534763, "CharList": -7.534763, "Chars": -6.841615, "Clojure": -8.227910, "Code": -8.227910, "Commentary": -7.534763, "Component": -6.436150, "Con": -6.148468, "Contents": -6.618472, "Copyright": -7.534763, "D": -6.841615, "DAMAGE.": -7.534763, "DAMAGES": -7.534763, "DATA": -7.534763, "DIRECT": -7.534763, "DISCLAIMED.": -7.534763, "Data": -7.534763, "E": -5.183387, "ES": -7.129298, "EVEN": -7.534763, "EVENT": -7.534763, "EXEMPLARY": -7.534763, "EXPRESS": -7.534763, "Edge": -5.743003, "EdgeID": -6.841615, "EdgeLst": -7.129298, "Edges": -5.925325, "Edgesize": -7.534763, "Eric": -7.534763, "Examples": -8.227910, "FITNESS": -7.534763, "FOR": -6.841615, "Follows": -8.227910, "G": -5.009034, "GOODS": -7.534763, "Graph": -3.923845, "Graphs": -8.227910, "H": -7.534763, "HOLDER": -7.534763, "HOLDERS": -7.534763, "HOWEVER": -7.534763, "IF": -7.534763, "IMPLIED": -6.841615, "IN": -6.436150, "INCIDENTAL": -7.534763, "INCLUDING": -6.436150, "INDIRECT": -7.534763, "INTERRUPTION": -7.534763, "IS": -7.534763, "Index": -7.129298, "It": -8.227910, "JSON": -8.227910, "JSONString": -7.534763, "LIABILITY": -6.841615, "LIABLE": -7.534763, "LIMITED": -6.841615, "LOSS": -7.534763, "Lexer": -8.227910, "License": -7.534763, "M": -6.841615, "MERCHANTABILITY": -7.534763, "N": -6.148468, "NEGLIGENCE": -7.534763, "NO": -7.534763, "NOT": -6.841615, "Neighbors": -7.129298, "New": -6.618472, "OF": -5.455321, "ON": -7.534763, "OR": -5.455321, "OTHERWISE": -7.534763, "OUT": -7.534763, "PARTICULAR": -7.534763, "POSSIBILITY": -7.534763, "PROCUREMENT": -7.534763, "PROFITS": -7.534763, "PROVIDED": -7.534763, "PURPOSE": -7.534763, "Place": -6.148468, "Reachable": -7.534763, "Read": -8.227910, "Redistribution": -7.534763, "Redistributions": -6.841615, "Return": -8.227910, "SERVICES": -7.534763, "SHALL": -7.534763, "SOFTWARE": -6.841615, "SPECIAL": -7.534763, "STRICT": -7.534763, "SUBSTITUTE": -7.534763, "SUCH": -7.534763, "Schulte": -7.534763, "Store": -6.148468, "Strings": -8.227910, "THE": -5.925325, "THEORY": -7.534763, "THIS": -6.841615, "TO": -6.841615, "TORT": -7.534763, "The": -8.227910, "This": -8.227910, "USE": -6.841615, "V": -4.238926, "VS": -6.841615, "Val": -6.030685, "Value": -7.129298, "Vector": -7.534763, "Vert": -6.436150, "VertLst": -7.129298, "Vertex": -7.129298, "Vertices": -6.148468, "Vertsize": -7.534763, "Vs": -6.841615, "WARRANTIES": -6.841615, "WAY": -7.534763, "WHETHER": -7.534763, "Whitespace": -7.534763, "WhitespaceChar": -7.534763, "X": -6.282000, "[": -3.739273, "\\": -4.443720, "]": -3.739273, "_": -8.227910, "a": -4.762174, "able": -8.227910, "above": -6.841615, "absvector": -8.227910, "accept": -8.227910, "add": -4.932073, "address": -7.129298, "adjoin": -7.534763, "all": -7.129298, "an": -7.534763, "and": -5.455321, "and/or": -7.534763, "any": -8.227910, "append": -8.227910, "arbitrary": -8.227910, "are": -6.436150, "as": -7.534763, "associated": -8.227910, "b": -5.662960, "be": -7.534763, "below.": -8.227910, "binary": -6.841615, "bipartite": -7.129298, "boolean": -6.841615, "c": -5.830015, "c#": -5.830015, "can": -8.227910, "cartesian": -8.227910, "characters": -7.129298, "chars": -7.534763, "check": -8.227910, "chris": -6.436150, "code": -7.534763, "complement": -8.227910, "components": -6.148468, "conditions": -6.436150, "connected": -5.183387, "cons": -8.227910, "contain": -7.534763, "contents": -8.227910, "conversion": -8.227910, "convertions": -8.227910, "copyright": -6.841615, "corresponding": -8.227910, "create": -7.534763, "d": -5.743003, "data": -5.283471, "datatype": -8.227910, "define": -4.514338, "defmacro": -7.129298, "dict": -4.443720, "dictionaries": -8.227910, "dictionary": -6.841615, "dictoinary": -8.227910, "dicts": -7.129298, "difference": -7.129298, "discarded.": -8.227910, "disclaimer": -7.534763, "disclaimer.": -7.534763, "distribution.": -7.534763, "do": -6.148468, "documentation": -7.534763, "double": -8.227910, "drop": -7.534763, "e": -5.588853, "e.g.": -8.227910, "each": -8.227910, "edge": -4.644391, "edge/vertex": -8.227910, "edges": -5.394696, "edges.": -8.227910, "element": -7.534763, "empty": -8.227910, "encodes": -8.227910, "entry": -7.534763, "eric": -8.227910, "error": -6.030685, "escaped": -8.227910, "explode": -8.227910, "f": -5.925325, "fail": -8.227910, "filter": -7.534763, "first": -7.534763, "flatten": -8.227910, "following": -6.436150, "for": -5.743003, "form": -7.534763, "forms": -7.534763, "frequencies": -8.227910, "from": -7.534763, "fst": -6.841615, "fully": -8.227910, "function": -8.227910, "g": -5.283471, "generalization": -8.227910, "get": -7.129298, "given": -6.841615, "graph": -4.133565, "graph.shen": -8.227910, "graphs": -8.227910, "h": -7.129298, "has": -6.618472, "hash": -5.925325, "html": -8.227910, "html.shen": -8.227910, "hypergraph": -8.227910, "hypergraphs": -8.227910, "i": -7.129298, "id=": -8.227910, "if": -6.030685, "implementation": -8.227910, "important": -8.227910, "in": -5.662960, "included": -7.534763, "including": -8.227910, "indexed": -8.227910, "indices": -8.227910, "int": -8.227910, "interpose": -8.227910, "intersection": -8.227910, "into": -8.227910, "is": -6.618472, "itself": -8.227910, "j": -7.534763, "key": -5.925325, "keys": -6.841615, "keys.": -8.227910, "lambda": -7.534763, "length": -6.618472, "let": -6.030685, "library": -7.534763, "limit": -6.841615, "lisp": -8.227910, "list": -4.731402, "load": -8.227910, "macro": -7.129298, "make": -5.743003, "map": -6.436150, "mapcon": -7.129298, "materials": -7.534763, "may": -8.227910, "met": -7.534763, "modification": -7.534763, "must": -6.841615, "neighbors": -6.148468, "nobody": -7.534763, "not": -8.227910, "note": -8.227910, "notice": -6.841615, "nth": -8.227910, "number": -5.662960, "of": -5.394696, "one": -7.534763, "optional": -8.227910, "or": -7.534763, "other": -7.534763, "p": -8.227910, "package": -7.534763, "partition": -6.282000, "partitions": -8.227910, "patton": -7.534763, "permitted": -7.534763, "pick": -8.227910, "place": -7.129298, "preserved": -8.227910, "product": -8.227910, "provided": -6.841615, "quotes.": -8.227910, "range": -8.227910, "reduce": -7.129298, "regular": -8.227910, "remove": -7.534763, "represented": -8.227910, "reproduce": -7.534763, "require": -7.534763, "resolve": -5.925325, "retain": -7.534763, "return": -6.841615, "s": -8.227910, "seperate": -8.227910, "sequence": -7.534763, "set": -8.227910, "should": -7.534763, "shuffle": -8.227910, "simple": -7.129298, "size": -7.534763, "sizeof": -6.841615, "sizes": -7.129298, "snd": -7.129298, "some": -8.227910, "source": -6.841615, "specified": -7.534763, "standard": -8.227910, "storage": -7.534763, "stored": -8.227910, "stream": -8.227910, "string": -7.129298, "strings": -7.534763, "strip": -7.534763, "structure": -7.534763, "structures": -8.227910, "stuff": -7.534763, "subset": -7.129298, "suite.": -8.227910, "symbol": -8.227910, "take": -7.534763, "taking": -8.227910, "tasks": -8.227910, "technically": -8.227910, "tests": -8.227910, "that": -7.129298, "the": -4.860614, "this": -6.841615, "title=": -8.227910, "to": -5.394696, "today": -8.227910, "todo": -8.227910, "tokenise": -8.227910, "tool": -8.227910, "trap": -6.436150, "true": -8.227910, "tuple": -6.841615, "two": -8.227910, "unique": -7.129298, "update": -6.618472, "use": -7.534763, "used": -7.534763, "vals": -7.534763, "value": -5.394696, "vector": -6.436150, "vert": -5.662960, "vertex": -4.793923, "vertices": -5.394696, "verts": -6.841615, "w": -6.618472, "w/o": -6.618472, "when": -8.227910, "where": -8.227910, "which": -8.227910, "while": -7.534763, "whitespace": -7.129298, "with": -6.030685, "without": -7.534763, "wrapper": -8.227910, "zip": -8.227910, "{": -5.136867, "|": -3.602937, "}": -5.136867, }, "Slash": map[string]float64{ "!": -5.657739, "(": -2.687324, ")": -2.687324, "+": -4.964591, "-": -4.964591, "...": -6.350886, ".parse": -6.350886, "0": -5.252273, "1": -6.350886, ":": -3.460514, ";": -2.885150, "<%>": -6.350886, "=": -3.517672, "@chars": -5.657739, "@memory": -5.252273, "@nodes": -5.657739, "@ptr": -4.741448, "@seq": -6.350886, "@seq.eval": -6.350886, "@stack": -6.350886, "@stack.last": -6.350886, "@stack.last.push": -6.350886, "@stack.length": -5.657739, "@stack.pop": -6.350886, "@stack.push": -6.350886, "ARGV.first": -6.350886, "AST": -3.865979, "Dec": -5.657739, "Dec.new": -6.350886, "Env": -5.657739, "Env.new": -6.350886, "File.read": -6.350886, "Inc": -5.657739, "Inc.new": -6.350886, "Input": -5.657739, "Input.new": -6.350886, "Loop": -5.657739, "Loop.new": -6.350886, "Next": -5.657739, "Next.new": -6.350886, "Output": -5.657739, "Output.new": -6.350886, "Parser": -5.657739, "Parser.new": -6.350886, "Prev": -5.657739, "Prev.new": -6.350886, "Sequence": -5.252273, "Sequence.new": -5.657739, "SyntaxError": -6.350886, "SyntaxError.new": -5.657739, "[": -4.559126, "]": -4.559126, "_add": -4.271444, "_close_loop": -5.657739, "_open_loop": -5.657739, "_parse_char": -4.964591, "ast": -6.350886, "ast.eval": -6.350886, "char": -4.153661, "chars": -5.657739, "class": -3.259843, "current_value": -4.404976, "current_value=": -6.350886, "def": -2.687324, "end": -6.350886, "env": -3.092789, "env.current_value": -5.252273, "env.current_value.char": -6.350886, "env.ptr": -5.657739, "eval": -3.460514, "for": -4.964591, "if": -5.252273, "in": -4.964591, "init": -4.271444, "input": -6.350886, "last": -6.350886, "length": -6.350886, "memory": -5.252273, "new": -5.657739, "node": -4.741448, "node.eval": -6.350886, "nodes": -4.271444, "of": -6.350886, "parse": -5.657739, "print": -5.657739, "ptr": -3.785936, "ptr=": -6.350886, "seq": -4.559126, "split": -6.350886, "src": -5.657739, "stack": -5.252273, "str": -5.252273, "str.split": -6.350886, "switch": -5.657739, "throw": -5.252273, "unexpected": -6.350886, "value": -5.252273, "while": -5.657739, "{": -2.522244, "||": -6.350886, "}": -2.522244, }, "Slim": map[string]float64{ "!": -4.510860, "#": -3.817712, "#content": -4.510860, "(": -4.510860, ")": -4.510860, "-": -3.412247, ":": -4.510860, "=": -2.208274, "?": -4.510860, "Copyright": -4.510860, "Examples": -4.510860, "Markup": -4.510860, "No": -4.510860, "Please": -4.510860, "Slim": -3.817712, "Thank": -4.510860, "This": -4.510860, "a": -4.510860, "add": -4.510860, "alert": -4.510860, "author": -3.817712, "basic": -4.510860, "body": -4.510860, "content": -3.817712, "div": -4.510860, "do": -4.510860, "doctype": -4.510860, "else": -4.510860, "example": -4.510860, "examples": -4.510860, "file": -4.510860, "for": -4.510860, "found.": -4.510860, "h": -4.510860, "head": -4.510860, "how": -4.510860, "html": -3.817712, "id": -4.510860, "in": -4.510860, "inventory.": -4.510860, "item": -4.510860, "item.name": -4.510860, "item.price": -4.510860, "items": -3.817712, "items.empty": -4.510860, "javascript": -4.510860, "like.": -4.510860, "looks": -4.510860, "meta": -3.817712, "name": -3.817712, "p": -3.817712, "render": -4.510860, "shows": -4.510860, "some": -4.510860, "table": -4.510860, "td.name": -4.510860, "td.price": -4.510860, "title": -4.510860, "tr": -4.510860, "unless": -4.510860, "year": -4.510860, "yield": -4.510860, "you": -3.817712, "{": -3.817712, "|": -3.817712, "}": -3.817712, "©": -4.510860, }, "Smali": map[string]float64{ "$": -5.196941, "(": -3.876316, ")": -3.876316, ",": -2.245037, "-": -2.270868, "..": -6.395280, ".annotation": -6.806379, ".array": -8.111328, ".catch": -7.246331, ".catchall": -7.792874, ".class": -8.938007, ".end": -4.776894, ".field": -5.713433, ".implements": -9.785304, ".lin": -10.883917, ".line": -3.682746, ".local": -5.702133, ".locals": -5.935157, ".method": -5.463382, ".packed": -9.785304, ".param": -5.595650, ".prologue": -5.467816, ".registers": -6.453100, ".restart": -6.649810, ".source": -8.938007, ".sparse": -10.190770, ".super": -8.938007, "/XmlSerializer": -8.938007, "/app/ActionBarDrawerToggle": -6.113232, "/content/ModernAsyncTask": -6.088126, "/view/MotionEventCompat": -7.387409, "/view/VelocityTrackerCompat": -9.092157, "/view/ViewCompat": -10.190770, "/wap/WbxmlSerializer": -6.055603, "/widget/DrawerLayout": -8.111328, "/widget/ScrollerCompat": -7.357556, "/widget/ViewDragHelper": -4.935882, ":": -3.091155, ";": -2.669452, "<*>": -9.274479, "<+Ljava/security/Principal;>": -10.883917, "<Ljava/security/AccessControlContext;>": -10.190770, "<Ljava/security/DomainCombiner;>": -10.883917, "<TParams;TProgress;TResult;>": -7.939478, "<TParams;TResult;>": -10.883917, "<TResult;>": -10.883917, "<TT;>": -8.686692, "<clinit>": -9.092157, "<init>": -5.986077, "=": -6.258944, ">": -3.429197, "ActionBarDrawerToggleImpl": -7.993545, "ActionBarDrawerToggleImplBase": -9.785304, "ActionBarDrawerToggleImplHC": -9.785304, "AsyncTaskResult": -9.274479, "B": -7.792874, "BASE_SETTLE_DURATION": -10.883917, "BII": -10.883917, "C": -8.581332, "CII": -10.190770, "CORE_POOL_SIZE": -10.883917, "Callback": -7.055275, "D": -10.190770, "DEBUG": -10.883917, "DEVICE": -10.883917, "DII": -10.190770, "DIRECTION_ALL": -10.883917, "DIRECTION_HORIZONTAL": -10.883917, "DIRECTION_VERTICAL": -10.883917, "DrawerListener": -10.883917, "EDGE_ALL": -10.883917, "EDGE_BOTTOM": -10.883917, "EDGE_LEFT": -10.883917, "EDGE_RIGHT": -10.883917, "EDGE_SIZE": -10.883917, "EDGE_TOP": -10.883917, "Editor": -8.111328, "Entry": -9.785304, "F": -5.834061, "FF": -8.175867, "FFF": -9.785304, "FFI": -8.804475, "FFII": -9.274479, "FINISHED": -10.883917, "FLandroid/support/v": -10.883917, "FetchRemoteConfig": -9.785304, "I": -4.304666, "ID_HOME": -10.883917, "IF": -10.883917, "II": -7.099727, "III": -8.938007, "IIII": -8.318967, "IIIII": -10.883917, "IIIIIIII": -10.883917, "IIJLjava/util/concurrent/TimeUnit": -10.883917, "IILandroid/graphics/Rect": -10.883917, "ILjava/lang/Object": -8.581332, "ILjava/lang/String": -10.883917, "IMPL": -8.581332, "INVALID_POINTER": -10.883917, "InternalHandler": -8.486021, "J": -7.328569, "JJ": -10.883917, "JLjava/util/concurrent/TimeUnit": -10.190770, "KEEP_ALIVE": -10.883917, "LOG_LEVEL_DEBUG": -10.883917, "LOG_LEVEL_ERROR": -10.883917, "LOG_LEVEL_FATAL": -10.883917, "LOG_LEVEL_INFO": -10.883917, "LOG_LEVEL_WARN": -10.883917, "LOG_TAG": -10.883917, "LOST_SEQUENCE": -9.497622, "Landroid/app/Activity": -7.551712, "Landroid/content/ContentResolver": -10.190770, "Landroid/content/Context": -7.625820, "Landroid/content/SharedPreferences": -7.357556, "Landroid/content/pm/ApplicationInfo": -8.318967, "Landroid/content/pm/PackageManager": -9.785304, "Landroid/content/res/Configuration": -10.883917, "Landroid/content/res/Resources": -8.804475, "Landroid/graphics/Canvas": -10.190770, "Landroid/graphics/Rect": -8.804475, "Landroid/graphics/drawable/Drawable": -8.111328, "Landroid/location/Criteria": -8.938007, "Landroid/net/ConnectivityManager": -10.190770, "Landroid/net/NetworkInfo": -10.190770, "Landroid/os/Build": -9.497622, "Landroid/os/Bundle": -8.244859, "Landroid/os/Handler": -8.804475, "Landroid/os/Looper": -10.883917, "Landroid/os/Message": -9.274479, "Landroid/provider/Settings": -10.883917, "Landroid/support/v": -4.315839, "Landroid/telephony/TelephonyManager": -9.497622, "Landroid/util/DisplayMetrics": -10.190770, "Landroid/util/Log": -7.888184, "Landroid/view/MenuItem": -10.190770, "Landroid/view/MotionEvent": -7.077254, "Landroid/view/VelocityTracker": -7.449930, "Landroid/view/View": -6.174387, "Landroid/view/ViewConfiguration": -9.092157, "Landroid/view/ViewGroup": -7.449930, "Landroid/view/ViewParent": -10.883917, "Landroid/view/animation/Interpolator": -9.497622, "Landroid/webkit/CookieManager": -9.092157, "Landroid/webkit/CookieSyncManager": -8.804475, "Lcom/doodlemobile/gamecenter/DoodleMobileAnaylise": -5.046186, "Lcom/doodlemobile/gamecenter/DoodleMobileLocation": -8.686692, "Lcom/tdq/game/shootbubble/sprite/BmpWrap": -8.938007, "Lcom/tdq/game/shootbubble/sprite/PenguinSprite": -6.664409, "Lcom/tdq/game/shootbubble/sprite/Sprite": -9.274479, "Ldalvik/annotation/MemberClasses": -9.274479, "Ldalvik/annotation/Signature": -7.449930, "Ldalvik/annotation/Throws": -7.748423, "Ljava/io/ByteArrayOutputStream": -6.649810, "Ljava/io/File": -7.792874, "Ljava/io/FileOutputStream": -9.092157, "Ljava/io/IOException": -7.888184, "Ljava/io/ObjectInputStream": -10.190770, "Ljava/io/ObjectOutputStream": -10.190770, "Ljava/io/OutputStream": -7.551712, "Ljava/io/Serializable": -10.883917, "Ljava/io/UnsupportedEncodingException": -10.190770, "Ljava/io/Writer": -10.883917, "Ljava/lang/Boolean": -10.883917, "Ljava/lang/Class": -8.318967, "Ljava/lang/ClassNotFoundException": -10.883917, "Ljava/lang/Exception": -7.246331, "Ljava/lang/IllegalArgumentException": -8.399010, "Ljava/lang/IllegalStateException": -8.581332, "Ljava/lang/Integer": -7.748423, "Ljava/lang/InterruptedException": -10.190770, "Ljava/lang/Long": -9.092157, "Ljava/lang/Math": -7.705863, "Ljava/lang/NullPointerException": -9.497622, "Ljava/lang/Object": -5.536809, "Ljava/lang/Runnable": -8.686692, "Ljava/lang/RuntimeException": -8.111328, "Ljava/lang/SecurityException": -9.785304, "Ljava/lang/SecurityManager": -9.785304, "Ljava/lang/String": -4.540036, "Ljava/lang/StringBuffer": -7.551712, "Ljava/lang/StringBuilder": -5.963936, "Ljava/lang/System": -8.486021, "Ljava/lang/Thread": -8.686692, "Ljava/lang/Throwable": -10.883917, "Ljava/net/URLEncoder": -8.244859, "Ljava/security/AccessControlContext": -7.625820, "Ljava/security/AccessController": -8.938007, "Ljava/security/DomainCombiner": -10.190770, "Ljava/security/MessageDigest": -9.497622, "Ljava/security/NoSuchAlgorithmException": -10.883917, "Ljava/security/Permission": -8.581332, "Ljava/security/PrivilegedAction": -8.318967, "Ljava/security/PrivilegedActionException": -9.785304, "Ljava/security/PrivilegedExceptionAction": -8.938007, "Ljava/security/ProtectionDomain": -9.497622, "Ljava/text/SimpleDateFormat": -9.785304, "Ljava/util/Arrays": -8.938007, "Ljava/util/Collection": -9.785304, "Ljava/util/Date": -9.785304, "Ljava/util/HashMap": -7.839394, "Ljava/util/Hashtable": -7.195037, "Ljava/util/Iterator": -8.318967, "Ljava/util/List": -9.497622, "Ljava/util/Locale": -8.399010, "Ljava/util/Map": -8.938007, "Ljava/util/Random": -8.938007, "Ljava/util/Set": -7.482719, "Ljava/util/Timer": -9.092157, "Ljava/util/TimerTask": -10.883917, "Ljava/util/Vector": -7.792874, "Ljava/util/concurrent/BlockingQueue": -9.497622, "Ljava/util/concurrent/Callable": -10.883917, "Ljava/util/concurrent/ExecutionException": -10.190770, "Ljava/util/concurrent/Executor": -8.318967, "Ljava/util/concurrent/FutureTask": -8.486021, "Ljava/util/concurrent/LinkedBlockingQueue": -10.190770, "Ljava/util/concurrent/ThreadFactory": -9.497622, "Ljava/util/concurrent/ThreadPoolExecutor": -10.190770, "Ljava/util/concurrent/TimeUnit": -10.190770, "Ljava/util/concurrent/TimeoutException": -10.883917, "Ljava/util/concurrent/atomic/AtomicBoolean": -8.804475, "LocationResult": -10.883917, "LogEvent": -9.785304, "Lorg/apache/harmony/javax/security/auth/AuthPermission": -6.858565, "Lorg/apache/harmony/javax/security/auth/Subject": -5.860036, "Lorg/apache/harmony/javax/security/auth/SubjectDomainCombiner": -8.486021, "Lorg/apache/http/client/CookieStore": -10.190770, "Lorg/apache/http/cookie/Cookie": -8.686692, "Lorg/json/JSONObject": -6.913625, "Lorg/kxml": -6.055603, "Lorg/xmlpull/v": -8.938007, "MAXIMUM_POOL_SIZE": -10.883917, "MAX_SETTLE_DURATION": -10.883917, "MC_ANALYTICS_DIRECTORY": -9.497622, "MC_DIRECTORY": -9.497622, "MC_MAX_ANALYTICS_FILES": -9.497622, "MC_MAX_EVENTS_PER_FILE": -9.785304, "MESSAGE_POST_PROGRESS": -10.883917, "MESSAGE_POST_RESULT": -10.883917, "MODEL": -10.883917, "MobclixHttpClient": -10.883917, "ModernAsyncTask": -10.883917, "NameNotFoundException": -10.883917, "NotFoundException": -10.190770, "OpenAnalyticsFile": -10.190770, "PENDING": -10.190770, "PREFS_CONFIG": -10.883917, "PUSH_MESSAGE_INTERVAL": -10.883917, "PUSH_MESSAGE_TO_SERVER": -10.883917, "RELEASE": -10.883917, "RUNNING": -10.883917, "SDK_INT": -10.883917, "SECONDS": -10.883917, "STATE_DRAGGING": -10.883917, "STATE_FIRE": -10.883917, "STATE_GAME_LOST": -10.883917, "STATE_GAME_WON": -10.883917, "STATE_IDLE": -10.883917, "STATE_SETTLING": -10.883917, "STATE_TURN_LEFT": -10.883917, "STATE_TURN_RIGHT": -10.883917, "STATE_VOID": -10.883917, "SYNC_ERROR": -9.785304, "SYNC_READY": -9.497622, "SYNC_RUNNING": -9.785304, "SecureSet": -7.033769, "SessionPolling": -9.785304, "SlideDrawable": -7.839394, "Status": -7.939478, "SwitchMap": -10.883917, "Sync": -10.883917, "System": -10.883917, "TAG": -10.883917, "THREAD_POOL_EXECUTOR": -9.785304, "TYPE_PENGUIN": -10.883917, "V": -4.850831, "VERSION": -10.190770, "WON_SEQUENCE": -9.497622, "WorkerRunnable": -9.092157, "Z": -5.508638, "ZIIII": -10.190770, "ZLjava/util/Set": -10.883917, "[": -5.546379, "\\": -10.190770, "_AS": -9.497622, "_AS_PRIVILEGED": -9.497622, "_PRINCIPALS": -9.274479, "_PRIVATE_CREDENTIALS": -9.092157, "_PUBLIC_CREDENTIALS": -9.092157, "_READ_ONLY": -9.785304, "_SUBJECT": -9.785304, "a": -8.938007, "abort": -10.883917, "abortAnimation": -9.785304, "abs": -8.111328, "abstract": -10.190770, "access": -7.146247, "add": -6.621237, "addElement": -10.190770, "addMovement": -10.190770, "addPref": -9.785304, "addToStringTable": -10.190770, "addr": -6.932673, "aget": -6.952091, "analyticsServer": -9.497622, "and": -7.888184, "android": -10.883917, "androidId": -8.804475, "androidVersion": -8.938007, "annotation": -6.806379, "append": -6.858565, "applicationId": -8.804475, "applicationInfo": -8.804475, "applicationVersion": -9.092157, "aput": -6.952091, "array": -6.406580, "array_": -7.888184, "array_a": -10.190770, "array_b": -10.190770, "array_c": -10.190770, "array_d": -10.190770, "array_e": -10.190770, "array_f": -10.190770, "arraycopy": -8.938007, "attrPage": -8.938007, "attrStartTable": -9.497622, "attrValueTable": -9.497622, "attribute": -10.883917, "attributes": -8.581332, "autoplay": -10.190770, "b": -8.581332, "be": -10.190770, "boolean": -6.823474, "buf": -7.551712, "byte": -9.274479, "c": -8.804475, "canScroll": -10.190770, "canScrollHorizontally": -10.883917, "canScrollVertically": -10.883917, "cancel": -8.686692, "captureChildView": -10.883917, "cast": -7.551712, "catch_": -6.664409, "catchall_": -7.665041, "cdsect": -10.883917, "ce": -9.785304, "charAt": -9.092157, "check": -7.551712, "checkNewEdgeDrag": -9.274479, "checkPending": -8.938007, "checkPermission": -8.686692, "checkState": -10.190770, "checkTouchSlop": -9.092157, "clampMag": -9.092157, "clampViewPositionHorizontal": -10.883917, "clampViewPositionVertical": -10.883917, "class": -10.190770, "clear": -10.883917, "clearMotionHistory": -9.274479, "clearPref": -10.883917, "close": -10.883917, "closeDrawer": -10.883917, "cmp": -10.883917, "cmpg": -9.497622, "cmpl": -8.581332, "comment": -10.883917, "commit": -9.497622, "computeAxisDuration": -9.785304, "computeCurrentVelocity": -10.883917, "computeScrollOffset": -10.883917, "computeSettleDuration": -10.190770, "cond_": -4.712216, "cond_a": -8.399010, "cond_b": -8.486021, "cond_be": -10.190770, "cond_c": -9.092157, "cond_d": -8.686692, "cond_e": -8.318967, "cond_f": -8.938007, "configServer": -9.785304, "connectionType": -8.581332, "const": -5.420085, "const/": -5.420085, "const/high": -8.399010, "constructor": -8.175867, "contains": -10.883917, "content": -10.883917, "context": -8.486021, "continueSettling": -10.883917, "controller": -7.665041, "count": -8.175867, "create": -9.497622, "createInstance": -10.883917, "createNewFile": -10.883917, "createNewSession": -10.190770, "currentFile": -9.092157, "currentPenguin": -7.939478, "currentThread": -10.883917, "currentTimeMillis": -9.785304, "d": -8.686692, "data": -7.012716, "declared": -9.785304, "defaultReadObject": -10.883917, "defaultWriteObject": -10.883917, "delete": -10.883917, "density": -10.883917, "depth": -9.092157, "deviceHardwareModel": -8.938007, "deviceId": -9.092157, "deviceModel": -9.274479, "digest": -10.883917, "direct": -5.713433, "direct/range": -9.092157, "dispatchViewReleased": -9.785304, "distanceInfluenceForSnapDuration": -10.190770, "div": -8.581332, "doAs": -10.190770, "doAsPrivileged": -10.190770, "doAs_PrivilegedAction": -9.497622, "doAs_PrivilegedExceptionAction": -9.497622, "doInBackground": -10.883917, "doPrivileged": -9.274479, "docdecl": -10.883917, "double": -9.497622, "double/": -10.883917, "dragTo": -10.190770, "drawImageClipped": -10.883917, "e": -7.625820, "edit": -9.497622, "elementAt": -9.497622, "enabled": -10.190770, "encode": -8.244859, "encoding": -9.092157, "endDocument": -10.883917, "endSession": -9.785304, "endTag": -10.883917, "ensureMotionHistorySizeForId": -10.190770, "enter": -9.785304, "entityRef": -10.883917, "entrySet": -10.883917, "eq": -8.399010, "equals": -8.111328, "equalsIgnoreCase": -9.274479, "eqz": -6.165418, "ev": -10.883917, "exception": -7.387409, "execute": -9.497622, "executeOnExecutor": -10.190770, "exit": -9.092157, "false": -10.883917, "field": -8.686692, "fileCreated": -9.274479, "fill": -7.748423, "final": -6.489468, "finalState": -8.804475, "finalize": -10.883917, "findPointerIndex": -10.883917, "findTopChildUnder": -8.804475, "finish": -10.190770, "fling": -10.883917, "flingCapturedView": -10.883917, "float": -6.258944, "float/": -8.111328, "flush": -9.785304, "forceSettleCapturedViewAt": -10.190770, "format": -9.274479, "ge": -7.588080, "get": -8.175867, "getAbsoluteFile": -10.883917, "getAbsolutePath": -10.883917, "getActionIndex": -10.190770, "getActionMasked": -10.190770, "getActiveNetworkInfo": -10.883917, "getActivePointerId": -10.883917, "getAll": -10.883917, "getAllPref": -10.883917, "getAnalyticsServer": -10.883917, "getAndroidId": -10.883917, "getAndroidVersion": -10.190770, "getApplicationContext": -10.883917, "getApplicationId": -10.190770, "getApplicationInfo": -10.883917, "getApplicationVersion": -10.190770, "getBottom": -9.497622, "getBytes": -9.274479, "getCapturedView": -10.883917, "getChildAt": -10.190770, "getChildCount": -10.190770, "getClass": -9.497622, "getConfigServer": -10.883917, "getConnectionType": -10.883917, "getContentResolver": -10.883917, "getContext": -9.497622, "getCookie": -10.883917, "getCookieStringFromCookieManager": -10.883917, "getCookies": -10.883917, "getCountry": -10.190770, "getCurrX": -9.785304, "getCurrY": -9.785304, "getDefault": -9.497622, "getDepth": -10.883917, "getDeviceHardwareModel": -10.190770, "getDeviceId": -9.785304, "getDeviceModel": -10.883917, "getDir": -10.883917, "getDisplayMetrics": -10.883917, "getDomain": -10.190770, "getDrawable": -10.190770, "getEdgeSize": -10.883917, "getEdgesTouched": -10.190770, "getExpiryDate": -10.190770, "getFeature": -10.883917, "getFinalX": -10.883917, "getFinalY": -10.883917, "getId": -10.883917, "getInstance": -9.092157, "getInt": -10.190770, "getItemId": -10.883917, "getKey": -10.883917, "getLanguage": -9.785304, "getLeft": -8.581332, "getLocale": -10.883917, "getLocation": -10.883917, "getLooper": -10.883917, "getMinVelocity": -10.883917, "getMobclixVersion": -10.883917, "getName": -10.190770, "getNamespace": -10.883917, "getNetworkType": -10.883917, "getOffset": -10.883917, "getOrderedChildIndex": -10.883917, "getPackageManager": -10.883917, "getPackageName": -10.190770, "getParent": -10.883917, "getPath": -10.190770, "getPointerCount": -9.497622, "getPointerId": -8.581332, "getPref": -9.497622, "getPrefix": -10.883917, "getPrincipals": -10.190770, "getPrivateCredentials": -10.190770, "getProperty": -10.883917, "getPublicCredentials": -10.190770, "getResources": -9.785304, "getRight": -9.497622, "getSavedId": -9.274479, "getScaledMaximumFlingVelocity": -10.883917, "getScaledMinimumFlingVelocity": -10.883917, "getScaledTouchSlop": -10.883917, "getScrollX": -10.883917, "getScrollY": -10.883917, "getSecurityManager": -10.883917, "getSharedPreferences": -10.883917, "getSpriteArea": -10.883917, "getStatus": -10.883917, "getString": -9.497622, "getSubject": -10.190770, "getSystemService": -9.785304, "getThemeUpIndicator": -10.190770, "getTop": -8.581332, "getTouchSlop": -10.883917, "getTypeId": -10.883917, "getTypeName": -10.883917, "getValue": -10.190770, "getViewDragState": -10.883917, "getViewHorizontalDragRange": -10.190770, "getViewVerticalDragRange": -10.190770, "getWidth": -10.883917, "getX": -8.686692, "getXVelocity": -9.785304, "getY": -8.686692, "getYVelocity": -9.785304, "gez": -10.190770, "goto": -5.928090, "goto/": -7.748423, "goto_": -5.289205, "goto_a": -9.785304, "goto_d": -9.497622, "goto_e": -9.497622, "goto_f": -9.497622, "gt": -10.883917, "gtz": -8.581332, "handleSessionStatus": -9.497622, "hasNext": -9.497622, "hasPref": -9.497622, "hashCode": -9.497622, "haveLocationPermission": -9.497622, "haveNetworkStatePermission": -9.274479, "hb": -10.883917, "headerSent": -8.938007, "i": -9.785304, "idleTimeout": -9.497622, "if": -5.173490, "iget": -4.718499, "ignorableWhitespace": -10.883917, "init": -10.883917, "initialize": -10.883917, "instance": -6.113232, "int": -6.298949, "int/": -7.516621, "int/lit": -6.621237, "intValue": -10.883917, "interface": -6.932673, "invoke": -4.105132, "iput": -5.556041, "isCancelled": -9.497622, "isCapturedViewUnder": -10.190770, "isDrawerIndicatorEnabled": -10.883917, "isDrawerOpen": -9.785304, "isDrawerVisible": -10.883917, "isEdgeTouched": -9.785304, "isEmpty": -10.883917, "isFinished": -10.883917, "isInSession": -8.938007, "isInitialized": -9.092157, "isNewUser": -10.190770, "isOfflineSession": -9.785304, "isPointerDown": -9.785304, "isReadOnly": -10.883917, "isTopTask": -8.804475, "isViewUnder": -10.190770, "iterator": -9.497622, "language": -9.274479, "lastIndexOf": -10.883917, "latitude": -9.497622, "le": -8.399010, "length": -7.839394, "lez": -8.804475, "listFiles": -10.190770, "local": -5.560907, "locale": -9.274479, "location": -9.497622, "locationCriteria": -9.497622, "locationHandler": -10.190770, "logEvent": -10.883917, "logLevel": -9.497622, "loggingEvent": -9.497622, "long": -9.497622, "long/": -9.092157, "longitude": -9.497622, "lt": -8.399010, "ltz": -10.190770, "mActivePointerId": -8.050703, "mActivity": -8.686692, "mCallback": -7.839394, "mCapturedView": -7.449930, "mCloseDrawerContentDescRes": -9.274479, "mDragState": -7.939478, "mDrawerImage": -9.497622, "mDrawerImageResource": -9.785304, "mDrawerIndicatorEnabled": -8.686692, "mDrawerLayout": -8.804475, "mEdgeDragsInProgress": -8.686692, "mEdgeDragsLocked": -8.804475, "mEdgeSize": -8.938007, "mFuture": -8.938007, "mInitialEdgesTouched": -8.244859, "mInitialMotionX": -8.111328, "mInitialMotionY": -8.581332, "mLastMotionX": -8.581332, "mLastMotionY": -8.581332, "mMaxVelocity": -8.938007, "mMinVelocity": -8.804475, "mOpenDrawerContentDescRes": -9.274479, "mParams": -10.883917, "mParentView": -8.399010, "mPointersDown": -8.938007, "mReleaseInProgress": -9.274479, "mScroller": -8.050703, "mSetIdleRunnable": -9.785304, "mSetIndicatorInfo": -8.486021, "mSlider": -8.486021, "mStatus": -8.938007, "mSyncHandler": -9.497622, "mTaskInvoked": -9.497622, "mThemeImage": -9.497622, "mTouchSlop": -8.111328, "mTrackingEdges": -8.486021, "mVelocityTracker": -8.050703, "mWorker": -9.497622, "max": -10.190770, "mcc": -10.190770, "metaData": -9.497622, "method": -5.472271, "min": -9.497622, "mkdir": -10.883917, "mnc": -10.190770, "monitor": -8.686692, "move": -4.381127, "move/from": -6.477197, "mul": -7.888184, "name": -10.883917, "namespace": -10.883917, "ne": -7.449930, "neg": -9.497622, "new": -5.840492, "next": -9.497622, "nextInt": -10.883917, "nextPosition": -8.581332, "nez": -6.593457, "nop": -9.785304, "null": -10.190770, "numLinesWritten": -8.938007, "object": -4.043370, "object/from": -6.373057, "obtain": -10.190770, "obtainMessage": -10.190770, "of": -10.190770, "offsetLeftAndRight": -10.190770, "offsetTopAndBottom": -10.190770, "onCancelled": -9.497622, "onConfigurationChanged": -10.883917, "onCreate": -10.883917, "onDrawerClosed": -10.883917, "onDrawerOpened": -10.883917, "onDrawerSlide": -10.883917, "onDrawerStateChanged": -10.883917, "onEdgeDragStarted": -10.883917, "onEdgeLock": -10.883917, "onEdgeTouched": -9.497622, "onOptionsItemSelected": -10.883917, "onPostExecute": -10.190770, "onPreExecute": -10.190770, "onProgressUpdate": -10.883917, "onStop": -10.883917, "onViewCaptured": -10.883917, "onViewDragStateChanged": -10.883917, "onViewPositionChanged": -9.785304, "onViewReleased": -10.883917, "openDrawer": -10.883917, "or": -8.175867, "ordinal": -10.883917, "out": -8.686692, "p": -3.520003, "packageName": -9.274479, "packed": -8.938007, "paint": -10.883917, "parseInt": -10.883917, "parseLong": -10.190770, "pending": -8.804475, "pollTime": -9.274479, "post": -10.883917, "postResult": -9.785304, "postResultIfNotInvoked": -10.190770, "previousDeviceId": -10.190770, "principals": -8.581332, "printStackTrace": -9.497622, "private": -5.748118, "privateCredentials": -8.581332, "processTouchEvent": -10.883917, "processingInstruction": -10.883917, "protected": -8.686692, "pswitch_": -7.387409, "pswitch_d": -10.883917, "pswitch_data_": -9.092157, "pswitch_data_e": -10.883917, "pswitch_de": -10.883917, "public": -5.928090, "publicCredentials": -8.581332, "publishProgress": -10.883917, "put": -7.516621, "putInt": -9.497622, "putString": -10.190770, "rand": -9.497622, "readObject": -10.883917, "readOnly": -9.092157, "recycle": -10.883917, "refreshTime": -10.190770, "releaseViewForPointerUp": -9.785304, "rem": -9.497622, "remoteConfigSet": -9.785304, "remove": -10.883917, "removeAllElements": -10.883917, "removeMessages": -10.883917, "removePref": -10.883917, "reportNewEdgeDrags": -9.785304, "reset": -10.883917, "result": -4.718499, "return": -5.508638, "round": -10.883917, "sDefaultExecutor": -9.274479, "sHandler": -9.274479, "sInterpolator": -9.785304, "sPoolWorkQueue": -9.785304, "sThreadFactory": -9.785304, "saveInitialMotion": -9.274479, "saveLastMotion": -9.497622, "saveState": -10.190770, "scheduleAtFixedRate": -10.883917, "sendEmptyMessage": -10.883917, "sendToTarget": -10.190770, "serialVersionUID": -10.883917, "session": -9.274479, "sessionEndTime": -8.804475, "sessionPollingTimer": -9.785304, "sessionStartTime": -9.274479, "setActionBarDescription": -10.190770, "setActionBarUpIndicator": -9.785304, "setAttrStartTable": -10.883917, "setAttrValueTable": -10.883917, "setCookie": -10.883917, "setDefaultExecutor": -10.883917, "setDragState": -8.804475, "setDrawerIndicatorEnabled": -10.883917, "setEdgeTrackingEnabled": -10.883917, "setFeature": -10.883917, "setMinVelocity": -10.883917, "setOffset": -9.274479, "setOffsetBy": -10.883917, "setOutput": -10.190770, "setPrefix": -10.883917, "setProperty": -10.883917, "setReadOnly": -10.883917, "setTagTable": -10.883917, "settleCapturedViewAt": -10.883917, "sget": -6.258944, "sha": -10.190770, "sharedPrefs": -8.581332, "shl": -9.785304, "shouldInterceptTouchEvent": -10.883917, "shr": -10.883917, "sin": -10.883917, "size": -9.497622, "sparse": -9.497622, "spritesImage": -9.497622, "sput": -6.971894, "sswitch_": -7.705863, "sswitch_data_": -9.497622, "start": -10.190770, "startDocument": -10.883917, "startScroll": -10.883917, "startTag": -10.883917, "static": -5.093957, "static/range": -8.686692, "stopLocation": -10.883917, "stopSync": -10.883917, "string": -5.494845, "stringTable": -8.804475, "stringTableBuf": -8.804475, "sub": -7.482719, "substring": -8.804475, "super": -10.883917, "support": -10.883917, "switch": -8.111328, "sync": -10.190770, "syncContents": -9.497622, "syncCookiesToCookieManager": -10.883917, "syncState": -10.190770, "syncStatus": -9.274479, "synchronized": -9.785304, "synthetic": -7.146247, "system": -6.806379, "tagPage": -9.497622, "tagTable": -9.497622, "text": -9.785304, "throw": -7.588080, "to": -6.649810, "toByteArray": -10.190770, "toHexString": -10.883917, "toString": -7.705863, "toUpperCase": -10.190770, "totalIdleTime": -8.686692, "transient": -10.190770, "tryCaptureViewForDrag": -8.804475, "try_end_": -6.351317, "try_end_a": -9.785304, "try_end_b": -10.190770, "try_end_c": -9.785304, "try_end_d": -10.190770, "try_end_e": -9.785304, "try_end_f": -10.190770, "try_start_": -6.351317, "try_start_a": -9.785304, "try_start_b": -10.190770, "try_start_c": -9.785304, "try_start_d": -10.190770, "try_start_e": -9.785304, "try_start_f": -10.190770, "update": -10.883917, "updateConnectivity": -10.883917, "updateLocation": -10.190770, "updateSession": -10.190770, "updateState": -10.883917, "userAgent": -10.190770, "v": -2.296265, "value": -6.806379, "valueOf": -9.092157, "varargs": -9.274479, "virtual": -4.788092, "virtual/range": -8.244859, "void": -6.319569, "volatile": -10.190770, "w": -8.486021, "wide": -7.551712, "wide/": -8.938007, "write": -7.418181, "writeInt": -9.497622, "writeObject": -10.883917, "writeStr": -9.497622, "writeStrI": -9.497622, "writeStrT": -8.804475, "writeWapExtension": -10.883917, "xor": -10.883917, "{": -3.978163, "}": -3.978163, }, "Smalltalk": map[string]float64{ "!": -1.964611, "#": -7.718241, "#*": -8.816853, "#/": -8.816853, "#Boolean": -8.816853, "#ChartJs": -8.816853, "#Collection": -8.816853, "#Dictionary": -8.816853, "#False": -8.816853, "#OrderedCollection": -8.816853, "#Philosophers": -8.816853, "#Stream": -8.816853, "#Symbol": -8.816853, "#True": -8.816853, "#aClass": -8.816853, "#raisedTo": -8.816853, "#stable": -8.816853, "#title": -8.816853, "$": -6.251904, "&": -7.207415, "(": -4.422404, ")": -4.410134, "*": -7.430559, "+": -6.108803, ",": -5.983640, "-": -6.737412, ".": -4.305994, "/": -7.718241, ":": -1.584843, ";": -5.872414, "<": -7.207415, "<comment:>": -8.816853, "<forHtml>": -7.430559, "<obj,>": -8.816853, "<primitive:>": -8.816853, "<script>": -8.816853, "=": -4.021063, ">": -7.025094, "Array": -8.816853, "Boolean": -5.521016, "ChartJs": -8.816853, "Collection": -3.640704, "CollectionIsEmpty": -8.816853, "Delay": -7.718241, "Dictionary": -8.816853, "False": -6.251904, "HashedCollection": -8.816853, "KMKeyCombinationSequence": -8.816853, "Koan": -8.816853, "Metacello": -8.816853, "MetacelloMethodSectionPath": -8.816853, "NBBool": -8.816853, "NBFFIConst": -8.816853, "NotFound": -8.816853, "Object": -7.430559, "ObjectExplorerWrapper": -8.816853, "OrderedCollection": -7.430559, "Philosophers": -7.718241, "PluggableDictionary": -8.816853, "Processor": -8.816853, "ProgressNotification": -8.816853, "Random": -8.816853, "Semaphore": -8.123706, "SequenceableCollection": -8.816853, "Set": -8.123706, "SizeMismatch": -8.816853, "Stream": -8.816853, "String": -7.430559, "Symbol": -8.816853, "SystemOrganization": -6.737412, "SystemVersion": -8.816853, "TSortable": -8.816853, "TestBasic": -8.816853, "Time": -8.123706, "Transcript": -7.207415, "True": -6.251904, "[": -3.503647, "\\": -7.207415, "]": -3.503647, "^": -3.538739, "_": -8.816853, "a": -6.108803, "aBlock": -4.410134, "aBlock.": -8.816853, "aBoolean": -6.177796, "aByteString": -7.718241, "aClass": -8.123706, "aCollection": -5.233334, "aCollection.": -8.123706, "aCollectionClass": -8.123706, "aDecoder": -8.123706, "aGeneralMapper": -8.123706, "aGenerator": -8.123706, "aMetacelloConstructore": -7.430559, "aMetacelloMCVersion": -6.619629, "aMetacelloPackageSpec": -7.025094, "aMetacelloPackagesSpec": -7.025094, "aMetacelloRepositoriesSpec": -7.025094, "aScriptExecutor": -8.123706, "aSelectionBlock": -8.123706, "aSettingNode": -8.123706, "aStream": -5.079184, "aStream.": -8.816853, "aString": -8.123706, "aStringOrBlock": -7.025094, "aStringOrBlock.": -8.816853, "abs": -8.123706, "accum": -8.123706, "adaptToCollection": -6.870943, "adaptToNumber": -8.816853, "adaptToPoint": -8.816853, "adaptToString": -8.816853, "add": -6.177796, "addAll": -7.430559, "addCategory": -6.737412, "addIfNotPresent": -8.123706, "addShortcut": -8.816853, "addToMetacelloPackages": -8.123706, "addToMetacelloRepositories": -8.123706, "addedToZnUrl": -8.816853, "against": -8.816853, "allPackagesForSpecs": -8.816853, "allSatisfy": -8.816853, "alternativeBlock": -6.044265, "anEncoder": -8.816853, "anExceptionBlock": -8.816853, "anInteger": -8.123706, "anItem": -8.123706, "anObject": -5.926481, "and": -7.025094, "andSend": -6.514268, "anotherDeclaration": -8.123706, "anotherDeclaration.": -8.816853, "anyOne": -8.816853, "anyOne.": -8.123706, "anySatisfy": -7.718241, "arcCos": -8.123706, "arcSin": -8.123706, "arcTan": -8.123706, "arg": -6.331947, "as": -7.718241, "asArray": -7.718241, "asArray.": -7.718241, "asBit": -7.430559, "asCommaString": -8.816853, "asCommaStringAnd": -8.816853, "asDraggableMorph": -8.816853, "asKeyCombination": -7.430559, "asMetacelloAttributeList": -8.816853, "asMetacelloAttributePath": -8.816853, "asNBExternalType": -7.718241, "asNumber": -8.816853, "asOrderedCollection": -8.123706, "asSet": -8.816853, "asSet.": -8.123706, "asShortcut": -8.816853, "asSortedCollection": -8.816853, "asString": -8.123706, "asStringMorph": -8.816853, "asStringOn": -7.430559, "assert": -8.123706, "association": -7.718241, "associationsDo": -8.123706, "at": -6.870943, "atRandom": -7.718241, "average": -8.816853, "average.": -8.816853, "avg": -7.718241, "bar": -7.430559, "baseline": -8.816853, "beforeFirst": -7.430559, "binaryBlock": -6.737412, "bitXor": -8.123706, "capacity": -8.816853, "category": -6.619629, "ceiling": -8.123706, "class": -6.044265, "className": -8.816853, "classTrait": -8.816853, "classVariableNames": -6.619629, "col": -7.430559, "collect": -5.179267, "collectBlock": -6.514268, "collection": -8.816853, "configuration": -8.816853, "contains": -8.816853, "contents": -8.123706, "copy": -7.207415, "copyEmpty": -8.816853, "copyEmpty.": -8.816853, "copyFrom": -8.123706, "copyWith": -8.123706, "copyWithDependent": -8.816853, "copyWithout": -8.816853, "copyWithoutAll": -8.816853, "cos": -8.123706, "count": -6.870943, "count.": -8.816853, "critical": -8.123706, "ctrl": -7.207415, "cull": -7.207415, "current": -8.123706, "data": -8.816853, "dataFunction": -8.816853, "declaration": -8.123706, "declaration.": -8.816853, "deepCopier": -8.816853, "deepCopy": -8.816853, "degreeCos": -8.123706, "degreeSin": -8.123706, "delimString": -6.737412, "delimiter": -7.025094, "deny": -8.123706, "dependencies": -8.816853, "detect": -6.870943, "detectMax": -8.816853, "detectMin": -8.816853, "detectSum": -8.816853, "difference": -8.123706, "dine": -7.430559, "displayProgressFrom": -8.816853, "displayingProgress": -7.718241, "div": -8.816853, "divId": -8.123706, "do": -4.627198, "doBlock": -7.025094, "doFetchRequiredFromArray": -8.816853, "doLoadRequiredFromArray": -8.816853, "doRecordRequiredFromArray": -8.816853, "dottedMajorMinor": -8.816853, "dummyItem": -8.816853, "during": -8.816853, "e": -6.418958, "e.": -8.816853, "eCtrl": -7.718241, "eCtrl.": -8.123706, "ea": -7.430559, "each": -3.875211, "each.": -7.207415, "eating": -7.718241, "elem": -6.177796, "element": -6.108803, "elementBlock": -8.123706, "emptyBlock": -6.737412, "emptyCheck": -8.816853, "emptyCheck.": -8.123706, "eqv": -8.816853, "error": -7.430559, "errorEmptyCollection": -7.718241, "errorNoMatch": -8.816853, "errorNotFound": -7.718241, "errorNotKeyed": -8.816853, "eventKey": -7.718241, "every": -8.123706, "exceptionBlock": -7.430559, "execute": -8.816853, "executeCollection": -8.816853, "exp": -8.123706, "expect": -6.514268, "explorerContents": -8.816853, "explorerContentsWithIndexCollect": -8.123706, "expression": -7.430559, "expression.": -8.123706, "extra": -8.816853, "false": -6.251904, "falseAlternativeBlock": -6.737412, "fetchRequiredForMetacelloMCVersion": -8.816853, "fillFrom": -7.718241, "fillMeIn": -6.514268, "findFirstInByteString": -8.816853, "first": -8.816853, "flag": -8.123706, "flatCollect": -7.430559, "flatCollectAsSet": -8.816853, "flattenOn": -7.718241, "flattened": -8.816853, "floor": -8.123706, "fold": -8.816853, "forHtml": -8.123706, "forMilliseconds": -8.123706, "forMutualExclusion": -8.816853, "forSeconds": -8.816853, "forks": -7.207415, "format": -8.816853, "foundBlock": -7.430559, "fromIndexable": -8.816853, "fuelAccept": -8.816853, "gather": -8.816853, "gen": -7.718241, "groupBy": -8.816853, "groupedBy": -7.430559, "groups": -7.207415, "hash": -6.737412, "hash.": -8.816853, "having": -7.718241, "heading": -8.816853, "helpers": -8.816853, "html": -7.718241, "i": -7.718241, "i.": -8.816853, "id": -8.816853, "identityIncludes": -8.816853, "ifAbsent": -7.025094, "ifAbsentPut": -8.816853, "ifEmpty": -7.207415, "ifFalse": -5.382866, "ifFound": -7.430559, "ifNil": -8.816853, "ifNone": -7.207415, "ifNotEmpty": -7.718241, "ifNotEmptyDo": -7.718241, "ifPresentDo": -8.816853, "ifTrue": -4.809520, "includes": -6.619629, "includesAll": -8.123706, "includesAllOf": -8.816853, "includesAny": -8.123706, "includesAnyOf": -8.816853, "includesSubstring": -8.816853, "includesSubstringAnywhere": -8.123706, "indent": -8.816853, "index": -6.514268, "initialize": -7.718241, "inject": -7.430559, "inputWidgetForBoolean": -8.816853, "installGitFileTree": -8.816853, "instanceVariableNames": -6.177796, "integerDictionary.": -8.816853, "intersection": -8.123706, "into": -7.207415, "introductory": -8.816853, "isCollection": -7.718241, "isEmpty": -6.108803, "isEmptyOrNil": -8.816853, "isLiteral": -8.816853, "isNotEmpty": -8.816853, "isSelfEvaluating": -8.816853, "isSequenceable": -7.718241, "isString": -7.718241, "item": -8.123706, "itsSize": -7.430559, "keyBlock": -8.123706, "label": -8.123706, "labelBlock": -7.718241, "last": -7.718241, "lastCut": -7.207415, "lastDelimString": -7.430559, "lastUpdate": -7.430559, "leftFork": -7.025094, "level": -8.816853, "ln": -8.123706, "load": -8.816853, "loadRequiredForMetacelloMCVersion": -8.816853, "log": -8.123706, "matches": -7.430559, "materializeFrom": -8.123706, "maxElement": -7.430559, "maxValue": -7.207415, "median": -8.123706, "mergeIntoMetacelloPackages": -8.123706, "mergeIntoMetacelloRepositories": -8.123706, "methodsFor": -3.383131, "millisecondClockValue": -8.816853, "millisecondsSince": -8.816853, "minElement": -7.430559, "minValue": -7.207415, "model": -8.816853, "msecs": -8.123706, "mutexForPicking": -8.816853, "myElement": -8.123706, "n": -5.772331, "n.": -8.123706, "name": -7.718241, "name.": -8.816853, "negated": -8.123706, "neoJSON": -8.816853, "new": -6.418958, "new.": -7.025094, "newCollection": -6.737412, "newElement": -7.430559, "newLabel": -7.718241, "newLabel.": -8.816853, "newObject": -7.430559, "newProcess": -8.816853, "next": -7.025094, "nextInt": -8.816853, "nextPut": -7.207415, "nextPutAll": -5.926481, "nextValue": -7.207415, "nil": -7.430559, "nil.": -8.816853, "nl.": -7.207415, "noneSatisfy": -8.816853, "noneYet": -7.207415, "not": -6.619629, "not.": -8.816853, "notEmpty": -8.816853, "notEmptyBlock": -6.737412, "num": -8.816853, "occurrencesOf": -8.816853, "of": -8.816853, "oldElement": -8.123706, "oldLabel": -7.207415, "oldObject": -7.430559, "on": -8.816853, "or": -7.025094, "outputSet": -7.207415, "packageNamed": -8.816853, "perform": -7.430559, "philosopher": -8.123706, "philosopherCode": -7.718241, "philosophers": -8.123706, "piece": -8.123706, "pieceBlock": -7.430559, "pieces": -7.430559, "piecesCutWhere": -7.718241, "poolDictionaries": -6.619629, "previousValue": -8.123706, "print": -6.870943, "printElementsOn": -8.123706, "printNameOn": -8.123706, "printOn": -6.870943, "printString": -7.207415, "priority": -8.816853, "projectSpecBlock": -8.123706, "push": -8.816853, "quantity": -8.123706, "quantum": -8.123706, "raisedTo": -8.816853, "rand": -7.718241, "randomForPicking": -8.816853, "randy": -7.718241, "rcvr": -6.619629, "rcvrElement": -8.123706, "reciprocal": -8.123706, "recordRequiredForMetacelloMCVersion": -8.816853, "reduce": -7.718241, "reject": -6.737412, "rejectBlock": -7.430559, "remove": -6.737412, "removeAll": -7.718241, "removeAllFoundIn": -8.816853, "removeAllSuchThat": -8.816853, "removeFromMetacelloPackages": -8.123706, "removeFromMetacelloRepositories": -8.123706, "renderTitleId": -8.816853, "rendering": -8.816853, "repository": -8.123706, "resolvePackageSpecsNamedForMetacelloMCVersion": -8.816853, "resume": -8.816853, "rightFork": -7.025094, "roundTo": -8.123706, "rounded": -8.123706, "s": -6.870943, "sample": -6.870943, "sample.": -8.816853, "seconds": -8.123706, "select": -6.870943, "selectBlock": -6.514268, "selector": -6.737412, "self": -3.171406, "self.": -7.718241, "sender": -8.816853, "separatedBy": -6.870943, "separatorBlock": -8.123706, "serializeOn": -8.816853, "set": -6.514268, "setFor": -8.123706, "setForDo": -8.816853, "setForVersion": -8.816853, "setIncludes": -8.816853, "setIncludesInMetacelloPackage": -8.816853, "setLoads": -8.816853, "setLoadsInMetacelloProject": -8.816853, "setRequires": -8.816853, "setRequiresInMetacelloPackage": -8.816853, "settingInputWidgetForNode": -8.816853, "shallowCopy": -8.816853, "shortcut": -7.718241, "shortcut.": -8.816853, "shouldNotImplement": -8.816853, "sign": -8.123706, "signal": -7.718241, "signal.": -8.123706, "signalFor": -8.816853, "signalWith": -8.816853, "sin": -8.123706, "size": -5.558757, "size.": -7.207415, "space": -8.123706, "spec": -7.718241, "species": -6.619629, "sqrt": -7.718241, "squared": -8.123706, "stamp": -3.601917, "start": -8.123706, "startIndent": -8.816853, "startingAt": -8.816853, "status": -6.737412, "stdev": -8.816853, "store": -8.816853, "storeOn": -8.123706, "stream": -7.025094, "streamContents": -7.430559, "subclass": -6.514268, "subclassResponsibility": -6.251904, "sum": -5.725811, "sumNumbers": -8.816853, "super": -8.123706, "sz": -7.025094, "tally": -6.514268, "tan": -8.123706, "terminate": -8.816853, "testDeclarationAndAssignment": -8.816853, "testEqualSignIsNotAnAssignmentOperator": -8.816853, "testInequality": -8.816853, "testLogicalAnd": -8.816853, "testLogicalOr": -8.816853, "testMultipleStatementsInASingleLine": -8.816853, "testNot": -8.816853, "testSimpleChainMatches": -8.816853, "testString": -7.718241, "tests": -8.123706, "thenCollect": -8.123706, "thenDo": -7.718241, "thenReject": -8.816853, "thenSelect": -8.816853, "this": -7.430559, "thisContext": -8.816853, "thisValue": -8.816853, "thisValue.": -8.816853, "timesRepeat": -8.123706, "title": -8.816853, "to": -6.870943, "toBraceStack": -8.816853, "toEqual": -6.514268, "translated": -8.816853, "true": -6.108803, "true.": -7.718241, "trueAlternativeBlock": -6.737412, "truncated": -8.123706, "twoArgBlock": -8.123706, "union": -8.123706, "url": -8.123706, "userBackgroundPriority": -8.816853, "uses": -8.816853, "val": -7.025094, "value": -4.657970, "variableA": -7.025094, "variableA.": -8.816853, "variableB": -7.207415, "variableB.": -8.123706, "variableC": -8.123706, "variableC.": -8.816853, "version": -8.123706, "veryDeepCopyWith": -8.816853, "visitHookPrimitive": -8.816853, "visited": -7.430559, "wait.": -7.207415, "whileTrue": -8.816853, "with": -6.331947, "withAll": -7.207415, "withInMetacelloConfig": -8.123706, "withIndexCollect": -8.816853, "withOccurrences": -8.816853, "withPathSegments": -8.816853, "without": -8.816853, "write": -8.816853, "writeCypressJsonOn": -8.816853, "writeStream.": -8.816853, "xor": -8.123706, "yourself": -7.718241, "yourself.": -8.816853, "{": -7.207415, "|": -3.635070, "}": -7.207415, "~": -7.430559, "\ufeff": -8.816853, }, "SourcePawn": map[string]float64{ "!": -4.895972, "#": -7.093197, "#define": -5.013755, "#else": -6.687732, "#elseif": -9.172639, "#endif": -6.037144, "#endinput": -8.479491, "#error": -9.172639, "#if": -6.037144, "#include": -6.687732, "#pragma": -7.093197, "#undef": -8.479491, "%": -4.110043, "&": -6.282267, "&&": -6.081596, "(": -2.435672, ")": -2.438047, "*": -8.479491, "+": -5.029504, ",": -2.624419, "-": -3.379625, "/": -7.380879, "//": -7.380879, "//#define": -7.226728, "//#else": -9.172639, "//#endif": -9.172639, "//#if": -9.172639, "//CallLocalFunction": -9.172639, "//Change": -9.172639, "//Close": -7.786344, "//Create": -7.786344, "//Defines": -9.172639, "//Find": -8.479491, "//Forwards": -9.172639, "//If": -8.479491, "//Max": -8.074026, "//Natives": -9.172639, "//Open": -7.380879, "//Testing_Test": -7.786344, "//Variables": -7.786344, "//We": -9.172639, "//buffer": -7.786344, "//dla": -9.172639, "//g_VoteTimer": -9.172639, "//idx": -9.172639, "//if": -9.172639, "//printf": -9.172639, "//while": -8.479491, "//y_files": -9.172639, "0": -7.093197, "1": -8.074026, "2": -8.479491, ":": -3.530731, ";": -2.742919, "<": -5.589120, "</param>": -6.774743, "</remarks>": -7.786344, "</returns>": -8.074026, "</summary>": -8.074026, "<MAXTEAMS;>": -9.172639, "<a_samp>": -8.479491, "<amxmodx>": -9.172639, "<http://www.gnu.org/licenses/>": -9.172639, "<http://www.sourcemod.net/license.php>": -9.172639, "<map>": -8.479491, "<mapchooser>": -9.172639, "<nextmap>": -9.172639, "<nominationsToAdd;>": -9.172639, "<param>": -6.774743, "<remarks>": -8.074026, "<returns>": -8.074026, "<size;>": -9.172639, "<sizeof>": -9.172639, "<sourcemod>": -9.172639, "<summary>": -8.074026, "=": -3.144360, ">": -5.411438, "?": -7.563201, "ADMFLAG_CHANGEMAP": -8.479491, "AMXX_VERSION_STR": -9.172639, "AMX_GetPublicName": -7.786344, "APLRes": -9.172639, "APLRes_Success": -9.172639, "ASK": -9.172639, "ASSERT": -7.563201, "ASSERT_FALSE": -9.172639, "ASSERT_N": -9.172639, "ASSERT_NULL": -9.172639, "ASSERT_TRUE": -9.172639, "Action": -8.074026, "AddMenuItem": -7.563201, "AskPluginLoad": -9.172639, "AutoExecConfig": -9.172639, "Bonus": -9.172639, "ByteCountToCells": -9.172639, "CHECKPOINT_SEEKER_DELAY": -8.479491, "CallLocalFunction": -6.607689, "Call_Finish": -8.074026, "Call_PushCell": -8.074026, "Call_PushString": -8.074026, "Call_StartForward": -8.074026, "CanVoteStart": -9.172639, "Change": -9.172639, "ChangeCheckpointOwner": -9.172639, "Check": -9.172639, "CheckMaxRounds": -8.074026, "CheckWinLimit": -7.786344, "CheckpointManager": -9.172639, "CheckpointSeeker": -8.479491, "Clear": -9.172639, "ClearArray": -8.479491, "Command_Mapvote": -8.479491, "Command_SetNextmap": -8.479491, "ConVarBound_Upper": -9.172639, "CreateArray": -7.563201, "CreateCheckpoint": -9.172639, "CreateConVar": -6.464588, "CreateDataTimer": -9.172639, "CreateGlobalForward": -8.479491, "CreateNative": -6.975414, "CreateNextVote": -9.172639, "CreateTimer": -8.074026, "DEBUG": -8.479491, "DIALOG_STYLE_MSGBOX": -9.172639, "Debug_PrintT": -7.786344, "DisablePlayerCheckpoint": -9.172639, "Do": -9.172639, "Don": -9.172639, "EOS": -9.172639, "ET_Ignore": -8.479491, "Event_PlayerDeath": -8.479491, "Event_RoundEnd": -8.074026, "Event_TFRestartRound": -8.479491, "Event_TeamPlayWinPanel": -8.074026, "Extend": -9.172639, "FALSE": -7.093197, "FCVAR_EXTDLL": -9.172639, "FCVAR_SERVER": -9.172639, "FCVAR_SPONLY": -9.172639, "FCVAR_UNLOGGED": -9.172639, "FILTERSCRIPT": -9.172639, "File": -6.687732, "FindConVar": -7.786344, "FindValueInArray": -9.172639, "Fixed": -5.129587, "Float": -6.339425, "Functions": -9.172639, "GLOBAL_OWNER_ID": -9.172639, "GetArrayCell": -7.786344, "GetArraySize": -6.870053, "GetArrayString": -7.226728, "GetClientFrags": -9.172639, "GetClientOfUserId": -9.172639, "GetCmdArg": -9.172639, "GetConVarBool": -7.093197, "GetConVarFloat": -7.786344, "GetConVarInt": -6.607689, "GetCurrentMap": -8.479491, "GetEventInt": -7.226728, "GetGameFolderName": -9.172639, "GetMapTimeLeft": -9.172639, "GetMapTimeLimit": -9.172639, "GetMenuItem": -9.172639, "GetNativeCell": -8.074026, "GetPlayerInterior": -9.172639, "GetPlayerPos": -9.172639, "GetPlayerVirtualWorld": -9.172639, "Handle": -5.221395, "Handler_VoteFinishedGeneric": -9.172639, "HookEvent": -7.380879, "INCLUDE_TESTS": -8.074026, "INVALID_HANDLE": -5.095101, "Incompatible": -9.172639, "Inip_@": -8.479491, "Init_@": -7.786344, "InitiateVote": -7.093197, "Insert": -9.172639, "IsMapValid": -8.479491, "IsPlayerConnected": -9.172639, "IsPlayerNPC": -9.172639, "IsVoteInProgress": -9.172639, "KillTimer": -8.479491, "L": -9.172639, "LANG_PLAYER": -8.074026, "LoadTranslations": -8.479491, "LogAction": -8.479491, "LogError": -8.074026, "MAPLIST_FLAG_CLEARARRAY": -9.172639, "MAPLIST_FLAG_MAPSFOLDER": -9.172639, "MAXTEAMS": -8.074026, "MAX_CHECKPOINTS": -7.226728, "MAX_KEY_SIZE": -7.563201, "MAX_LINE_SIZE": -7.226728, "MAX_PLAYERS": -7.786344, "MAX_VALUE_SIZE": -7.786344, "Map": -9.172639, "MapChange": -7.786344, "MapChange_Instant": -9.172639, "MapChange_MapEnd": -7.380879, "MapChange_RoundEnd": -9.172639, "Native_CanVoteStart": -8.479491, "Native_CheckVoteDone": -8.479491, "Native_EndOfMapVoteEnabled": -8.479491, "Native_GetExcludeMapList": -8.479491, "Native_GetNominatedMapList": -8.479491, "Native_InitiateVote": -9.172639, "Native_NominateMap": -9.172639, "Native_RemoveNominationByMap": -9.172639, "Native_RemoveNominationByOwner": -9.172639, "Nextmap": -9.172639, "Nominations": -8.479491, "Notify": -8.479491, "OnCheckpointEnter": -8.479491, "OnClientDisconnect": -9.172639, "OnConfigsExecuted": -9.172639, "OnDialogResponse": -8.074026, "OnDirCreated": -9.172639, "OnDirRenamed": -9.172639, "OnFileCleared": -9.172639, "OnFileCreated": -9.172639, "OnFileRemoved": -9.172639, "OnFileRenamed": -9.172639, "OnMapEnd": -8.479491, "OnMapTimeLeftChanged": -9.172639, "OnPlayerSpawn": -8.074026, "OnPluginStart": -9.172639, "Only": -9.172639, "P": -6.774743, "PLATFORM_MAX_PATH": -7.093197, "PLUGIN_CONTINUE": -8.479491, "PLUGIN_HANDLED": -9.172639, "PTest": -8.479491, "PTestClose": -8.479491, "PTestInit": -8.479491, "Param_Cell": -9.172639, "Param_String": -9.172639, "Plugin": -9.172639, "Plugin_Handled": -7.786344, "Plugin_Stop": -8.479491, "PrintToChatAll": -9.172639, "PushArrayCell": -9.172639, "PushArrayString": -7.786344, "RUN_TESTS": -6.975414, "ReadMapList": -9.172639, "ReadPackCell": -8.479491, "RegAdminCmd": -8.479491, "RegPluginLibrary": -9.172639, "RemoveCheckpoint": -9.172639, "RemoveFromArray": -8.074026, "RemoveStringFromArray": -9.172639, "ReplyToCommand": -8.479491, "ResetPack": -9.172639, "Round": -9.172639, "SM": -9.172639, "SOURCEMOD_VERSION": -9.172639, "SetCheckpointInterior": -9.172639, "SetCheckpointVirtualWorld": -9.172639, "SetConVarBounds": -9.172639, "SetFailState": -9.172639, "SetMenuExitButton": -9.172639, "SetNextMap": -9.172639, "SetPlayerCheckpoint": -9.172639, "SetTimer": -9.172639, "SetupTimeleftTimer": -8.074026, "ShowActivity": -9.172639, "ShowPlayerDialog": -9.172639, "Shup_@": -8.479491, "Shut_@": -7.786344, "StartCheckpointSeeking": -9.172639, "Started": -9.172639, "StopCheckpointSeeking": -9.172639, "StrEqual": -9.172639, "String": -6.607689, "T": -8.074026, "TASK_TIMEREMAIN_LARGE": -8.074026, "TASK_TIMEREMAIN_SHORT": -7.786344, "TD_BOTTOM_WHITE_TEXT": -8.479491, "TD_NO_HOURS_MINS_SECS_VOICE": -8.074026, "TD_NO_REMAINING_VOICE": -8.479491, "TD_SHOW_SPEAK_VALUES_BELOW": -7.786344, "TD_USE_VOICE": -8.479491, "TEST_FAILED": -7.563201, "TEST_FALSE": -9.172639, "TEST_FALSE_EX": -9.172639, "TEST_MSG": -8.479491, "TEST_N": -9.172639, "TEST_NOT_NULL": -9.172639, "TEST_NULL": -9.172639, "TEST_NULL_EX": -9.172639, "TEST_N_EX": -9.172639, "TEST_PASSED": -7.226728, "TEST_SHOW_PASSES": -8.074026, "TEST_TRUE": -9.172639, "TEST_TRUE_EX": -9.172639, "TF2": -9.172639, "TIMER_FLAG_NO_MAPCHANGE": -7.786344, "TMP_FILE": -7.226728, "TRUE": -7.093197, "Test": -8.479491, "TestClose": -8.479491, "TestInit": -8.479491, "Test_@": -7.380879, "Testing_Ask": -8.479491, "Testing_Next": -8.479491, "Testing_OnDialogResponse": -7.563201, "Testing_OnPlayerSpawn": -7.563201, "Testing_Player": -9.172639, "Testing_Run": -8.479491, "Testing_RunAll": -9.172639, "Testing_Test": -6.774743, "Tests": -8.074026, "Tests_@": -9.172639, "Tezp_@": -8.479491, "Tezt_@": -8.479491, "There": -9.172639, "These": -9.172639, "ThrowError": -8.479491, "Time": -8.479491, "Timer_ChangeMap": -8.479491, "Timer_StartMapVote": -8.074026, "ToggleCheckpointActive": -9.172639, "VOTEINFO_ITEM_INDEX": -9.172639, "VOTE_DONTCHANGE": -8.479491, "VOTE_EXTEND": -8.074026, "VerifyCheckpoint": -9.172639, "Vote": -9.172639, "VoteMenuToAll": -9.172639, "Votes": -9.172639, "Voting": -8.479491, "Warning": -9.172639, "WritePackCell": -8.479491, "YSI_TESTS": -8.479491, "YSI_g_sAsked": -7.380879, "YSI_g_sFailMessage": -7.563201, "YSI_g_sFails": -6.607689, "YSI_g_sPlayer": -8.074026, "YSI_g_sTests": -6.870053, "Y_Less": -9.172639, "Y_TESTING_DIALOG_ID": -8.074026, "[": -3.401197, "\\": -6.774743, "]": -3.401197, "^": -8.479491, "_": -6.176906, "_ALS_OnDialogResponse": -8.479491, "_ALS_OnPlayerSpawn": -8.479491, "_AUTO_RUN_TESTS": -8.074026, "_CHECKPOINT_MANAGER_INCLUDED": -8.479491, "_DEBUG": -9.172639, "_YSI_SPECIAL_DEBUG": -8.479491, "_Y_TESTCB": -7.226728, "_Y_TESTDQ": -6.975414, "_Y_TESTEQ": -6.870053, "_Y_TESTOB": -8.074026, "__ChpSlotByID": -7.380879, "__active": -8.479491, "__chpid": -6.339425, "__interior": -8.074026, "__interiorid": -8.479491, "__name": -6.176906, "__once": -5.994585, "__owner": -8.479491, "__ownerid": -8.479491, "__playerid": -7.786344, "__posX": -7.093197, "__posY": -7.093197, "__posZ": -7.786344, "__size": -8.479491, "__virtualWorld": -8.074026, "__virtual_world_id": -8.479491, "_checkpointEnum": -8.479491, "_checkpoints": -5.095101, "_chp_active": -7.786344, "_chp_id": -7.563201, "_chp_interior_id": -7.563201, "_chp_manager_timer_id": -8.074026, "_chp_owner": -7.380879, "_chp_populated": -7.380879, "_chp_posX": -6.975414, "_chp_posY": -6.975414, "_chp_posZ": -7.563201, "_chp_size": -7.786344, "_chp_viewDistance": -6.774743, "_chp_world_id": -7.563201, "_mfile_included": -8.479491, "_p_VisibleCheckpoint": -6.464588, "_slot": -5.434969, "_time": -7.786344, "_totalCheckpoints": -7.563201, "a": -7.563201, "add": -9.172639, "all": -9.172639, "and": -7.380879, "any": -9.172639, "are": -9.172639, "arg": -6.774743, "argc": -8.479491, "args": -8.074026, "array": -7.786344, "arraySize": -7.563201, "as": -9.172639, "assert": -8.479491, "assert_msg": -8.479491, "at": -9.172639, "attempt": -9.172639, "author": -9.172639, "availableMaps": -9.172639, "be": -8.479491, "bluescore": -8.479491, "bonus": -8.074026, "bool": -5.129587, "booleanu": -9.172639, "bound": -9.172639, "break": -7.563201, "buffer": -5.240813, "by": -9.172639, "cache": -7.380879, "case": -8.479491, "cellmax": -8.479491, "charsmax": -6.464588, "checkpointid": -9.172639, "ciekawych": -9.172639, "client": -6.975414, "client_cmd": -8.074026, "client_info": -9.172639, "client_print": -8.074026, "complete": -9.172639, "const": -5.240813, "continue": -7.563201, "count": -7.563201, "created": -7.786344, "ctime": -7.786344, "currently": -9.172639, "data": -7.093197, "dcreate": -8.479491, "decl": -7.226728, "default": -9.172639, "defaults": -9.172639, "defined": -5.953763, "description": -9.172639, "dest": -7.380879, "dfind": -8.479491, "dialogid": -7.786344, "dir": -7.786344, "display": -8.479491, "dividend": -9.172639, "divisor": -9.172639, "do": -9.172639, "dontBroadcast": -7.786344, "drename": -8.479491, "duration": -9.172639, "during": -8.074026, "else": -6.037144, "enum": -9.172639, "err_max": -9.172639, "error": -8.479491, "event": -6.774743, "excluded": -9.172639, "exists": -8.479491, "exponent": -9.172639, "fabs": -9.172639, "fails": -6.228200, "false": -5.771441, "fclose": -6.464588, "fdiv": -8.074026, "fexist": -7.093197, "fexists": -9.172639, "ffind": -8.479491, "ffract": -9.172639, "file": -4.953131, "filename": -8.479491, "findDispFormat": -8.479491, "finded": -8.074026, "fixed": -6.228200, "flags": -6.533581, "flength": -9.172639, "float": -8.479491, "floatstr": -9.172639, "fmul": -8.479491, "folder": -7.563201, "fopen": -6.533581, "for": -6.081596, "format": -8.479491, "formatex": -7.563201, "forward": -6.128116, "found": -9.172639, "fpower": -9.172639, "fragger": -8.074026, "fread": -7.563201, "free": -8.479491, "fremove": -7.563201, "frename": -7.786344, "from": -9.172639, "fround": -9.172639, "fround_ceil": -9.172639, "fround_floor": -9.172639, "fround_method": -8.479491, "fround_round": -8.479491, "fround_tozero": -9.172639, "fround_unbiased": -9.172639, "fsqroot": -9.172639, "fvox/time_is_now": -9.172639, "fwrite": -7.786344, "g_ChangeMapAtRoundEnd": -7.226728, "g_ChangeMapInProgress": -7.563201, "g_ChangeTime": -9.172639, "g_CountDown": -8.074026, "g_Cvar_Bonusroundtime": -7.093197, "g_Cvar_DontChange": -8.074026, "g_Cvar_EndOfMapVote": -7.093197, "g_Cvar_ExcludeMaps": -8.074026, "g_Cvar_Extend": -7.786344, "g_Cvar_ExtendFragStep": -8.479491, "g_Cvar_ExtendRoundStep": -8.479491, "g_Cvar_ExtendTimeStep": -8.479491, "g_Cvar_Fraglimit": -7.380879, "g_Cvar_IncludeMaps": -8.479491, "g_Cvar_Maxrounds": -7.563201, "g_Cvar_NoVoteMode": -8.479491, "g_Cvar_RunOff": -8.479491, "g_Cvar_RunOffPercent": -8.479491, "g_Cvar_StartFrags": -8.074026, "g_Cvar_StartRounds": -7.380879, "g_Cvar_StartTime": -8.074026, "g_Cvar_VoteDuration": -7.563201, "g_Cvar_Winlimit": -7.563201, "g_Extends": -7.786344, "g_HasVoteStarted": -7.093197, "g_LastTime": -8.074026, "g_MapList": -7.093197, "g_MapVoteCompleted": -6.975414, "g_MapVoteStartedForward": -8.479491, "g_NextMapList": -7.563201, "g_NominateCount": -8.074026, "g_NominateList": -6.975414, "g_NominateOwners": -6.975414, "g_NominationsResetForward": -7.563201, "g_OldMapList": -6.975414, "g_RetryTimer": -7.563201, "g_Switch": -7.226728, "g_TimeSet": -6.339425, "g_TotalRounds": -7.226728, "g_VoteMenu": -7.093197, "g_VoteTimer": -7.093197, "g_WaitingForVote": -7.563201, "g_amx_time_voice": -7.786344, "g_amx_timeleft": -8.074026, "g_mapFileSerial": -8.074026, "g_mp_timelimit": -8.074026, "g_winCount": -7.563201, "get_cvar_pointer": -9.172639, "get_pcvar_float": -9.172639, "get_pcvar_num": -8.479491, "get_players": -9.172639, "get_time": -8.074026, "get_timeleft": -8.479491, "gmtm": -7.563201, "good": -9.172639, "has": -9.172639, "have": -8.479491, "hndl": -8.479491, "hours": -8.479491, "hrs": -7.380879, "i": -4.650850, "i=": -9.172639, "id": -6.975414, "idx": -6.774743, "if": -4.282289, "ignorecase": -6.975414, "in": -7.380879, "increment": -9.172639, "index": -6.687732, "indicates": -9.172639, "inputarray": -9.172639, "inputlist": -8.479491, "inputtext": -8.074026, "io_append": -8.479491, "io_read": -7.380879, "io_write": -7.380879, "is": -8.479491, "it": -8.479491, "item_info": -8.479491, "items": -9.172639, "j": -6.128116, "key": -6.081596, "lFinded": -8.074026, "lastfail": -7.226728, "late": -9.172639, "len": -7.093197, "lenght": -8.074026, "library": -8.479491, "line": -7.786344, "lines": -8.074026, "listitem": -8.074026, "mClearFile": -9.172639, "mCreateDir": -9.172639, "mCreateFile": -9.172639, "mFileExist": -9.172639, "mFindDir": -9.172639, "mFindFile": -9.172639, "mGetFloat": -9.172639, "mGetInt": -9.172639, "mGetString": -8.074026, "mHowLines": -9.172639, "mIsFileEmpty": -9.172639, "mIsSet": -9.172639, "mRemoveFile": -9.172639, "mRemoveNewLine": -8.479491, "mRenameDir": -9.172639, "mRenameFile": -9.172639, "mSetFloat": -9.172639, "mSetInt": -9.172639, "mSetString": -8.074026, "mUnSet": -9.172639, "main": -9.172639, "map": -5.260615, "mapChange": -8.479491, "maparray": -8.074026, "mapchooser": -9.172639, "maps": -8.479491, "mapvote": -9.172639, "max": -9.172639, "maxrounds": -8.074026, "may": -9.172639, "menu": -8.479491, "method": -9.172639, "mfile": -6.037144, "mhours": -7.786344, "mins": -6.400050, "mmins": -7.786344, "mp_bonusroundtime": -9.172639, "mp_bonustime": -9.172639, "myinfo": -9.172639, "myself": -9.172639, "name": -6.464588, "native": -6.339425, "need": -9.172639, "new": -4.182206, "new_value": -7.380879, "newname": -6.870053, "next": -9.172639, "nie": -9.172639, "nominateCount": -9.172639, "nominated": -9.172639, "nominations": -9.172639, "nominationsToAdd": -8.479491, "not": -7.786344, "nothing": -9.172639, "now": -8.479491, "num": -7.786344, "numParams": -7.563201, "num_clients": -9.172639, "num_items": -9.172639, "num_to_word": -7.563201, "num_votes": -9.172639, "numargs": -9.172639, "of": -7.563201, "off": -9.172639, "old": -8.479491, "oldmap": -7.786344, "oldname": -7.786344, "on": -8.479491, "one": -9.172639, "oper": -4.778189, "operator": -6.228200, "operator*": -8.479491, "operator/": -8.074026, "options": -9.172639, "our": -9.172639, "out": -8.479491, "ownerarray": -8.074026, "p": -7.380879, "param": -9.172639, "parse": -9.172639, "past": -9.172639, "pattern": -8.479491, "playerid": -6.339425, "players": -8.074026, "plr": -7.786344, "plugin": -7.563201, "plugin_init": -9.172639, "pnum": -8.074026, "pos": -7.093197, "prevent": -9.172639, "print_chat": -8.074026, "printf": -5.365976, "public": -5.483759, "rational": -9.172639, "read_argc": -9.172639, "read_argv": -9.172639, "read_flags": -9.172639, "really": -9.172639, "redscore": -8.479491, "register_clcmd": -8.479491, "register_cvar": -8.479491, "register_dictionary": -9.172639, "register_plugin": -9.172639, "register_srvcmd": -9.172639, "remove": -8.479491, "remove_task": -8.479491, "rename": -8.479491, "response": -7.786344, "rest": -9.172639, "return": -4.528248, "round": -8.479491, "roundcount": -8.479491, "s": -6.607689, "s_period": -9.172639, "sayTheTime": -9.172639, "sayTimeLeft": -9.172639, "secs": -6.975414, "semicolon": -9.172639, "setDisplaying": -9.172639, "setTimeText": -8.479491, "setTimeVoice": -8.074026, "set_hudmessage": -8.479491, "set_pcvar_string": -9.172639, "set_task": -8.074026, "shorter": -9.172639, "should": -9.172639, "shouldn": -9.172639, "show_hudmessage": -9.172639, "size": -8.479491, "sizename": -7.786344, "sizeof": -6.128116, "so": -9.172639, "special": -9.172639, "stalemate.": -9.172639, "start": -9.172639, "startTime": -7.786344, "started": -9.172639, "state": -8.479491, "static": -9.172639, "stimel": -7.786344, "stock": -5.078294, "str": -5.095101, "str_to_num": -8.074026, "strcmp": -7.093197, "strdel": -9.172639, "strfind": -7.563201, "strfixed": -9.172639, "string": -6.687732, "strlen": -8.074026, "strmid": -7.563201, "strunpack": -7.786344, "strval": -9.172639, "svoice": -7.786344, "switch": -9.172639, "t": -7.786344, "temp": -6.282267, "testing": -9.172639, "tests": -6.774743, "text": -7.380879, "than": -9.172639, "that": -8.074026, "the": -7.226728, "they": -9.172639, "this": -8.074026, "time": -6.607689, "timeRemain": -9.172639, "timer": -8.479491, "tm_set": -8.074026, "tmlf": -6.607689, "tmpfile": -6.687732, "to": -7.380879, "true": -5.535052, "unique": -9.172639, "unused": -7.786344, "url": -9.172639, "va_args": -8.479491, "va_format": -9.172639, "va_printf": -8.074026, "va_start": -7.786344, "valstr": -9.172639, "value": -6.975414, "version": -9.172639, "vote": -7.563201, "voteDuration": -8.479491, "voteSize": -9.172639, "vox/": -9.172639, "we": -8.479491, "weren": -9.172639, "when": -7.786344, "while": -7.093197, "whours": -7.563201, "will": -9.172639, "winlimit": -8.074026, "winner": -7.093197, "winner_score": -8.479491, "winning_team": -9.172639, "wmins": -7.563201, "wpm": -7.786344, "x": -7.093197, "you": -9.172639, "ysi_debug": -8.479491, "zwraca": -9.172639, "{": -3.946892, "|": -7.786344, "||": -6.037144, "}": -3.946892, "~": -7.786344, }, "Squirrel": map[string]float64{ "(": -2.833213, ")": -2.833213, "+": -4.442651, ",": -2.496741, "-": -5.135798, "///////////////////////////////////////////": -5.135798, "//example": -5.135798, "//www.squirrel": -5.135798, ":": -3.189888, ";": -2.427748, "=": -2.191359, "DoDomething": -5.135798, "Entity": -4.037186, "MoveTo": -5.135798, "Player": -4.442651, "[": -4.037186, "]": -4.037186, "a": -4.442651, "array": -4.037186, "b": -5.135798, "base.constructor": -5.135798, "class": -4.442651, "constructor": -4.442651, "entityname": -3.749504, "etype": -4.442651, "extends": -5.135798, "foreach": -5.135798, "from": -5.135798, "function": -4.442651, "http": -5.135798, "i": -5.135798, "in": -5.135798, "lang.org/#documentation": -5.135798, "local": -4.037186, "name": -4.442651, "newplayer": -5.135798, "newplayer.MoveTo": -5.135798, "newx": -4.442651, "newy": -4.442651, "newz": -4.442651, "null": -4.442651, "print": -4.442651, "subtable": -5.135798, "table": -5.135798, "type": -4.442651, "typeof": -5.135798, "val": -4.442651, "x": -4.442651, "y": -4.442651, "z": -4.442651, "{": -2.833213, "}": -2.833213, }, "Stan": map[string]float64{ "(": -3.436289, ")": -3.436289, "*": -4.465908, "+": -4.129436, ",": -2.817249, "-": -3.590439, "/": -6.075346, "//prior": -6.075346, ":": -4.465908, ";": -2.464428, "<": -3.367296, "=": -3.772761, ">": -3.995904, "N": -3.878121, "[": -2.609610, "]": -2.609610, "be": -6.075346, "bernoulli_logit": -6.075346, "beta": -3.878121, "can": -6.075346, "changed": -6.075346, "data": -4.976734, "distribution": -6.075346, "eta": -4.976734, "fabs": -6.075346, "for": -4.465908, "i": -4.976734, "in": -4.465908, "incumbency_": -5.382199, "int": -4.465908, "inv_gamma": -6.075346, "j": -3.367296, "lower": -3.995904, "matrix": -4.976734, "model": -4.976734, "mu_theta": -4.976734, "n_avoid": -4.465908, "n_dogs": -4.129436, "n_shock": -4.465908, "n_trials": -3.995904, "normal": -4.283587, "p": -4.976734, "parameters": -4.465908, "real": -4.465908, "sigma": -5.382199, "sigma_eta": -4.689052, "sigma_theta": -5.382199, "sigma_y": -5.382199, "t": -3.677451, "theta": -4.976734, "to": -6.075346, "transformed": -5.382199, "uniform": -6.075346, "upper": -5.382199, "vector": -3.878121, "vote_": -4.689052, "xi": -4.689052, "y": -4.283587, "{": -3.436289, "}": -3.436289, "~": -3.995904, }, "Standard ML": map[string]float64{ "!": -4.504736, "#": -8.311398, "'": -7.618251, "(": -2.408765, ")": -2.416995, "*": -5.913503, ",": -2.332513, "-": -5.421027, "...": -7.212786, ":": -4.091891, ";": -5.826492, "<": -7.618251, "<N>": -8.311398, "<ann>": -7.212786, "<ar>": -8.311398, "<arg>": -8.311398, "<basename>": -8.311398, "<file>": -6.701960, "<gcc>": -8.311398, "<n>": -5.421027, "<name>": -7.618251, "<none>": -8.311398, "<opt>": -5.826492, "<pass>": -6.925104, "<passes>": -6.925104, "<regexp>": -6.519639, "<target>": -6.519639, "<ty>": -8.311398, "<unset>": -7.618251, "<value>": -7.618251, "=": -2.419754, ">": -3.384145, "?": -7.212786, "AMD": -8.311398, "Anns": -8.311398, "B": -7.618251, "Black": -4.785038, "CCodegen": -8.311398, "Char.isSpace": -6.925104, "ChunkPerFunc": -7.618251, "Coalesce": -8.311398, "Codegen": -6.519639, "CommandLine.arguments": -8.311398, "Compile": -7.618251, "Compile.compileMLB": -8.311398, "Compile.compileSML": -8.311398, "Compile.elaborateMLB": -8.311398, "Compile.elaborateSML": -7.618251, "Compile.outputBasisConstants": -8.311398, "Compile.sourceFilesMLB": -8.311398, "Control": -8.311398, "Control.Assembly": -8.311398, "Control.C": -8.311398, "Control.Codegen.toString": -8.311398, "Control.Elaborate.DiagEIW.Ignore": -7.618251, "Control.Elaborate.default": -7.212786, "Control.Elaborate.document": -8.311398, "Control.Elaborate.enabled": -7.212786, "Control.Elaborate.nonexhaustiveMatch": -7.618251, "Control.Elaborate.redundantMatch": -7.618251, "Control.Elaborate.warnUnused": -7.618251, "Control.Format.t": -8.311398, "Control.No": -8.311398, "Control.Target.arch": -7.618251, "Control.Target.os": -8.311398, "Control.align": -8.311398, "Control.chunk": -8.311398, "Control.codegen": -7.212786, "Control.labelsHaveExtra_": -8.311398, "Control.libDir": -8.311398, "Control.mlbPathMap": -8.311398, "Cross": -8.311398, "Cygwin": -8.311398, "Darwin": -7.618251, "Dir.lsDirs": -8.311398, "Done": -7.618251, "Dwarf": -7.618251, "DwarfPlus": -8.311398, "EQUAL": -7.618251, "Empty": -6.008813, "Error.bug": -6.701960, "Exn.finally": -8.311398, "Explicit": -8.311398, "File.canRead": -8.311398, "File.contents": -7.618251, "File.lines": -8.311398, "File.remove": -8.311398, "File.t": -8.311398, "Files": -7.212786, "FreeBSD": -8.311398, "GREATER": -7.618251, "Generated": -7.212786, "HPUX": -8.311398, "LAZY": -8.311398, "LAZY_BASE": -6.701960, "LEFTB": -6.008813, "LEFTR": -6.231957, "LESS": -7.618251, "Layout": -8.311398, "Layout.output": -8.311398, "Layout.outputl": -8.311398, "Lazy": -7.618251, "LazyBase": -6.925104, "LazyFn": -6.925104, "LazyMemo": -7.618251, "LazyMemoBase": -6.925104, "Linux": -8.311398, "List.concat": -7.618251, "List.first": -7.618251, "List.fold": -8.311398, "List.foreach": -8.311398, "List.isEmpty": -8.311398, "List.keepAllMap": -7.618251, "List.map": -8.311398, "List.peek": -8.311398, "MAIN": -8.311398, "MAIN_STRUCTS": -8.311398, "MLB": -7.212786, "MLton.GC.pack": -8.311398, "MLton.Platform.Arch.fromString": -8.311398, "MLton.Platform.Arch.t": -8.311398, "MLton.Platform.Arch.toString": -8.311398, "MLton.Platform.OS.fromString": -8.311398, "MLton.Platform.OS.t": -8.311398, "MLton.Platform.OS.toString": -8.311398, "Main": -8.311398, "Match": -8.311398, "MinGW": -7.618251, "NONE": -5.478185, "Native": -8.311398, "Native.IEEEFP": -8.311398, "NetBSD": -8.311398, "NotFound": -7.618251, "O": -7.212786, "OS.Path.joinDirFile": -6.114174, "OS.Path.mkAbsolute": -7.212786, "OS.Path.splitDirFile": -8.311398, "OS.Process": -8.311398, "OS.Process.exit": -8.311398, "OSStr": -8.311398, "OUT": -7.212786, "OpenBSD": -8.311398, "Ops": -7.212786, "OptPred": -8.311398, "OptPred.Target": -8.311398, "OptPred.Yes": -8.311398, "OptPred.t": -7.212786, "Out.close": -8.311398, "Out.error": -8.311398, "Out.newline": -8.311398, "Out.output": -8.311398, "Out.standard": -6.925104, "Out.t": -8.311398, "PathMap": -8.311398, "Place": -8.311398, "Place.Files": -7.618251, "Place.Generated": -7.618251, "Place.MLB": -8.311398, "Place.O": -8.311398, "Place.OUT": -8.311398, "Place.SML": -8.311398, "Place.TypeCheck": -7.212786, "Process.makeCommandLine": -8.311398, "ProfileTimeField": -8.311398, "ProfileTimeLabel": -8.311398, "Promise.lazy": -8.311398, "RIGHTB": -6.008813, "RIGHTR": -6.114174, "Red": -4.877411, "RedBlackTree": -8.311398, "Result.No": -8.311398, "Result.Yes": -8.311398, "S": -7.618251, "SML": -7.212786, "SOME": -6.114174, "Self": -8.311398, "Show": -8.311398, "Show.Anns": -8.311398, "Show.PathMap": -8.311398, "Show.t": -8.311398, "Silent": -7.618251, "Solaris": -8.311398, "Stabs": -8.311398, "StabsPlus": -8.311398, "String.forall": -8.311398, "String.t": -8.311398, "String.toLower": -8.311398, "String.tokens": -7.212786, "String.translate": -8.311398, "TOP": -6.701960, "Target": -8.311398, "Target.arch": -8.311398, "Target.os": -8.311398, "Top": -6.519639, "TypeCheck": -7.212786, "Undefined": -6.519639, "Vector.foreach": -8.311398, "Vector.fromList": -8.311398, "Version.banner": -8.311398, "X": -8.311398, "Yes": -8.311398, "[": -4.944102, "]": -4.944102, "^": -7.618251, "_": -5.366959, "a": -3.980665, "ac": -7.212786, "addTargetOpts": -6.925104, "align": -8.311398, "amd": -7.618251, "and": -8.311398, "andalso": -6.925104, "app": -7.618251, "arScript": -7.212786, "arch": -5.913503, "archFile": -7.618251, "archStr": -8.311398, "args": -7.618251, "as": -7.212786, "asOpts": -7.212786, "b": -4.461251, "bbZip": -4.979194, "bool": -6.114174, "buildConstants": -7.618251, "c": -4.845662, "case": -5.175904, "ccOpts": -6.701960, "cg": -7.212786, "chunk": -8.311398, "clear": -8.311398, "codegen": -7.212786, "commandLine": -6.925104, "compare": -6.519639, "compile": -6.701960, "compileCSO": -7.212786, "compileMLB": -7.618251, "compileSML": -7.618251, "concat": -5.913503, "csoFiles": -7.212786, "d": -4.910201, "datatype": -5.603348, "datum": -7.212786, "debugFormat": -7.212786, "debugRuntime": -7.212786, "del": -6.231957, "delMin": -6.231957, "delay": -6.519639, "delete": -7.212786, "dict": -5.826492, "dir": -6.008813, "doit": -7.618251, "done": -7.212786, "e": -5.538810, "elaborate": -7.212786, "elaborateOnly": -8.311398, "else": -5.478185, "end": -4.845662, "entry": -5.603348, "eq": -7.212786, "eqBy": -6.701960, "exception": -7.618251, "exit": -8.311398, "expert": -7.212786, "explicitAlign": -8.311398, "explicitChunk": -7.618251, "explicitCodegen": -7.212786, "f": -5.220356, "false": -5.266876, "file": -5.421027, "fn": -4.845662, "force": -5.421027, "fun": -4.700480, "functor": -7.618251, "gcc": -6.925104, "gccDir": -7.618251, "gccFile": -7.618251, "handle": -6.925104, "hasCodegen": -7.618251, "if": -5.478185, "ignore": -7.618251, "in": -5.478185, "info": -7.618251, "inject": -6.701960, "input": -5.746449, "inputFile": -8.311398, "insert": -7.618251, "insertShadow": -7.212786, "int": -8.311398, "isSome": -7.618251, "isUndefined": -6.925104, "it": -8.311398, "joinBlack": -8.311398, "joinRed": -7.212786, "keepDefUse": -7.618251, "keepDot": -8.311398, "keepGenerated": -8.311398, "keepO": -8.311398, "keepPasses": -8.311398, "keepSSA": -8.311398, "key": -5.421027, "l": -7.618251, "lazy": -5.746449, "let": -5.538810, "libTargetDir": -6.231957, "limit": -8.311398, "line": -6.519639, "linkArchives": -8.311398, "linkOpts": -7.212786, "list": -6.701960, "listFiles": -7.212786, "lk": -6.925104, "local": -8.311398, "lookup": -7.212786, "main": -8.311398, "mainWrapped": -8.311398, "make": -7.618251, "map": -7.212786, "mkCompileSrc": -7.618251, "move": -8.311398, "msg": -7.618251, "needB": -7.618251, "not": -6.519639, "of": -4.910201, "oldEntry": -7.212786, "on": -8.311398, "op": -7.618251, "open": -6.519639, "opt": -6.701960, "option": -6.519639, "opts": -7.618251, "order": -7.618251, "orelse": -6.231957, "os": -5.746449, "osFile": -7.618251, "out": -6.365488, "output": -7.618251, "outputC": -8.311398, "outputHeader": -7.618251, "outputS": -8.311398, "outputl": -8.311398, "outputs": -8.311398, "p": -6.008813, "parseMlbPathVar": -7.618251, "path": -6.231957, "platform": -8.311398, "positionIndependent": -7.618251, "potentialTargets": -7.618251, "pred": -6.701960, "print": -6.925104, "printVersion": -7.618251, "profile": -7.618251, "profileSet": -8.311398, "profileTimeSet": -8.311398, "raise": -6.925104, "re": -8.311398, "readMlbPathMap": -8.311398, "ref": -4.647837, "relativeTo": -7.212786, "result": -8.311398, "running": -8.311398, "runtimeArgs": -8.311398, "s": -6.365488, "setTargetType": -8.311398, "show": -7.618251, "showBasis": -8.311398, "showDefUse": -8.311398, "sig": -7.618251, "signature": -7.618251, "so": -8.311398, "start": -8.311398, "stop": -6.925104, "str": -8.311398, "string": -5.913503, "struct": -5.746449, "structure": -5.603348, "style": -8.311398, "success": -8.311398, "t": -5.603348, "table": -5.672341, "target": -6.008813, "targetArch": -8.311398, "targetDir": -7.212786, "targetMap": -6.925104, "targetOS": -7.212786, "targetsDir": -7.212786, "tempFiles": -8.311398, "the": -7.618251, "then": -5.478185, "to": -8.311398, "toInt": -8.311398, "toString": -6.925104, "trace": -6.925104, "tree": -7.618251, "true": -6.008813, "type": -6.519639, "undefined": -7.618251, "unit": -6.701960, "usage": -6.519639, "v": -7.618251, "val": -3.845490, "var": -6.701960, "verbosity": -7.212786, "w": -5.478185, "want": -8.311398, "warnMatch": -7.618251, "we": -8.311398, "x": -4.007333, "y": -4.399375, "z": -4.121744, "zip": -5.366959, "zipper": -7.212786, "{": -4.814891, "|": -3.706228, "}": -4.814891, }, "Stata": map[string]float64{ "!": -7.058471, "#": -6.365324, "#delimit": -8.157084, "'": -8.157084, "(": -4.046210, ")": -4.046210, "*": -4.898987, "*search": -8.157084, "+": -7.463937, ",": -3.762635, "-": -4.419414, ".": -5.066041, "...": -4.755886, ".csv": -7.463937, "/": -8.157084, "/mpg": -8.157084, ":": -2.659916, ";": -5.449034, "=": -6.365324, "Accuracy": -8.157084, "Acknowledgements": -8.157084, "Action": -7.463937, "Add": -8.157084, "After": -8.157084, "All": -8.157084, "Altitude": -8.157084, "As": -8.157084, "Attach": -7.463937, "Author": -8.157084, "Because": -8.157084, "Change": -8.157084, "Create": -6.770789, "Description": -8.157084, "Drop": -8.157084, "Each": -8.157084, "Examples": -8.157084, "Fields": -7.463937, "Fit": -7.463937, "For": -6.770789, "Format": -8.157084, "Further": -8.157084, "Hello": -8.157084, "However": -8.157084, "If": -7.463937, "Import": -7.463937, "In": -7.058471, "Innovations": -7.463937, "Latitude": -8.157084, "Lindsey": -8.157084, "Lists": -8.157084, "Long": -7.058471, "Longitude": -8.157084, "MAXDIM": -8.157084, "Main": -7.058471, "Many": -8.157084, "Mata": -8.157084, "Matthew": -7.463937, "Merge": -8.157084, "Model": -8.157084, "Most": -8.157084, "ODK": -6.365324, "ODK.": -8.157084, "Obtain": -8.157084, "Odk_bad_name": -7.058471, "Odk_geopoint": -7.463937, "Odk_group": -8.157084, "Odk_is_other": -7.463937, "Odk_list_name": -7.463937, "Odk_name": -8.157084, "Odk_repeat": -8.157084, "Options": -8.157084, "Other": -8.157084, "Poverty": -7.463937, "Remarks": -8.157084, "Same": -7.058471, "Setup": -8.157084, "Shaughnessy": -8.157084, "She": -8.157084, "Split": -8.157084, "Stata": -6.547646, "Strings": -8.157084, "Suppress": -8.157084, "Syntax": -8.157084, "The": -5.959859, "There": -8.157084, "These": -7.463937, "Title": -8.157084, "Use": -8.157084, "User": -8.157084, "Using": -6.211174, "Where": -8.157084, "White": -7.463937, "XLSForm": -8.157084, "XLSForm.": -8.157084, "[": -6.365324, "]": -6.365324, "_all": -8.157084, "`": -5.959859, "a": -4.755886, "about": -8.157084, "above": -8.157084, "acknowledgements": -8.157084, "action.org": -8.157084, "addition": -8.157084, "affecting": -8.157084, "again": -8.157084, "all": -7.058471, "almost": -8.157084, "already": -7.463937, "alternative": -8.157084, "an": -6.365324, "and": -5.266712, "another": -8.157084, "anova": -8.157084, "any": -7.058471, "appears": -7.463937, "are": -5.592134, "area": -7.463937, "areas.": -8.157084, "as": -4.789788, "aspects": -8.157084, "assisted": -8.157084, "attaches": -8.157084, "attrib": -7.463937, "attribute": -5.854499, "attributes": -5.854499, "author": -8.157084, "auto": -8.157084, "ax": -8.157084, "be": -5.672177, "because": -8.157084, "become": -7.058471, "been": -8.157084, "begin": -7.463937, "begin_group": -8.157084, "begin_repeat": -8.157084, "begins": -8.157084, "bel": -7.463937, "best": -8.157084, "beta": -7.463937, "better": -8.157084, "blank.": -8.157084, "bn.foreign": -8.157084, "but": -6.770789, "by": -6.211174, "ca": -8.157084, "can": -8.157084, "cannot": -7.463937, "case": -8.157084, "char": -6.770789, "character": -8.157084, "characteristic": -7.463937, "characteristics": -6.770789, "characteristics.": -8.157084, "characters": -7.058471, "characters.": -7.463937, "cho": -7.463937, "choices": -5.854499, "choices.csv": -8.157084, "choices_valuename.csv": -8.157084, "choicesfile": -6.770789, "choicesopts": -6.547646, "chooses": -8.157084, "cmd": -3.447554, "cmdab": -6.547646, "code": -8.157084, "coefficients": -8.157084, "coldent": -7.058471, "collaborated": -8.157084, "colon": -8.157084, "colreset": -6.770789, "column": -5.266712, "combination": -8.157084, "comma": -8.157084, "command": -7.058471, "commas": -8.157084, "completes": -7.463937, "component": -8.157084, "concatenated": -8.157084, "concatenating": -8.157084, "constant": -7.463937, "constants": -8.157084, "constraints": -8.157084, "contain": -8.157084, "contains": -7.058471, "contributed": -8.157084, "convention": -8.157084, "convert": -7.463937, "converted": -7.058471, "creates": -8.157084, "csv": -5.959859, "csvfile": -7.058471, "d": -8.157084, "data": -6.770789, "data.": -8.157084, "datasets.": -8.157084, "date": -8.157084, "datemask": -8.157084, "datetime": -8.157084, "default": -6.077642, "definition": -8.157084, "definitions": -8.157084, "delimit": -8.157084, "depend": -8.157084, "description": -8.157084, "designated": -7.463937, "development.": -8.157084, "differences": -8.157084, "different": -8.157084, "difficult": -8.157084, "digits": -8.157084, "digits.": -8.157084, "disabled": -6.770789, "display": -8.157084, "dlgtab": -8.157084, "do": -5.066041, "does": -8.157084, "don": -8.157084, "double": -7.058471, "drop": -8.157084, "dropattrib": -7.463937, "duplicate": -6.770789, "duplicates": -8.157084, "duplicates.": -8.157084, "each": -6.211174, "elements": -8.157084, "embedded": -7.463937, "emu": -6.770789, "enclosed": -8.157084, "end": -6.770789, "end_group": -8.157084, "end_repeat": -8.157084, "er": -8.157084, "error": -6.770789, "eu": -6.770789, "even": -8.157084, "example": -7.463937, "examples": -8.157084, "except": -8.157084, "exceptions": -8.157084, "exist": -8.157084, "existing": -8.157084, "exists.": -8.157084, "exp": -7.463937, "few": -8.157084, "field": -4.938208, "fieldname": -7.058471, "fields": -6.211174, "file": -5.266712, "file.": -8.157084, "filename": -7.058471, "files": -8.157084, "first": -7.463937, "followed": -8.157084, "following": -8.157084, "follows": -8.157084, "for": -5.592134, "foreach": -8.157084, "foreign": -7.463937, "form": -8.157084, "format": -8.157084, "formed": -8.157084, "forms": -7.463937, "from": -6.365324, "gen": -8.157084, "geopoint": -7.463937, "go": -8.157084, "gp": -7.463937, "group": -6.770789, "groups": -6.770789, "groups.": -8.157084, "has": -6.365324, "hascons": -8.157084, "have": -7.463937, "header": -5.449034, "header.": -8.157084, "headers": -6.077642, "heckman": -7.463937, "hello": -8.157084, "help": -4.861247, "helpb": -6.211174, "helpful": -8.157084, "hint": -7.463937, "histogram": -7.463937, "hline": -8.157084, "ices": -7.463937, "if": -5.854499, "ignore": -8.157084, "import": -5.959859, "import.do": -6.211174, "imported": -6.770789, "imports": -6.770789, "in": -4.979030, "including": -8.157084, "information": -8.157084, "inname": -8.157084, "insheet": -6.770789, "instance": -8.157084, "instead": -8.157084, "integer": -8.157084, "intercept": -8.157084, "invalid": -8.157084, "involve": -8.157084, "is": -4.723097, "isabled": -8.157084, "it": -4.046210, "its": -7.058471, "jan": -8.157084, "keep": -8.157084, "kinds": -8.157084, "know": -8.157084, "la": -7.463937, "label": -5.959859, "labels": -6.077642, "last": -8.157084, "lead": -8.157084, "left": -8.157084, "length": -7.058471, "li": -8.157084, "limit": -8.157084, "limited": -8.157084, "line": -6.770789, "linear": -7.463937, "list": -5.592134, "list.": -8.157084, "list_name": -6.365324, "lists": -7.463937, "local": -6.365324, "long": -6.211174, "longer": -8.157084, "lose": -8.157084, "m": -7.463937, "macro": -8.157084, "macros": -8.157084, "make": -8.157084, "makes": -8.157084, "manage": -8.157084, "many": -7.463937, "mar": -8.157084, "marker": -5.854499, "mata": -8.157084, "matrix": -7.058471, "max": -7.463937, "maximum": -7.058471, "may": -7.463937, "merge": -7.058471, "merging": -7.463937, "metadata": -6.547646, "min": -7.463937, "minimum": -7.463937, "minus": -8.157084, "model": -8.157084, "more": -8.157084, "mpg": -8.157084, "much": -8.157084, "multiple": -8.157084, "must": -7.463937, "mwhite@poverty": -8.157084, "n/a": -8.157084, "name": -5.161352, "named": -8.157084, "names": -5.384495, "names.": -6.365324, "naming": -8.157084, "need": -8.157084, "nested": -7.463937, "nested.": -8.157084, "noconstant": -8.157084, "not": -6.077642, "note": -8.157084, "notes": -8.157084, "notwithstanding": -8.157084, "number.": -8.157084, "numeric": -6.770789, "o": -5.672177, "odbc": -7.463937, "odkmeta": -5.323870, "odkmeta##Odk_bad_name": -8.157084, "odkmeta##choicesopts": -7.463937, "odkmeta##other": -8.157084, "odkmeta##surveyopts": -7.463937, "of": -4.573565, "often": -8.157084, "on": -6.211174, "one": -6.547646, "one.": -8.157084, "only": -7.058471, "opt": -4.938208, "options": -8.157084, "or": -6.211174, "or_other": -6.547646, "order": -8.157084, "oth": -8.157084, "other": -5.518026, "others": -8.157084, "otherwise": -8.157084, "outname": -8.157084, "overwrite": -8.157084, "own": -7.463937, "p": -5.959859, "p_end": -4.306936, "phang": -4.861247, "physics": -8.157084, "plus": -7.463937, "pmore": -6.077642, "position": -8.157084, "positive": -8.157084, "preceded": -7.058471, "precision": -8.157084, "previous": -7.058471, "problem": -7.463937, "problematic": -8.157084, "program": -7.463937, "pstd": -5.161352, "quote.": -8.157084, "quotes": -7.058471, "r": -7.463937, "rarely": -8.157084, "rather": -8.157084, "recommended": -8.157084, "refitting": -8.157084, "regress": -6.547646, "regression": -7.463937, "rel": -8.157084, "remarks": -8.157084, "removed": -8.157084, "renamed": -8.157084, "renaming": -7.463937, "renaming.": -7.058471, "repeat": -6.365324, "replace": -6.211174, "replaced": -5.959859, "require": -8.157084, "required.": -8.157084, "requires": -8.157084, "reshape": -7.463937, "reshaping": -8.157084, "respectively.": -8.157084, "result": -6.365324, "return": -8.157084, "s": -5.854499, "saved": -8.157084, "section": -7.463937, "select": -6.365324, "select_multiple": -6.365324, "select_one": -7.058471, "separated": -7.463937, "several": -8.157084, "should": -8.157084, "simserial": -8.157084, "single": -8.157084, "smcl": -8.157084, "some": -8.157084, "specified": -8.157084, "specifies": -6.770789, "specify": -8.157084, "split": -6.770789, "splitting": -7.463937, "standardized": -8.157084, "standpoint": -8.157084, "starts": -8.157084, "stname": -8.157084, "strings": -8.157084, "structure": -8.157084, "suboptions": -8.157084, "such": -7.463937, "supplements": -8.157084, "survey": -5.518026, "survey.csv": -8.157084, "survey_fieldname.csv": -8.157084, "surveyfile": -6.547646, "surveyopts": -6.770789, "synopt": -5.384495, "synopthdr": -6.770789, "synoptline": -6.077642, "synoptset": -6.547646, "syntab": -6.365324, "syntax": -8.157084, "sysuse": -8.157084, "t": -7.463937, "tabbed": -6.770789, "tanh": -8.157084, "tasks": -7.058471, "tasks.": -8.157084, "template.": -6.077642, "term": -8.157084, "tester": -8.157084, "text": -8.157084, "than": -7.058471, "that": -5.112561, "the": -3.952391, "there": -7.463937, "these": -6.770789, "they": -7.463937, "this": -8.157084, "three": -8.157084, "time": -8.157084, "title": -6.211174, "to": -5.021590, "truncated": -8.157084, "two": -7.463937, "txt": -6.365324, "type": -6.211174, "u": -7.058471, "underscore.": -8.157084, "unique": -8.157084, "urvey": -7.463937, "use": -7.058471, "used.": -8.157084, "user.": -8.157084, "uses": -7.058471, "uses.": -8.157084, "using": -5.854499, "usually": -8.157084, "v": -6.211174, "value": -5.518026, "valuename": -7.463937, "values": -7.058471, "var": -6.547646, "variable": -5.518026, "variables": -6.077642, "variables.": -8.157084, "varlist": -7.463937, "varname": -8.157084, "vary": -8.157084, "vers": -8.157084, "version": -7.463937, "very": -8.157084, "was": -8.157084, "weight": -6.770789, "when": -8.157084, "which": -6.365324, "will": -5.959859, "with": -5.854499, "without": -7.463937, "work": -8.157084, "worksheet": -6.547646, "worksheet.": -8.157084, "worksheets": -8.157084, "world": -8.157084, "would": -8.157084, "write": -8.157084, "written": -7.463937, "you": -8.157084, "ype": -8.157084, "{": -2.068039, "}": -2.070309, }, "Stylus": map[string]float64{ "#": -4.510860, "#FFF": -4.510860, "#ddd": -4.510860, "#eee": -4.510860, "$": -3.817712, "(": -4.510860, ")": -4.510860, ",": -3.817712, "-": -2.208274, ".bar": -4.510860, ":": -2.431418, ";": -3.817712, "=": -3.412247, "@extends": -3.817712, "[": -3.817712, "]": -3.817712, "a.button": -4.510860, "arguments": -3.412247, "arial": -4.510860, "background": -4.510860, "body": -4.510860, "border": -2.719100, "color": -3.817712, "font": -4.510860, "fonts": -3.817712, "foo": -3.817712, "form": -3.817712, "helvetica": -4.510860, "input": -3.817712, "moz": -4.510860, "padding": -3.412247, "px": -2.901422, "px/": -4.510860, "radius": -2.901422, "sans": -4.510860, "serif": -4.510860, "solid": -4.510860, "text": -3.817712, "textarea": -4.510860, "type": -3.817712, "webkit": -4.510860, "{": -4.510860, "}": -4.510860, }, "SubRip Text": map[string]float64{ "!": -5.916202, "#": -5.916202, "(": -6.609349, ")": -6.609349, ",": -2.305284, "-": -2.265544, ".": -6.609349, ":": -1.726547, ">": -3.112842, "?": -4.663439, "Adding": -6.609349, "All": -6.609349, "Bayesian": -6.609349, "Coding": -6.609349, "Could": -6.609349, "Do": -5.916202, "Does": -6.609349, "Fanghuan": -6.609349, "Frege": -6.609349, "From": -6.609349, "Full": -6.609349, "GitHub": -6.609349, "Github": -6.609349, "Great": -6.609349, "HTTPS.": -6.609349, "Here...": -6.609349, "I": -4.124443, "In": -5.916202, "It": -4.817590, "Linguist": -6.609349, "Linguist.": -6.609349, "NCL": -4.306764, "NCL.": -6.609349, "Pavlick": -6.609349, "Presses": -6.609349, "R.": -6.609349, "Text": -6.609349, "Thanks": -6.609349, "Thanks.": -6.609349, "The": -6.609349, "These": -6.609349, "They": -6.609349, "Those": -6.609349, "We": -6.609349, "What": -5.510737, "Why": -6.609349, "With": -6.609349, "[": -5.916202, "]": -5.916202, "a": -4.529908, "accuracy.": -6.609349, "add": -5.916202, "added": -5.916202, "again": -6.609349, "ago": -6.609349, "all": -5.510737, "already": -6.609349, "also": -6.609349, "although": -6.609349, "an": -5.916202, "and": -4.999911, "any": -5.916202, "are": -5.916202, "around": -6.609349, "as": -6.609349, "back": -6.609349, "based": -6.609349, "be": -5.916202, "because": -6.609349, "been": -6.609349, "bit": -6.609349, "but": -6.609349, "button": -6.609349, "can": -6.609349, "change": -5.916202, "changes": -6.609349, "classified": -5.916202, "classifier": -6.609349, "classifies": -5.510737, "code.": -6.609349, "command": -6.609349, "contain": -6.609349, "correctly": -5.510737, "could": -6.609349, "couple": -6.609349, "d": -6.609349, "date": -6.609349, "decreased": -6.609349, "detection": -5.510737, "did": -5.916202, "didn": -6.609349, "difference": -6.609349, "do": -6.609349, "documentation": -6.609349, "doesn": -5.916202, "don": -6.609349, "dramatically": -6.609349, "either.": -6.609349, "except": -6.609349, "extension": -6.609349, "failing": -6.609349, "false": -6.609349, "file": -6.609349, "file.": -6.609349, "filename": -6.609349, "files": -4.529908, "files.": -5.510737, "fix": -6.609349, "for": -4.663439, "from": -6.609349, "functions.": -6.609349, "gave": -6.609349, "get": -5.916202, "getting": -6.609349, "happens": -6.609349, "have": -5.223055, "here.": -6.609349, "heuristic": -6.609349, "hung": -6.609349, "if": -5.916202, "implementing": -6.609349, "improve": -6.609349, "in": -4.817590, "incorrectly": -6.609349, "intensifies": -6.609349, "is": -5.510737, "isn": -6.609349, "issue": -6.609349, "it": -5.223055, "job": -6.609349, "just": -6.609349, "keywords": -6.609349, "know": -5.916202, "known": -5.916202, "language.": -6.609349, "large": -6.609349, "level": -6.609349, "like": -6.609349, "live": -6.609349, "ll": -6.609349, "local": -6.609349, "locally.": -6.609349, "look": -6.609349, "made": -6.609349, "many": -6.609349, "matter": -6.609349, "me": -5.916202, "meantime": -6.609349, "misclassify": -6.609349, "most": -6.609349, "my": -5.510737, "named": -6.609349, "next": -5.916202, "not": -5.510737, "now": -6.609349, "number": -6.609349, "of": -3.776136, "on": -5.510737, "one": -6.609349, "ones": -6.609349, "or": -6.609349, "other": -6.609349, "out": -6.609349, "over": -6.609349, "owner.": -6.609349, "poorly": -6.609349, "probably": -5.916202, "pull": -6.609349, "really": -6.609349, "reasonable": -6.609349, "reduce": -6.609349, "reduced": -6.609349, "reduced.": -6.609349, "release": -6.609349, "remove": -6.609349, "removed": -5.916202, "repository": -6.609349, "repository.": -6.609349, "request": -6.609349, "requires": -6.609349, "restructured": -6.609349, "results": -5.510737, "run": -6.609349, "s": -5.223055, "same": -5.916202, "sample": -5.510737, "samples": -5.223055, "samples.": -5.223055, "see": -6.609349, "set": -6.609349, "should": -5.916202, "side...": -6.609349, "sigh": -6.609349, "so": -6.609349, "some": -6.609349, "still": -5.916202, "strings": -6.609349, "submodule": -5.916202, "suggestions": -6.609349, "sure.": -6.609349, "t": -4.999911, "taken": -6.609349, "test": -5.510737, "tested": -6.609349, "text": -4.999911, "thanks": -6.609349, "that": -5.916202, "the": -3.431295, "there": -6.609349, "these": -5.916202, "things": -6.609349, "think": -5.916202, "this": -4.999911, "this.": -5.916202, "to": -4.529908, "too": -5.916202, "top": -6.609349, "tried": -6.609349, "up": -6.609349, "we": -5.916202, "weeks.": -6.609349, "which": -6.609349, "while": -6.609349, "whole": -6.609349, "will": -6.609349, "with": -4.999911, "work": -6.609349, "you": -4.817590, }, "Sublime Text Config": map[string]float64{ "$": -7.198931, "(": -7.892078, ")": -7.892078, ",": -0.991348, "-": -6.793466, "//Defines": -5.494183, "//Specifies": -7.892078, ":": -1.390789, "<abbr>": -7.892078, "<audio>": -7.198931, "<colgroup>": -7.892078, "<del>": -7.892078, "<details>": -7.892078, "<fieldset>": -7.892078, "<figure>": -7.892078, "<include_path>": -7.892078, "<input>": -7.892078, "<object>": -7.892078, "<spcomp_path>": -7.198931, "<ul>": -7.892078, "<video>": -7.198931, "[": -2.362649, "\\": -6.505784, "]": -2.362649, "a": -5.946168, "acronym": -7.892078, "all": -7.892078, "alternate": -7.892078, "an": -6.793466, "and": -7.198931, "applet": -7.892078, "big": -7.892078, "build.ps": -7.892078, "centered": -7.892078, "color": -7.198931, "content": -7.892078, "default": -7.892078, "directory": -7.892078, "do": -7.892078, "document": -7.892078, "embedded": -7.892078, "false": -5.812637, "font": -7.198931, "for": -6.793466, "frame": -7.892078, "frames": -7.198931, "frameset": -7.892078, "in": -7.198931, "list": -7.892078, "not": -7.892078, "of": -7.892078, "project_path": -7.892078, "project_path/scripts/build.sh": -7.892078, "set": -7.892078, "size": -7.198931, "strikethrough": -7.892078, "support": -7.892078, "teletype": -7.892078, "text": -6.100319, "that": -7.892078, "true": -5.119490, "users": -7.892078, "window": -7.892078, "{": -2.613964, "}": -2.613964, }, "SuperCollider": map[string]float64{ "!": -7.748460, "&&": -6.362166, "(": -2.792633, ")": -2.785615, "*": -5.956701, "**": -7.748460, "*new": -7.055313, "+": -4.915247, ",": -2.430340, "-": -5.183511, ".action_": -7.748460, ".add": -7.748460, ".allOff": -7.748460, ".asSymbol": -7.748460, ".assign": -7.055313, ".at": -7.748460, ".choose": -7.748460, ".collect": -7.748460, ".copy": -7.748460, ".do": -6.139022, ".fork": -6.362166, ".front": -7.748460, ".hit": -7.748460, ".includes": -7.055313, ".isEmpty": -7.748460, ".keys.includes": -7.748460, ".keysValuesDo": -7.055313, ".linlin": -7.748460, ".not": -7.748460, ".notEmpty": -7.748460, ".notNil": -7.055313, ".off": -7.748460, ".on": -7.748460, ".play": -7.055313, ".plot": -7.055313, ".postln": -5.956701, ".range": -7.055313, ".reject": -7.748460, ".remove": -7.748460, ".removeAt": -6.362166, ".settings": -7.748460, ".size": -7.748460, ".string_": -6.649848, "/": -6.649848, "//boot": -7.748460, "0": -5.551235, "1": -6.139022, "101": -7.748460, "120": -7.748460, "15": -7.748460, "2": -6.139022, "3": -5.956701, "303": -7.748460, "303_1": -6.139022, "303_2": -6.649848, "45": -7.748460, "46": -7.748460, "47": -7.748460, "48": -7.748460, "60": -7.055313, "8": -7.748460, "808": -7.748460, "808_1": -6.362166, "808_2": -6.649848, "88": -7.748460, "89": -7.748460, "90": -7.748460, ":": -6.362166, ";": -2.480602, "<": -5.445875, "<availableControls;>": -7.748460, "<defaults;>": -7.748460, "<doAdjusts;>": -7.748460, "<numSections>": -7.748460, "<out;>": -7.748460, "=": -3.444395, ">": -5.040410, "@": -6.362166, "AppClock": -7.055313, "Array": -7.748460, "Bus": -5.802550, "CmdPeriod.add": -7.748460, "Dialog.savePanel": -7.055313, "Driver": -7.748460, "EZSlider": -7.055313, "Env": -7.748460, "Env.perc": -7.748460, "Env.sine.asStream": -7.748460, "IAC": -7.748460, "IdentityDictionary": -5.183511, "LFNoise": -7.055313, "List": -6.649848, "MIDIClient": -7.748460, "MIDIOut": -7.748460, "NetAddr.localAddr.sendMsg": -7.748460, "Object.readArchive": -7.055313, "Out.ar": -7.748460, "Pan": -7.748460, "RLPF.ar": -7.748460, "Rect": -7.748460, "Routine": -7.748460, "Saw.ar": -7.748460, "Send": -5.956701, "Set": -7.748460, "SinOsc.ar": -7.748460, "SinOsc.kr": -7.748460, "StaticText": -7.055313, "SynthDef": -7.748460, "TempoClock": -7.748460, "WarpPreset": -7.748460, "WarpTate": -7.055313, "WarpTrack": -6.649848, "WarpTrack.defaults": -7.748460, "WarpTrack.defaults.keys.includes": -7.748460, "WarpTrack.load": -7.748460, "WarpTrack.read": -7.748460, "WarpUtil": -7.748460, "Window": -7.748460, "[": -3.153340, "]": -3.143290, "^": -5.669018, "a": -6.649848, "a.delay": -7.055313, "a.test.plot": -7.748460, "action": -7.748460, "action.": -7.748460, "action.fork": -7.748460, "addSection": -7.748460, "addTrack": -7.748460, "allOff": -7.748460, "ar": -7.748460, "arg": -7.748460, "argCurSensor": -7.055313, "argKey": -6.362166, "argMidiChannel": -6.362166, "argParent": -5.263553, "argTempo": -6.362166, "argType": -5.956701, "argType.notNil": -7.748460, "assign": -7.055313, "assignAll": -7.748460, "availableControls": -5.802550, "b": -7.748460, "b.test.plot": -7.748460, "be": -7.748460, "bitcrusher": -7.055313, "calibrate": -7.748460, "channel": -4.804021, "checkAvailable": -5.350565, "checkAvailable.not": -7.748460, "classvar": -6.362166, "clock": -6.649848, "clock.nextBar": -7.748460, "clock.schedAbs": -7.748460, "clock.tempo": -7.748460, "collect": -7.748460, "control": -7.748460, "controlNum": -6.362166, "controlNum.asSymbol": -7.748460, "controlNum.notNil": -7.748460, "controls": -6.362166, "copy": -6.362166, "curSensor": -6.139022, "curSensor.asString": -7.748460, "curSensor.notNil": -7.055313, "curSensor_": -7.748460, "default": -7.748460, "defaults": -4.975871, "do": -7.055313, "dur": -6.649848, "dur.wait": -7.748460, "e": -7.055313, "e.next.postln": -7.748460, "echovol": -7.055313, "exprand": -7.748460, "ez": -7.748460, "ez.value": -7.748460, "false": -6.362166, "func": -7.748460, "func.": -7.055313, "funcKey": -7.055313, "g": -7.748460, "hit": -7.055313, "i": -4.703938, "if": -4.703938, "index": -5.669018, "inf.do": -7.748460, "init": -5.183511, "initClass": -7.748460, "initParams": -7.748460, "is": -7.748460, "isControlAvailable": -7.748460, "item": -7.055313, "key": -5.445875, "kr": -7.055313, "label": -5.551235, "label.asString": -7.748460, "latency": -7.748460, "learn": -5.551235, "load": -7.748460, "loadPreset": -7.055313, "loadTrack": -7.748460, "makeView": -7.748460, "mapped": -7.748460, "midiChannel": -5.956701, "new": -5.956701, "newByName": -7.748460, "newClear": -7.748460, "nil": -7.055313, "note": -4.703938, "noteOff": -7.748460, "noteOn": -7.748460, "num": -5.109403, "num.asSymbol": -7.748460, "num.notNil": -7.748460, "numSections": -7.748460, "of": -7.748460, "off": -7.055313, "on": -7.055313, "out": -7.055313, "out.control": -7.055313, "out.noteOff": -7.748460, "out.noteOn": -7.748460, "param": -7.748460, "paramControls": -6.139022, "paramControls.keysValuesDo": -7.748460, "paramKey": -4.915247, "params": -6.362166, "parent": -6.362166, "parent.assign": -7.748460, "parent.availableControls": -7.748460, "parent.clock": -6.649848, "parent.clock.playNextBar": -7.748460, "parent.clock.tempo": -7.748460, "parent.control": -6.649848, "parent.doAdjusts": -7.055313, "parent.doAdjusts.size.do": -7.055313, "parent.isControlAvailable": -7.748460, "parent.noteOff": -7.055313, "parent.noteOn": -7.055313, "parent.perform": -7.055313, "parent.sensorKeys": -7.748460, "parent.sensorKeys.collect": -7.748460, "parent.sensorKeys.indexOf": -7.055313, "parent.sensorMaxs": -7.055313, "parent.sensorMins": -7.055313, "parent.sensorVals": -7.748460, "parent.setControl": -7.055313, "path": -5.263553, "path.notNil": -7.748460, "permanent_": -7.748460, "play": -7.748460, "playRout": -7.748460, "preset": -5.802550, "preset.keys.reject": -7.748460, "presetKey": -6.649848, "presets": -7.055313, "presets.do": -7.748460, "putPairs": -5.669018, "quant": -5.956701, "quant.notNil": -7.748460, "rand": -7.748460, "read": -7.748460, "readPreset": -7.055313, "readTrack": -7.748460, "removeAllTracks": -7.748460, "removeFunc": -7.748460, "removeTrack": -7.748460, "resfreq": -6.649848, "rrand": -7.055313, "s.boot": -7.748460, "save": -7.055313, "sectionDur": -7.055313, "sections": -6.362166, "sensorKey": -5.669018, "sensorKey.asString": -7.748460, "sensorKeys": -7.055313, "sensorMaxAdj": -7.748460, "sensorMaxs": -7.055313, "sensorMinAdj": -7.748460, "sensorMins": -7.055313, "sensorPrevs": -7.748460, "sensorSlider": -7.055313, "sensorSlider.value": -7.748460, "sensorVals": -7.748460, "server": -7.748460, "setControl": -7.748460, "setParam": -7.055313, "settingKey": -7.055313, "settings": -4.347263, "settings.writeArchive": -7.748460, "sig": -5.802550, "slider": -7.748460, "slider.valueAction_": -7.055313, "sliders": -7.055313, "sliders.do": -7.748460, "startUpdate": -7.748460, "stopCalibrate": -7.748460, "stopUpdate": -7.748460, "sub": -7.055313, "super": -6.362166, "super.new.init": -7.055313, "tempo": -5.802550, "tempoChannel": -7.055313, "tempoControl": -6.649848, "tempo_": -7.055313, "texts": -6.139022, "this": -6.649848, "this.addOSCdefs": -7.748460, "this.allOff": -7.748460, "this.assignAll": -7.748460, "this.initParams": -7.748460, "this.isControlAvailable": -7.748460, "this.loadPreset": -7.748460, "this.makeView": -7.055313, "this.off": -7.055313, "this.on": -7.748460, "this.setParam": -7.748460, "this.startUpdate": -7.748460, "this.stop": -7.748460, "this.writeArchive": -7.748460, "to": -7.055313, "track": -5.956701, "track.params": -7.748460, "track.sensor": -7.748460, "track.setParam": -7.748460, "track.settings": -7.055313, "trackKey": -4.529584, "tracks": -4.858088, "true": -5.551235, "type": -7.055313, "updateRout": -7.055313, "updateRout.play": -7.748460, "updateRout.stop": -7.748460, "val": -5.802550, "val.linlin": -7.748460, "value": -6.362166, "var": -3.964270, "vel": -5.551235, "wait": -6.362166, "width": -6.362166, "win": -5.956701, "win.close": -7.748460, "win.notNil": -7.748460, "win.view.addFlowLayout": -7.748460, "win.view.decorator.nextLine": -7.055313, "{": -3.029961, "|": -3.163493, "||": -7.748460, "}": -2.977775, }, "Swift": map[string]float64{ "$": -6.585482, "(": -2.789993, ")": -2.789993, "*": -5.332719, "+": -4.570579, ",": -2.859788, "-": -4.234107, ".Ace": -7.278629, ".Clubs": -7.278629, ".Diamonds": -7.278629, ".Error": -7.278629, ".Hearts": -7.278629, ".Jack": -7.278629, ".King": -7.278629, ".None": -7.278629, ".Queen": -7.278629, ".Result": -7.278629, ".Some": -7.278629, ".Spades": -6.585482, ".Three": -7.278629, ".sideLength": -7.278629, "/": -7.278629, ":": -2.778819, ";": -6.585482, "<": -5.892335, "<Int>": -7.278629, "<ItemType>": -7.278629, "<String,>": -7.278629, "<T,>": -7.278629, "<T>": -7.278629, "=": -2.551241, ">": -4.020532, "?": -5.892335, "Ace": -7.278629, "Bool": -5.892335, "Card": -6.585482, "Clubs": -7.278629, "Counter": -6.585482, "Diamonds": -7.278629, "Dictionary": -7.278629, "Double": -4.880734, "Eight": -7.278629, "Element": -6.180017, "Equatable": -6.585482, "EquilateralTriangle": -5.892335, "Error": -7.278629, "ExampleProtocol": -5.669191, "Five": -7.278629, "Float": -7.278629, "Four": -7.278629, "GeneratorType": -6.180017, "Hearts": -7.278629, "Int": -4.334190, "Int...": -7.278629, "ItemType": -6.180017, "Jack": -7.278629, "King": -7.278629, "NamedShape": -6.180017, "Nine": -7.278629, "None": -7.278629, "OptionalValue": -6.585482, "Queen": -7.278629, "Rank": -6.585482, "Rank.Ace": -7.278629, "Rank.fromRaw": -7.278629, "Result": -7.278629, "Sequence": -5.892335, "ServerResponse": -7.278629, "ServerResponse.Error": -7.278629, "ServerResponse.Result": -7.278629, "Seven": -7.278629, "Shape": -6.585482, "SimpleClass": -6.585482, "SimpleStructure": -6.585482, "Six": -7.278629, "Some": -7.278629, "Spades": -7.278629, "Square": -5.332719, "String": -3.982792, "Suit": -6.585482, "Suit.Hearts": -7.278629, "T": -5.486869, "T.GeneratorType.Element": -6.585482, "Ten": -7.278629, "Three": -7.278629, "TriangleAndSquare": -6.585482, "Two": -7.278629, "U": -5.669191, "U.GeneratorType.Element": -7.278629, "[": -4.388257, "]": -4.388257, "a": -6.585482, "a.adjust": -7.278629, "a.simpleDescription": -7.278629, "aDescription": -7.278629, "ace": -7.278629, "ace.toRaw": -7.278629, "aceRawValue": -7.278629, "add": -6.585482, "addOne": -6.585482, "adjust": -5.892335, "amount": -6.585482, "anotherProperty": -7.278629, "anyCommonElements": -6.585482, "appleSummary": -7.278629, "apples": -7.278629, "area": -7.278629, "b": -7.278629, "b.adjust": -7.278629, "b.simpleDescription": -7.278629, "bDescription": -7.278629, "case": -4.234107, "class": -5.332719, "condition": -6.585482, "convertedRank": -7.278629, "convertedRank.simpleDescription": -7.278629, "count": -6.585482, "counter": -7.278629, "counter.incrementBy": -7.278629, "day": -7.278629, "default": -6.585482, "do": -7.278629, "else": -7.278629, "emptyArray": -7.278629, "emptyDictionary": -7.278629, "enum": -5.892335, "error": -7.278629, "explicitDouble": -7.278629, "extension": -7.278629, "failure": -7.278629, "false": -6.585482, "firstForLoop": -6.180017, "for": -4.976044, "fruitSummary": -7.278629, "func": -4.100575, "get": -6.585482, "getGasPrices": -6.585482, "greet": -6.585482, "greeting": -6.585482, "hasAnyMatches": -6.585482, "hearts": -7.278629, "hearts.simpleDescription": -7.278629, "heartsDescription": -7.278629, "i": -5.486869, "if": -5.486869, "implicitDouble": -7.278629, "implicitInteger": -7.278629, "in": -4.880734, "increment": -6.585482, "incrementBy": -7.278629, "individualScores": -6.585482, "init": -5.892335, "interestingNumbers": -6.585482, "item": -5.892335, "kind": -7.278629, "label": -6.585482, "largest": -5.892335, "lessThanTen": -6.585482, "let": -3.517429, "lhs": -6.585482, "lhsItem": -6.585482, "list": -6.585482, "m": -5.669191, "makeIncrementer": -6.585482, "mutating": -6.180017, "myConstant": -7.278629, "myVariable": -6.585482, "n": -5.669191, "name": -4.234107, "newValue": -7.278629, "newValue.sideLength": -6.585482, "nil": -7.278629, "number": -4.713680, "numberOfSides": -5.892335, "numberOfTimes": -6.585482, "numbers": -5.486869, "numbers.map": -6.585482, "occupations": -6.585482, "optionalName": -6.585482, "optionalSquare": -6.585482, "optionalString": -6.585482, "oranges": -7.278629, "override": -6.585482, "perimeter": -7.278629, "possibleInteger": -6.585482, "println": -7.278629, "protocol": -7.278629, "protocolValue": -7.278629, "protocolValue.simpleDescription": -7.278629, "rank": -6.585482, "repeat": -6.585482, "result": -5.669191, "return": -3.877432, "returnFifteen": -6.585482, "rhs": -6.585482, "rhsItem": -6.585482, "score": -6.585482, "secondForLoop": -6.180017, "self": -6.180017, "self.name": -7.278629, "self.sideLength": -6.585482, "self.toRaw": -7.278629, "serverResponse": -6.585482, "set": -7.278629, "shape": -7.278629, "shape.numberOfSides": -7.278629, "shape.simpleDescription": -7.278629, "shapeDescription": -7.278629, "shoppingList": -6.180017, "sideLength": -4.445416, "simpleDescription": -4.639572, "size": -5.892335, "sort": -7.278629, "square": -6.585482, "square.sideLength": -7.278629, "struct": -6.585482, "success": -6.585482, "suit": -6.585482, "sum": -6.180017, "sumOf": -6.180017, "sunrise": -7.278629, "sunset": -7.278629, "super.init": -6.585482, "switch": -5.892335, "teamScore": -5.892335, "test": -7.278629, "test.area": -7.278629, "test.simpleDescription": -7.278629, "threeDescription": -7.278629, "threeOfSpades": -7.278629, "threeOfSpades.simpleDescription": -7.278629, "threeOfSpadesDescription": -7.278629, "times": -5.892335, "triangle": -6.180017, "triangle.perimeter": -6.585482, "triangle.sideLength": -6.585482, "triangleAndSquare": -7.278629, "triangleAndSquare.square": -7.278629, "triangleAndSquare.square.sideLength": -7.278629, "triangleAndSquare.triangle.sideLength": -6.585482, "true": -6.585482, "var": -3.540959, "vegetable": -6.585482, "vegetableComment": -5.892335, "where": -6.180017, "while": -6.585482, "width": -6.585482, "widthLabel": -7.278629, "willSet": -6.585482, "x": -7.278629, "x.hasSuffix": -7.278629, "y": -6.180017, "{": -2.934824, "}": -2.934824, }, "SystemVerilog": map[string]float64{ "!": -6.496775, "#": -5.398163, "'": -6.496775, "(": -1.996965, ")": -1.996965, "+": -5.398163, ",": -2.008139, "-": -5.110481, ".clk_dmtd_i": -6.496775, ".clk_ref_i": -5.803628, ".clk_sys_i": -6.496775, ".g_pcs_": -6.496775, ".g_rx_buffer_size": -6.496775, ".g_simulation": -5.803628, ".g_with_dmtd": -6.496775, ".g_with_dpi_classifier": -6.496775, ".g_with_rtu": -6.496775, ".g_with_rx_buffer": -6.496775, ".g_with_timestamper": -6.496775, ".g_with_vlans": -6.496775, ".loopen_i": -6.496775, ".pad_rxn": -6.496775, ".pad_rxp": -6.496775, ".pad_txn": -6.496775, ".pad_txp": -6.496775, ".pps_csync_p": -6.496775, ".rst_i": -6.496775, ".rst_n_i": -6.496775, ".rtu_full_i": -6.496775, ".rtu_rq_dmac_o": -6.496775, ".rtu_rq_has_prio_o": -6.496775, ".rtu_rq_has_vid_o": -6.496775, ".rtu_rq_prio_o": -6.496775, ".rtu_rq_smac_o": -6.496775, ".rtu_rq_strobe_p": -6.496775, ".rtu_rq_vid_o": -6.496775, ".rx_bitslide_o": -6.496775, ".rx_data_o": -6.496775, ".rx_enc_err_o": -6.496775, ".rx_k_o": -6.496775, ".rx_rbclk_o": -6.496775, ".serdes_enable_i": -6.496775, ".serdes_loopen_i": -6.496775, ".serdes_rst_i": -6.496775, ".serdes_rx_bitslide_o": -6.496775, ".serdes_rx_data_o": -6.496775, ".serdes_rx_enc_err_o": -6.496775, ".serdes_rx_k_o": -6.496775, ".serdes_tx_data_i": -6.496775, ".serdes_tx_disparity_o": -6.496775, ".serdes_tx_enc_err_o": -6.496775, ".serdes_tx_k_i": -6.496775, ".src_ack_i": -6.496775, ".src_adr_o": -6.496775, ".src_cyc_o": -6.496775, ".src_dat_o": -6.496775, ".src_err_i": -6.496775, ".src_sel_o": -6.496775, ".src_stall_i": -6.496775, ".src_stb_o": -6.496775, ".src_we_o": -6.496775, ".tbi_enable_o": -6.496775, ".tbi_loopen_o": -6.496775, ".tbi_prbsen_o": -6.496775, ".tbi_rbclk_i": -6.496775, ".tbi_rd_i": -6.496775, ".tbi_refclk_i": -6.496775, ".tbi_syncen_o": -6.496775, ".tbi_td_o": -6.496775, ".tx_clk_o": -6.496775, ".tx_data_i": -6.496775, ".tx_disparity_o": -6.496775, ".tx_enc_err_o": -6.496775, ".tx_k_i": -6.496775, ".wb_ack_o": -6.496775, ".wb_adr_i": -6.496775, ".wb_cyc_i": -6.496775, ".wb_dat_i": -6.496775, ".wb_dat_o": -6.496775, ".wb_sel_i": -6.496775, ".wb_stb_i": -6.496775, ".wb_we_i": -6.496775, ":": -3.788725, ";": -3.031039, "<": -6.496775, "=": -3.606403, ">": -5.398163, "?": -6.496775, "DUT": -6.496775, "INPUT_WIDTH": -5.398163, "IWishboneMaster.master": -5.803628, "IWishboneSlave.slave": -6.496775, "OUTPUT_WIDTH": -5.398163, "U_PHY": -6.496775, "U_Phy": -6.496775, "[": -3.663562, "]": -3.663562, "_i": -5.398163, "_o": -5.398163, "always_comb": -6.496775, "assign": -5.803628, "b": -4.550865, "begin": -5.110481, "bit": -6.496775, "clk_": -5.803628, "clk_ref_i": -4.705016, "clk_rx_i": -5.398163, "clk_sys_i": -5.803628, "data_out": -6.496775, "else": -6.496775, "empty": -6.496775, "end": -5.110481, "endfunction": -6.496775, "endgenerate": -6.496775, "endmodule": -5.803628, "endpoint_phy_wrapper": -6.496775, "fifo": -6.496775, "for": -5.803628, "function": -6.496775, "g_phy_type": -5.110481, "generate": -6.496775, "grx_bitslide": -5.803628, "grx_clk": -6.496775, "grx_data": -5.398163, "grx_enc_error": -5.398163, "grx_k": -5.398163, "gtp_rst": -5.803628, "gtx_data": -5.398163, "gtx_disparity": -5.398163, "gtx_enc_error": -5.398163, "gtx_k": -5.398163, "if": -5.398163, "ii": -4.705016, "input": -4.011868, "input_data": -5.803628, "int": -6.496775, "integer": -5.803628, "log": -5.110481, "logic": -5.803628, "module": -5.398163, "output": -4.705016, "output_data": -5.398163, "parameter": -5.803628, "priority_encoder": -6.496775, "rd_i": -5.803628, "reset_n": -6.496775, "rst_n_i": -5.398163, "rx_clock": -5.398163, "rxn_i": -5.803628, "rxp_i": -5.803628, "snk": -6.496775, "snk.ack": -6.496775, "snk.adr": -6.496775, "snk.cyc": -6.496775, "snk.dat_i": -6.496775, "snk.sel": -6.496775, "snk.stall": -6.496775, "snk.stb": -6.496775, "snk.we": -6.496775, "src": -6.496775, "sys": -6.496775, "sys.ack": -6.496775, "sys.adr": -6.496775, "sys.cyc": -6.496775, "sys.dat_i": -6.496775, "sys.dat_o": -6.496775, "sys.sel": -6.496775, "sys.stb": -6.496775, "sys.we": -6.496775, "td_o": -5.803628, "tx_clock": -5.398163, "txn_o": -5.803628, "txp_o": -5.803628, "wire": -4.011868, "wr_endpoint": -6.496775, "wr_gtx_phy_virtex": -6.496775, "wr_tbi_phy": -6.496775, "x": -4.705016, }, "TI Program": map[string]float64{ "!": -5.120263, "#Axiom": -7.794411, "#ExprOff": -8.487558, "(": -2.400784, ")": -2.407625, "+": -3.582284, ",": -2.159622, "-": -2.900310, ".": -8.487558, ".ALPHA": -8.487558, ".AlphaCS": -8.487558, ".FUNC": -8.487558, ".GUI": -8.487558, ".SORT": -8.487558, ".arch": -8.487558, ".archiving": -8.487558, ".draws": -8.487558, ".hide": -8.487558, ".icon": -7.101264, ".lock": -8.487558, ".start": -8.487558, ".windows": -8.487558, "/": -7.794411, "<": -5.922609, "=": -4.093109, ">": -3.431313, "A": -5.848501, "AAAAAAAB": -8.487558, "AABEC": -8.487558, "ADJ": -6.541648, "ADM": -7.794411, "AF": -8.487558, "ASM": -8.487558, "AlphaCS": -7.388946, "Archive": -7.388946, "Asm": -6.695799, "B": -4.427115, "BB": -8.487558, "BDAFCC": -8.487558, "BEAAB": -8.487558, "BFB": -7.794411, "Bitmap": -6.695799, "C": -4.961198, "CHECK": -7.101264, "CODE": -7.388946, "CS": -8.487558, "Change": -7.388946, "ClrDraw": -6.184973, "ClrHome": -8.487558, "Copy": -5.191722, "D": -4.876640, "DATA": -6.408117, "DB": -7.794411, "DCA": -8.487558, "DDF": -8.487558, "DDFFFFFFFFFFFFFFFFFFFFFFFF": -8.487558, "DE": -7.794411, "DLIST": -6.695799, "DPRGM": -6.408117, "DSET": -6.408117, "Data": -6.878120, "Dec": -7.794411, "DelVar": -6.541648, "DiagnosticOff": -6.878120, "DiagnosticOn": -8.487558, "DispGraph": -4.904039, "E": -4.555733, "EB": -8.487558, "EBFB": -8.487558, "EBFBA": -8.487558, "EE": -8.487558, "EFFEA": -8.487558, "EFFFFE": -7.794411, "EFFFFFE": -8.487558, "END": -6.541648, "Else": -5.053571, "End": -3.363594, "Equ": -6.878120, "F": -5.922609, "FDCB": -7.101264, "FEFFE": -8.487558, "FFFFFFFFFFFFFFFFFFFFCE": -8.487558, "FFFFFFFFFFFFFFFFFFFFFFFF": -8.487558, "Fill": -4.961198, "Fix": -6.695799, "For": -5.779508, "Fpdf": -7.794411, "Full": -6.089663, "G": -7.388946, "GDB": -6.089663, "GetCalc": -5.848501, "Goto": -5.086361, "H": -6.089663, "I": -8.487558, "If": -3.751360, "KLIST": -6.878120, "KPRGM": -7.794411, "KSET": -7.794411, "L": -3.538798, "LRUNERR": -8.487558, "Lbl": -5.268683, "Mangiapane": -8.487558, "NEW": -7.794411, "Normal": -6.695799, "Off": -7.388946, "On": -5.268683, "POLAR": -6.695799, "Pause": -6.695799, "Pic": -5.021822, "Pt": -5.191722, "Pxl": -7.101264, "RUN": -7.794411, "RUNERR": -8.487558, "RUNPRGM": -8.487558, "Rect": -6.408117, "RectI": -4.595738, "Repeat": -4.823997, "Return": -5.714970, "S": -4.703369, "S*": -6.878120, "SET": -7.794411, "SETPRGM": -7.388946, "SRC": -8.487558, "START": -8.487558, "SampFTest": -8.487558, "SampTInt": -8.487558, "SampZInt": -8.487558, "Scott": -8.487558, "StoreGDB": -7.388946, "Str": -5.779508, "String": -6.878120, "T": -7.101264, "Text": -4.555733, "UnArchive": -7.388946, "Vertical": -7.794411, "X": -5.654345, "Y": -4.616357, "Z": -5.654345, "ZSTAXE": -8.487558, "[": -2.923038, "]": -2.923038, "^": -5.155354, "and": -5.155354, "box": -8.487558, "c": -8.487558, "getKey": -4.480225, "or": -5.191722, "prgmSRCFUNC": -8.487558, "prgmSRCGUI": -8.487558, "prgmSRCSORT": -8.487558, "r": -3.080387, "set": -8.487558, "shell": -8.487558, "sub": -4.726358, "title": -8.487558, "unknown": -8.487558, "up": -8.487558, "{": -3.567577, "|": -6.002652, "}": -3.582284, }, "TLA": map[string]float64{ "!": -4.584967, "(": -4.074142, ")": -4.074142, "*": -6.376727, ",": -3.978832, "-": -1.501530, ".ack": -6.376727, "/": -3.241233, ":": -4.767289, "<": -4.767289, "<->": -6.376727, "<<": -6.376727, "<in,>": -5.683580, "<out,>": -6.376727, "=": -1.140285, ">": -3.978832, "@": -6.376727, "AsyncInterface": -5.683580, "BufRcv": -5.683580, "BufSend": -6.376727, "CONSTANT": -5.683580, "Data": -4.767289, "E": -5.683580, "EXCEPT": -6.376727, "EXTENDS": -5.683580, "INSTANCE": -5.683580, "InChan": -4.767289, "Init": -4.584967, "Len": -5.683580, "Message": -4.767289, "Naturals": -5.683580, "Next": -4.990433, "OutChan": -4.990433, "RRcv": -5.683580, "Rcv": -5.278115, "SSend": -5.683580, "Send": -4.990433, "Seq": -6.376727, "Sequences": -6.376727, "Spec": -4.990433, "THEOREM": -5.683580, "Tail": -6.376727, "TypeInvariant": -4.430817, "UNCHANGED": -5.278115, "VARIABLE": -6.376727, "VARIABLES": -6.376727, "Values": -6.376727, "WITH": -5.683580, "[": -4.297285, "\\": -2.975530, "]": -4.297285, "_": -6.376727, "_chan": -6.376727, "ack": -6.376727, "chan": -4.430817, "chan.ack": -5.683580, "chan.rdy": -5.683580, "channel": -6.376727, "d": -5.278115, "in": -4.297285, "msg": -4.767289, "on": -6.376727, "out": -5.278115, "q": -3.978832, "rdy": -6.376727, "val": -6.376727, "{": -5.683580, "}": -5.683580, }, "TXL": map[string]float64{ "(": -4.672829, ")": -4.672829, "*": -4.672829, "+": -4.672829, "-": -4.267364, "/": -4.267364, "=": -5.365976, "E": -4.267364, "N": -2.475604, "NewE": -4.267364, "[": -1.728390, "]": -1.728390, "addop": -4.672829, "by": -3.574217, "construct": -5.365976, "define": -2.881069, "end": -2.881069, "expression": -3.168751, "main": -5.365976, "mulop": -4.672829, "not": -5.365976, "number": -3.063391, "primary": -3.979682, "program": -5.365976, "replace": -3.574217, "resolveAddition": -4.672829, "resolveDivision": -4.672829, "resolveMultiplication": -4.672829, "resolveParentheses": -4.672829, "resolveSubtraction": -4.672829, "rule": -2.881069, "term": -3.574217, "where": -5.365976, "|": -4.267364, }, "Tcl": map[string]float64{ "!": -5.373541, "#": -6.759835, "################################": -6.759835, "$": -2.288196, "&&": -6.759835, "'": -7.452982, "(": -5.055087, ")": -5.255758, "*": -4.508543, "+": -7.452982, "-": -5.150397, ".": -6.759835, ".c": -6.759835, ".cache": -7.452982, ".config": -7.452982, ".local": -7.452982, "/etc": -7.452982, "/usr": -6.759835, "/usr/bin/env": -6.759835, ":": -2.931194, ";": -5.843544, "<": -6.354370, "<Down>": -7.452982, "<Up>": -7.452982, "<lwoodman@vlifesystems.com>": -7.452982, "=": -5.055087, ">": -5.843544, "CACHE_HOME": -6.066688, "CONFIG_DIRS": -6.066688, "CONFIG_HOME": -6.066688, "DATA_DIRS": -6.066688, "DATA_HOME": -6.066688, "DEFAULTS": -5.373541, "Dir": -6.066688, "Dirs": -6.354370, "FS": -6.759835, "FoldlMultiStream": -6.759835, "FoldlSingleStream": -6.759835, "ForeachMultiStream": -6.759835, "ForeachSingleStream": -6.759835, "HOME": -6.354370, "MapMultiStream": -6.354370, "MapSingleStream": -6.354370, "NF": -6.759835, "NR": -6.759835, "OFS": -6.759835, "RUNTIME_DIR": -6.354370, "SHEBANG#!tclsh": -7.452982, "SHEBANG#!wish": -7.452982, "SetDefaults": -6.354370, "Tcl": -7.452982, "Usage": -6.066688, "XDG": -5.055087, "XDGVarSet": -6.066688, "XDG_": -6.066688, "XDG_RUNTIME_DIR": -7.452982, "[": -2.899105, "\\": -5.507072, "]": -2.899105, "_body": -6.354370, "_exit": -6.354370, "_list": -6.066688, "_name": -7.452982, "a": -7.452982, "acc": -5.255758, "args": -4.888033, "argv": -5.661223, "awksplit": -6.759835, "bg": -7.452982, "bind": -6.759835, "black": -7.452982, "body": -5.373541, "both": -7.452982, "break": -7.452982, "canvas": -7.452982, "catch": -7.452982, "cmdPrefix": -4.508543, "code": -7.452982, "create": -5.507072, "default": -6.759835, "dict": -6.759835, "dir": -5.843544, "else": -5.507072, "elseif": -6.354370, "end": -6.759835, "ensemble": -7.452982, "env": -5.373541, "eof": -7.452982, "eq": -7.452982, "error": -7.452982, "eval": -5.843544, "exists": -7.452982, "exit": -6.759835, "expand": -7.452982, "export": -6.354370, "expr": -6.066688, "file": -5.255758, "fill": -7.452982, "first": -4.274928, "firsts": -5.661223, "foldl": -7.452982, "for": -7.452982, "foreach": -5.507072, "fromList": -6.759835, "get": -6.759835, "gets": -7.452982, "go": -6.759835, "i": -5.661223, "if": -4.408460, "incr": -5.843544, "index": -5.843544, "info": -7.452982, "initialValue": -5.507072, "isEmpty": -5.150397, "items": -5.843544, "join": -5.150397, "lappend": -5.150397, "lassign": -5.055087, "length": -7.452982, "level": -7.452982, "lindex": -5.255758, "line": -6.759835, "list": -4.408460, "llength": -5.373541, "local": -7.452982, "lrange": -7.452982, "map": -7.452982, "ms": -6.354370, "msg": -6.759835, "namespace": -5.661223, "ne": -6.354370, "nextItems": -6.066688, "no": -6.759835, "num": -6.354370, "numArgs": -5.507072, "numStreams": -6.354370, "op": -6.759835, "outDirs": -6.354370, "pack": -7.452982, "package": -7.452982, "print": -7.452982, "proc": -3.987246, "puts": -6.354370, "r": -7.452982, "rawDirs": -6.354370, "rename": -7.452982, "require": -7.452982, "res": -4.888033, "rest": -4.361940, "restCmdPrefix": -6.759835, "restStreams": -5.661223, "return": -4.361940, "ru": -7.452982, "s": -6.354370, "select": -6.759835, "set": -3.482690, "share": -6.354370, "split": -5.843544, "stars": -6.759835, "stdin": -6.759835, "stream": -3.342108, "streams": -5.843544, "string": -6.066688, "subdir": -4.680394, "switch": -7.452982, "t": -5.843544, "take": -6.759835, "tclsh": -7.452982, "text": -6.354370, "toList": -7.452982, "trace": -7.452982, "u": -7.452982, "uplevel": -5.373541, "var": -5.055087, "varName": -5.507072, "variable": -5.843544, "while": -5.507072, "wish": -7.452982, "xdg": -7.452982, "z": -7.452982, "{": -2.211235, "||": -7.452982, "}": -2.216540, }, "TeX": map[string]float64{ "!": -6.778785, "\"": -9.081370, "#": -4.097763, "$": -8.388223, "%": -6.190998, "'": -9.081370, "(": -7.001928, ")": -7.001928, ",": -3.214902, "-": -6.373320, ".": -7.289611, "/": -6.683475, "/Creator": -9.081370, ":": -6.442313, "=": -3.258324, ">": -7.982758, "@advisor": -7.982758, "@afterindentfalse": -9.081370, "@altadvisor": -7.982758, "@altadvisorfalse": -9.081370, "@altadvisortrue": -9.081370, "@approvedforthe": -7.982758, "@assignment": -8.388223, "@chapter": -8.388223, "@date": -9.081370, "@department": -7.982758, "@division": -7.982758, "@dotsep": -8.388223, "@empty": -9.081370, "@expand": -7.982758, "@highpenalty": -8.388223, "@latex@warning@no@line": -7.982758, "@makechapterhead": -8.388223, "@pdfoutput": -9.081370, "@percentchar": -9.081370, "@pnumwidth": -7.982758, "@restonecolfalse": -9.081370, "@restonecoltrue": -9.081370, "@schapter": -9.081370, "@solutionvis": -7.982758, "@tempcnta": -7.135460, "@tempdima": -8.388223, "@thedivisionof": -7.982758, "@title": -9.081370, "@todoclr": -8.388223, "@topnewpage": -9.081370, "@undefined": -9.081370, "@whilenum": -8.388223, "A": -9.081370, "Abbreviations": -8.388223, "Abstract": -8.388223, "America": -9.081370, "American": -7.695076, "Applications": -9.081370, "Approved": -9.081370, "Apr": -9.081370, "April": -9.081370, "Arts": -9.081370, "AtBeginDocument": -9.081370, "AtBeginDvi": -8.388223, "AtEndDocument": -9.081370, "Aug": -9.081370, "August": -9.081370, "Ausf": -9.081370, "Availability": -9.081370, "Bachelor": -9.081370, "Bedingte": -9.081370, "Brazilian": -7.695076, "British": -7.695076, "CD": -7.695076, "Camel": -9.081370, "Cand": -9.081370, "Candidate": -9.081370, "Catalan": -7.695076, "Class": -7.695076, "College": -7.471932, "Contents": -9.081370, "Cov": -9.081370, "Croatian": -7.695076, "Curl": -9.081370, "CurrentOption": -9.081370, "Czech": -7.695076, "D": -9.081370, "DE": -9.081370, "Danish": -7.695076, "Database": -9.081370, "Dec": -9.081370, "December": -9.081370, "DeclareBibliographyExtras": -9.081370, "DeclareBibliographyStrings": -9.081370, "DeclareCiteCommand": -7.289611, "DeclareCiteCommand*": -8.388223, "DeclareMultiCiteCommand": -9.081370, "DeclareOption": -8.388223, "DeclareOption*": -8.388223, "DeclareRedundantLanguages": -9.081370, "Deg": -9.081370, "Degree": -8.388223, "Design": -9.081370, "Distribution": -9.081370, "Div": -9.081370, "Division": -8.388223, "Dutch": -7.695076, "E": -8.388223, "EP": -9.081370, "EU": -9.081370, "Early": -8.388223, "Einzelnachweise": -9.081370, "English": -7.695076, "European": -7.289611, "ExecuteBibliographyOptions": -9.081370, "FALSE": -9.081370, "FR": -9.081370, "Features": -9.081370, "Feb": -9.081370, "February": -9.081370, "Finnish": -7.695076, "Frac": -9.081370, "France": -9.081370, "FreeBSD": -9.081370, "French": -7.001928, "Fulfillment": -9.081370, "GB": -9.081370, "German": -7.001928, "Germany": -9.081370, "Geschichte": -9.081370, "Grad": -9.081370, "Greek": -7.695076, "HIDE": -8.388223, "History": -9.081370, "Implementation": -9.081370, "In": -9.081370, "Int": -9.081370, "Italian": -7.695076, "Jan": -9.081370, "January": -9.081370, "July": -8.388223, "June": -8.388223, "Kingdom": -9.081370, "Kritikpunkte": -9.081370, "Kultur": -9.081370, "L": -9.081370, "LE": -9.081370, "LO": -9.081370, "LaTeX": -7.695076, "LastPage": -9.081370, "Latin": -7.695076, "Lim": -9.081370, "List": -9.081370, "LoadClass": -8.388223, "MA": -9.081370, "Mac": -9.081370, "Mar": -9.081370, "March": -9.081370, "Master": -9.081370, "May": -8.388223, "Merkmale": -9.081370, "Name": -9.081370, "NeedsTeXFormat": -9.081370, "No": -7.982758, "Norwegian": -7.695076, "Nov": -9.081370, "November": -9.081370, "OS": -9.081370, "Oct": -9.081370, "October": -9.081370, "Onion": -9.081370, "OpenBSD": -9.081370, "Overview": -9.081370, "P": -8.388223, "PD": -9.081370, "Partial": -9.081370, "PassOptionsToClass": -8.388223, "Perl": -8.388223, "PhD": -8.388223, "Polish": -7.695076, "Portuguese": -7.695076, "Presented": -9.081370, "ProcessOptions": -8.388223, "ProvidesClass": -8.388223, "ProvidesFile": -7.982758, "R": -9.081370, "RE": -9.081370, "RGB": -9.081370, "RO": -9.081370, "ROM": -8.388223, "RTcleardoublepage": -7.982758, "RToldchapter": -9.081370, "RToldcleardoublepage": -9.081370, "RTpercent": -7.982758, "Reed": -7.471932, "References": -7.982758, "RequireBibliographyStyle": -9.081370, "RequirePackage": -6.085638, "Requirements": -8.388223, "Russian": -7.695076, "S": -7.982758, "SHOW": -7.982758, "SN": -7.982758, "Sept": -9.081370, "September": -9.081370, "Siehe": -9.081370, "Slovene": -7.695076, "Solution.": -9.081370, "Spa": -9.081370, "Spanish": -7.695076, "States": -9.081370, "Sum": -9.081370, "Swedish": -7.695076, "TRUE": -9.081370, "Table": -9.081370, "The": -8.388223, "Thesis": -7.471932, "U.S": -7.695076, "UKenglish": -9.081370, "US": -9.081370, "USenglish": -9.081370, "UndeclareBibliographyExtras": -9.081370, "Union": -8.388223, "United": -8.388223, "VERBATIM": -8.388223, "Vert": -8.388223, "Windows": -9.081370, "X": -9.081370, "[": -4.615462, "\\": -1.896741, "]": -4.627023, "^": -7.001928, "_": -9.081370, "a": -6.516421, "abs": -9.081370, "abstract": -7.695076, "abx@bbxid": -9.081370, "abx@cbxid": -9.081370, "abx@lbxid": -9.081370, "addabbrvspace": -7.135460, "addcontentsline": -7.471932, "adddot": -4.436979, "adddotspace": -5.584862, "addpenalty": -9.081370, "address": -8.388223, "addsemicolon": -9.081370, "addspace": -9.081370, "addtocontents": -9.081370, "addtolength": -7.001928, "addvspace": -9.081370, "advance": -7.982758, "advisor": -9.081370, "advisor#": -9.081370, "afterw": -8.388223, "afterword": -5.680173, "al": -7.695076, "all": -9.081370, "also": -8.388223, "altadvisor#": -9.081370, "american": -8.388223, "amssymb": -9.081370, "amsthm": -9.081370, "an": -5.990328, "and": -4.486250, "andmore": -9.081370, "andothers": -9.081370, "annot": -7.695076, "annotated": -6.516421, "annotation": -9.081370, "annotations": -6.683475, "annotator": -6.683475, "annotators": -6.683475, "annots": -9.081370, "approvedforthe#": -9.081370, "april": -9.081370, "arabic": -9.081370, "array": -7.289611, "article": -8.388223, "as": -6.778785, "assignment": -8.388223, "astitle": -9.081370, "auch": -9.081370, "audio": -8.388223, "audiocd": -9.081370, "august": -9.081370, "australian": -9.081370, "authorname": -8.388223, "authortitle": -9.081370, "authortitle.cbx": -9.081370, "autocite": -9.081370, "available": -8.388223, "backrefpage": -9.081370, "backrefpages": -9.081370, "baselineskip": -8.388223, "beamer@endinputifotherversion": -9.081370, "beamer@sectionintoc": -7.135460, "begin": -6.683475, "begingroup": -9.081370, "bf": -7.695076, "bfseries": -7.982758, "bibcloseparen": -8.388223, "bibdatedash": -7.135460, "bibname": -8.388223, "bibopenparen": -9.081370, "bibrangedash": -9.081370, "bibstring": -8.388223, "bigskip": -8.388223, "black": -8.388223, "bm": -8.388223, "book": -7.471932, "booktabs": -9.081370, "boolfalse": -8.388223, "booltrue": -9.081370, "bottom": -9.081370, "british": -9.081370, "by": -4.861862, "byannotator": -9.081370, "byauthor": -9.081370, "bycollaborator": -9.081370, "bycommentator": -9.081370, "bycompiler": -9.081370, "bycontinuator": -9.081370, "byeditor": -9.081370, "byeditoraf": -9.081370, "byeditoran": -9.081370, "byeditoranaf": -9.081370, "byeditoranfo": -9.081370, "byeditoranin": -9.081370, "byeditorco": -9.081370, "byeditorcoaf": -9.081370, "byeditorcofo": -9.081370, "byeditorcoin": -9.081370, "byeditorfo": -9.081370, "byeditorin": -9.081370, "byeditortr": -9.081370, "byeditortraf": -9.081370, "byeditortran": -9.081370, "byeditortranaf": -9.081370, "byeditortranfo": -9.081370, "byeditortranin": -9.081370, "byeditortrco": -9.081370, "byeditortrcoaf": -9.081370, "byeditortrcofo": -9.081370, "byeditortrcoin": -9.081370, "byeditortrfo": -9.081370, "byeditortrin": -9.081370, "byfounder": -9.081370, "bypublisher": -9.081370, "byredactor": -9.081370, "byreviewer": -9.081370, "byreviser": -9.081370, "bytranslator": -9.081370, "bytranslatoraf": -9.081370, "bytranslatoran": -9.081370, "bytranslatoranaf": -9.081370, "bytranslatoranfo": -9.081370, "bytranslatoranin": -9.081370, "bytranslatorco": -9.081370, "bytranslatorcoaf": -9.081370, "bytranslatorcofo": -9.081370, "bytranslatorcoin": -9.081370, "bytranslatorfo": -9.081370, "bytranslatorin": -9.081370, "c": -7.471932, "c@page": -9.081370, "c@secnumdepth": -9.081370, "canadian": -9.081370, "candthesis": -9.081370, "caption": -9.081370, "captionsetup": -7.695076, "cbx": -7.135460, "cdot": -9.081370, "center": -7.695076, "centerline": -7.001928, "cf": -8.388223, "cfoot": -9.081370, "chap": -8.388223, "chapter": -6.683475, "chaptermark": -9.081370, "circ": -9.081370, "cit": -7.289611, "cite": -7.001928, "citecount": -9.081370, "cited": -7.695076, "citedas": -9.081370, "citeindex": -7.001928, "citetitle": -8.388223, "cleardoublepage": -7.695076, "clearpage": -7.695076, "cm": -8.388223, "cndprb": -9.081370, "col": -9.081370, "collab": -7.982758, "collaboration": -9.081370, "collaborator": -8.388223, "collaborators": -8.388223, "color": -8.388223, "cols": -9.081370, "column": -8.388223, "columns": -8.388223, "comm": -7.695076, "comment": -9.081370, "commentary": -6.884145, "commentator": -6.683475, "commentators": -6.683475, "commented": -6.516421, "comp": -7.695076, "compiled": -9.081370, "compiler": -8.388223, "compilers": -8.388223, "computer": -9.081370, "confer": -9.081370, "cont": -7.982758, "contentsline": -6.136931, "contentsname": -9.081370, "continuator": -9.081370, "continuators": -9.081370, "continued": -7.982758, "copy": -9.081370, "countryde": -9.081370, "countryep": -9.081370, "countryeu": -9.081370, "countryfr": -9.081370, "countryuk": -9.081370, "countryus": -9.081370, "coursename": -8.388223, "cov": -9.081370, "csuse": -6.308781, "d": -8.388223, "datacd": -9.081370, "date": -7.471932, "day": -7.001928, "december": -9.081370, "def": -5.862494, "definecolor": -8.388223, "del": -7.982758, "department": -9.081370, "department#": -9.081370, "diff": -9.081370, "diffp": -9.081370, "displaystyle": -8.388223, "division": -9.081370, "division#": -9.081370, "do": -8.388223, "duedate": -8.388223, "e": -8.388223, "eadem": -7.695076, "eaedem": -8.388223, "ed": -7.982758, "edited": -5.903316, "edition": -8.388223, "editor": -5.862494, "editoraf": -9.081370, "editoran": -9.081370, "editoranaf": -9.081370, "editoranfo": -9.081370, "editoranin": -9.081370, "editorco": -9.081370, "editorcoaf": -9.081370, "editorcofo": -9.081370, "editorcoin": -9.081370, "editorfo": -9.081370, "editorin": -9.081370, "editors": -5.862494, "editorsaf": -9.081370, "editorsan": -9.081370, "editorsanaf": -9.081370, "editorsanfo": -9.081370, "editorsanin": -9.081370, "editorsco": -9.081370, "editorscoaf": -9.081370, "editorscofo": -9.081370, "editorscoin": -9.081370, "editorsfo": -9.081370, "editorsin": -9.081370, "editorstr": -9.081370, "editorstraf": -9.081370, "editorstran": -9.081370, "editorstranaf": -9.081370, "editorstranfo": -9.081370, "editorstranin": -9.081370, "editorstrco": -9.081370, "editorstrcoaf": -9.081370, "editorstrcofo": -9.081370, "editorstrcoin": -9.081370, "editorstrfo": -9.081370, "editorstrin": -9.081370, "editortr": -9.081370, "editortraf": -9.081370, "editortran": -9.081370, "editortranaf": -9.081370, "editortranfo": -9.081370, "editortranin": -9.081370, "editortrco": -9.081370, "editortrcoaf": -9.081370, "editortrcofo": -9.081370, "editortrcoin": -9.081370, "editortrfo": -9.081370, "editortrin": -9.081370, "eds": -9.081370, "eidem": -7.695076, "else": -7.001928, "em": -7.001928, "empty": -7.471932, "end": -6.683475, "endday": -7.001928, "endgroup": -8.388223, "endinput": -7.982758, "endmonth": -7.001928, "endoldthebibliography": -8.388223, "endoldtheindex": -8.388223, "endthebibliography": -9.081370, "endtheindex": -9.081370, "endyear": -6.442313, "english": -8.388223, "english.lbx": -9.081370, "ensuremath": -6.373320, "enumerate": -9.081370, "equation": -9.081370, "esdiff": -9.081370, "esp": -9.081370, "especially": -9.081370, "et": -7.695076, "eval": -9.081370, "evensidemargin": -8.388223, "ex": -8.388223, "expand": -9.081370, "extrayear": -7.695076, "fancy": -9.081370, "fancyhdr": -8.388223, "fancyhead": -7.982758, "fancyhf": -9.081370, "fancyplain": -9.081370, "february": -9.081370, "fi": -6.442313, "figure": -9.081370, "file": -7.982758, "final": -9.081370, "finalandcomma": -5.092386, "finalandsemicolon": -9.081370, "float": -9.081370, "flushleft": -8.388223, "flushright": -8.388223, "fontsize": -7.135460, "footcite": -9.081370, "footcitetext": -9.081370, "footnote": -8.388223, "footnoterule": -9.081370, "footnotesize": -8.388223, "footrulewidth": -9.081370, "for": -7.982758, "forew": -8.388223, "foreword": -5.680173, "forthcoming": -7.982758, "found": -7.982758, "founded": -9.081370, "founder": -8.388223, "founders": -8.388223, "fourvector": -9.081370, "from": -5.210169, "fromamerican": -9.081370, "frombrazilian": -9.081370, "fromcatalan": -9.081370, "fromcroatian": -9.081370, "fromczech": -9.081370, "fromdanish": -9.081370, "fromdutch": -9.081370, "fromenglish": -9.081370, "fromfinnish": -9.081370, "fromfrench": -9.081370, "fromgerman": -9.081370, "fromgreek": -9.081370, "fromitalian": -9.081370, "fromlatin": -9.081370, "fromnorwegian": -9.081370, "frompolish": -9.081370, "fromportuguese": -9.081370, "fromrussian": -9.081370, "fromslovene": -9.081370, "fromspanish": -9.081370, "fromswedish": -9.081370, "full": -9.081370, "gdef": -6.778785, "geometry": -9.081370, "german": -9.081370, "given": -7.982758, "global": -7.982758, "graphicx": -9.081370, "gray": -9.081370, "hat": -8.388223, "hb@xt@": -9.081370, "hbox": -6.373320, "headheight": -7.695076, "heading": -9.081370, "headrulewidth": -9.081370, "headsep": -7.982758, "henceforth": -8.388223, "hfill": -7.982758, "hrulefill": -7.471932, "hrung": -9.081370, "hskip": -9.081370, "hspace": -7.982758, "hss": -9.081370, "hypcap": -9.081370, "hyperlink": -9.081370, "hyperref": -9.081370, "hypertarget": -9.081370, "hyphenpenalty": -9.081370, "ibid": -9.081370, "ibidem": -8.388223, "idem": -7.135460, "idempf": -9.081370, "idempm": -9.081370, "idempn": -9.081370, "idempp": -9.081370, "idemsf": -9.081370, "idemsm": -9.081370, "idemsn": -9.081370, "if@altadvisor": -7.982758, "if@mainmatter": -9.081370, "if@openright": -9.081370, "if@restonecol": -9.081370, "if@twocolumn": -9.081370, "if@twoside": -9.081370, "ifbool": -7.982758, "ifcase": -9.081370, "iffieldbibstring": -8.388223, "iffieldequalstr": -7.695076, "iffieldsequal": -7.695076, "iffieldundef": -7.982758, "iffinalcitedelim": -9.081370, "iffootnote": -9.081370, "iflastcitekey": -9.081370, "ifnameundef": -9.081370, "ifnum": -8.388223, "ifnum#": -8.388223, "ifnumequal": -9.081370, "ifodd": -9.081370, "ifx": -9.081370, "in": -5.615634, "indexname": -9.081370, "infsum": -9.081370, "infty": -8.388223, "inpreparation": -9.081370, "inpress": -9.081370, "inseries": -9.081370, "int_": -9.081370, "interfaces": -9.081370, "intro": -8.388223, "introduction": -5.680173, "involumes": -9.081370, "issue": -7.982758, "january": -9.081370, "jourser": -9.081370, "jourvol": -9.081370, "july": -9.081370, "june": -9.081370, "l": -9.081370, "l@chapter": -9.081370, "labelfont": -7.695076, "labelformat": -7.695076, "labelname": -7.982758, "labelsep": -7.695076, "labeltitle": -9.081370, "langamerican": -9.081370, "langbrazilian": -9.081370, "langcatalan": -9.081370, "langcroatian": -9.081370, "langczech": -9.081370, "langdanish": -9.081370, "langdutch": -9.081370, "langenglish": -9.081370, "langfinnish": -9.081370, "langfrench": -9.081370, "langgerman": -9.081370, "langgreek": -9.081370, "langitalian": -9.081370, "langlatin": -9.081370, "langnorwegian": -9.081370, "langpolish": -9.081370, "langportuguese": -9.081370, "langrussian": -9.081370, "langslovene": -9.081370, "langspanish": -9.081370, "langswedish": -9.081370, "lastpage": -9.081370, "lbx@lfromlang": -5.903316, "lbx@sfromlang": -9.081370, "lbx@us@mkbibrangetrunc@long#": -9.081370, "lbx@us@mkbibrangetrunc@short#": -9.081370, "lbx@us@mkbibrangetruncextra@long#": -9.081370, "lbx@us@mkbibrangetruncextra@short#": -9.081370, "leaders": -9.081370, "leavevmode": -9.081370, "left": -6.516421, "leftmark": -9.081370, "leftskip": -8.388223, "let": -6.683475, "letterpaper": -9.081370, "lfoot": -9.081370, "library": -7.982758, "lim_": -9.081370, "line": -8.388223, "linecolor": -9.081370, "lines": -8.388223, "lineskip": -9.081370, "linkcolor": -9.081370, "listoftodos": -9.081370, "ll": -9.081370, "loc": -8.388223, "loccit": -9.081370, "lot": -9.081370, "m@ne": -9.081370, "m@th": -9.081370, "major": -9.081370, "makebox": -7.289611, "maketitle": -9.081370, "march": -9.081370, "mathesis": -9.081370, "mathrm": -9.081370, "mathtools": -8.388223, "may": -9.081370, "mbox": -8.388223, "mc": -9.081370, "minipage": -7.695076, "mkbibdate#": -6.308781, "mkbibdatelong#": -9.081370, "mkbibfemord": -9.081370, "mkbibfootnote": -8.388223, "mkbibfootnotetext": -9.081370, "mkbibmonth": -9.081370, "mkbibordinal": -9.081370, "mkbibparens": -7.982758, "mkbibrangecomp": -9.081370, "mkbibrangecompextra": -7.982758, "mkbibrangeterse": -7.982758, "mkbibrangeterseextra": -7.982758, "mkdatezeros": -7.982758, "mkern": -8.388223, "mm": -8.388223, "month": -6.778785, "mtxt": -9.081370, "mu": -8.388223, "multicitedelim": -7.135460, "n": -7.695076, "navy": -8.388223, "nd": -9.081370, "new": -8.388223, "newbibmacro*": -7.289611, "newbool": -9.081370, "newcommand": -8.388223, "newcounter": -9.081370, "newenvironment": -9.081370, "newif": -9.081370, "newpage": -7.982758, "newseries": -9.081370, "newzealand": -9.081370, "no": -8.388223, "nobreak": -8.388223, "nobreakspace": -9.081370, "nodate": -9.081370, "noexpand": -7.982758, "noindent": -9.081370, "norm": -9.081370, "normalfont": -9.081370, "note": -9.081370, "nouppercase": -8.388223, "november": -9.081370, "null": -7.982758, "number": -7.982758, "numberline": -6.136931, "october": -9.081370, "oddsidemargin": -8.388223, "of": -6.308781, "ofseries": -9.081370, "old": -8.388223, "oldseries": -9.081370, "oldthebibliography": -8.388223, "oldtheindex": -8.388223, "on": -7.289611, "onecolumn": -9.081370, "op": -8.388223, "opcit": -9.081370, "or": -7.982758, "orig": -8.388223, "originally": -8.388223, "origpubas": -9.081370, "origpubin": -9.081370, "p": -8.388223, "p@": -9.081370, "page": -7.695076, "pagebreak": -9.081370, "pagenumbering": -9.081370, "pageref": -9.081370, "pages": -7.982758, "pagestyle": -8.388223, "par": -7.001928, "paragraph": -8.388223, "paragraphs": -8.388223, "parencite": -8.388223, "parens": -7.001928, "parfillskip": -9.081370, "parindent": -8.388223, "parskip": -9.081370, "part": -7.982758, "pass": -9.081370, "passim": -8.388223, "pat": -6.596463, "patent": -6.516421, "patentde": -9.081370, "patenteu": -9.081370, "patentfr": -9.081370, "patentuk": -9.081370, "patentus": -9.081370, "patreq": -9.081370, "patreqde": -9.081370, "patreqeu": -9.081370, "patreqfr": -9.081370, "patrequk": -9.081370, "patrequs": -9.081370, "pdfinfo": -9.081370, "penalty": -8.388223, "period": -7.982758, "pgfkeys": -9.081370, "phdthesis": -9.081370, "postnote": -6.884145, "postnotedelim": -9.081370, "pp": -8.388223, "pre": -8.388223, "prenote": -7.001928, "preparation": -8.388223, "prepublished": -9.081370, "present": -9.081370, "press": -8.388223, "printfield": -7.471932, "printnames": -8.388223, "printtext": -7.695076, "prob": -9.081370, "problem": -9.081370, "problemset": -9.081370, "protect": -9.081370, "protected": -6.683475, "providecommand": -5.297180, "pt": -7.289611, "pub": -8.388223, "published": -7.695076, "qqed": -8.388223, "qtd": -9.081370, "quoted": -9.081370, "quotedin": -9.081370, "r": -7.982758, "rawpostscript": -9.081370, "rd": -9.081370, "red": -7.695076, "redacted": -9.081370, "redactor": -8.388223, "redactors": -8.388223, "reedthesis": -9.081370, "references": -9.081370, "refstepcounter": -9.081370, "relax": -7.289611, "renewcommand": -6.778785, "renewcommand*": -9.081370, "renewenvironment": -8.388223, "rep": -8.388223, "report": -8.388223, "repr": -7.982758, "reprint": -7.982758, "reprintas": -9.081370, "reprinted": -8.388223, "reprintfrom": -9.081370, "reprintof": -9.081370, "req": -7.289611, "request": -7.289611, "research": -8.388223, "resreport": -9.081370, "restorecommand": -7.982758, "rev": -7.471932, "review": -9.081370, "reviewed": -9.081370, "reviewof": -9.081370, "revised": -9.081370, "reviser": -8.388223, "revisers": -8.388223, "rfoot": -9.081370, "right": -6.596463, "right.": -9.081370, "rightmark": -9.081370, "rightskip": -9.081370, "rpt": -9.081370, "rule": -9.081370, "s": -9.081370, "savecommand": -7.982758, "secdef": -9.081370, "section": -7.135460, "sections": -8.388223, "see": -7.135460, "seealso": -9.081370, "seenote": -9.081370, "select@language": -9.081370, "selectfont": -7.289611, "september": -9.081370, "sequens": -9.081370, "sequentes": -9.081370, "ser": -7.982758, "series": -7.982758, "setbox": -8.388223, "setcounter": -7.471932, "setlength": -6.596463, "shorthand": -9.081370, "shorthands": -9.081370, "shortname": -9.081370, "sign": -9.081370, "simple": -7.982758, "slshape": -8.388223, "small": -7.695076, "smartcite": -9.081370, "software": -7.982758, "solution": -9.081370, "space": -7.695076, "special": -8.388223, "sq": -8.388223, "sqq": -8.388223, "ss": -9.081370, "st": -9.081370, "stepcounter": -9.081370, "stripzeros": -8.388223, "subcaption": -9.081370, "subfigure": -9.081370, "submitted": -7.982758, "subsection": -6.683475, "subsubsection": -7.695076, "subtable": -9.081370, "sum_": -8.388223, "symbol": -8.388223, "t": -9.081370, "table": -8.388223, "tabular": -8.388223, "tabularx": -9.081370, "tech": -9.081370, "technical": -9.081370, "techreport": -9.081370, "text": -7.695076, "textbf": -7.471932, "textcite": -7.289611, "textcites": -9.081370, "textcitetotal": -8.388223, "textendash": -9.081370, "textheight": -7.695076, "textwidth": -7.695076, "th": -8.388223, "thanks": -9.081370, "the": -5.231222, "thebibliography": -8.388223, "thedivisionof#": -9.081370, "thefield": -7.001928, "theindex": -8.388223, "thepage": -8.388223, "theproblem": -9.081370, "thesis": -7.289611, "thiscite": -9.081370, "thispagestyle": -7.471932, "threevector": -9.081370, "times": -8.388223, "title": -7.695076, "titlepage": -8.388223, "to": -7.289611, "toc": -7.471932, "todonotes": -9.081370, "topmargin": -7.289611, "trans": -7.289611, "translated": -5.823273, "translation": -6.136931, "translationas": -9.081370, "translationfrom": -9.081370, "translationof": -9.081370, "translator": -6.308781, "translatoraf": -9.081370, "translatoran": -9.081370, "translatoranaf": -9.081370, "translatoranfo": -9.081370, "translatoranin": -9.081370, "translatorco": -9.081370, "translatorcoaf": -9.081370, "translatorcofo": -9.081370, "translatorcoin": -9.081370, "translatorfo": -9.081370, "translatorin": -9.081370, "translators": -6.308781, "translatorsaf": -9.081370, "translatorsan": -9.081370, "translatorsanaf": -9.081370, "translatorsanfo": -9.081370, "translatorsanin": -9.081370, "translatorsco": -9.081370, "translatorscoaf": -9.081370, "translatorscofo": -9.081370, "translatorscoin": -9.081370, "translatorsfo": -9.081370, "translatorsin": -9.081370, "twocolumn": -9.081370, "twovector": -9.081370, "u": -8.388223, "und": -9.081370, "uniquelist": -9.081370, "uniquename": -9.081370, "unitvecs": -9.081370, "unitvect": -9.081370, "url": -8.388223, "urlcolor": -9.081370, "urlfrom": -9.081370, "urlseen": -9.081370, "usebibmacro": -5.749165, "usepackage": -8.388223, "v": -9.081370, "value": -9.081370, "vec": -8.388223, "vecs": -7.695076, "vect": -7.982758, "verbatim": -8.388223, "verbose.bbx": -9.081370, "verse": -8.388223, "verses": -8.388223, "version": -7.982758, "versions": -9.081370, "vert": -7.982758, "vert_": -9.081370, "vfil": -7.001928, "visited": -8.388223, "vol": -8.388223, "vols": -9.081370, "volume": -7.982758, "volumes": -8.388223, "vskip": -7.982758, "vspace": -8.388223, "vv": -9.081370, "wd": -7.135460, "with": -5.417808, "withafterword": -9.081370, "withannotator": -9.081370, "withcommentator": -9.081370, "withforeword": -9.081370, "withintroduction": -9.081370, "worksheet": -9.081370, "x": -9.081370, "xcolor": -9.081370, "year": -7.289611, "z@": -9.081370, "{": -1.658399, "}": -1.738591, "~": -7.982758, }, "Tea": map[string]float64{ "%": -2.079442, "(": -2.079442, ")": -2.079442, "<%>": -2.079442, ">": -2.079442, "foo": -1.386294, "template": -2.079442, }, "Terra": map[string]float64{ "#include": -5.768946, "&": -5.075799, "&&": -7.378384, "(": -2.696252, ")": -2.696252, "*": -3.203996, "*i": -7.378384, "+": -3.852023, ",": -2.783264, "-": -3.466361, "..": -7.378384, "...": -6.685237, "..tostring": -7.378384, ".imag": -7.378384, ".mass": -6.279771, ".real": -7.378384, ".vx": -6.685237, ".vy": -6.685237, ".vz": -6.685237, "/": -4.980488, ":": -3.794865, ";": -4.046179, "<": -5.992089, "<<": -6.279771, "<math.h>": -7.378384, "<stdio.h>": -6.685237, "<stdlib.h>": -6.685237, "=": -2.296979, ">": -5.075799, "Array": -6.279771, "ArrayImpl": -5.586624, "ArrayImpl.metamethods.__apply": -7.378384, "ArrayImpl.metamethods.__methodmissing": -7.378384, "ArrayImpl.metamethods.__typename": -7.378384, "C": -6.685237, "C.atoi": -7.378384, "C.free": -7.378384, "C.malloc": -7.378384, "C.printf": -5.992089, "C.sqrt": -6.685237, "Complex": -5.586624, "ComplexArray": -6.685237, "N": -5.298942, "N*sizeof": -7.378384, "NBODIES": -5.768946, "T": -5.768946, "[": -3.944397, "]": -3.944397, "^": -5.992089, "`": -6.685237, "a": -4.046179, "add": -6.685237, "advance": -6.685237, "and": -4.333861, "argc": -7.378384, "args": -6.685237, "argv": -6.685237, "array": -6.685237, "arraytypes": -6.279771, "assert": -5.992089, "b": -3.507183, "b.mass": -5.768946, "b.vx": -5.586624, "b.vy": -5.586624, "b.vz": -5.586624, "b.x": -5.992089, "b.y": -5.992089, "b.z": -5.992089, "bodies": -4.287341, "c": -4.382651, "c.imag": -7.378384, "c.real": -7.378384, "ca": -5.768946, "compile": -7.378384, "d": -5.075799, "data": -7.378384, "days_per_year": -4.813434, "disas": -7.378384, "distance": -5.432474, "do": -5.075799, "double": -5.298942, "dt": -5.768946, "dx": -5.181159, "dy": -5.181159, "dz": -5.181159, "e": -4.605795, "else": -7.378384, "end": -3.794865, "energy": -5.768946, "float": -6.685237, "for": -5.075799, "free": -7.378384, "function": -5.768946, "gettype": -7.378384, "i": -4.011088, "idx": -6.685237, "if": -7.378384, "imag": -7.378384, "in": -7.378384, "init": -6.279771, "int": -5.181159, "j": -5.992089, "local": -5.181159, "macro": -6.685237, "mag": -5.298942, "main": -5.992089, "map": -7.378384, "mass": -5.768946, "methodname": -6.685237, "n": -6.685237, "nbodies": -5.181159, "not": -6.279771, "offset_momentum": -6.685237, "or": -5.992089, "pi": -6.279771, "planet": -5.181159, "print": -7.378384, "printpretty": -7.378384, "promotedargs": -6.685237, "px": -5.992089, "py": -5.992089, "pz": -5.992089, "quote": -7.378384, "r": -5.992089, "r.N": -6.685237, "r.data": -6.279771, "ra": -6.685237, "real": -7.378384, "require": -6.685237, "return": -4.382651, "run": -6.279771, "self": -6.279771, "self.N": -6.685237, "self.data": -5.992089, "self.imag": -7.378384, "self.real": -7.378384, "selfexp": -6.685237, "solar_mass": -5.181159, "struct": -6.279771, "symbol": -7.378384, "terra": -4.433945, "terralib.includecstring": -6.685237, "terralib.newlist": -7.378384, "terralib.saveobj": -7.378384, "test": -4.287341, "test.eq": -5.075799, "test.time": -7.378384, "testit": -6.685237, "then": -7.378384, "tostring": -7.378384, "true": -5.432474, "var": -3.267510, "vx": -5.992089, "vy": -5.992089, "vz": -5.992089, "x": -6.279771, "y": -6.279771, "z": -6.279771, "{": -4.813434, "}": -4.813434, "~": -6.685237, }, "Text": map[string]float64{ "\x1a": -10.145060, "\x1b": -10.145060, "!": -5.750611, "#": -8.353301, "#define": -7.149328, "#s/gammel/ny/g": -8.758766, "$": -5.955405, "%": -7.580111, "&": -9.451913, "'": -9.451913, "(": -5.341039, ")": -5.127780, "*": -6.679324, "**": -5.341039, "+": -9.451913, ",": -4.114375, "-": -3.601148, ".": -5.063656, "/": -6.886964, "/.vimrc": -9.451913, "//dev.mysql.com/downloads/connector/j/": -10.145060, "//iccf": -9.451913, "//localhost/Users/hubery/Public/ucar/Document/Functions/Built": -10.145060, "//localhost/Users/hubery/Public/ucar/Document/Functions/Contributed/rmMonAnnCycLLT.shtml": -10.145060, "//localhost/Users/hubery/Public/ucar/Document/Functions/Contributed/zonalAve.shtml": -10.145060, "//www.debian.org/social_contract#guidelines": -9.046448, "/ignore": -8.353301, "0": -9.451913, "2001": -10.145060, ":": -4.046986, ";": -7.311847, "<": -8.758766, "</body>": -9.046448, "</descriptorBase>": -9.046448, "</head>": -9.046448, "</media>": -10.145060, "</ncl>": -9.046448, "</regionBase>": -9.046448, "<?xml>": -9.046448, "<ENTER>": -6.507474, "<ESC>": -6.507474, "<Help>": -9.451913, "<TAB>": -7.842475, "<body>": -9.046448, "<descriptor>": -9.046448, "<descriptorBase>": -9.046448, "<head>": -9.046448, "<media>": -8.758766, "<name>": -10.145060, "<ncl>": -9.046448, "<one>": -10.145060, "<port>": -9.046448, "<property>": -10.145060, "<region>": -9.046448, "<regionBase>": -9.046448, "<signature>": -10.145060, "<year>": -10.145060, "=": -3.950655, ">": -5.108108, "?": -7.842475, "@": -10.145060, "@datadir@": -10.145060, "@libdir@/ncarg": -10.145060, "@mandir@": -10.145060, "@prefix@": -10.145060, "A": -7.506003, "A.": -9.451913, "ABC": -9.451913, "ABOVE": -10.145060, "ADD": -10.145060, "ADVISED": -10.145060, "AGREED": -10.145060, "ALL": -10.145060, "AND": -8.535622, "AND/OR": -9.451913, "ANGRE": -9.451913, "ANNEN": -9.451913, "ANTALL": -9.451913, "ANY": -8.535622, "APPLICABLE": -9.451913, "ARISING": -10.145060, "AS": -9.451913, "ASCII": -10.145060, "ASSUME": -10.145060, "AV": -6.618700, "AVSLUTTE": -9.451913, "Activities": -10.145060, "Administrative": -10.145060, "Aeneas": -10.145060, "All": -10.145060, "Alle": -9.046448, "Also": -9.451913, "Altered": -10.145060, "American": -10.145060, "An": -9.451913, "AnsiGraph": -9.451913, "Apache": -8.758766, "Apply": -10.145060, "April": -10.145060, "Arguments": -9.046448, "Associates": -9.451913, "Avslutt": -9.451913, "BAKOVER": -9.451913, "BBS.": -10.145060, "BE": -10.145060, "BECAUSE": -10.145060, "BEEN": -10.145060, "BEGIN": -10.145060, "BEING": -10.145060, "BEVEGELSE": -9.451913, "BEVEGELSER": -9.451913, "BOKSTAVER": -9.451913, "BRUK": -8.353301, "BRUKE": -9.451913, "BUT": -9.451913, "BY": -9.046448, "Beatles": -10.145060, "Bevegelsene": -9.451913, "Blant": -9.451913, "Bokstaven": -9.451913, "Boston": -10.145060, "Bram": -9.451913, "Bruk": -7.506003, "BuildCAIRO": -10.145060, "BuildGDAL": -10.145060, "BuildHDFEOS": -9.451913, "BuildNetCDF": -10.145060, "BuildTRIANGLE": -10.145060, "BuildUdunits": -10.145060, "BuildWithF": -10.145060, "By": -10.145060, "C": -8.758766, "C.": -9.451913, "CAIROlib": -10.145060, "CD": -10.145060, "CGI": -10.145060, "CHARGE": -10.145060, "CONDITIONS": -9.451913, "CONSEQUENTIAL": -10.145060, "COPYING": -10.145060, "COPYRIGHT": -9.046448, "CORRECTION.": -10.145060, "COST": -10.145060, "CTRL": -6.534142, "California.": -10.145060, "Caps": -9.451913, "Case": -9.451913, "Charles": -9.451913, "Climatology": -10.145060, "Collections.queue": -10.145060, "Colorado": -8.758766, "Company": -10.145060, "Computes": -9.451913, "Connector/J": -10.145060, "Contact": -9.046448, "Coon": -9.046448, "Copyright": -9.451913, "Cras": -10.145060, "Ctrl": -8.353301, "Cursus": -10.145060, "D": -6.711073, "DAMAGES": -9.451913, "DAMAGES.": -10.145060, "DATA": -9.451913, "DE": -9.451913, "DEFECTIVE": -10.145060, "DESTDIR": -8.758766, "DISTRIBUTION": -10.145060, "DOS": -8.758766, "DOS.": -9.451913, "Da": -8.758766, "De": -9.451913, "Debian": -7.842475, "Debian.": -9.046448, "Debians": -8.758766, "Delete": -10.145060, "Den": -7.660154, "Denne": -7.506003, "Der": -9.451913, "Deretter": -8.353301, "Description": -9.046448, "Det": -6.648553, "Dette": -6.711073, "DipTrace": -10.145060, "Disse": -8.535622, "Documentation": -9.046448, "Dokumentasjon": -10.145060, "Donec": -10.145060, "Druer": -9.451913, "Du": -7.100538, "Duis": -10.145060, "E": -8.758766, "EDTVProfile": -10.145060, "EITHER": -10.145060, "EKSTERN": -9.451913, "ELLER": -9.451913, "EN": -8.065619, "END": -9.451913, "ENTIRE": -10.145060, "ERSTATT": -8.758766, "ERSTATTE": -9.451913, "ET": -9.451913, "ETTER": -7.660154, "EVEN": -10.145060, "EVENT": -10.145060, "EXCEPT": -10.145060, "EXPRESSED": -10.145060, "EXTENT": -10.145060, "Each": -9.451913, "Editor": -9.451913, "Eller": -9.451913, "En": -8.758766, "Enter.": -9.451913, "Erstatningsmodus": -9.451913, "Erstatte": -8.065619, "Et": -8.535622, "Etiam": -10.145060, "Etter": -8.065619, "Etterhvert": -9.451913, "Everyone": -10.145060, "Example": -10.145060, "Examples": -10.145060, "Exp": -10.145060, "Export": -10.145060, "F": -7.660154, "FAILURE": -10.145060, "FGHI": -9.451913, "FIL": -8.758766, "FILER": -8.758766, "FILNAVN": -7.149328, "FILNAVN.": -8.353301, "FILSTATUS": -9.451913, "FINN": -9.451913, "FITNESS": -10.145060, "FLERE": -8.758766, "FLYTTING": -9.451913, "FOR": -8.065619, "FORANDRE": -9.451913, "FORANDRINGER": -9.451913, "FORKASTER": -9.451913, "FRAMOVER": -9.451913, "FREE": -10.145060, "FULLF": -9.451913, "FidoNet": -10.145060, "Fifth": -10.145060, "Filen": -9.451913, "Fioler": -8.758766, "Fjern": -9.451913, "Floor": -10.145060, "Flytt": -6.084617, "For": -5.738341, "Forandringskommandoen": -9.451913, "Forandringsoperatoren": -8.758766, "Foreldede": -10.145060, "Formatet": -8.065619, "Forskjellige": -10.145060, "Foundation": -8.535622, "Foundation.": -9.451913, "Fra": -9.451913, "Franklin": -10.145060, "Free": -8.065619, "Fri": -10.145060, "Fullf": -8.758766, "Functions": -9.046448, "Fusce": -10.145060, "G": -6.507474, "G.": -8.758766, "GDALlib": -10.145060, "GENERAL": -9.046448, "GNOME": -9.046448, "GNU": -8.758766, "GPL": -10.145060, "General": -8.065619, "Gj": -9.451913, "Guidelines": -10.145060, "H": -10.145060, "HAS": -10.145060, "HDF": -10.145060, "HDFlib": -10.145060, "HENTING": -9.451913, "HJELP": -9.451913, "HOLDER": -9.451913, "HOLDERS": -10.145060, "HVORDAN": -9.451913, "Hacker.": -10.145060, "Headline": -10.145060, "Helt": -9.451913, "Henry": -10.145060, "Hent": -9.451913, "Her": -8.758766, "Hereinafter": -10.145060, "Hessstennnn": -9.451913, "Hesten": -9.451913, "Hjelp": -9.451913, "Hold": -8.353301, "Holm.": -9.451913, "Home": -9.046448, "How": -10.145060, "However": -10.145060, "Husk": -8.758766, "Hvis": -7.506003, "I": -7.842475, "I/usr/include/freetype": -10.145060, "I/usr/include/gdal": -10.145060, "I/usr/include/netcdf": -10.145060, "I/usr/include/udunits": -10.145060, "IF": -10.145060, "IGNORE": -9.451913, "IKKE": -9.451913, "IMPLIED": -9.451913, "IN": -9.046448, "INABILITY": -10.145060, "INACCURATE": -10.145060, "INCIDENTAL": -10.145060, "INCLUDING": -9.046448, "INF/lib": -10.145060, "ING": -9.451913, "INKLUDERT": -8.758766, "INLIDARLite.ncl*": -10.145060, "INN": -8.758766, "IS": -9.046448, "Id": -9.451913, "If": -7.580111, "Ignore": -8.758766, "Ikke": -9.451913, "Il": -10.145060, "Improved": -9.451913, "In": -10.145060, "Inc.": -9.046448, "IncSearch": -10.145060, "Inneholder": -9.451913, "Intelligens": -9.451913, "It": -9.451913, "JK": -9.451913, "James": -10.145060, "Jeg": -9.451913, "June": -10.145060, "Jusqu": -10.145060, "K.": -9.451913, "KDE": -9.046448, "KEKOMMANDOEN": -9.451913, "KIND": -10.145060, "KOMMANDO": -9.451913, "KOMMANDOEN": -7.660154, "KOPIERE": -9.451913, "Kan": -9.451913, "Kanskje": -10.145060, "Keep": -10.145060, "KiWi": -10.145060, "Klienter": -10.145060, "Klokker": -9.451913, "Kommandoen": -9.451913, "Kommandoene": -9.451913, "Kommandolinjefullf": -9.451913, "Kommandoskall": -10.145060, "Kommunikasjon": -10.145060, "Kontroller": -9.451913, "L@libdir@/hdf": -10.145060, "LAG": -9.451913, "LAGRES": -9.451913, "LAGRING": -9.451913, "LAW": -10.145060, "LAW.": -10.145060, "LEGG": -9.451913, "LEKSJON": -7.372472, "LIABLE": -10.145060, "LICENSE": -9.451913, "LICENSED": -10.145060, "LIM": -9.451913, "LIME": -9.451913, "LIMITED": -9.451913, "LINJE": -9.451913, "LINJER": -9.451913, "LMN": -9.451913, "LNBoardOutline*": -10.145060, "LOSS": -10.145060, "LOSSES": -10.145060, "Lacinia": -10.145060, "Lag": -8.758766, "Lagre": -8.758766, "Lamb": -9.451913, "Learning": -9.451913, "Legg": -7.506003, "Leksjon": -5.986177, "Les": -8.065619, "Lesser": -10.145060, "Let": -9.451913, "LibRoot": -10.145060, "LibSearch": -10.145060, "License": -7.506003, "License.": -8.353301, "Linda": -9.451913, "Linux.": -9.451913, "List": -9.451913, "Lock": -9.451913, "Lorem": -10.145060, "M": -8.758766, "MA": -10.145060, "MARK": -8.758766, "MAY": -10.145060, "MER": -8.758766, "MERCHANTABILITY": -10.145060, "MERK": -6.561541, "MIDI": -10.145060, "MODIFICATION": -10.145060, "MODIFY": -10.145060, "MS": -8.353301, "Malesuada": -10.145060, "ManRoot": -10.145060, "Mange": -9.451913, "Many": -10.145060, "Mark": -8.758766, "Marmotta": -8.535622, "Mauris": -10.145060, "Med": -10.145060, "Men": -9.451913, "Merk": -7.009566, "Metadata": -10.145060, "Michael": -9.451913, "Micro": -10.145060, "Mines": -9.451913, "Missing": -10.145060, "Modifisert": -9.451913, "ModuleMember": -10.145060, "Moolenaar.": -9.451913, "Morbi": -9.451913, "MySQL": -8.199150, "MySQL.": -10.145060, "N": -6.618700, "NCL": -9.046448, "NCL3": -9.451913, "NCL30EDTV": -10.145060, "NECESSARY": -10.145060, "NED": -9.451913, "NEDENFOR": -8.758766, "NO": -9.046448, "NOT": -9.451913, "NSF": -9.046448, "Neste": -9.451913, "NetCDF": -10.145060, "Nettlesere": -10.145060, "Netus": -10.145060, "New": -9.046448, "Noen": -8.353301, "Non": -10.145060, "Nonetheless": -10.145060, "Numerisk": -10.145060, "O": -7.660154, "OF": -7.747165, "OG": -8.065619, "OM": -8.758766, "OP": -9.451913, "OPERATE": -10.145060, "OPERATOREN": -9.451913, "OPERATORER": -9.451913, "OPERERE": -9.451913, "OPPSTARTSSKRIPT": -9.451913, "OPPSUMMERING": -7.506003, "OR": -7.747165, "OTHER": -8.758766, "OTHERWISE": -10.145060, "OUT": -10.145060, "OVER": -8.353301, "Og": -9.451913, "OpenBSD": -10.145060, "Operatoren": -9.451913, "Opprett": -9.451913, "Oualline": -9.451913, "Our": -10.145060, "Out": -9.451913, "Oversatt": -9.451913, "P": -7.947836, "PARENTESER": -9.451913, "PARTICULAR": -10.145060, "PARTIES": -9.451913, "PARTY": -9.451913, "PDA": -10.145060, "PERFORMANCE": -10.145060, "PERMITTED": -9.451913, "PNE": -9.451913, "POSISJONERING": -9.451913, "POSSIBILITY": -10.145060, "PPP": -10.145060, "PROCESS": -10.145060, "PROGRAM": -8.065619, "PROGRAMS": -10.145060, "PROVE": -10.145060, "PROVIDE": -10.145060, "PUBLIC": -9.451913, "PURPOSE.": -10.145060, "Pakkene": -8.065619, "Pakker": -6.886964, "Pakkesystemet": -9.451913, "Palm": -10.145060, "Parameter": -9.046448, "Pellentesque": -9.451913, "Perl": -8.758766, "Perl.": -10.145060, "Permission": -10.145060, "Phasellus": -10.145060, "Pierce": -9.451913, "Pilot": -10.145060, "Piltastene": -9.451913, "Plasser": -8.353301, "Please": -9.451913, "Policy": -9.046448, "PostgreSQL": -10.145060, "Pr": -8.353301, "Praesent": -10.145060, "Preamble": -10.145060, "President": -10.145060, "Privacy": -9.046448, "Program": -7.311847, "Program.": -10.145060, "Programmer": -7.947836, "Programs": -10.145060, "Programvare": -9.451913, "Prototype": -9.046448, "Public": -8.353301, "Python": -8.758766, "Q": -9.451913, "QUALITY": -10.145060, "R": -7.660154, "RE": -9.451913, "README": -10.145060, "REDIGERE": -9.451913, "REDIGERING": -8.353301, "REDISTRIBUTE": -10.145060, "REN": -8.758766, "RENDERED": -10.145060, "REPAIR": -10.145060, "REQUIRED": -10.145060, "RING": -9.451913, "RISK": -10.145060, "RPM": -10.145060, "RReparer": -9.451913, "RS": -9.451913, "Read": -9.451913, "Regents": -10.145060, "Reilly": -9.451913, "Removes": -10.145060, "Repeter": -7.054018, "Return": -9.046448, "Returns": -10.145060, "Riders": -9.451913, "Robert": -9.451913, "Roser": -8.758766, "Ruby": -10.145060, "S": -8.758766, "SAMMENSL": -9.451913, "SAMSVARENDE": -9.451913, "SERVICING": -10.145060, "SETT": -9.451913, "SHOULD": -10.145060, "SKAL": -9.451913, "SLETTE": -9.451913, "SLETTEKOMMANDOER": -8.758766, "SOM": -9.451913, "SPECIAL": -10.145060, "STATED": -10.145060, "STORE": -9.451913, "SUCH": -9.451913, "SUSTAINED": -10.145060, "Samling": -10.145060, "School": -9.451913, "Se": -8.758766, "Sed": -10.145060, "See": -9.046448, "Seksjonen": -10.145060, "Selve": -10.145060, "Sett": -7.842475, "SharePath": -10.145060, "Should": -10.145060, "Since": -9.451913, "Skriv": -5.788351, "Skrivebordssystemet": -9.451913, "Skriveprogram": -10.145060, "Sl": -9.451913, "Slett": -9.451913, "Slutten": -8.758766, "Smith": -9.451913, "Software": -8.065619, "Som": -9.451913, "Spencer.": -10.145060, "Spesielt": -9.451913, "Spill": -10.145060, "Sponsored": -9.046448, "Start": -8.758766, "State": -9.451913, "Steve": -9.451913, "Store": -10.145060, "Street": -10.145060, "Such": -10.145060, "TE": -9.451913, "TEKST": -7.842475, "TELLER": -9.451913, "TERMS": -9.451913, "TEST": -6.886964, "TEST.": -9.451913, "THE": -7.372472, "THERE": -10.145060, "THE_TITLE": -9.046448, "THE_URL": -9.046448, "THIRD": -10.145060, "TIL": -9.451913, "TO": -8.065619, "TOMCAT_HOME/lib": -10.145060, "TOMCAT_HOME/webapps/marmotta/WEB": -10.145060, "TRUE": -10.145060, "TUV": -9.451913, "TeX": -8.199150, "TeX.": -10.145060, "Tekstverkt": -10.145060, "Telegraph": -10.145060, "Telephone": -10.145060, "Terms": -8.758766, "Test": -10.145060, "The": -7.747165, "Thermal": -10.145060, "These": -10.145060, "This": -7.747165, "Tiden": -9.451913, "Tips": -9.451913, "Tivo.": -10.145060, "To": -9.451913, "Triple": -10.145060, "Trykk": -5.426561, "Ty": -9.046448, "Type": -8.758766, "U": -7.842475, "UCAR": -9.046448, "UNLESS": -10.145060, "UNNTATT": -9.451913, "USA": -8.535622, "USE": -9.451913, "UTF": -9.451913, "UdUnitslib": -10.145060, "University": -10.145060, "University.": -9.451913, "Unix": -8.199150, "Use": -9.046448, "Usenet": -10.145060, "Usenet.": -10.145060, "Ut": -10.145060, "Utf": -9.451913, "Utgiver": -8.758766, "Utviklingsfiler": -10.145060, "V": -8.065619, "VALG": -9.451913, "VED": -9.451913, "VELGE": -9.451913, "VIM": -9.451913, "VIM/_vimrc": -9.451913, "VIMRUNTIME/vimrc_example.vim": -9.451913, "Vanlige": -10.145060, "Ved": -7.506003, "Velg": -9.451913, "Verkt": -9.046448, "Version": -10.145060, "Vi": -7.372472, "Vi.": -9.451913, "Vice": -10.145060, "Vim": -6.273859, "Vim.": -8.353301, "Vindussystemet": -10.145060, "Virtuelle": -10.145060, "Vivre": -10.145060, "W": -8.065619, "WARRANTIES": -10.145060, "WARRANTY": -9.046448, "WHEN": -10.145060, "WHO": -10.145060, "WILL": -10.145060, "WITH": -9.451913, "WITHOUT": -10.145060, "WRITING": -9.451913, "Ware": -9.451913, "Web": -10.145060, "Webmaster": -9.046448, "Whether": -10.145060, "Windows": -9.451913, "X": -7.311847, "XMLSchema": -10.145060, "Y": -7.660154, "YOU": -9.046448, "YOU.": -10.145060, "YmakeRoot": -10.145060, "Ymse": -10.145060, "You": -9.451913, "Your": -10.145060, "Z": -9.451913, "[": -6.967006, "\\": -6.001926, "]": -7.054018, "^": -9.451913, "_": -8.758766, "_.": -9.451913, "_AT_": -9.451913, "_hl": -10.145060, "`": -9.046448, "a": -6.294913, "a.": -10.145060, "able": -10.145060, "ac": -9.046448, "accumsan": -9.451913, "achieve": -10.145060, "act": -10.145060, "add": -10.145060, "address": -10.145060, "addressed": -10.145060, "adipiscing": -10.145060, "admin": -10.145060, "administrative": -10.145060, "advanced": -10.145060, "agreement": -10.145060, "agurk": -9.451913, "akkurat": -8.758766, "aktiv": -9.451913, "alcool.": -10.145060, "algebra": -10.145060, "algoritmer.": -10.145060, "alien": -9.451913, "all": -8.758766, "all.": -9.451913, "alle": -6.679324, "allegation": -10.145060, "allerede": -8.535622, "allowed": -10.145060, "allowed.": -10.145060, "alltid": -9.451913, "alt": -8.065619, "alter": -10.145060, "altered.": -10.145060, "alternative": -10.145060, "alts": -9.451913, "amet": -10.145060, "among": -10.145060, "an": -8.758766, "analyse": -10.145060, "anbefales": -8.758766, "and": -6.481499, "and/or": -9.046448, "andre": -6.618700, "andre.": -8.353301, "andreosfs": -10.145060, "angre": -7.842475, "angre.": -9.451913, "angrekommandoene": -9.451913, "angringen": -9.451913, "annen": -8.353301, "annet": -7.947836, "annual": -9.451913, "another": -10.145060, "antall": -7.842475, "any": -7.200621, "anyone": -10.145060, "appear": -9.451913, "application": -8.758766, "applications": -10.145060, "applied": -9.451913, "applies": -9.046448, "apply": -9.451913, "arbeid": -10.145060, "arbeide.": -10.145060, "arcu": -10.145060, "are": -7.580111, "arise": -10.145060, "arkivene.": -10.145060, "array": -8.065619, "array.": -9.451913, "as": -7.660154, "ask": -10.145060, "assemblere": -10.145060, "astronomi": -10.145060, "at": -6.050716, "attach": -9.451913, "attribute": -10.145060, "author": -9.046448, "author/donor": -10.145060, "authors": -10.145060, "automatically": -10.145060, "av": -4.877202, "avbryter": -9.451913, "average": -9.451913, "avhenger": -8.758766, "avhengig": -9.451913, "avhengige": -9.451913, "avluse": -10.145060, "avlusingsverkt": -10.145060, "avslutt": -9.451913, "avslutte": -8.758766, "avslutte.": -9.451913, "avslutter": -9.451913, "avsluttes": -9.451913, "avsluttet": -9.451913, "away": -10.145060, "awful": -10.145060, "b": -7.842475, "b.": -10.145060, "backend": -10.145060, "backends": -10.145060, "bakover": -9.451913, "balance": -10.145060, "ball": -10.145060, "bare": -7.947836, "based": -10.145060, "baserte": -10.145060, "basket": -10.145060, "be": -7.311847, "beaucoup": -10.145060, "because": -10.145060, "been": -10.145060, "begynne": -9.451913, "begynnelsen": -8.353301, "beh": -10.145060, "behersker": -9.451913, "being": -10.145060, "believed": -10.145060, "below": -10.145060, "beregnet": -8.758766, "beslektede": -10.145060, "best": -9.451913, "beste": -9.451913, "bestemt": -8.758766, "betingelsene": -10.145060, "betyr": -8.535622, "bevege": -8.758766, "bevegelse": -6.967006, "bevegelse.": -9.451913, "bevegelsen": -7.660154, "bevegelser": -8.758766, "beveger": -9.451913, "beveges": -9.451913, "bibliotek": -10.145060, "biblioteker": -8.353301, "bidrag": -10.145060, "bien.": -10.145060, "bil": -9.451913, "bildebehandlingsprogrammer": -10.145060, "bildefiler": -10.145060, "binaries": -10.145060, "biologi": -10.145060, "bl": -8.758766, "blant": -10.145060, "ble": -7.842475, "bli": -8.353301, "blir": -7.372472, "blitt": -8.758766, "bo": -10.145060, "body": -10.145060, "bok": -9.451913, "boken": -8.353301, "bokstaven": -9.451913, "bokstaver": -8.353301, "bokstaver.": -8.353301, "bolk": -10.145060, "bolk.": -10.145060, "bolken": -6.507474, "bolken.": -9.451913, "both": -10.145060, "br": -8.758766, "brenne": -10.145060, "brief": -10.145060, "brrr": -9.451913, "bruk": -7.372472, "bruk.": -8.758766, "bruke": -6.926184, "bruken": -9.451913, "bruker": -8.199150, "brukere": -9.451913, "brukes": -9.451913, "bruksanvisningen": -9.451913, "brukt": -8.535622, "brukte.": -9.451913, "buffer": -9.451913, "bunnen": -7.842475, "but": -9.451913, "bware@mines.colorado.edu": -9.451913, "by": -7.009566, "c": -6.886964, "c_CTRL": -9.451913, "ca.": -9.451913, "can": -10.145060, "cannot": -9.451913, "carton.": -10.145060, "case": -10.145060, "ce": -8.065619, "certain": -9.046448, "change": -9.046448, "changing": -10.145060, "chanson": -10.145060, "choice.": -10.145060, "choose": -10.145060, "cibl": -10.145060, "circumstance": -10.145060, "circumstances.": -10.145060, "claim": -10.145060, "claims": -9.451913, "clear": -10.145060, "code": -10.145060, "compilers": -10.145060, "compliance": -10.145060, "component": -9.046448, "component=": -9.451913, "computer": -10.145060, "computes": -10.145060, "concerns.": -10.145060, "conditions": -8.199150, "connect": -10.145060, "connector": -8.758766, "consectetur": -9.451913, "consequence": -9.046448, "consequences": -10.145060, "consider": -10.145060, "consistent": -10.145060, "constitute": -10.145060, "containing": -10.145060, "contains": -9.451913, "contents": -10.145060, "contest": -10.145060, "contradict": -10.145060, "contrast": -10.145060, "contributions": -10.145060, "convallis": -10.145060, "convey": -10.145060, "copies": -9.046448, "copy": -9.046448, "copying": -9.451913, "copyright": -9.046448, "copyrighted": -9.451913, "corer.": -10.145060, "could": -10.145060, "countries": -9.046448, "court": -9.451913, "covered": -9.451913, "credits": -9.451913, "cycle": -9.451913, "d": -6.777764, "da": -8.353301, "danner": -9.451913, "dans": -10.145060, "data": -9.046448, "data.": -10.145060, "database": -10.145060, "database.": -10.145060, "datakraft": -10.145060, "datasystemer": -10.145060, "dd": -7.842475, "de": -6.431488, "decide": -10.145060, "decision": -10.145060, "dedisert": -9.451913, "deen": -7.842475, "deg": -6.648553, "deg.": -9.451913, "del": -7.947836, "deler": -8.758766, "delvis": -9.451913, "delvise": -9.451913, "dem": -7.200621, "dem.": -10.145060, "den": -5.277526, "den.": -8.353301, "denne": -6.034186, "denne.": -8.758766, "depends": -10.145060, "der": -7.254688, "der.": -8.758766, "deretter": -7.254688, "derfor": -9.451913, "deriblant": -10.145060, "derivative": -10.145060, "derivatives": -10.145060, "des": -10.145060, "descriptor": -9.046448, "descriptor=": -9.451913, "design": -10.145060, "designed": -10.145060, "det": -5.827572, "det.": -8.065619, "detail": -10.145060, "dette": -7.149328, "dette.": -9.451913, "develop": -10.145060, "dfnne": -9.451913, "diam": -9.046448, "differ": -10.145060, "different": -9.451913, "digitalt": -10.145060, "dignissim": -10.145060, "dim_max": -10.145060, "dim_max_n": -10.145060, "dim_min": -10.145060, "dim_min_n": -10.145060, "dimension": -9.451913, "dimension.": -10.145060, "dimensional": -9.451913, "dimensionality": -10.145060, "dimensionality.": -10.145060, "dimensioned": -10.145060, "dimsizes": -10.145060, "dine": -9.451913, "dine.": -9.451913, "dir": -7.372472, "directly": -10.145060, "directory": -9.451913, "direkte": -9.046448, "dis": -10.145060, "disken": -9.451913, "disketter": -10.145060, "disse": -8.199150, "distinguishing": -10.145060, "distribuere": -10.145060, "distribuerte": -10.145060, "distribusjonen": -10.145060, "distribute": -8.353301, "distributed": -9.451913, "distribution": -8.065619, "dit": -9.046448, "ditt": -9.046448, "diverse": -10.145060, "do": -9.046448, "document": -10.145060, "documentation.": -9.451913, "does": -9.046448, "does.": -10.145060, "dok": -10.145060, "dokumentasjon": -10.145060, "dokumenter": -9.451913, "dokumenterer": -10.145060, "dolor": -10.145060, "download": -10.145060, "downloading": -10.145060, "drivere": -10.145060, "du": -4.919314, "dvendig": -10.145060, "dvendig.": -9.451913, "dvendige": -10.145060, "dvendigvis": -10.145060, "dw": -8.065619, "e": -6.967006, "e.g.": -9.451913, "each": -9.046448, "edit": -8.758766, "editor": -8.758766, "editoren": -8.065619, "effectively": -10.145060, "egenskap.": -10.145060, "egestas": -10.145060, "eget": -9.046448, "egne": -10.145060, "either": -8.535622, "eksakt": -9.451913, "eksempel": -7.506003, "eksempelfilen": -9.451913, "eksempelvis": -9.451913, "eksempler": -8.758766, "eksisterende": -8.758766, "eksperimentering.": -9.451913, "eksperter": -10.145060, "eksporteres": -10.145060, "eksporteringsreglene": -10.145060, "eksportforbud.": -10.145060, "ekstern": -8.065619, "eksterne": -9.451913, "eldre": -9.046448, "eleifend": -10.145060, "elektriske": -9.451913, "elektronikk": -9.451913, "elektronisk": -10.145060, "elementet": -9.451913, "elit": -10.145060, "elit.": -10.145060, "eller": -6.360871, "else": -10.145060, "en": -4.908618, "en.": -9.451913, "encoding": -9.046448, "encoding=": -9.046448, "enda": -8.758766, "enda.": -9.451913, "ende": -8.758766, "endringene": -9.451913, "endringer": -9.046448, "endringer.": -9.451913, "eneste": -9.451913, "enforcing": -10.145060, "engelsk": -9.451913, "enheter": -10.145060, "enim.": -10.145060, "enkel": -9.451913, "enn": -7.747165, "enten": -9.451913, "entirely": -10.145060, "eple": -9.451913, "epost": -10.145060, "eposten": -10.145060, "epostlesere": -10.145060, "epostlister": -10.145060, "epostmeldinger": -10.145060, "er": -4.720110, "eros": -10.145060, "erssstatt": -9.451913, "erstatning": -8.353301, "erstatningen": -9.451913, "erstatningsmodus": -9.451913, "erstatningsmodusen.": -9.451913, "erstatte": -7.506003, "erstatter": -8.353301, "erstattes": -9.451913, "est": -9.451913, "et": -6.001926, "ett": -8.758766, "etter": -6.926184, "etter.": -8.758766, "etterf": -9.451913, "etterfulgt": -8.065619, "etterlikner": -9.451913, "eu": -10.145060, "even": -10.145060, "ever": -9.046448, "everyone": -9.451913, "example": -10.145060, "exceptions": -10.145060, "excluded.": -10.145060, "excluding": -10.145060, "exclusion": -10.145060, "excuse": -10.145060, "exercise": -10.145060, "explicit": -9.451913, "f": -5.500669, "f.eks": -10.145060, "f.eks.": -9.451913, "faksmodem": -10.145060, "faksmodemer": -10.145060, "faller": -10.145060, "fames": -10.145060, "fant": -9.451913, "favorittvalgene": -9.451913, "feeeiil": -8.353301, "feiilene": -9.451913, "feil": -7.947836, "feil.": -9.451913, "feile": -9.451913, "feilen.": -8.353301, "feilene": -8.758766, "feils": -9.451913, "feite": -9.451913, "felis": -9.451913, "felis.": -10.145060, "felles": -10.145060, "femte": -9.451913, "ferd": -10.145060, "feugiat": -10.145060, "feugiat.": -10.145060, "few": -9.451913, "fikse": -9.451913, "fikset": -9.451913, "fil": -7.660154, "fil.": -8.758766, "fila": -9.451913, "file": -8.353301, "filen": -6.507474, "filen.": -7.372472, "filene": -8.353301, "filer": -8.758766, "filformater": -10.145060, "filnavn": -8.353301, "filnavnet": -8.758766, "filstatusen.": -8.758766, "filsystem": -10.145060, "filter": -10.145060, "fingrene.": -9.451913, "finne": -7.947836, "finner": -8.353301, "finnes": -8.535622, "finnes.": -10.145060, "fins": -9.451913, "fjerde": -9.451913, "fjerne": -9.451913, "flagget": -9.451913, "flaws": -10.145060, "flere": -7.947836, "fleste": -10.145060, "flesteparten": -9.451913, "flette": -10.145060, "flytt": -7.842475, "flytte": -7.660154, "flytter": -8.535622, "flyttes": -9.451913, "flyttet": -10.145060, "focusIndex": -10.145060, "focusIndex=": -10.145060, "follow.": -10.145060, "following": -9.046448, "foo": -10.145060, "for": -4.349002, "foran": -8.353301, "forandre": -7.660154, "forandrer": -8.758766, "forandres": -9.451913, "forandres.": -8.758766, "forandringene": -8.758766, "forandringene.": -9.451913, "forandringer": -8.353301, "forandringskommando": -9.451913, "forblir": -9.451913, "fordi": -10.145060, "foreg": -8.758766, "foreign": -10.145060, "forekomst": -8.758766, "forekomsten": -9.451913, "forekomster": -8.065619, "foreldede": -10.145060, "foretrukne": -9.451913, "forkaste": -9.451913, "forkaster": -9.451913, "forklart": -9.451913, "forkw": -9.451913, "form": -9.451913, "format": -8.758766, "format.": -10.145060, "formatere": -10.145060, "forsikre": -9.451913, "forskjellen": -9.451913, "forskjellig": -10.145060, "forskjellige": -9.046448, "forskjelling": -9.451913, "forst": -8.758766, "forsvinne.": -9.451913, "fortsatt": -10.145060, "fortsette": -9.451913, "found.": -10.145060, "fra": -6.679324, "fram": -9.046448, "framover": -9.451913, "framover.": -8.758766, "free": -7.747165, "freedom": -9.451913, "fremmede": -10.145060, "fri": -8.199150, "frie": -10.145060, "fringilla": -9.451913, "from": -7.947836, "full": -10.145060, "fullf": -7.842475, "fullt": -9.451913, "function": -8.199150, "fungerer": -8.758766, "funksjoner": -8.199150, "funnet.": -9.451913, "fut": -10.145060, "fyller": -9.451913, "g": -5.750611, "gaaata.": -9.451913, "gamle": -9.046448, "gammel": -8.353301, "gang": -8.065619, "gang.": -9.451913, "ganger": -8.353301, "ganger.": -8.758766, "ganske": -9.451913, "gata.": -9.451913, "generally.": -10.145060, "generous": -10.145060, "geographical": -10.145060, "get": -10.145060, "gg": -8.758766, "give": -9.451913, "given": -10.145060, "gj": -7.254688, "gjennom": -8.065619, "gjenopprette": -9.451913, "gjenv": -9.451913, "gjorde": -9.451913, "gjorde.": -9.451913, "gjort": -9.451913, "gjort.": -9.451913, "glem": -9.451913, "glemme": -9.451913, "global": -9.451913, "gnome": -10.145060, "goals": -10.145060, "god": -9.451913, "godkjenne": -9.451913, "grafikk": -10.145060, "grafikk.": -10.145060, "grafikkfiler": -10.145060, "granted": -9.451913, "graph": -9.451913, "greatest": -10.145060, "green": -10.145060, "grensesnitt": -9.451913, "grunn": -8.758766, "grunnpakka": -10.145060, "grunnsystem": -9.451913, "grupper.": -10.145060, "guarantee": -10.145060, "guided": -10.145060, "h": -6.926184, "ha": -8.353301, "habitant": -10.145060, "hadde": -8.758766, "hakeparentesen.": -9.451913, "hamradio": -10.145060, "handler": -9.451913, "har": -6.534142, "has": -9.451913, "have": -8.758766, "having": -10.145060, "he": -10.145060, "height": -9.046448, "height=": -9.451913, "hel": -8.353301, "held": -10.145060, "hele": -7.660154, "help": -7.054018, "helst": -8.758766, "helt": -7.506003, "hende": -10.145060, "henger": -10.145060, "henter": -8.758766, "hentet": -9.451913, "her": -8.758766, "her.": -9.451913, "herein.": -10.145060, "herfra.": -9.451913, "hj": -9.451913, "hjelp": -7.842475, "hjelpen": -9.451913, "hjelper": -9.046448, "hjelpesystem.": -9.451913, "hjelpesystemet.": -9.451913, "hjelpevindu.": -9.451913, "hjelpevinduet": -9.451913, "hjelpevinduet.": -8.758766, "hjemme": -8.758766, "hjkl": -8.758766, "hls": -8.758766, "hlsearch": -8.758766, "hold": -9.451913, "holder": -9.451913, "holland.org/click": -9.451913, "hoppe": -8.758766, "hoved": -10.145060, "hovedarkiv": -10.145060, "hovedbolken.": -10.145060, "how": -10.145060, "html": -9.451913, "http": -7.947836, "huske": -8.758766, "husker": -9.451913, "hva": -7.311847, "hver": -8.758766, "hvert": -9.451913, "hvilke": -9.451913, "hvilken": -9.451913, "hvis": -7.009566, "hvor": -8.353301, "hvordan": -8.353301, "i": -4.861857, "iaculis": -9.451913, "ib": -9.451913, "ic": -8.353301, "id": -7.200621, "id.": -10.145060, "id=": -8.758766, "idea": -10.145060, "if": -7.947836, "igjen": -8.065619, "igjen.": -9.451913, "ignore": -8.758766, "ignorecase": -9.451913, "ignored": -10.145060, "ignorer": -9.451913, "ignorere": -9.451913, "ignorerer": -9.451913, "ignorering": -9.451913, "ii": -9.451913, "ikke": -6.273859, "ikke.": -9.451913, "il": -9.046448, "illustrasjoner.": -9.451913, "implemented": -10.145060, "impose": -10.145060, "imposed": -10.145060, "in": -7.506003, "in/min.shtml": -10.145060, "included": -10.145060, "including": -10.145060, "incorporate": -10.145060, "incorporates": -10.145060, "incorporating": -10.145060, "incsearch": -8.758766, "independent": -10.145060, "index": -9.451913, "indirectly": -10.145060, "induce": -10.145060, "informasjon": -8.065619, "infringe": -10.145060, "infringement": -10.145060, "ingen": -9.046448, "injen": -9.451913, "inn": -6.050716, "inn.": -8.065619, "inne": -9.451913, "innebygd": -10.145060, "innebygde": -8.758766, "innebygget": -9.451913, "inneholder": -7.947836, "innf": -7.054018, "innholdet": -9.451913, "innsatt": -9.451913, "innsettingsmodus": -9.451913, "innsettingsmodus.": -8.353301, "innsettingsmodusen": -9.451913, "innsettingsmodusen.": -8.758766, "input": -8.758766, "insert": -9.451913, "insettingsmodus": -9.451913, "installasjonen.": -10.145060, "installere": -8.535622, "installerer": -9.451913, "installert": -10.145060, "installert.": -10.145060, "installing": -10.145060, "instance": -10.145060, "instead": -10.145060, "integrity": -10.145060, "intended": -8.758766, "interdum": -10.145060, "interested": -10.145060, "interfaces": -10.145060, "internettforbindelse": -10.145060, "interrupt.": -10.145060, "into": -9.046448, "intro": -9.451913, "introduced": -10.145060, "invalid": -10.145060, "ipsum": -10.145060, "is": -6.407391, "issues": -10.145060, "istedenfor": -8.758766, "it": -7.311847, "it.": -9.451913, "its": -8.758766, "j": -7.372472, "java": -10.145060, "jobba": -10.145060, "jobbe": -10.145060, "judgment": -10.145060, "justo": -9.046448, "justo.": -10.145060, "k": -7.200621, "kalkulatorer": -10.145060, "kaller": -9.451913, "kamera": -10.145060, "kan": -6.431488, "kaste": -9.451913, "katalogen": -8.758766, "katalogen.": -8.353301, "kategoriene.": -10.145060, "kde": -10.145060, "kekommando": -9.451913, "kekommandoen": -9.451913, "kene.": -10.145060, "ker": -10.145060, "kermit": -10.145060, "kestreng": -9.451913, "kestrengen": -9.451913, "ket": -9.451913, "ketekst": -8.353301, "keteksten": -9.451913, "ketreff": -9.451913, "keys.": -10.145060, "kildekode": -10.145060, "king": -9.451913, "kingen": -9.451913, "kj": -7.842475, "kjemi": -10.145060, "klassifisere": -10.145060, "klienter": -9.451913, "know": -10.145060, "knyttet": -10.145060, "koble": -10.145060, "kolon": -9.451913, "kom": -9.451913, "kombinasjonen": -9.451913, "komfortabel": -9.451913, "kommandio.": -9.451913, "kommando": -7.506003, "kommando.": -8.353301, "kommandoen": -6.886964, "kommandoen.": -7.842475, "kommandoene": -8.065619, "kommandoene.": -9.451913, "kommandoer": -7.660154, "kommandoer.": -8.065619, "kommandolinja": -9.451913, "kommandolinje.": -10.145060, "kommandolinjekommando.": -9.451913, "kommandolinjen": -8.353301, "kommandonavnet": -9.451913, "komme": -8.353301, "kommer": -9.451913, "kommunikasjonsenheter": -10.145060, "kommunisere": -10.145060, "kompatibel": -9.451913, "kompilatorer": -10.145060, "kompilerer": -9.451913, "komplett": -9.451913, "konsollmilj": -10.145060, "kopi": -8.353301, "kopier": -8.758766, "kopiere": -8.758766, "kopierer": -8.758766, "korrekt": -9.451913, "korrekt.": -9.451913, "korrekte": -9.451913, "kort": -9.451913, "kraftig": -9.451913, "kretser": -9.451913, "krever": -10.145060, "kreves": -9.451913, "kryptografi": -10.145060, "kryptografiske": -10.145060, "kun": -8.758766, "kunne": -8.535622, "kuttes": -9.451913, "kvalitet.": -10.145060, "kzryas": -9.451913, "l": -6.711073, "l.": -9.451913, "la": -8.758766, "lacinia": -10.145060, "lacus": -10.145060, "lage": -8.199150, "laget": -8.535622, "laget.": -10.145060, "lagre": -7.660154, "lagrer": -8.353301, "lagres": -10.145060, "lagret": -9.046448, "lagt": -9.451913, "langt": -9.451913, "language.": -10.145060, "lar": -7.747165, "lat": -10.145060, "later": -10.145060, "lavniv": -10.145060, "law": -10.145060, "lcairo": -10.145060, "ldf": -10.145060, "le": -9.451913, "least": -9.451913, "leg": -9.451913, "legal": -10.145060, "legg": -8.353301, "legge": -6.967006, "legger": -8.353301, "legges": -8.758766, "leket": -10.145060, "leksjon": -6.743863, "leksjon.": -8.353301, "leksjonen": -8.065619, "leksjonene": -9.451913, "leksjonene.": -9.451913, "leksjoner": -9.451913, "lengre": -9.451913, "lengst": -9.451913, "leo": -10.145060, "ler": -8.353301, "les": -8.758766, "lesbar.": -9.451913, "lese": -8.199150, "leseprogrammer": -10.145060, "leser": -8.353301, "lesing": -9.451913, "lest": -9.451913, "lete": -7.506003, "lett": -9.046448, "lettbrukt": -9.451913, "lette": -10.145060, "lettere": -9.451913, "lfreetype": -10.145060, "lgdal": -10.145060, "lge.": -9.451913, "lgende": -9.451913, "lger.": -9.451913, "lhdf": -9.451913, "li": -8.758766, "libdevel": -10.145060, "libero.": -10.145060, "library": -8.758766, "library.": -10.145060, "libs": -9.451913, "license": -8.758766, "license.": -10.145060, "licensed": -9.451913, "licensee": -9.451913, "licenses": -10.145060, "life.vim": -10.145060, "ligger": -10.145060, "lignende": -9.451913, "ligula": -10.145060, "lik": -7.372472, "like": -8.758766, "likes": -9.451913, "likhet": -9.451913, "liknende": -10.145060, "lime": -8.353301, "limer": -8.758766, "limitation": -9.046448, "limited": -10.145060, "limt": -9.451913, "line": -8.758766, "linje": -6.679324, "linje.": -7.842475, "linjen": -5.500669, "linjen.": -6.618700, "linjene": -8.065619, "linjenummeret": -8.758766, "linjenummeret.": -9.451913, "linjenumre": -9.451913, "linjeomr": -9.451913, "linjer": -8.758766, "linjer.": -9.451913, "linking": -10.145060, "linnnjen": -9.451913, "lisensen": -10.145060, "liste": -8.065619, "listet": -9.451913, "liten": -8.065619, "litt": -7.842475, "ljpeg": -10.145060, "lmfhdf": -10.145060, "lnetcdf": -10.145060, "load": -9.451913, "loads": -10.145060, "lobortis": -9.451913, "lon": -10.145060, "long": -10.145060, "ls": -7.254688, "lt": -9.451913, "lubjwr": -8.758766, "ludunits": -10.145060, "lukke": -8.758766, "lyd": -9.451913, "lydavspillere": -10.145060, "lydkomprimeringsprogram": -10.145060, "lydkort": -10.145060, "lydprosessering.": -10.145060, "lydstyring": -10.145060, "lynjxn": -9.451913, "lz": -10.145060, "m": -6.711073, "macros": -10.145060, "macros.": -9.451913, "made": -9.451913, "magnis": -10.145060, "mail": -8.758766, "make": -8.535622, "makes": -9.451913, "man": -10.145060, "mange": -7.100538, "mangler": -7.842475, "mangler.": -9.451913, "manipulere": -10.145060, "manual": -8.758766, "manually": -10.145060, "mark": -5.121180, "marked": -10.145060, "markert": -8.353301, "markert.": -9.451913, "maskinen": -10.145060, "maskinen.": -10.145060, "maskiner": -10.145060, "maskinvare": -9.451913, "maskinvareplattformer.": -10.145060, "matematikkrelaterte": -10.145060, "matematiske": -9.451913, "math": -9.451913, "matte": -10.145060, "matter": -10.145060, "max": -8.758766, "max*": -10.145060, "maxind": -10.145060, "may": -7.947836, "me": -9.451913, "me.": -8.758766, "means": -9.451913, "med": -5.391470, "meed": -9.451913, "meget": -8.758766, "melding": -9.451913, "meldingstjeneste": -10.145060, "mellom": -8.065619, "mellomrom": -9.451913, "mellomtjenere": -9.451913, "men": -7.747165, "mener": -9.046448, "mens": -8.065619, "ment": -8.535622, "mer": -7.580111, "merke": -7.842475, "merket": -6.743863, "metadata": -10.145060, "metus": -10.145060, "mi": -10.145060, "mikrokontrollere": -10.145060, "miksere": -10.145060, "milj": -9.451913, "millert": -10.145060, "min": -8.758766, "min_f": -9.451913, "mindre": -10.145060, "mindre.": -9.451913, "minimum": -9.451913, "minind": -10.145060, "minutter": -9.451913, "misrepresented": -9.451913, "missing": -10.145060, "missing.": -10.145060, "mm": -10.145060, "mnglr": -9.451913, "mobiltelefon": -10.145060, "mobiltelefoner": -10.145060, "modemer": -10.145060, "modification": -9.451913, "modifications": -10.145060, "modified": -10.145060, "modifisere": -9.451913, "modus": -8.353301, "mollis": -10.145060, "montes": -10.145060, "month": -10.145060, "month.": -10.145060, "monthly": -10.145060, "months": -10.145060, "morbi": -10.145060, "more": -9.046448, "most": -9.046448, "motsatt": -8.758766, "mulig": -8.758766, "mulige": -9.451913, "multi": -10.145060, "multiple": -10.145060, "music": -10.145060, "musique": -10.145060, "must": -8.353301, "mye": -7.947836, "mye.": -8.758766, "mysql": -10.145060, "n": -5.426561, "nI": -10.145060, "nPakker": -10.145060, "name": -8.535622, "name.length": -9.451913, "namewidth": -9.046448, "navn": -10.145060, "navnet": -7.842475, "nca": -9.451913, "ncl": -9.451913, "ndholdte": -10.145060, "ndtere": -10.145060, "ndtering": -10.145060, "ne": -10.145060, "ned": -8.353301, "nede": -8.353301, "nedenfor": -6.431488, "nedenfor.": -7.372472, "nederste": -8.758766, "nedover.": -9.451913, "nedovertasten": -9.451913, "nedovertasten.": -9.451913, "neppe": -10.145060, "neque.": -10.145060, "neste": -7.054018, "neste.": -9.451913, "nested": -10.145060, "nett": -9.451913, "nettbaserte": -10.145060, "nettlesere": -10.145060, "nettopp": -9.451913, "nettverk": -10.145060, "nettverksprotokoller": -10.145060, "nettverksrelaterte": -10.145060, "nettverkstrafikken": -10.145060, "nevner": -9.451913, "nevnt": -9.451913, "new": -8.353301, "nibh": -10.145060, "nisi": -9.451913, "nisl": -9.451913, "nisser": -10.145060, "nn": -9.451913, "no": -8.758766, "nocp": -9.451913, "noe": -7.506003, "noen": -6.967006, "nohlsearch": -9.451913, "noic": -8.758766, "nok": -8.758766, "non": -9.046448, "normalmodus": -8.758766, "normalmodus.": -8.065619, "normalmodusen": -9.451913, "normalmodusen.": -8.758766, "normalt": -10.145060, "not": -7.100538, "note": -10.145060, "noter.": -10.145060, "notice": -9.046448, "notices": -10.145060, "nouveau": -10.145060, "now": -9.451913, "nskede": -8.758766, "nsket": -8.758766, "null": -8.535622, "number": -9.046448, "number.": -10.145060, "numeric": -8.535622, "nummer": -7.506003, "nunc": -10.145060, "ny": -7.580111, "nybegynnere.": -9.451913, "nye": -9.451913, "nyere": -9.451913, "nyheter": -10.145060, "nyhetssystemet": -10.145060, "nytt": -8.758766, "nytt.": -8.353301, "nyttig": -8.353301, "nyttige": -8.758766, "o": -7.372472, "object": -10.145060, "objekter.": -10.145060, "obligations": -9.451913, "odio": -10.145060, "of": -5.840995, "ofte": -10.145060, "og": -4.698323, "ogs": -7.054018, "om": -6.926184, "omdirigere": -10.145060, "omfattende": -9.451913, "omfatter": -10.145060, "omgj": -8.758766, "omission.": -10.145060, "omr": -9.451913, "omtrent": -8.758766, "on": -8.199150, "ondes": -10.145060, "one": -9.451913, "only": -8.758766, "oog": -9.451913, "operativsystem": -8.758766, "operator": -7.506003, "operator.": -9.451913, "operatoren": -8.353301, "opere": -9.451913, "operere": -9.451913, "opp": -7.660154, "oppgave": -9.451913, "oppgaver": -9.046448, "oppmerksom": -9.451913, "oppn": -10.145060, "opprette": -10.145060, "oppringt": -10.145060, "opprinnelig": -10.145060, "oppsett": -9.451913, "oppstartsskript": -9.451913, "oppsummeringen": -8.353301, "opptakere": -10.145060, "option": -10.145060, "or": -6.967006, "ord": -7.372472, "ord.": -8.353301, "ordb": -10.145060, "ordene": -8.758766, "order": -10.145060, "ordet": -6.967006, "ordet.": -9.451913, "ordne": -9.451913, "ordner": -9.451913, "oreiller.": -10.145060, "org": -9.046448, "origin": -10.145060, "original": -8.758766, "originalen": -9.451913, "originalt.": -9.451913, "osv.": -10.145060, "other": -8.065619, "others": -10.145060, "otherwise": -10.145060, "ou": -10.145060, "our": -10.145060, "ours": -10.145060, "out.": -10.145060, "output": -10.145060, "outside": -10.145060, "ovenfor": -8.758766, "over": -7.660154, "overf": -10.145060, "oversette": -10.145060, "oversikt": -9.451913, "p": -4.986005, "pakke": -10.145060, "pakkearkivet": -10.145060, "pakkeformat": -10.145060, "pakkene": -7.947836, "pakker": -7.437010, "pakker.": -10.145060, "pakkesystemet": -9.451913, "parameter": -9.451913, "parametere.": -9.451913, "parentesen": -9.451913, "parenteser": -9.451913, "parfois": -10.145060, "particular": -10.145060, "parties": -10.145060, "partir": -10.145060, "parts": -10.145060, "parturiente": -10.145060, "pas": -9.046448, "passed": -10.145060, "passes": -10.145060, "passet": -9.451913, "paste": -9.451913, "patent": -9.046448, "patenterte": -10.145060, "patents": -9.451913, "pauvret": -10.145060, "peker": -9.451913, "pellentesque": -10.145060, "people": -10.145060, "perl": -10.145060, "permission.": -10.145060, "permit": -9.046448, "permitted": -9.451913, "pertinent": -10.145060, "pet": -9.451913, "pil": -9.451913, "piltastene": -9.451913, "placed": -10.145060, "placerat.": -10.145060, "places": -10.145060, "plainly": -10.145060, "plasser": -8.758766, "plassere": -9.046448, "plassert": -8.199150, "plater": -10.145060, "pluss": -10.145060, "pne": -7.842475, "pointer": -10.145060, "pomme": -10.145060, "porta": -10.145060, "portion": -9.451913, "porttitor.": -10.145060, "posisjon": -9.451913, "posisjonen": -8.065619, "posisjoner": -9.451913, "posisjoner.": -9.451913, "possible": -9.451913, "post": -10.145060, "posuere": -10.145060, "potato": -10.145060, "pour": -10.145060, "ppelpost.": -10.145060, "pr": -8.758766, "practices.": -10.145060, "precise": -10.145060, "present": -10.145060, "preserved.": -10.145060, "preserving": -10.145060, "print": -10.145060, "problems": -9.451913, "produsere": -10.145060, "profiles": -10.145060, "program": -7.842475, "program.": -10.145060, "programbibliotek": -10.145060, "programmene": -9.046448, "programmer": -6.648553, "programmer.": -9.451913, "programmerer": -9.451913, "programmeringen": -10.145060, "programmeringsspr": -9.451913, "programmeringsverkt": -10.145060, "programmet": -10.145060, "programs": -10.145060, "programs.": -10.145060, "programvare": -7.506003, "programvare.": -9.451913, "programvarerutiner": -10.145060, "programvareutvikling": -10.145060, "promoting": -10.145060, "property": -10.145060, "proprietary": -9.451913, "prosedyren.": -9.451913, "prosjektet": -10.145060, "protecting": -10.145060, "protection": -10.145060, "protokoller": -10.145060, "public": -9.451913, "publish": -10.145060, "published": -9.451913, "pugge.": -9.451913, "pulvinar.": -10.145060, "punkt": -7.660154, "punktene": -8.353301, "punktet": -8.758766, "punktum": -9.451913, "purpose": -9.046448, "python": -10.145060, "q": -7.506003, "q.enqueue": -10.145060, "que": -10.145060, "queries": -10.145060, "quis": -9.046448, "r": -5.382886, "radioamat": -9.451913, "range": -10.145060, "rask": -9.451913, "raskere": -9.451913, "re": -6.137727, "re.": -9.451913, "read": -9.046448, "reason": -10.145060, "reasons": -10.145060, "receive": -10.145060, "recipients": -10.145060, "recommand": -10.145060, "redigere": -9.046448, "redigere.": -9.451913, "redigeringen": -9.451913, "redistribute": -9.046448, "redistribution": -10.145060, "refers": -10.145060, "reflect": -10.145060, "refrain": -10.145060, "region": -9.046448, "region=": -9.046448, "register.": -9.451913, "rekkef": -9.451913, "reliance": -10.145060, "removed": -10.145060, "removes": -10.145060, "ren": -5.225079, "ren.": -7.372472, "rende": -7.842475, "reparere": -9.451913, "repeter": -8.758766, "repetere": -8.758766, "repeterer": -8.758766, "repeterer.": -9.451913, "requires": -10.145060, "rer": -7.311847, "rer.": -10.145060, "res": -8.758766, "res.": -9.451913, "resatt.": -9.451913, "reserved.": -10.145060, "responsible": -9.451913, "rest": -10.145060, "restart": -10.145060, "resten": -8.758766, "restricted": -9.451913, "restrictions": -10.145060, "results": -9.451913, "retained.": -10.145060, "retning": -9.451913, "retning.": -9.451913, "retningen": -9.451913, "retningslinjer": -10.145060, "rett": -8.535622, "rette": -9.451913, "rettet": -9.451913, "rettsvesenet": -10.145060, "return_val": -9.046448, "returned": -9.046448, "returnere": -8.758766, "returns": -10.145060, "reuse": -10.145060, "revised": -10.145060, "rger": -8.535622, "right": -10.145060, "rights": -9.451913, "riktig": -9.451913, "ring": -8.065619, "ring.": -9.451913, "ringen": -7.254688, "ringen.": -9.451913, "ringer.": -9.451913, "rlinjen.": -9.451913, "rm": -8.758766, "rmMonAnnCycLLLT": -10.145060, "rmMonAnnCycLLT": -8.758766, "rmMonAnnCycTLL": -10.145060, "rme": -9.451913, "rne": -9.451913, "royalty": -10.145060, "rpm": -10.145060, "rposisjonen": -9.451913, "rposisjonen.": -9.451913, "rre": -8.758766, "rst": -8.758766, "rste": -6.137727, "rt": -7.947836, "rte": -8.353301, "ruler": -9.451913, "run": -9.451913, "rundt": -8.353301, "running": -9.451913, "rx": -9.451913, "s": -6.067523, "s/deen/den/": -9.451913, "s/deen/den/g": -9.451913, "s/gammel/ny": -9.451913, "s/gammel/ny/g": -8.065619, "s/gammel/ny/gc": -8.758766, "safest": -10.145060, "sagittis": -10.145060, "same": -9.046448, "samling": -9.451913, "samme": -7.506003, "sammen": -8.353301, "sammenvevd": -9.451913, "samsvarende": -9.451913, "samsvarer.": -9.451913, "samtale": -10.145060, "sant": -9.451913, "sapien": -10.145060, "satisfy": -9.451913, "satt": -8.758766, "say": -10.145060, "saying": -10.145060, "scalar": -10.145060, "schemaLocation": -9.451913, "scope.": -10.145060, "se": -7.054018, "section": -8.353301, "sed": -10.145060, "seksjonen": -8.758766, "seksjonen.": -10.145060, "sekvenser": -10.145060, "selv": -8.535622, "selv.": -10.145060, "selve": -10.145060, "sem": -10.145060, "sende": -10.145060, "senectus": -10.145060, "ser": -8.065619, "server": -9.451913, "set": -7.506003, "setningen": -8.065619, "setningen.": -8.353301, "sett": -8.353301, "sette": -7.254688, "setter": -8.758766, "settes": -8.758766, "share": -9.451913, "sharing": -10.145060, "she": -10.145060, "should": -10.145060, "show": -9.046448, "si": -8.758766, "sikker": -7.747165, "similar": -10.145060, "simulatorer": -10.145060, "simultaneously": -10.145060, "sine": -10.145060, "siste": -8.065619, "sit": -10.145060, "sitter.": -9.451913, "size": -10.145060, "sjanse": -10.145060, "sjekk": -9.451913, "sjekke": -8.758766, "sjeldne": -10.145060, "sjette": -9.451913, "skal": -6.679324, "skall": -9.046448, "skallet": -9.451913, "skallet.": -9.451913, "skanner": -10.145060, "skikkelig.": -9.451913, "skjer": -8.758766, "skjer.": -9.451913, "skjermen": -7.842475, "skjermen.": -8.353301, "skr": -9.451913, "skrev": -9.451913, "skrevet": -7.747165, "skrifttyper": -10.145060, "skript": -10.145060, "skriptspr": -10.145060, "skriv": -6.316419, "skrivbordsmilj": -9.451913, "skrive": -6.743863, "skrivebordssystem": -10.145060, "skriveprogram": -10.145060, "skriveprogrammer": -9.046448, "skriver": -8.353301, "skriver.": -9.451913, "skrives": -9.451913, "skyld.": -10.145060, "skyldes": -10.145060, "sl": -8.353301, "slags": -10.145060, "slett": -7.580111, "slette": -6.481499, "slettede": -9.451913, "slettekommando": -9.451913, "sletteoperatoren": -8.758766, "sletteoperatoren.": -9.451913, "sletter": -8.758766, "slettes.": -8.758766, "slettet": -8.353301, "slettet.": -9.451913, "slettetasten": -9.451913, "sletting": -9.451913, "slik": -9.451913, "slike": -10.145060, "slutten": -6.407391, "slutter": -9.451913, "smaller": -10.145060, "snakke": -10.145060, "snudddde": -9.451913, "snudde": -9.451913, "so": -8.758766, "software": -7.372472, "software.": -9.451913, "sole": -10.145060, "sollicitudin": -10.145060, "som": -4.980274, "someone": -10.145060, "sometimes": -10.145060, "source": -9.451913, "sources": -9.451913, "sp": -9.451913, "specifies": -10.145060, "specify": -10.145060, "spesialisert": -10.145060, "spesialiserte": -10.145060, "spesielt": -9.451913, "spesifikk": -9.451913, "spesifisert.": -9.451913, "spill": -10.145060, "spille": -10.145060, "spirit": -10.145060, "spr": -9.046448, "src": -9.046448, "src=": -9.046448, "st": -7.947836, "stand": -8.758766, "standard.": -9.451913, "standardbibliotek": -10.145060, "start": -9.046448, "starte": -8.065619, "starten": -7.372472, "starter": -8.758766, "startes": -9.451913, "startet": -8.758766, "status": -10.145060, "stavekontroll": -10.145060, "steder.": -10.145060, "steg": -7.506003, "stegene": -8.353301, "steinen": -9.451913, "stor": -7.947836, "store": -8.758766, "store/sm": -8.065619, "stort": -9.451913, "streken": -9.451913, "stress": -10.145060, "studier": -9.451913, "styre": -9.451913, "styring": -10.145060, "subject": -9.451913, "subroutine": -10.145060, "subtracts": -10.145060, "such": -8.758766, "sunbase.org": -9.451913, "sunny": -9.451913, "supports": -10.145060, "sure": -10.145060, "sv": -10.145060, "symbolsk": -10.145060, "syne": -8.353301, "syne.": -9.451913, "syntaks": -9.451913, "system": -8.199150, "systemer": -10.145060, "systemer.": -10.145060, "systemet": -8.353301, "systemet.": -10.145060, "systemverkt": -10.145060, "t": -9.451913, "ta": -9.451913, "take": -10.145060, "tall": -8.758766, "tall.": -9.451913, "tallet": -9.451913, "tar": -8.353301, "tasten": -7.254688, "tastene": -9.451913, "tastene.": -9.451913, "taster": -8.758766, "te": -8.199150, "te.": -10.145060, "tegn": -8.353301, "tegn.": -8.758766, "tegne": -10.145060, "tegnene": -9.451913, "tegnet": -7.254688, "tegnet.": -7.842475, "tegnkoding": -10.145060, "tek": -8.758766, "tekst": -6.233037, "tekst.": -8.353301, "tekstbehandlere": -9.451913, "teksten": -6.967006, "teksten.": -7.506003, "tekstfiltere": -10.145060, "tekststreng": -9.451913, "temaer": -9.451913, "tempor": -10.145060, "temps": -10.145060, "temps.": -10.145060, "ten": -8.758766, "tene": -9.451913, "tenkt": -10.145060, "tenkt.": -10.145060, "term": -9.451913, "terms": -9.046448, "terms.": -10.145060, "terre": -10.145060, "testlinje": -9.451913, "tett": -9.451913, "tex": -10.145060, "tgz": -10.145060, "than": -9.451913, "that": -7.580111, "the": -5.444580, "them": -10.145060, "then": -9.046448, "there": -10.145060, "thermique": -10.145060, "these": -9.451913, "they": -8.758766, "third": -10.145060, "this": -6.967006, "this.": -10.145060, "thoroughly": -10.145060, "those": -9.451913, "three": -10.145060, "through": -9.046448, "thus": -10.145060, "tid": -9.451913, "tiden": -9.451913, "tidligere": -8.758766, "til": -4.411719, "til.": -9.451913, "tilbake": -7.660154, "tilbake.": -9.451913, "tilby": -10.145060, "tilbyr": -9.451913, "tilfeller": -10.145060, "tilfellet": -9.451913, "tilgjengelige": -10.145060, "tilh": -10.145060, "tillagt": -9.451913, "time": -9.451913, "time.": -9.451913, "tincidunt": -9.451913, "ting": -10.145060, "tjener": -10.145060, "tjenere": -8.535622, "tjenester": -10.145060, "tjykket": -9.451913, "tkst": -9.451913, "to": -5.775612, "together": -10.145060, "tolkeprogram": -10.145060, "tolker": -9.451913, "tomme": -9.451913, "top": -10.145060, "top=": -10.145060, "tortor": -10.145060, "translated": -10.145060, "translation": -10.145060, "tre": -8.758766, "tre.": -10.145060, "tredje": -9.451913, "tredjeparts": -9.451913, "treff": -8.758766, "trenger": -7.947836, "trengs": -10.145060, "triplestore": -10.145060, "tristique": -10.145060, "tristique.": -10.145060, "true": -10.145060, "trykk": -6.193817, "trykke": -7.149328, "trykker": -7.842475, "trykkes.": -9.451913, "trykket": -8.758766, "ts": -9.451913, "tt": -8.353301, "tteprogrammer": -10.145060, "turpis.": -10.145060, "tutor": -8.758766, "tutor.no": -9.451913, "two": -10.145060, "tyngste": -9.451913, "type": -8.199150, "type.": -10.145060, "typeof": -9.451913, "typisk": -10.145060, "typografi": -10.145060, "typografisk": -10.145060, "u": -7.254688, "ubalansert": -9.451913, "uforandret.": -9.451913, "ufri": -9.451913, "ufullstendige": -9.451913, "ulike": -9.046448, "un": -9.046448, "under": -6.967006, "under.": -9.451913, "underholdningens": -10.145060, "understands": -10.145060, "une": -10.145060, "unenforceable": -10.145060, "unikt": -9.451913, "unntak": -10.145060, "unntatt": -9.451913, "unpack": -10.145060, "up": -10.145060, "updated.": -10.145060, "usage.": -10.145060, "use": -7.947836, "used": -10.145060, "useful": -10.145060, "user": -8.758766, "users": -9.046448, "users.": -10.145060, "usikker": -9.451913, "using": -10.145060, "ut": -7.311847, "utdata": -10.145060, "utdataene": -8.353301, "utdatafiler": -10.145060, "uten": -8.535622, "utenfor": -8.758766, "utf": -7.054018, "utgaven": -9.451913, "uthev": -9.451913, "uthevede": -9.451913, "utheving.": -9.451913, "uthevingen": -9.451913, "utregninger": -10.145060, "utropstegnet": -9.451913, "utskrifter": -10.145060, "utstyr": -10.145060, "uttrykkelig": -9.451913, "uttrykket": -9.451913, "utviklerne": -9.451913, "utvikling": -9.451913, "v": -6.294913, "val": -8.758766, "valg": -8.758766, "valg.": -9.451913, "valgene": -9.451913, "valget": -7.842475, "valget.": -8.758766, "valgfritt": -9.451913, "valgte": -8.353301, "validity": -10.145060, "value": -7.947836, "value.": -10.145060, "value=": -10.145060, "values": -8.758766, "vanskelige": -10.145060, "vant": -9.451913, "var": -7.660154, "ve": -8.199150, "ved": -6.648553, "vel": -10.145060, "veldig": -9.451913, "velge": -9.451913, "velger": -9.451913, "velkjente": -9.451913, "venstre": -8.758766, "venstre.": -9.451913, "venter": -9.451913, "verbatim": -9.046448, "verden": -10.145060, "verdensveven": -10.145060, "verkt": -7.580111, "verset": -9.451913, "version": -7.747165, "versions": -9.046448, "versjonen.": -9.451913, "verte": -10.145060, "vet": -8.758766, "vi": -8.353301, "videokort": -10.145060, "videre": -7.947836, "videre.": -9.451913, "viktig": -9.451913, "vil": -6.001926, "ville": -9.451913, "vim": -7.842475, "vimrc": -7.660154, "vimtutor": -8.353301, "vindu": -9.451913, "vindu.": -9.451913, "vindusbehandlere": -10.145060, "vindussystemet": -10.145060, "virke.": -9.046448, "virker": -9.451913, "virker.": -8.758766, "vis": -9.451913, "vise": -8.353301, "viser": -8.535622, "visning": -9.451913, "vist.": -9.451913, "visuell": -8.758766, "visuelt": -8.758766, "vitae": -10.145060, "vite": -9.451913, "vitenskap": -10.145060, "vitenskapelig": -10.145060, "vitenskaplig": -10.145060, "volutpat": -10.145060, "w": -6.743863, "w3": -10.145060, "want": -8.758766, "warranty": -9.451913, "way": -9.451913, "we": -8.758766, "welcome": -10.145060, "wgh": -9.451913, "what": -8.535622, "where": -10.145060, "whether": -10.145060, "which": -8.353301, "who": -9.451913, "whole": -10.145060, "whose": -10.145060, "wide": -10.145060, "width": -9.451913, "width=": -9.451913, "will": -8.353301, "willing": -10.145060, "wish": -10.145060, "with": -9.046448, "without": -10.145060, "work": -8.535622, "would": -9.451913, "wq": -8.353301, "wrapscan": -9.451913, "write": -9.451913, "written": -9.451913, "www": -9.046448, "x": -7.149328, "x.": -8.535622, "x.x.jar": -10.145060, "xmlns": -8.535622, "xmlns=": -9.046448, "xsd": -10.145060, "xsi": -8.758766, "xxx": -8.065619, "xxx.": -8.353301, "y": -6.589712, "yank": -8.758766, "ymse": -10.145060, "you": -7.437010, "your": -8.535622, "yre": -8.353301, "yre.": -9.451913, "yvind": -9.451913, "yw": -9.451913, "zIndex": -10.145060, "zIndex=": -10.145060, "zkrevet": -9.451913, "zmodem": -10.145060, "zonal": -9.451913, "zonalAve": -9.046448, "{": -7.437010, "|": -7.506003, "}": -7.580111, "~": -1.357229, "©": -9.046448, "«": -5.365937, "»": -5.365937, "Â": -9.046448, "Å": -7.372472, "Ø": -7.660154, "à": -9.451913, "å": -3.367414, "æ": -6.213235, "è": -9.451913, "é": -7.947836, "î": -10.145060, "ø": -3.977544, "Ŧ": -5.882380, "ŧ": -5.882380, }, "Thrift": map[string]float64{ ":": -1.945910, "PullRequest": -1.945910, "string": -1.945910, "struct": -1.945910, "title": -1.945910, "{": -1.945910, "}": -1.945910, }, "Turing": map[string]float64{ "!": -8.338545, "%": -5.160491, "(": -2.160601, ")": -2.160601, "*": -8.338545, "+": -3.602346, ",": -2.364735, "-": -4.261007, "..": -5.203051, ":": -2.682553, "<": -5.565956, "=": -2.177338, ">": -5.394106, "Detect": -8.338545, "Detection": -8.338545, "Draw.ThickLine": -5.042708, "Drop": -5.853638, "Font.Draw": -5.448173, "Font.New": -6.729107, "Grid": -8.338545, "Horizontal": -8.338545, "Mouse.Where": -8.338545, "Music.PlayFile": -8.338545, "NEW": -8.338545, "Negative": -8.338545, "Part": -8.338545, "Positive": -8.338545, "PreventFor": -8.338545, "Red": -8.338545, "Slope": -7.645398, "This": -8.338545, "Verification": -8.338545, "Verticle": -8.338545, "Winner": -8.338545, "Yellow": -7.645398, "a": -8.338545, "and": -3.861208, "array": -8.338545, "backgroundMusic": -7.239933, "black": -5.119669, "body": -8.338545, "boolean": -7.645398, "button": -6.141320, "by": -8.338545, "cls": -7.645398, "colourP": -6.952251, "comment": -8.338545, "corner": -5.853638, "delay": -5.505332, "drawbox": -6.546785, "drawfillbox": -6.259103, "drawfilloval": -5.006340, "else": -4.904558, "elsif": -3.849909, "end": -3.969097, "exit": -6.392635, "factorial": -6.952251, "false": -5.565956, "font": -5.699488, "for": -4.600875, "fork": -8.338545, "forward": -8.338545, "full": -4.755026, "function": -8.338545, "game": -6.729107, "get": -8.338545, "getch": -8.338545, "hasch": -8.338545, "height": -5.853638, "i": -2.991437, "if": -3.816756, "instructionsTitle": -7.239933, "int": -6.259103, "intro": -7.239933, "intstr": -7.645398, "is": -8.338545, "loop": -6.035960, "loopFor": -3.895894, "mainMenu": -6.952251, "mousewhere": -8.338545, "n": -6.141320, "now": -5.853638, "of": -8.338545, "on": -5.853638, "pauseProgram": -6.952251, "proc": -6.546785, "process": -8.338545, "put": -7.239933, "rangeX": -5.080448, "rangeY": -7.645398, "real": -8.338545, "reply": -7.645398, "result": -7.645398, "right": -5.853638, "samePlayer": -5.448173, "scoreR": -5.080448, "scoreRS": -7.239933, "scoreY": -5.080448, "scoreYS": -7.239933, "setscreen": -7.239933, "shouldPlay": -7.239933, "string": -6.952251, "subtitle": -6.729107, "then": -3.433270, "title": -6.952251, "true": -4.674983, "var": -5.773596, "verifies": -5.853638, "when": -6.729107, "win": -5.042708, "winner": -7.239933, "x": -2.582803, "xValue": -6.952251, "yValue": -6.259103, "yellow": -6.392635, }, "Turtle": map[string]float64{ ",": -2.329984, "-": -2.677630, ".": -3.610918, "/": -5.374507, "//d": -3.123215, "//example.org/stuff/": -7.166266, "//id.loc.gov/vocabulary/iso": -7.166266, "//purl.org/dc/elements/": -7.166266, "//viaf.org/viaf/": -7.166266, "//www.filmportal.de/person/": -7.166266, "//www.w": -5.779972, "//xmlns.com/foaf/": -7.166266, "/XMLSchema#": -7.166266, "/ger": -7.166266, "/owl#": -7.166266, ":": -1.790988, ";": -2.991879, "<": -2.961573, "<http://d-nb.info/standards/elementset/gnd#>": -7.166266, "<http://d-nb.info/standards/elementset/gnd#Pseudonym>": -7.166266, "<http://d-nb.info/standards/vocab/gnd/Gender#male>": -7.166266, "<http://d-nb.info/standards/vocab/gnd/geographic-area-code#XA-DE>": -7.166266, "<http://dbpedia.org/resource/Bertolt_Brecht>": -7.166266, "<http://de.wikipedia.org/wiki/Bertolt_Brecht>": -7.166266, "<http://purl.org/net/dajobe/>": -7.166266, ">": -2.961573, "@prefix": -5.220356, "A": -7.166266, "AB": -7.166266, "B": -7.166266, "BF": -7.166266, "D": -6.473119, "E": -7.166266, "X": -6.473119, "[": -3.295065, "]": -3.295065, "^": -5.779972, "a": -7.166266, "date": -6.473119, "dateOfBirth": -7.166266, "dateOfDeath": -7.166266, "dc": -6.473119, "editor": -7.166266, "ex": -5.779972, "familialRelationship": -7.166266, "foaf": -6.473119, "forename": -3.405066, "fullname": -7.166266, "gender": -7.166266, "geographicAreaCode": -7.166266, "gndIdentifier": -7.166266, "gndSubjectCategory": -7.166266, "gndo": -2.260991, "grammar": -7.166266, "homePage": -7.166266, "http": -2.961573, "languageCode": -7.166266, "nb.info/gnd/": -3.177282, "nb.info/standards/vocab/gnd/gnd": -6.067654, "ns#": -7.166266, "oldAuthorityNumber": -7.166266, "org/": -6.067654, "org/TR/rdf": -7.166266, "owl": -6.473119, "p": -6.067654, "page": -7.166266, "personalName": -5.779972, "placeOfBirth": -7.166266, "placeOfDeath": -7.166266, "placeOfExile": -7.166266, "playedInstrument": -7.166266, "preferredNameEntityForThePerson": -7.166266, "preferredNameForThePerson": -4.393677, "preferredNameForThePlaceOrGeographicName": -5.779972, "preferredNameForTheSubjectHeading": -5.220356, "professionOrOccupation": -7.166266, "rdf": -6.473119, "sameAs": -7.166266, "sc#": -6.067654, "surname": -3.405066, "syntax": -6.473119, "title": -7.166266, "variantNameEntityForThePerson": -7.166266, "variantNameForThePerson": -7.166266, "xsd": -6.067654, }, "Type Language": map[string]float64{ "!": -5.794654, "#": -6.654855, "#a": -8.359603, "#b": -7.954138, "#cf": -9.052750, "#dda": -9.052750, "#dea": -9.052750, "#e": -9.052750, "(": -7.666456, ")": -7.666456, "+": -8.359603, "-": -5.833875, "/////////////////////////////": -6.973309, "//gzip_packed#": -9.052750, "//invokeAfterMsg#cb": -9.052750, "//invokeAfterMsgs#": -9.052750, "//invokeWithLayer": -6.162379, "//invokeWithLayer#da": -9.052750, "//message": -9.052750, "//msg_container#": -9.052750, "//msg_copy#e": -9.052750, "//rpc_result#f": -9.052750, "//vector#": -9.052750, ":": -1.838246, ";": -2.462449, "<": -9.052750, "<Authorization>": -9.052750, "<BotCommand>": -9.052750, "<BotInfo>": -8.359603, "<BotInlineResult>": -9.052750, "<CdnPublicKey>": -9.052750, "<ChannelParticipant>": -9.052750, "<Chat>": -6.162379, "<ChatParticipant>": -9.052750, "<Contact>": -9.052750, "<ContactBlocked>": -8.359603, "<ContactStatus>": -9.052750, "<DcOption>": -8.359603, "<Dialog>": -7.954138, "<DisabledFeature>": -9.052750, "<Document>": -7.106840, "<DocumentAttribute>": -7.443313, "<EncryptedMessage>": -8.359603, "<FoundGif>": -9.052750, "<HighScore>": -9.052750, "<ImportedContact>": -9.052750, "<InputAppEvent>": -9.052750, "<InputBotInlineResult>": -9.052750, "<InputChannel>": -9.052750, "<InputContact>": -9.052750, "<InputDocument>": -7.954138, "<InputPeer>": -8.359603, "<InputPhoto>": -9.052750, "<InputPrivacyRule>": -9.052750, "<InputUser>": -7.260991, "<KeyboardButton>": -9.052750, "<KeyboardButtonRow>": -8.359603, "<LabeledPrice>": -8.359603, "<Message>": -6.750165, "<MessageEntity>": -6.567844, "<MessageRange>": -9.052750, "<PageBlock>": -7.443313, "<Peer>": -8.359603, "<PhoneConnection>": -9.052750, "<Photo>": -7.666456, "<PhotoSize>": -8.359603, "<PrivacyRule>": -8.359603, "<ReceivedNotifyMessage>": -9.052750, "<RichText>": -8.359603, "<ShippingOption>": -8.359603, "<StickerPack>": -9.052750, "<StickerSet>": -9.052750, "<StickerSetCovered>": -7.666456, "<TopPeer>": -9.052750, "<TopPeerCategoryPeers>": -9.052750, "<Update>": -7.443313, "<User>": -5.587015, "<WallPaper>": -9.052750, "<alpha>": -7.443313, "<future_salt>": -9.052750, "<int>": -6.057018, "<long>": -6.219537, "<message>": -9.052750, "<string>": -9.052750, "=": -2.462449, ">": -9.052750, "?": -7.666456, "AccountDaysTTL": -7.954138, "Authorization": -9.052750, "BadMsgNotification": -8.359603, "Bool": -4.804255, "BotCommand": -9.052750, "BotInfo": -9.052750, "CdnConfig": -8.359603, "CdnPublicKey": -9.052750, "ChannelMessagesFilter": -9.052750, "ChannelParticipant": -7.106840, "ChannelParticipantRole": -7.666456, "ChannelParticipantsFilter": -7.443313, "Chat": -7.666456, "ChatFull": -8.359603, "ChatInvite": -8.359603, "ChatParticipant": -7.954138, "ChatParticipants": -7.954138, "ChatPhoto": -8.359603, "Client_DH_Inner_Data": -9.052750, "Config": -9.052750, "Contact": -9.052750, "ContactBlocked": -9.052750, "ContactLink": -6.973309, "ContactStatus": -9.052750, "CoupleInt": -9.052750, "CoupleStr": -9.052750, "DataJSON": -6.973309, "DestroyAuthKeyRes": -7.666456, "DestroySessionRes": -7.954138, "DisabledFeature": -9.052750, "Document": -7.260991, "DocumentAttribute": -7.666456, "Double": -7.666456, "DraftMessage": -8.359603, "EncryptedChat": -6.973309, "EncryptedFile": -7.666456, "EncryptedMessage": -7.954138, "Error": -9.052750, "ExportedChatInvite": -7.443313, "ExportedMessageLink": -8.359603, "FileLocation": -6.973309, "FoundGif": -8.359603, "FutureSalt": -9.052750, "FutureSalts": -8.359603, "Game": -9.052750, "GeoPoint": -7.666456, "Group": -8.359603, "HighScore": -9.052750, "HttpWait": -9.052750, "ImportedContact": -9.052750, "InlineBotSwitchPM": -9.052750, "InputAppEvent": -9.052750, "InputBotInlineMessage": -8.359603, "InputBotInlineMessageID": -8.359603, "InputBotInlineResult": -8.359603, "InputChannel": -5.833875, "InputChatPhoto": -7.443313, "InputContact": -9.052750, "InputDocument": -7.443313, "InputEncryptedChat": -6.973309, "InputEncryptedFile": -7.443313, "InputFile": -7.666456, "InputFileLocation": -7.666456, "InputGame": -7.954138, "InputGeoPoint": -7.666456, "InputMedia": -6.750165, "InputNotifyPeer": -7.260991, "InputPaymentCredentials": -9.052750, "InputPeer": -6.057018, "InputPeerNotifyEvents": -8.359603, "InputPeerNotifySettings": -9.052750, "InputPhoneCall": -7.106840, "InputPhoto": -7.106840, "InputPrivacyKey": -7.443313, "InputPrivacyRule": -7.260991, "InputStickerSet": -7.260991, "InputStickeredMedia": -7.954138, "InputUser": -5.874697, "InputWebDocument": -9.052750, "InputWebFileLocation": -8.359603, "Int": -7.106840, "IntHash": -9.052750, "IntSortedHash": -9.052750, "KeyboardButton": -7.106840, "KeyboardButtonRow": -9.052750, "LabeledPrice": -9.052750, "Long": -9.052750, "MaskCoords": -9.052750, "Message": -7.106840, "MessageAction": -6.344700, "MessageContainer": -9.052750, "MessageCopy": -9.052750, "MessageEntity": -6.487801, "MessageMedia": -6.750165, "MessageRange": -9.052750, "MessagesFilter": -6.487801, "MsgDetailedInfo": -8.359603, "MsgResendReq": -9.052750, "MsgsAck": -9.052750, "MsgsAllInfo": -9.052750, "MsgsStateInfo": -9.052750, "MsgsStateReq": -9.052750, "NearestDc": -8.359603, "NewSession": -9.052750, "NotifyPeer": -7.443313, "Null": -8.359603, "Object": -6.973309, "P_Q_inner_data": -9.052750, "Page": -8.359603, "PageBlock": -6.008228, "Pair": -9.052750, "PaymentCharge": -9.052750, "PaymentSavedCredentials": -9.052750, "Peer": -6.855526, "PeerNotifyEvents": -8.359603, "PeerNotifySettings": -7.666456, "PeerSettings": -9.052750, "PhoneCall": -7.260991, "PhoneCallDiscardReason": -7.443313, "PhoneCallProtocol": -7.260991, "PhoneConnection": -8.359603, "Photo": -7.260991, "PhotoSize": -7.666456, "Pong": -7.954138, "PostAddress": -8.359603, "PrivacyKey": -7.666456, "PrivacyRule": -7.260991, "ReceivedNotifyMessage": -9.052750, "ReplyMarkup": -9.052750, "ReportReason": -7.443313, "ResPQ": -8.359603, "RichText": -5.556243, "RpcDropAnswer": -7.666456, "RpcError": -9.052750, "RpcResult": -9.052750, "SendMessageAction": -6.280162, "Server_DH_Params": -7.954138, "Server_DH_inner_data": -9.052750, "Set_client_DH_params_answer": -7.666456, "ShippingOption": -9.052750, "StickerPack": -9.052750, "StickerSet": -7.954138, "StickerSetCovered": -8.359603, "StrHash": -9.052750, "StrSortedHash": -9.052750, "String": -9.052750, "TopPeer": -9.052750, "TopPeerCategory": -7.106840, "TopPeerCategoryPeers": -9.052750, "Triple": -9.052750, "True": -9.052750, "Type": -6.413693, "Update": -5.120925, "Updates": -5.685455, "User": -6.750165, "UserFull": -9.052750, "UserProfilePhoto": -7.666456, "UserStatus": -6.973309, "Vector": -3.996505, "WallPaper": -8.359603, "WebDocument": -9.052750, "WebPage": -7.106840, "X": -5.009699, "_checksum": -8.359603, "`": -7.260991, "a": -3.977577, "aa": -6.750165, "aadf": -9.052750, "ab": -7.443313, "abb": -9.052750, "abc": -8.359603, "abd": -9.052750, "abde": -9.052750, "abe": -9.052750, "about": -9.052750, "ac": -7.666456, "acbd": -9.052750, "acc": -9.052750, "access_hash": -5.874697, "account.Authorizations": -8.359603, "account.Password": -7.954138, "account.PasswordInputSettings": -9.052750, "account.PasswordSettings": -8.359603, "account.PrivacyRules": -7.954138, "account.TmpPassword": -8.359603, "account.authorizations#": -9.052750, "account.changePhone#": -9.052750, "account.checkUsername#": -9.052750, "account.confirmPhone#": -9.052750, "account.deleteAccount#": -9.052750, "account.getAccountTTL#": -9.052750, "account.getAuthorizations#e": -9.052750, "account.getNotifySettings#": -9.052750, "account.getPassword#": -9.052750, "account.getPasswordSettings#bc": -9.052750, "account.getPrivacy#dadbc": -9.052750, "account.getTmpPassword#": -9.052750, "account.getWallPapers#c": -9.052750, "account.noPassword#": -9.052750, "account.password#": -9.052750, "account.passwordInputSettings#": -9.052750, "account.passwordSettings#b": -9.052750, "account.privacyRules#": -9.052750, "account.registerDevice#": -9.052750, "account.reportPeer#ae": -9.052750, "account.resetAuthorization#df": -9.052750, "account.resetNotifySettings#db": -9.052750, "account.sendChangePhoneCode#": -9.052750, "account.sendConfirmPhoneCode#": -9.052750, "account.setAccountTTL#": -9.052750, "account.setPrivacy#c": -9.052750, "account.tmpPassword#db": -9.052750, "account.unregisterDevice#": -9.052750, "account.updateDeviceLocked#": -9.052750, "account.updateNotifySettings#": -9.052750, "account.updatePasswordSettings#fa": -9.052750, "account.updateProfile#": -9.052750, "account.updateStatus#": -9.052750, "account.updateUsername#": -9.052750, "accountDaysTTL#b": -9.052750, "acda": -9.052750, "ace": -9.052750, "action": -7.954138, "ad": -6.973309, "adaef": -9.052750, "adc": -9.052750, "add": -9.052750, "add_offset": -9.052750, "address": -8.359603, "admin_id": -7.260991, "ae": -7.260991, "aea": -9.052750, "aec": -8.359603, "aef": -8.359603, "af": -8.359603, "afd": -9.052750, "afdf": -9.052750, "afe": -9.052750, "aff": -9.052750, "affb": -9.052750, "age": -9.052750, "alpha": -6.750165, "alternative_connections": -9.052750, "amount": -9.052750, "answer_msg_id": -8.359603, "api_hash": -9.052750, "api_id": -7.954138, "app_name": -9.052750, "app_version": -8.359603, "archived": -9.052750, "attributes": -7.954138, "auth.Authorization": -7.260991, "auth.CheckedPhone": -8.359603, "auth.CodeType": -7.954138, "auth.ExportedAuthorization": -8.359603, "auth.PasswordRecovery": -8.359603, "auth.SentCode": -9.052750, "auth.SentCodeType": -7.666456, "auth.authorization#cd": -9.052750, "auth.bindTempAuthKey#cdd": -9.052750, "auth.cancelCode#": -9.052750, "auth.checkPassword#a": -9.052750, "auth.checkPhone#": -9.052750, "auth.checkedPhone#": -9.052750, "auth.codeTypeCall#": -9.052750, "auth.codeTypeFlashCall#": -9.052750, "auth.codeTypeSms#": -9.052750, "auth.dropTempAuthKeys#": -9.052750, "auth.exportAuthorization#e": -9.052750, "auth.exportedAuthorization#df": -9.052750, "auth.importAuthorization#e": -9.052750, "auth.importBotAuthorization#": -9.052750, "auth.logOut#": -9.052750, "auth.passwordRecovery#": -9.052750, "auth.recoverPassword#": -9.052750, "auth.requestPasswordRecovery#d": -9.052750, "auth.resendCode#": -9.052750, "auth.resetAuthorizations#": -9.052750, "auth.sendCode#": -9.052750, "auth.sendInvites#": -9.052750, "auth.sentCode#": -9.052750, "auth.sentCodeTypeApp#": -9.052750, "auth.sentCodeTypeCall#": -9.052750, "auth.sentCodeTypeFlashCall#ab": -9.052750, "auth.sentCodeTypeSms#c": -9.052750, "auth.signIn#bcd": -9.052750, "auth.signUp#": -9.052750, "author": -8.359603, "author_photo_id": -9.052750, "authorization#": -9.052750, "authorizations": -9.052750, "b": -4.069144, "ba": -6.855526, "bab": -9.052750, "bac": -9.052750, "bad_msg_id": -8.359603, "bad_msg_notification#a": -9.052750, "bad_msg_seqno": -8.359603, "bad_server_salt#edab": -9.052750, "bae": -9.052750, "baec": -9.052750, "bb": -6.413693, "bba": -9.052750, "bbb": -8.359603, "bbe": -9.052750, "bc": -6.567844, "bcbd": -9.052750, "bcbf": -9.052750, "bcc": -8.359603, "bd": -6.855526, "bda": -9.052750, "bdb": -8.359603, "bdd": -9.052750, "be": -6.973309, "bebaeb": -9.052750, "bed": -9.052750, "bef": -9.052750, "bf": -6.567844, "bfb": -8.359603, "bfbd": -9.052750, "bfd": -8.359603, "bfe": -9.052750, "bfffcd": -9.052750, "bg_color": -9.052750, "blocked": -7.954138, "blocks": -7.954138, "body": -9.052750, "boolFalse#bc": -9.052750, "boolTrue#": -9.052750, "bot": -9.052750, "botCommand#c": -9.052750, "botInfo#": -9.052750, "botInlineMediaResult#": -9.052750, "botInlineMessageMediaAuto#a": -9.052750, "botInlineMessageMediaContact#": -9.052750, "botInlineMessageMediaGeo#": -9.052750, "botInlineMessageMediaVenue#": -9.052750, "botInlineMessageText#": -9.052750, "botInlineResult#": -9.052750, "bot_auth_token": -9.052750, "bot_id": -9.052750, "bot_info": -9.052750, "bots.answerWebhookJSONQuery#e": -9.052750, "bots.sendCustomRequest#aa": -9.052750, "buttons": -9.052750, "bytes": -4.941877, "c": -3.876601, "ca": -6.855526, "caaeb": -9.052750, "cacb": -9.052750, "cae": -9.052750, "caf": -9.052750, "caption": -6.567844, "categories": -9.052750, "category": -8.359603, "cb": -6.654855, "cba": -9.052750, "cbbe": -9.052750, "cbc": -9.052750, "cc": -7.106840, "ccba": -9.052750, "ccefb": -9.052750, "ccf": -9.052750, "cd": -6.855526, "cdc": -9.052750, "cdd": -9.052750, "cdf": -8.359603, "cdnConfig#": -9.052750, "cdnPublicKey#c": -9.052750, "ce": -6.973309, "cea": -9.052750, "cec": -9.052750, "cef": -9.052750, "cf": -7.260991, "cfa": -9.052750, "cfac": -9.052750, "cfb": -9.052750, "cfcd": -9.052750, "channel": -5.874697, "channel#a": -9.052750, "channelForbidden#": -9.052750, "channelFull#c": -9.052750, "channelMessagesFilter#cd": -9.052750, "channelMessagesFilterEmpty#": -9.052750, "channelParticipant#": -9.052750, "channelParticipantCreator#e": -9.052750, "channelParticipantEditor#": -9.052750, "channelParticipantKicked#": -9.052750, "channelParticipantModerator#": -9.052750, "channelParticipantSelf#a": -9.052750, "channelParticipantsAdmins#b": -9.052750, "channelParticipantsBots#b": -9.052750, "channelParticipantsKicked#": -9.052750, "channelParticipantsRecent#de": -9.052750, "channelRoleEditor#": -9.052750, "channelRoleEmpty#b": -9.052750, "channelRoleModerator#": -9.052750, "channel_id": -6.654855, "channels.ChannelParticipant": -8.359603, "channels.ChannelParticipants": -8.359603, "channels.channelParticipant#d": -9.052750, "channels.channelParticipants#f": -9.052750, "channels.checkUsername#": -9.052750, "channels.createChannel#f": -9.052750, "channels.deleteChannel#c": -9.052750, "channels.deleteMessages#": -9.052750, "channels.deleteUserHistory#d": -9.052750, "channels.editAbout#": -9.052750, "channels.editAdmin#eb": -9.052750, "channels.editPhoto#f": -9.052750, "channels.editTitle#": -9.052750, "channels.exportInvite#c": -9.052750, "channels.exportMessageLink#c": -9.052750, "channels.getAdminedPublicChannels#": -9.052750, "channels.getChannels#a": -9.052750, "channels.getFullChannel#": -9.052750, "channels.getMessages#": -9.052750, "channels.getParticipant#": -9.052750, "channels.getParticipants#": -9.052750, "channels.inviteToChannel#": -9.052750, "channels.joinChannel#": -9.052750, "channels.kickFromChannel#a": -9.052750, "channels.leaveChannel#f": -9.052750, "channels.readHistory#cc": -9.052750, "channels.reportSpam#fe": -9.052750, "channels.toggleInvites#": -9.052750, "channels.toggleSignatures#": -9.052750, "channels.updatePinnedMessage#a": -9.052750, "channels.updateUsername#": -9.052750, "chat": -8.359603, "chat#d": -9.052750, "chatEmpty#": -9.052750, "chatForbidden#": -9.052750, "chatFull#": -9.052750, "chatInvite#db": -9.052750, "chatInviteAlready#": -9.052750, "chatInviteEmpty#": -9.052750, "chatInviteExported#fc": -9.052750, "chatParticipant#c": -9.052750, "chatParticipantAdmin#e": -9.052750, "chatParticipantCreator#da": -9.052750, "chatParticipants#": -9.052750, "chatParticipantsForbidden#fc": -9.052750, "chatPhoto#": -9.052750, "chatPhotoEmpty#": -9.052750, "chat_id": -5.874697, "chat_photo": -9.052750, "chats": -6.344700, "city": -8.359603, "client_DH_inner_data#": -9.052750, "client_id": -8.359603, "code": -8.359603, "color": -8.359603, "command": -9.052750, "commands": -9.052750, "comment": -9.052750, "config#cb": -9.052750, "connection": -9.052750, "connection_id": -9.052750, "contact#f": -9.052750, "contactBlocked#": -9.052750, "contactLinkContact#d": -9.052750, "contactLinkHasPhone#": -9.052750, "contactLinkNone#feedd": -9.052750, "contactLinkUnknown#": -9.052750, "contactStatus#d": -9.052750, "contacts": -8.359603, "contacts.Blocked": -7.954138, "contacts.Contacts": -7.954138, "contacts.Found": -8.359603, "contacts.ImportedContacts": -8.359603, "contacts.Link": -8.359603, "contacts.ResolvedPeer": -8.359603, "contacts.TopPeers": -8.359603, "contacts.block#": -9.052750, "contacts.blocked#": -9.052750, "contacts.blockedSlice#": -9.052750, "contacts.contacts#": -9.052750, "contacts.contactsNotModified#b": -9.052750, "contacts.deleteContact#": -9.052750, "contacts.deleteContacts#": -9.052750, "contacts.exportCard#": -9.052750, "contacts.found#": -9.052750, "contacts.getBlocked#f": -9.052750, "contacts.getContacts#": -9.052750, "contacts.getStatuses#c": -9.052750, "contacts.getTopPeers#d": -9.052750, "contacts.importCard#": -9.052750, "contacts.importContacts#da": -9.052750, "contacts.importedContacts#ad": -9.052750, "contacts.link#": -9.052750, "contacts.resetTopPeerRating#": -9.052750, "contacts.resolveUsername#f": -9.052750, "contacts.resolvedPeer#": -9.052750, "contacts.search#": -9.052750, "contacts.topPeers#": -9.052750, "contacts.topPeersNotModified#de": -9.052750, "contacts.unblock#e": -9.052750, "content_type": -9.052750, "content_url": -9.052750, "contest.saveDeveloperInfo#": -9.052750, "count": -6.973309, "country": -8.359603, "country_iso": -9.052750, "coupleInt": -8.359603, "coupleStr": -8.359603, "cover": -8.359603, "covers": -9.052750, "critical": -9.052750, "currency": -9.052750, "current_password_hash": -8.359603, "current_salt": -9.052750, "custom_method": -9.052750, "d": -3.887964, "da": -7.666456, "dabc": -9.052750, "dacca": -9.052750, "dae": -9.052750, "daf": -8.359603, "data": -6.855526, "dataJSON#": -9.052750, "date": -5.618763, "date_active": -9.052750, "date_created": -9.052750, "days": -9.052750, "db": -7.260991, "dba": -9.052750, "dbb": -8.359603, "dbc": -9.052750, "dbcab": -9.052750, "dc": -6.973309, "dcOption#": -9.052750, "dc_id": -6.973309, "dc_options": -9.052750, "dca": -7.954138, "dcd": -9.052750, "dd": -6.654855, "ddcb": -9.052750, "dde": -9.052750, "de": -6.750165, "deb": -7.954138, "debug": -9.052750, "dec": -8.359603, "decd": -9.052750, "ded": -7.666456, "dee": -8.359603, "description": -7.954138, "destroy_auth_key#d": -9.052750, "destroy_auth_key_fail#ea": -9.052750, "destroy_auth_key_none#": -9.052750, "destroy_auth_key_ok#f": -9.052750, "destroy_session#e": -9.052750, "destroy_session_none#": -9.052750, "destroy_session_ok#e": -9.052750, "device_model": -8.359603, "df": -7.260991, "dfa": -9.052750, "dfb": -9.052750, "dh_gen_fail#a": -9.052750, "dh_gen_ok#": -9.052750, "dh_gen_retry#": -9.052750, "dh_prime": -9.052750, "dialog#": -9.052750, "dialogs": -7.954138, "disabledFeature#ae": -9.052750, "disconnect_delay": -9.052750, "document": -8.359603, "document#": -9.052750, "documentAttributeAnimated#": -9.052750, "documentAttributeAudio#": -9.052750, "documentAttributeFilename#": -9.052750, "documentAttributeHasStickers#": -9.052750, "documentAttributeImageSize#": -9.052750, "documentAttributeSticker#": -9.052750, "documentAttributeVideo#ef": -9.052750, "documentEmpty#": -9.052750, "documents": -8.359603, "double": -6.750165, "draft": -9.052750, "draftMessage#fd": -9.052750, "draftMessageEmpty#ba": -9.052750, "duration": -9.052750, "e": -3.940763, "ea": -6.750165, "eaae": -9.052750, "eab": -9.052750, "eaba": -9.052750, "eadb": -9.052750, "eaee": -9.052750, "eb": -8.359603, "ebac": -9.052750, "ebbc": -9.052750, "ebc": -9.052750, "ec": -6.855526, "ecb": -9.052750, "ecc": -8.359603, "ecd": -9.052750, "ece": -9.052750, "ed": -7.106840, "edb": -8.359603, "edd": -8.359603, "eddf": -9.052750, "ede": -9.052750, "ee": -7.666456, "ef": -6.973309, "efe": -8.359603, "eff": -9.052750, "email": -8.359603, "email_pattern": -9.052750, "email_unconfirmed_pattern": -8.359603, "emoticon": -9.052750, "enabled": -7.666456, "encryptedChat#fa": -9.052750, "encryptedChatDiscarded#": -9.052750, "encryptedChatEmpty#ab": -9.052750, "encryptedChatRequested#c": -9.052750, "encryptedChatWaiting#": -9.052750, "encryptedFile#": -9.052750, "encryptedFileEmpty#c": -9.052750, "encryptedMessage#ed": -9.052750, "encryptedMessageService#": -9.052750, "encrypted_answer": -9.052750, "encrypted_data": -8.359603, "encrypted_message": -9.052750, "encryption_iv": -9.052750, "encryption_key": -9.052750, "error#c": -9.052750, "error_code": -7.954138, "error_message": -9.052750, "events": -9.052750, "except_auth_keys": -9.052750, "except_ids": -9.052750, "expires": -9.052750, "expires_at": -9.052750, "export_card": -9.052750, "exportedMessageLink#": -9.052750, "exported_invite": -9.052750, "feature": -9.052750, "file": -7.443313, "fileLocation#": -9.052750, "fileLocationUnavailable#": -9.052750, "file_id": -8.359603, "file_name": -9.052750, "file_part": -8.359603, "file_token": -7.954138, "file_total_parts": -9.052750, "file_type": -9.052750, "filter": -9.052750, "first_msg_id": -9.052750, "first_name": -7.260991, "flags": -4.192938, "foreign_link": -8.359603, "foundGif#": -9.052750, "foundGifCached#": -9.052750, "full_chat": -9.052750, "functions": -7.666456, "future_salt#": -9.052750, "future_salts#ae": -9.052750, "fwd_limit": -9.052750, "g": -8.359603, "g_a": -7.666456, "g_a_hash": -8.359603, "g_a_or_b": -8.359603, "g_b": -7.666456, "game": -9.052750, "game#bdf": -9.052750, "game_id": -9.052750, "gamma": -7.954138, "geo": -8.359603, "geoPoint#": -9.052750, "geoPointEmpty#": -9.052750, "geo_point": -8.359603, "getUser#b": -9.052750, "getUsers#": -9.052750, "get_future_salts#b": -9.052750, "gifs": -9.052750, "group": -9.052750, "h": -7.666456, "has_recovery": -9.052750, "hash": -6.344700, "help.AppUpdate": -7.954138, "help.InviteText": -8.359603, "help.Support": -8.359603, "help.TermsOfService": -8.359603, "help.appUpdate#": -9.052750, "help.getAppChangelog#": -9.052750, "help.getAppUpdate#ae": -9.052750, "help.getCdnConfig#": -9.052750, "help.getConfig#c": -9.052750, "help.getInviteText#": -9.052750, "help.getNearestDc#": -9.052750, "help.getSupport#": -9.052750, "help.getTermsOfService#": -9.052750, "help.inviteText#": -9.052750, "help.noAppUpdate#c": -9.052750, "help.saveAppLog#": -9.052750, "help.setBotUpdatesStatus#ec": -9.052750, "help.support#": -9.052750, "help.termsOfService#f": -9.052750, "highScore#": -9.052750, "hint": -9.052750, "http_wait#": -9.052750, "id": -4.658301, "imported": -9.052750, "importedContact#d": -9.052750, "increment": -9.052750, "info": -8.359603, "initConnection#": -9.052750, "inlineBotSwitchPM#": -9.052750, "inputAppEvent#": -9.052750, "inputBotInlineMessageGame#": -9.052750, "inputBotInlineMessageID#": -9.052750, "inputBotInlineMessageMediaAuto#": -9.052750, "inputBotInlineMessageMediaContact#": -9.052750, "inputBotInlineMessageMediaGeo#f": -9.052750, "inputBotInlineMessageMediaVenue#aaafadc": -9.052750, "inputBotInlineMessageText#": -9.052750, "inputBotInlineResult#": -9.052750, "inputBotInlineResultDocument#fff": -9.052750, "inputBotInlineResultGame#": -9.052750, "inputBotInlineResultPhoto#a": -9.052750, "inputChannel#afeb": -9.052750, "inputChannelEmpty#ee": -9.052750, "inputChatPhoto#": -9.052750, "inputChatPhotoEmpty#": -9.052750, "inputChatUploadedPhoto#": -9.052750, "inputDocument#": -9.052750, "inputDocumentEmpty#": -9.052750, "inputDocumentFileLocation#": -9.052750, "inputEncryptedChat#f": -9.052750, "inputEncryptedFile#": -9.052750, "inputEncryptedFileBigUploaded#": -9.052750, "inputEncryptedFileEmpty#": -9.052750, "inputEncryptedFileLocation#f": -9.052750, "inputEncryptedFileUploaded#": -9.052750, "inputFile#f": -9.052750, "inputFileBig#fa": -9.052750, "inputFileLocation#": -9.052750, "inputGameID#": -9.052750, "inputGameShortName#c": -9.052750, "inputGeoPoint#f": -9.052750, "inputGeoPointEmpty#e": -9.052750, "inputMediaContact#a": -9.052750, "inputMediaDocument#": -9.052750, "inputMediaDocumentExternal#e": -9.052750, "inputMediaEmpty#": -9.052750, "inputMediaGame#d": -9.052750, "inputMediaGeoPoint#f": -9.052750, "inputMediaGifExternal#": -9.052750, "inputMediaInvoice#": -9.052750, "inputMediaPhoto#e": -9.052750, "inputMediaPhotoExternal#b": -9.052750, "inputMediaUploadedDocument#d": -9.052750, "inputMediaUploadedPhoto#": -9.052750, "inputMediaUploadedThumbDocument#": -9.052750, "inputMediaVenue#": -9.052750, "inputMessageEntityMentionName#": -9.052750, "inputMessagesFilterChatPhotos#": -9.052750, "inputMessagesFilterDocument#": -9.052750, "inputMessagesFilterEmpty#": -9.052750, "inputMessagesFilterGif#ffc": -9.052750, "inputMessagesFilterMusic#": -9.052750, "inputMessagesFilterPhoneCalls#": -9.052750, "inputMessagesFilterPhotoVideo#": -9.052750, "inputMessagesFilterPhotoVideoDocuments#d": -9.052750, "inputMessagesFilterPhotos#": -9.052750, "inputMessagesFilterRoundVideo#b": -9.052750, "inputMessagesFilterRoundVoice#": -9.052750, "inputMessagesFilterUrl#": -9.052750, "inputMessagesFilterVideo#": -9.052750, "inputMessagesFilterVoice#": -9.052750, "inputNotifyAll#a": -9.052750, "inputNotifyChats#": -9.052750, "inputNotifyPeer#b": -9.052750, "inputNotifyUsers#": -9.052750, "inputPaymentCredentials#": -9.052750, "inputPaymentCredentialsSaved#c": -9.052750, "inputPeerChannel#": -9.052750, "inputPeerChat#": -9.052750, "inputPeerEmpty#": -9.052750, "inputPeerNotifyEventsAll#e": -9.052750, "inputPeerNotifyEventsEmpty#f": -9.052750, "inputPeerNotifySettings#": -9.052750, "inputPeerSelf#": -9.052750, "inputPeerUser#": -9.052750, "inputPhoneCall#": -9.052750, "inputPhoneContact#f": -9.052750, "inputPhoto#fb": -9.052750, "inputPhotoEmpty#": -9.052750, "inputPrivacyKeyChatInvite#bdfb": -9.052750, "inputPrivacyKeyPhoneCall#fabadc": -9.052750, "inputPrivacyKeyStatusTimestamp#": -9.052750, "inputPrivacyValueAllowAll#": -9.052750, "inputPrivacyValueAllowContacts#d": -9.052750, "inputPrivacyValueAllowUsers#": -9.052750, "inputPrivacyValueDisallowAll#d": -9.052750, "inputPrivacyValueDisallowContacts#ba": -9.052750, "inputPrivacyValueDisallowUsers#": -9.052750, "inputReportReasonOther#e": -9.052750, "inputReportReasonPornography#": -9.052750, "inputReportReasonSpam#": -9.052750, "inputReportReasonViolence#": -9.052750, "inputStickerSetEmpty#ffb": -9.052750, "inputStickerSetID#": -9.052750, "inputStickerSetShortName#": -9.052750, "inputStickeredMediaDocument#": -9.052750, "inputStickeredMediaPhoto#": -9.052750, "inputUser#d": -9.052750, "inputUserEmpty#b": -9.052750, "inputUserSelf#f": -9.052750, "inputWebDocument#": -9.052750, "inputWebFileLocation#c": -9.052750, "int": -3.014880, "int#a": -9.052750, "intHash": -8.359603, "intSortedHash": -9.052750, "intermediate_state": -9.052750, "inviter_id": -7.106840, "invoice#c": -9.052750, "invokeAfterMsg#cb": -9.052750, "invokeAfterMsgs#": -9.052750, "invokeWithLayer#da": -9.052750, "invokeWithoutUpdates#bf": -9.052750, "ip": -8.359603, "ipv": -9.052750, "is_admin": -8.359603, "items": -7.954138, "key": -7.954138, "key_fingerprint": -7.106840, "keyboardButton#a": -9.052750, "keyboardButtonBuy#afd": -9.052750, "keyboardButtonCallback#": -9.052750, "keyboardButtonGame#": -9.052750, "keyboardButtonRequestGeoLocation#fc": -9.052750, "keyboardButtonRequestPhone#b": -9.052750, "keyboardButtonRow#": -9.052750, "keyboardButtonSwitchInline#": -9.052750, "keyboardButtonUrl#": -9.052750, "kicked": -9.052750, "kicked_by": -9.052750, "label": -9.052750, "labeledPrice#cb": -9.052750, "lang_code": -9.052750, "language": -8.359603, "last_name": -7.106840, "lat": -8.359603, "layer": -8.359603, "length": -6.280162, "limit": -6.750165, "link": -8.359603, "local_id": -7.954138, "location": -7.666456, "long": -4.282066, "maskCoords#aed": -9.052750, "max_date": -8.359603, "max_delay": -9.052750, "max_id": -6.654855, "max_qts": -9.052750, "max_wait": -9.052750, "md": -8.359603, "media": -9.052750, "message": -6.855526, "message#c": -9.052750, "messageActionChannelCreate#": -9.052750, "messageActionChannelMigrateFrom#b": -9.052750, "messageActionChatAddUser#": -9.052750, "messageActionChatCreate#a": -9.052750, "messageActionChatDeletePhoto#": -9.052750, "messageActionChatDeleteUser#b": -9.052750, "messageActionChatEditPhoto#": -9.052750, "messageActionChatEditTitle#b": -9.052750, "messageActionChatJoinedByLink#f": -9.052750, "messageActionChatMigrateTo#": -9.052750, "messageActionEmpty#b": -9.052750, "messageActionGameScore#": -9.052750, "messageActionHistoryClear#": -9.052750, "messageActionPaymentSent#": -9.052750, "messageActionPaymentSentMe#": -9.052750, "messageActionPhoneCall#": -9.052750, "messageActionPinMessage#": -9.052750, "messageEmpty#": -9.052750, "messageEntityBold#bd": -9.052750, "messageEntityBotCommand#": -9.052750, "messageEntityCode#": -9.052750, "messageEntityEmail#": -9.052750, "messageEntityHashtag#": -9.052750, "messageEntityItalic#": -9.052750, "messageEntityMention#fa": -9.052750, "messageEntityMentionName#": -9.052750, "messageEntityPre#": -9.052750, "messageEntityTextUrl#": -9.052750, "messageEntityUnknown#bb": -9.052750, "messageEntityUrl#": -9.052750, "messageFwdHeader#c": -9.052750, "messageMediaContact#": -9.052750, "messageMediaDocument#f": -9.052750, "messageMediaEmpty#": -9.052750, "messageMediaGame#fdb": -9.052750, "messageMediaGeo#": -9.052750, "messageMediaInvoice#": -9.052750, "messageMediaPhoto#": -9.052750, "messageMediaUnsupported#": -9.052750, "messageMediaVenue#": -9.052750, "messageMediaWebPage#a": -9.052750, "messageRange#ae": -9.052750, "messageService#": -9.052750, "messages": -6.855526, "messages.AffectedHistory": -8.359603, "messages.AffectedMessages": -7.666456, "messages.AllStickers": -7.666456, "messages.ArchivedStickers": -9.052750, "messages.ChatFull": -7.954138, "messages.Chats": -7.106840, "messages.DhConfig": -7.954138, "messages.Dialogs": -8.359603, "messages.FeaturedStickers": -7.954138, "messages.FoundGifs": -8.359603, "messages.HighScores": -7.954138, "messages.MessageEditData": -9.052750, "messages.Messages": -7.260991, "messages.PeerDialogs": -7.954138, "messages.RecentStickers": -8.359603, "messages.SavedGifs": -7.954138, "messages.SentEncryptedMessage": -7.443313, "messages.StickerSet": -7.954138, "messages.StickerSetInstallResult": -7.954138, "messages.Stickers": -8.359603, "messages.acceptEncryption#": -9.052750, "messages.addChatUser#f": -9.052750, "messages.affectedHistory#b": -9.052750, "messages.affectedMessages#": -9.052750, "messages.allStickers#edfd": -9.052750, "messages.allStickersNotModified#e": -9.052750, "messages.archivedStickers#": -9.052750, "messages.botCallbackAnswer#": -9.052750, "messages.botResults#ccd": -9.052750, "messages.channelMessages#": -9.052750, "messages.chatFull#e": -9.052750, "messages.chats#": -9.052750, "messages.chatsSlice#": -9.052750, "messages.checkChatInvite#": -9.052750, "messages.clearRecentStickers#": -9.052750, "messages.createChat#": -9.052750, "messages.deleteChatUser#e": -9.052750, "messages.deleteHistory#": -9.052750, "messages.deleteMessages#e": -9.052750, "messages.dhConfig#": -9.052750, "messages.dhConfigNotModified#c": -9.052750, "messages.dialogs#": -9.052750, "messages.dialogsSlice#": -9.052750, "messages.discardEncryption#edd": -9.052750, "messages.editChatAdmin#a": -9.052750, "messages.editChatPhoto#ca": -9.052750, "messages.editChatTitle#dc": -9.052750, "messages.editInlineBotMessage#": -9.052750, "messages.editMessage#ce": -9.052750, "messages.exportChatInvite#": -9.052750, "messages.featuredStickers#f": -9.052750, "messages.featuredStickersNotModified#": -9.052750, "messages.forwardMessage#": -9.052750, "messages.forwardMessages#": -9.052750, "messages.foundGifs#": -9.052750, "messages.getAllChats#eba": -9.052750, "messages.getAllDrafts#": -9.052750, "messages.getAllStickers#": -9.052750, "messages.getArchivedStickers#": -9.052750, "messages.getAttachedStickers#cc": -9.052750, "messages.getBotCallbackAnswer#": -9.052750, "messages.getChats#": -9.052750, "messages.getCommonChats#d": -9.052750, "messages.getDhConfig#": -9.052750, "messages.getDialogs#": -9.052750, "messages.getDocumentByHash#": -9.052750, "messages.getFeaturedStickers#": -9.052750, "messages.getFullChat#": -9.052750, "messages.getGameHighScores#e": -9.052750, "messages.getHistory#afa": -9.052750, "messages.getInlineBotResults#": -9.052750, "messages.getInlineGameHighScores#f": -9.052750, "messages.getMaskStickers#": -9.052750, "messages.getMessageEditData#fda": -9.052750, "messages.getMessages#": -9.052750, "messages.getMessagesViews#c": -9.052750, "messages.getPeerDialogs#": -9.052750, "messages.getPeerSettings#": -9.052750, "messages.getPinnedDialogs#e": -9.052750, "messages.getRecentStickers#": -9.052750, "messages.getSavedGifs#": -9.052750, "messages.getStickerSet#": -9.052750, "messages.getWebPage#": -9.052750, "messages.getWebPagePreview#": -9.052750, "messages.hideReportSpam#a": -9.052750, "messages.highScores#": -9.052750, "messages.importChatInvite#": -9.052750, "messages.installStickerSet#c": -9.052750, "messages.messageEditData#": -9.052750, "messages.messages#": -9.052750, "messages.messagesSlice#b": -9.052750, "messages.migrateChat#": -9.052750, "messages.peerDialogs#": -9.052750, "messages.readEncryptedHistory#": -9.052750, "messages.readFeaturedStickers#": -9.052750, "messages.readHistory#e": -9.052750, "messages.readMessageContents#": -9.052750, "messages.receivedMessages#": -9.052750, "messages.receivedQueue#": -9.052750, "messages.recentStickers#": -9.052750, "messages.recentStickersNotModified#b": -9.052750, "messages.reorderPinnedDialogs#": -9.052750, "messages.reorderStickerSets#": -9.052750, "messages.reportEncryptedSpam#": -9.052750, "messages.reportSpam#cf": -9.052750, "messages.requestEncryption#f": -9.052750, "messages.saveDraft#bc": -9.052750, "messages.saveGif#": -9.052750, "messages.saveRecentSticker#": -9.052750, "messages.savedGifs#": -9.052750, "messages.savedGifsNotModified#e": -9.052750, "messages.search#d": -9.052750, "messages.searchGifs#bf": -9.052750, "messages.searchGlobal#": -9.052750, "messages.sendEncrypted#a": -9.052750, "messages.sendEncryptedFile#": -9.052750, "messages.sendEncryptedService#": -9.052750, "messages.sendInlineBotResult#b": -9.052750, "messages.sendMedia#c": -9.052750, "messages.sendMessage#fa": -9.052750, "messages.sentEncryptedFile#": -9.052750, "messages.sentEncryptedMessage#": -9.052750, "messages.setBotCallbackAnswer#d": -9.052750, "messages.setBotPrecheckoutResults#": -9.052750, "messages.setBotShippingResults#e": -9.052750, "messages.setEncryptedTyping#": -9.052750, "messages.setGameScore#": -9.052750, "messages.setInlineBotResults#eb": -9.052750, "messages.setInlineGameScore#": -9.052750, "messages.setTyping#a": -9.052750, "messages.startBot#e": -9.052750, "messages.stickerSet#b": -9.052750, "messages.stickerSetInstallResultArchive#": -9.052750, "messages.stickerSetInstallResultSuccess#": -9.052750, "messages.stickers#": -9.052750, "messages.stickersNotModified#f": -9.052750, "messages.toggleChatAdmins#ec": -9.052750, "messages.toggleDialogPin#": -9.052750, "messages.uninstallStickerSet#f": -9.052750, "mime_type": -7.443313, "min_id": -8.359603, "msg_detailed_info#": -9.052750, "msg_id": -6.973309, "msg_ids": -7.260991, "msg_new_detailed_info#": -9.052750, "msg_resend_req#": -9.052750, "msgs_ack#": -9.052750, "msgs_all_info#": -9.052750, "msgs_state_info#": -9.052750, "msgs_state_req#da": -9.052750, "mtime": -8.359603, "mutual": -9.052750, "my_link": -8.359603, "n": -9.052750, "name": -7.666456, "nearestDc#": -9.052750, "nearest_dc": -9.052750, "new_encrypted_messages": -8.359603, "new_messages": -8.359603, "new_nonce": -9.052750, "new_nonce_hash": -7.666456, "new_salt": -8.359603, "new_server_salt": -9.052750, "new_session_created#": -9.052750, "new_settings": -9.052750, "next_offset": -9.052750, "no_group": -9.052750, "no_user#c": -9.052750, "nonce": -6.487801, "notifyAll#": -9.052750, "notifyChats#c": -9.052750, "notifyPeer#": -9.052750, "notifyUsers#b": -9.052750, "notify_settings": -8.359603, "now": -9.052750, "null": -9.052750, "null#": -9.052750, "num": -9.052750, "offline": -9.052750, "offset": -6.008228, "offset_date": -8.359603, "offset_id": -8.359603, "offset_peer": -9.052750, "ordered": -9.052750, "orig_message": -9.052750, "other_updates": -8.359603, "p": -7.954138, "p_q_inner_data#": -9.052750, "packed_data": -9.052750, "packs": -9.052750, "pageBlockAnchor#ce": -9.052750, "pageBlockAuthorDate#baafe": -9.052750, "pageBlockBlockquote#": -9.052750, "pageBlockChannel#ef": -9.052750, "pageBlockCollage#": -9.052750, "pageBlockCover#": -9.052750, "pageBlockDivider#db": -9.052750, "pageBlockEmbed#cde": -9.052750, "pageBlockEmbedPost#": -9.052750, "pageBlockFooter#": -9.052750, "pageBlockHeader#bfd": -9.052750, "pageBlockList#": -9.052750, "pageBlockParagraph#": -9.052750, "pageBlockPhoto#e": -9.052750, "pageBlockPreformatted#c": -9.052750, "pageBlockPullquote#": -9.052750, "pageBlockSlideshow#": -9.052750, "pageBlockSubheader#f": -9.052750, "pageBlockSubtitle#": -9.052750, "pageBlockTitle#": -9.052750, "pageBlockUnsupported#": -9.052750, "pageBlockVideo#d": -9.052750, "pageFull#d": -9.052750, "pagePart#": -9.052750, "pair": -9.052750, "params": -9.052750, "participant": -9.052750, "participant_id": -7.260991, "participants": -7.666456, "parts": -7.666456, "password_hash": -8.359603, "pattern": -9.052750, "payload": -9.052750, "paymentCharge#ea": -9.052750, "paymentRequestedInfo#": -9.052750, "paymentSavedCredentialsCard#cdc": -9.052750, "payments.PaymentForm": -9.052750, "payments.PaymentReceipt": -9.052750, "payments.PaymentResult": -8.359603, "payments.SavedInfo": -9.052750, "payments.clearSavedInfo#d": -9.052750, "payments.getPaymentForm#": -9.052750, "payments.getPaymentReceipt#a": -9.052750, "payments.getSavedInfo#": -9.052750, "payments.paymentForm#": -9.052750, "payments.paymentReceipt#": -9.052750, "payments.paymentResult#": -9.052750, "payments.paymentVerficationNeeded#": -9.052750, "payments.savedInfo#fb": -9.052750, "payments.sendPaymentForm#": -9.052750, "payments.validateRequestedInfo#": -9.052750, "payments.validatedRequestedInfo#d": -9.052750, "peer": -5.441833, "peerChannel#bddde": -9.052750, "peerChat#bad": -9.052750, "peerNotifyEventsAll#": -9.052750, "peerNotifyEventsEmpty#add": -9.052750, "peerNotifySettings#": -9.052750, "peerNotifySettingsEmpty#": -9.052750, "peerSettings#": -9.052750, "peerUser#": -9.052750, "peer_tag": -9.052750, "peers": -8.359603, "pending_updates_count": -9.052750, "period": -8.359603, "perm_auth_key_id": -9.052750, "phone": -8.359603, "phone.PhoneCall": -7.666456, "phone.acceptCall#": -9.052750, "phone.confirmCall#": -9.052750, "phone.discardCall#": -9.052750, "phone.getCallConfig#": -9.052750, "phone.phoneCall#ec": -9.052750, "phone.receivedCall#": -9.052750, "phone.requestCall#": -9.052750, "phone.saveCallDebug#": -9.052750, "phone.setCallRating#": -9.052750, "phoneCall#ffe": -9.052750, "phoneCallAccepted#": -9.052750, "phoneCallDiscardReasonBusy#faf": -9.052750, "phoneCallDiscardReasonDisconnect#e": -9.052750, "phoneCallDiscardReasonHangup#": -9.052750, "phoneCallDiscardReasonMissed#": -9.052750, "phoneCallDiscarded#": -9.052750, "phoneCallEmpty#": -9.052750, "phoneCallProtocol#a": -9.052750, "phoneCallRequested#": -9.052750, "phoneCallWaiting#": -9.052750, "phoneConnection#": -9.052750, "phone_call": -8.359603, "phone_code": -7.666456, "phone_code_hash": -7.260991, "phone_number": -6.750165, "phone_numbers": -9.052750, "phone_registered": -9.052750, "photo": -6.973309, "photo#": -9.052750, "photoCachedSize#e": -9.052750, "photoEmpty#": -9.052750, "photoSize#": -9.052750, "photoSizeEmpty#e": -9.052750, "photo_big": -8.359603, "photo_id": -8.359603, "photo_small": -8.359603, "photos": -7.666456, "photos.Photo": -8.359603, "photos.Photos": -7.954138, "photos.deletePhotos#": -9.052750, "photos.getUserPhotos#": -9.052750, "photos.photo#": -9.052750, "photos.photos#": -9.052750, "photos.photosSlice#": -9.052750, "photos.updateProfilePhoto#f": -9.052750, "photos.uploadProfilePhoto#": -9.052750, "ping#": -9.052750, "ping_delay_disconnect#f": -9.052750, "ping_id": -7.954138, "platform": -9.052750, "pong#": -9.052750, "port": -9.052750, "pos": -9.052750, "postAddress#": -9.052750, "post_code": -9.052750, "pq": -8.359603, "prev_app_version": -9.052750, "previous": -9.052750, "prices": -9.052750, "privacyKeyChatInvite#": -9.052750, "privacyKeyPhoneCall#": -9.052750, "privacyKeyStatusTimestamp#bc": -9.052750, "privacyValueAllowAll#": -9.052750, "privacyValueAllowContacts#fffe": -9.052750, "privacyValueAllowUsers#": -9.052750, "privacyValueDisallowAll#": -9.052750, "privacyValueDisallowContacts#f": -9.052750, "privacyValueDisallowUsers#c": -9.052750, "progress": -7.443313, "protocol": -7.260991, "provider": -8.359603, "provider_charge_id": -9.052750, "pts": -6.344700, "pts_count": -6.487801, "public_key": -9.052750, "public_key_fingerprint": -9.052750, "public_keys": -9.052750, "published_date": -9.052750, "q": -7.260991, "qts": -8.359603, "query": -5.794654, "query_id": -7.954138, "random": -8.359603, "random_id": -6.750165, "random_length": -9.052750, "rating": -8.359603, "reason": -7.954138, "receivedNotifyMessage#a": -9.052750, "region": -9.052750, "replace": -9.052750, "replyInlineMarkup#": -9.052750, "replyKeyboardForceReply#f": -9.052750, "replyKeyboardHide#a": -9.052750, "replyKeyboardMarkup#": -9.052750, "req_DH_params#d": -9.052750, "req_msg_id": -7.666456, "req_pq#": -9.052750, "request_token": -8.359603, "resPQ#": -9.052750, "result": -9.052750, "results": -8.359603, "retry_contacts": -9.052750, "retry_id": -9.052750, "role": -9.052750, "rows": -9.052750, "rpc_answer_dropped#a": -9.052750, "rpc_answer_dropped_running#cd": -9.052750, "rpc_answer_unknown#": -9.052750, "rpc_drop_answer#": -9.052750, "rpc_error#": -9.052750, "rules": -7.954138, "salt": -9.052750, "salts": -9.052750, "score": -8.359603, "scores": -9.052750, "secret": -7.954138, "sendMessageCancelAction#fd": -9.052750, "sendMessageChooseContactAction#": -9.052750, "sendMessageGamePlayAction#dd": -9.052750, "sendMessageGeoLocationAction#": -9.052750, "sendMessageRecordAudioAction#d": -9.052750, "sendMessageRecordRoundAction#": -9.052750, "sendMessageRecordVideoAction#a": -9.052750, "sendMessageTypingAction#": -9.052750, "sendMessageUploadAudioAction#f": -9.052750, "sendMessageUploadDocumentAction#aa": -9.052750, "sendMessageUploadPhotoAction#d": -9.052750, "sendMessageUploadRoundAction#": -9.052750, "sendMessageUploadVideoAction#e": -9.052750, "send_message": -8.359603, "seq": -7.666456, "seq_no": -9.052750, "seq_start": -9.052750, "seqno": -9.052750, "server_DH_inner_data#b": -9.052750, "server_DH_params_fail#": -9.052750, "server_DH_params_ok#d": -9.052750, "server_nonce": -6.654855, "server_public_key_fingerprints": -9.052750, "server_salt": -9.052750, "server_time": -9.052750, "session_id": -7.954138, "set": -7.954138, "set_client_DH_params#f": -9.052750, "sets": -7.666456, "settings": -9.052750, "sha": -9.052750, "shippingOption#b": -9.052750, "shipping_address": -9.052750, "short_name": -7.954138, "size": -7.106840, "sizes": -9.052750, "start_date": -9.052750, "start_param": -8.359603, "state": -7.954138, "status": -7.666456, "stickerPack#": -9.052750, "stickerSet#cd": -9.052750, "stickerSetCovered#": -9.052750, "stickerSetMultiCovered#": -9.052750, "stickers": -8.359603, "stickerset": -7.666456, "storage.FileType": -6.567844, "storage.fileGif#cae": -9.052750, "storage.fileJpeg#": -9.052750, "storage.fileMov#": -9.052750, "storage.fileMp": -8.359603, "storage.filePartial#": -9.052750, "storage.filePdf#ae": -9.052750, "storage.filePng#a": -9.052750, "storage.fileUnknown#aa": -9.052750, "storage.fileWebp#": -9.052750, "strHash": -8.359603, "strSortedHash": -9.052750, "street_line": -8.359603, "string": -3.691458, "system_version": -8.359603, "t": -7.954138, "text": -5.685455, "textBold#": -9.052750, "textConcat#": -9.052750, "textEmail#de": -9.052750, "textEmpty#dc": -9.052750, "textFixed#": -9.052750, "textItalic#d": -9.052750, "textPlain#": -9.052750, "textStrike#": -9.052750, "textUnderline#c": -9.052750, "textUrl#": -9.052750, "texts": -9.052750, "this_dc": -9.052750, "thumb": -9.052750, "thumb_url": -9.052750, "time": -9.052750, "timeout": -9.052750, "title": -6.344700, "tmp_password": -8.359603, "token": -8.359603, "token_type": -8.359603, "topPeer#edcdc": -9.052750, "topPeerCategoryBotsInline#": -9.052750, "topPeerCategoryBotsPM#ab": -9.052750, "topPeerCategoryChannels#": -9.052750, "topPeerCategoryCorrespondents#": -9.052750, "topPeerCategoryGroups#bd": -9.052750, "topPeerCategoryPeers#fb": -9.052750, "total_amount": -9.052750, "triple": -9.052750, "true#": -9.052750, "ttl": -9.052750, "type": -7.260991, "types": -8.359603, "typing": -9.052750, "unique_id": -9.052750, "unread": -9.052750, "unread_count": -9.052750, "unsave": -9.052750, "update": -9.052750, "updateBotCallbackQuery#e": -9.052750, "updateBotInlineQuery#": -9.052750, "updateBotInlineSend#e": -9.052750, "updateBotPrecheckoutQuery#": -9.052750, "updateBotShippingQuery#e": -9.052750, "updateBotWebhookJSON#": -9.052750, "updateBotWebhookJSONQuery#": -9.052750, "updateChannel#b": -9.052750, "updateChannelMessageViews#": -9.052750, "updateChannelPinnedMessage#": -9.052750, "updateChannelTooLong#eb": -9.052750, "updateChannelWebPage#": -9.052750, "updateChatAdmins#": -9.052750, "updateChatParticipantAdd#ea": -9.052750, "updateChatParticipantAdmin#b": -9.052750, "updateChatParticipantDelete#": -9.052750, "updateChatParticipants#": -9.052750, "updateChatUserTyping#": -9.052750, "updateConfig#a": -9.052750, "updateContactLink#": -9.052750, "updateContactRegistered#": -9.052750, "updateDcOptions#": -9.052750, "updateDeleteChannelMessages#c": -9.052750, "updateDeleteMessages#a": -9.052750, "updateDialogPinned#d": -9.052750, "updateDraftMessage#ee": -9.052750, "updateEditChannelMessage#": -9.052750, "updateEditMessage#e": -9.052750, "updateEncryptedChatTyping#": -9.052750, "updateEncryptedMessagesRead#": -9.052750, "updateEncryption#b": -9.052750, "updateInlineBotCallbackQuery#f": -9.052750, "updateMessageID#": -9.052750, "updateNewChannelMessage#": -9.052750, "updateNewEncryptedMessage#": -9.052750, "updateNewMessage#": -9.052750, "updateNewStickerSet#": -9.052750, "updateNotifySettings#bec": -9.052750, "updatePhoneCall#ab": -9.052750, "updatePinnedDialogs#d": -9.052750, "updatePrivacy#ee": -9.052750, "updatePtsChanged#": -9.052750, "updateReadChannelInbox#": -9.052750, "updateReadChannelOutbox#": -9.052750, "updateReadFeaturedStickers#": -9.052750, "updateReadHistoryInbox#": -9.052750, "updateReadHistoryOutbox#": -9.052750, "updateReadMessagesContents#": -9.052750, "updateRecentStickers#": -9.052750, "updateSavedGifs#": -9.052750, "updateServiceNotification#ebe": -9.052750, "updateShort#": -9.052750, "updateShortChatMessage#": -9.052750, "updateShortMessage#": -9.052750, "updateShortSentMessage#": -9.052750, "updateStickerSets#": -9.052750, "updateStickerSetsOrder#bb": -9.052750, "updateUserBlocked#": -9.052750, "updateUserName#a": -9.052750, "updateUserPhone#": -9.052750, "updateUserPhoto#": -9.052750, "updateUserStatus#": -9.052750, "updateUserTyping#": -9.052750, "updateWebPage#": -9.052750, "updates": -7.954138, "updates#": -9.052750, "updates.Difference": -7.666456, "updates.State": -7.443313, "updates.channelDifference#": -9.052750, "updates.channelDifferenceEmpty#": -9.052750, "updates.channelDifferenceTooLong#": -9.052750, "updates.difference#f": -9.052750, "updates.differenceEmpty#": -9.052750, "updates.differenceSlice#a": -9.052750, "updates.differenceTooLong#": -9.052750, "updates.getChannelDifference#": -9.052750, "updates.getDifference#": -9.052750, "updates.getState#edd": -9.052750, "updates.state#a": -9.052750, "updatesCombined#": -9.052750, "updatesTooLong#e": -9.052750, "upload.CdnFile": -7.954138, "upload.File": -7.954138, "upload.WebFile": -8.359603, "upload.cdnFile#a": -9.052750, "upload.cdnFileReuploadNeeded#eea": -9.052750, "upload.file#": -9.052750, "upload.fileCdnRedirect#": -9.052750, "upload.getCdnFile#": -9.052750, "upload.getFile#e": -9.052750, "upload.getWebFile#": -9.052750, "upload.reuploadCdnFile#": -9.052750, "upload.saveBigFilePart#de": -9.052750, "upload.saveFilePart#b": -9.052750, "upload.webFile#": -9.052750, "url": -6.344700, "user": -8.359603, "user#": -9.052750, "user#d": -9.052750, "userEmpty#": -9.052750, "userFull#f": -9.052750, "userProfilePhoto#d": -9.052750, "userProfilePhotoEmpty#": -9.052750, "userStatusEmpty#": -9.052750, "userStatusLastMonth#": -9.052750, "userStatusLastWeek#": -9.052750, "userStatusOffline#": -9.052750, "userStatusOnline#edb": -9.052750, "userStatusRecently#e": -9.052750, "user_id": -5.160930, "username": -7.260991, "users": -5.556243, "users.getFullUser#ca": -9.052750, "users.getUsers#d": -9.052750, "valid_since": -9.052750, "valid_until": -8.359603, "vector": -7.443313, "vector#": -9.052750, "venue_id": -8.359603, "version": -6.855526, "videos": -8.359603, "views": -9.052750, "vk_id": -9.052750, "volume_id": -7.954138, "w": -7.666456, "wait_after": -9.052750, "wallPaper#ccb": -9.052750, "wallPaperSolid#": -9.052750, "was_online": -9.052750, "webDocument#c": -9.052750, "webPage#": -9.052750, "webPageEmpty#eb": -9.052750, "webPageNotModified#": -9.052750, "webPagePending#c": -9.052750, "webpage": -7.954138, "webpage_id": -8.359603, "x": -7.954138, "y": -7.954138, "z": -9.052750, "zoom": -9.052750, "{": -6.413693, "}": -6.413693, }, "TypeScript": map[string]float64{ "!": -6.009182, "\"": -9.004914, "#aaaaff": -8.311767, "#aaffaa": -9.004914, "#ffaaaa": -8.311767, "$": -6.114542, "&": -7.395476, "&&": -6.439965, "(": -2.922695, ")": -2.920415, "*": -6.060475, "+": -4.399744, ",": -3.239723, "-": -5.709077, "...sizes": -9.004914, ".dataTransfer": -9.004914, ".description": -9.004914, ".descriptionPlural": -8.311767, ".done": -8.311767, ".every": -9.004914, ".fail": -8.311767, ".filter": -9.004914, ".forEach": -8.311767, ".getDescription": -7.395476, ".join": -9.004914, ".length": -9.004914, ".path": -9.004914, ".some": -9.004914, ".test": -6.925472, ".top": -8.311767, ".weight": -9.004914, "/": -6.060475, "//www.youtube.com/embed/": -9.004914, "/h": -7.618620, "/resources/getting": -9.004914, "0": -6.807689, "03": -9.004914, "1": -7.213154, "10": -9.004914, "100": -6.807689, "11": -9.004914, "12": -9.004914, "150": -8.311767, "16": -6.439965, "190": -9.004914, "2": -7.618620, "20": -8.311767, "200": -9.004914, "210": -9.004914, "23": -9.004914, "25": -6.925472, "255": -7.906302, "266px": -9.004914, "35": -9.004914, "38": -6.925472, "3s": -9.004914, "4": -7.395476, "4A90E2": -9.004914, "5": -9.004914, "527fe4": -9.004914, "5s": -9.004914, "60": -7.906302, "600": -9.004914, "60px": -9.004914, "7": -9.004914, "70": -9.004914, "8": -9.004914, "80": -9.004914, "800": -9.004914, "85": -9.004914, "900": -9.004914, "96": -7.395476, ":": -3.033652, ";": -3.144128, "<": -5.709077, "</Entity>": -9.004914, "</Text>": -5.198251, "</View>": -6.607019, "</a>": -7.213154, "</button>": -9.004914, "</div>": -4.574097, "</form>": -9.004914, "</i>": -8.311767, "</label>": -6.520007, "</li>": -7.906302, "</ol>": -9.004914, "</span>": -9.004914, "</strong>": -7.618620, "</ul>": -9.004914, "<AttributeToggler>": -9.004914, "<Entity>": -9.004914, "<GardenCell>": -8.311767, "<GardenCellProps,>": -9.004914, "<GardenDisplay>": -7.906302, "<GardenDisplayProps,>": -9.004914, "<GardenEditor>": -8.311767, "<GardenEditorProps,>": -9.004914, "<Loading>": -9.004914, "<Parm.GridForm>": -9.004914, "<Props,>": -9.004914, "<StonePalette>": -9.004914, "<T>": -6.607019, "<Text>": -5.113094, "<View>": -6.439965, "<[ProducedSelector,>": -9.004914, "<[ProducedSelector]>": -9.004914, "<a>": -7.213154, "<any,>": -8.311767, "<any,any>": -9.004914, "<any>": -7.395476, "<br>": -7.618620, "<button>": -9.004914, "<div>": -4.574097, "<form>": -9.004914, "<i>": -8.311767, "<iframe>": -9.004914, "<img>": -9.004914, "<input>": -6.807689, "<label>": -6.520007, "<li>": -7.906302, "<number>": -8.311767, "<ol>": -9.004914, "<reference>": -9.004914, "<span>": -8.311767, "<string>": -9.004914, "<strong>": -7.618620, "<ul>": -9.004914, "<void>": -9.004914, "<{},>": -9.004914, "<{}>": -8.311767, "=": -2.601340, ">": -3.606751, "?": -5.421395, "@demo.com.tw": -7.618620, "A": -7.906302, "ATM": -9.004914, "AccountName": -7.906302, "AccountNumber": -7.906302, "Adjectival": -9.004914, "Angular": -9.004914, "AngularApollo": -8.311767, "Animal": -7.618620, "Apollo": -7.906302, "Array": -7.618620, "Aspect": -9.004914, "AttrTogglerState": -8.311767, "AttributeToggler": -9.004914, "Attributes": -9.004914, "Audio": -9.004914, "B": -9.004914, "BankCode": -7.906302, "BankName": -7.906302, "Black": -9.004914, "Blue": -9.004914, "Business": -9.004914, "Circle": -9.004914, "Cochin": -7.618620, "CommCmpt": -9.004914, "CommCmpt.InputDate": -9.004914, "CommFunc": -9.004914, "CommFunc.jqGet": -9.004914, "CommFunc.jqPost": -9.004914, "CommFunc.showAjaxError": -8.311767, "CommFunc.tosMessage": -9.004914, "Congratulations": -9.004914, "Declaring": -9.004914, "DescribeContext": -7.906302, "DescribeContext.Adjectival": -7.213154, "DescribeContext.Plural": -7.395476, "DescribeContext.Singular": -7.059004, "Download": -9.004914, "DragEvent": -9.004914, "Email": -7.395476, "Empty": -8.311767, "Entity": -8.311767, "Error": -9.004914, "Example": -7.906302, "FEF5D2": -9.004914, "Fail": -9.004914, "Fee": -7.906302, "Finish": -9.004914, "Garden": -5.826860, "GardenCell": -9.004914, "GardenCellProps": -9.004914, "GardenCellState": -7.906302, "Gardens": -9.004914, "Gardens.RockColor": -7.213154, "Gardens.RockColor.Empty": -6.439965, "Gardens.RockColor.Max": -9.004914, "Gardens.RockColorsAndEmpty.forEach": -9.004914, "Gardens.RockShape": -7.213154, "Gardens.RockShape.Empty": -6.702329, "Gardens.RockShape.Max": -9.004914, "Gardens.RockShapesAndEmpty.forEach": -9.004914, "Gardens.Size": -6.925472, "Gardens.adjacencies": -9.004914, "Get": -8.311767, "GettingStartedState": -8.311767, "Graphcool": -8.311767, "GridForm": -9.004914, "HTMLDivElement": -7.906302, "HTMLInputElement": -8.311767, "Helvetica": -7.618620, "HomoiothermyFee": -7.906302, "Horse": -8.311767, "Implementing": -9.004914, "Indexion": -9.004914, "InputDate": -9.004914, "Instagram": -9.004914, "Italic": -9.004914, "JSX.Element": -9.004914, "Koan": -8.311767, "Koan.ProducedStatement": -9.004914, "Koan.SelectorTemplates": -8.311767, "Koan.StateTestResult.Fail": -9.004914, "Koan.StateTestResult.Pass": -9.004914, "Koan.StatementList": -9.004914, "Koan.blitNumberedGarden": -9.004914, "Koan.buildSelector": -8.311767, "Koan.buildStatement": -9.004914, "Koan.cloneGarden": -8.311767, "Koan.gardenToString": -9.004914, "Koan.makeEmptyGarden": -9.004914, "Koan.makeRandomGarden": -9.004914, "LetsMakeSomeSelectors": -9.004914, "LetsMakeSomeStatements": -9.004914, "Loading": -9.004914, "Logic": -9.004914, "Math.abs": -9.004914, "Math.floor": -7.395476, "Math.random": -7.395476, "Max": -8.311767, "Moment": -9.004914, "Move": -7.395476, "NT": -7.906302, "Name": -9.004914, "Native": -9.004914, "Normal": -8.311767, "Now": -9.004914, "Object.keys": -8.311767, "Of": -9.004914, "Onboarding": -9.004914, "ParamData": -7.906302, "Parm": -9.004914, "PartType": -7.906302, "PartType.Selector": -6.807689, "Pass": -9.004914, "PlaygroundCPopup": -8.311767, "Plural": -9.004914, "ProducedSelector": -6.607019, "ProducedStatement": -7.906302, "Promise": -9.004914, "Props": -8.311767, "PurchaseTotal": -7.906302, "RNTSExample": -8.311767, "RNTSExampleModule": -8.311767, "React": -7.059004, "React.Component": -7.395476, "React.DragEvent": -9.004914, "React.FormEvent": -9.004914, "React.HTMLAttributes": -9.004914, "React.Props": -9.004914, "React.SyntheticEvent": -9.004914, "React.TextStyle": -9.004914, "React.render": -8.311767, "ReactApollo": -8.311767, "ReactBootstrap": -9.004914, "ReactDOM": -9.004914, "ReactDOM.render": -9.004914, "ReactNativeApollo": -8.311767, "ReactRelay": -8.311767, "Red": -8.311767, "RefrigerFee": -7.906302, "Relations": -9.004914, "Relay": -9.004914, "RockColor": -9.004914, "RockColor.Black": -9.004914, "RockColor.Empty": -9.004914, "RockColor.Red": -9.004914, "RockColor.White": -9.004914, "RockColors": -9.004914, "RockColors.concat": -9.004914, "RockColorsAndEmpty": -9.004914, "RockShape": -9.004914, "RockShape.Circle": -9.004914, "RockShape.Empty": -9.004914, "RockShape.Square": -9.004914, "RockShape.Triangle": -9.004914, "RockShapes": -9.004914, "RockShapes.concat": -9.004914, "RockShapesAndEmpty": -9.004914, "See": -8.311767, "Select": -9.004914, "Selector": -9.004914, "SelectorSpec": -7.395476, "SelectorTemplates": -8.311767, "SelectorTemplates.push": -7.618620, "Singular": -9.004914, "Size": -7.906302, "Skip": -9.004914, "Snake": -8.311767, "Square": -9.004914, "State": -7.906302, "StateTestResult": -7.906302, "StateTestResult.Fail": -7.618620, "StateTestResult.Pass": -7.618620, "StateTestResult.WeakPass": -8.311767, "StatementList": -9.004914, "StatementList.push": -7.906302, "StatementTemplate": -7.906302, "StyleSheet": -9.004914, "StyleSheet.create": -9.004914, "T": -6.607019, "Tap": -9.004914, "Text": -8.311767, "The": -9.004914, "Thinking": -9.004914, "This": -9.004914, "Time": -9.004914, "Toggling": -9.004914, "Triangle": -9.004914, "Tutorial": -7.906302, "Verdana": -7.618620, "View": -9.004914, "We": -8.311767, "WeakPass": -9.004914, "When": -9.004914, "White": -9.004914, "You": -8.311767, "[": -3.955058, "]": -3.948668, "__BACKEND_ADDR__": -9.004914, "`": -6.520007, "a": -7.618620, "aaaaff": -8.311767, "aaffaa": -9.004914, "acc": -8.311767, "accent": -9.004914, "active": -7.618620, "add": -9.004914, "adjacencies": -9.004914, "alert": -7.395476, "alignItems": -8.311767, "all": -7.618620, "allowFullScreen": -8.311767, "amazing": -9.004914, "an": -8.311767, "and": -6.439965, "any": -6.702329, "apiInitPath": -9.004914, "apiPath": -9.004914, "app": -8.311767, "args": -5.267244, "arr": -7.213154, "arr.length": -7.906302, "arr.reduce": -9.004914, "as": -6.520007, "attribute": -7.906302, "attributes.": -9.004914, "auto": -8.311767, "b": -7.906302, "backend": -9.004914, "backend.": -9.004914, "background": -8.311767, "backgroundColor": -6.807689, "backgroundColorText": -8.311767, "baseline": -7.059004, "baseline.slice": -8.311767, "be": -7.395476, "below": -9.004914, "between": -7.618620, "bg": -9.004914, "bindActionCreators": -8.311767, "black": -7.213154, "blitNumberedGarden": -9.004914, "blitRandomGardenPair": -7.906302, "blue": -8.311767, "bold": -6.607019, "boolean": -6.607019, "br": -9.004914, "break": -7.213154, "build": -9.004914, "buildRandomNewSelector": -8.311767, "buildSelector": -7.906302, "buildStatement": -9.004914, "building": -9.004914, "built": -9.004914, "by": -9.004914, "c": -6.296864, "c.seenAllValues": -9.004914, "calc": -9.004914, "can": -9.004914, "caption": -9.004914, "case": -5.826860, "cell": -7.906302, "cellNum": -8.311767, "cellNumbers": -9.004914, "cellNumbers.length": -9.004914, "cellNumbers.splice": -9.004914, "center": -5.539178, "change": -9.004914, "childTypes": -7.906302, "children": -8.311767, "children.": -9.004914, "choices": -9.004914, "choices.filter": -9.004914, "class": -6.807689, "className": -4.389793, "className=": -6.232325, "classNames": -9.004914, "classes": -6.607019, "classes.active": -7.618620, "classes.exampleButton": -7.618620, "classes.guides": -9.004914, "classes.one": -9.004914, "classes.push": -8.311767, "classes.three": -9.004914, "classes.two": -9.004914, "classnames": -7.395476, "clearGarden": -8.311767, "cloneGarden": -9.004914, "code.": -9.004914, "col": -9.004914, "color": -6.232325, "color=": -8.311767, "colorName": -7.059004, "colorWeight": -7.906302, "colors": -7.213154, "column": -7.618620, "componentDidMount": -9.004914, "componentDidUpdate": -9.004914, "componentWillMount": -9.004914, "congratsAnchor": -9.004914, "connect": -8.311767, "console.log": -7.618620, "const": -6.060475, "constructor": -7.395476, "containerBackgroundColor": -8.311767, "context": -6.702329, "continue": -9.004914, "control": -6.607019, "controls": -9.004914, "count": -7.906302, "course": -9.004914, "curStyle": -7.906302, "cursor": -8.311767, "cx": -8.311767, "dark": -8.311767, "data": -7.906302, "data.message": -9.004914, "data.result": -9.004914, "date": -9.004914, "db": -7.213154, "default": -8.311767, "defaultProps": -9.004914, "delta": -7.906302, "describe": -6.807689, "description": -6.439965, "did": -9.004914, "didAnyTests": -7.906302, "dim": -9.004914, "dispatch": -8.311767, "displayName": -9.004914, "distance": -9.004914, "do": -9.004914, "document.body.appendChild": -9.004914, "document.createElement": -9.004914, "document.getElementById": -7.618620, "dom": -8.311767, "download": -9.004914, "downloadUrl": -8.311767, "drag": -8.311767, "drag.clientHeight": -9.004914, "drag.clientWidth": -9.004914, "draggable": -9.004914, "e": -6.807689, "e.dataTransfer.dropEffect": -7.906302, "e.dataTransfer.effectAllowed": -9.004914, "e.dataTransfer.setData": -8.311767, "e.nativeEvent": -9.004914, "e.preventDefault": -7.618620, "e.target": -9.004914, "ease": -8.311767, "easily": -9.004914, "editable": -9.004914, "editor": -8.311767, "else": -6.114542, "entity": -9.004914, "enum": -7.395476, "errorThrown": -7.618620, "even": -9.004914, "event": -9.004914, "events": -8.311767, "ex.": -8.311767, "example": -7.213154, "example.": -8.311767, "exampleAnchor": -9.004914, "exampleButton": -7.618620, "examples": -7.059004, "examples.length": -7.906302, "examples.push": -8.311767, "excellent": -9.004914, "explore": -9.004914, "export": -5.637618, "extends": -6.807689, "extraProps": -9.004914, "f": -7.059004, "factor": -7.906302, "fail": -9.004914, "failCount": -7.906302, "false": -6.365857, "fast": -7.395476, "ffaaaa": -8.311767, "fillValues": -9.004914, "fills": -8.311767, "first.": -9.004914, "flex": -6.114542, "flexRow": -9.004914, "fontFamily": -7.213154, "fontSize": -6.925472, "fontStyle": -8.311767, "fontWeight": -6.296864, "for": -6.439965, "frameBorder": -9.004914, "frameBorder=": -9.004914, "from": -6.296864, "frontend": -9.004914, "function": -5.478553, "fw": -7.906302, "fw1": -7.906302, "fw4": -7.906302, "g": -4.927376, "g.colors": -6.009182, "g.colors.filter": -9.004914, "g.colors.join": -9.004914, "g.colors.push": -9.004914, "g.colors.slice": -9.004914, "g.shapes": -6.232325, "g.shapes.join": -9.004914, "g.shapes.push": -9.004914, "g.shapes.slice": -9.004914, "garden": -7.059004, "garden=": -8.311767, "gardenList": -8.311767, "gardenToString": -8.311767, "gb_approot": -8.311767, "gb_caption": -9.004914, "gb_menuname": -9.004914, "getAdjacentIndices": -9.004914, "getDescription": -8.311767, "getExampleVideoUrl": -9.004914, "getGardenName": -9.004914, "getValue": -7.618620, "getValues": -9.004914, "gettingStartedState": -8.311767, "go": -9.004914, "goes": -9.004914, "going": -7.906302, "graphcool": -9.004914, "graphs": -9.004914, "gray": -7.906302, "guide": -8.311767, "guides": -7.906302, "guides.map": -9.004914, "h": -6.702329, "h.innerText": -9.004914, "had": -9.004914, "handleDrop": -9.004914, "handleOnBlur": -9.004914, "handleSubmit": -9.004914, "hasFailed": -7.906302, "hasPassed": -7.906302, "hasPassedAndFailed": -8.311767, "have": -8.311767, "height": -7.059004, "height=": -9.004914, "hidden": -8.311767, "holes": -7.618620, "hovering": -6.607019, "how": -9.004914, "href": -7.213154, "href=": -7.395476, "https": -9.004914, "i": -4.461619, "iconClass": -9.004914, "iconClass=": -9.004914, "id": -9.004914, "if": -5.176273, "ignoreNextEdit": -9.004914, "image": -7.618620, "implement": -9.004914, "import": -5.960392, "in": -7.906302, "increaseSize": -9.004914, "indented": -9.004914, "index": -5.960392, "index=": -8.311767, "inherited": -8.311767, "initial": -7.906302, "initial.childTypes": -9.004914, "initial.childTypes.map": -9.004914, "initial.precedence": -9.004914, "input": -9.004914, "input.value": -9.004914, "install": -9.004914, "interface": -6.520007, "into": -9.004914, "is": -7.906302, "isAllValues": -7.395476, "isDragging": -7.906302, "isRow": -7.618620, "it": -7.395476, "italic": -9.004914, "items": -6.296864, "items.length": -7.618620, "jqXHR": -8.311767, "jqXHRdata": -8.311767, "just": -8.311767, "justify": -6.702329, "justifyCenter": -9.004914, "k": -8.311767, "keep": -9.004914, "key": -7.618620, "key=": -8.311767, "knew": -9.004914, "label": -6.607019, "lastResult": -7.395476, "left": -6.114542, "leftButton": -9.004914, "leftButton=": -9.004914, "let": -5.220724, "lh": -7.395476, "light": -9.004914, "line.": -9.004914, "lineHeight": -9.004914, "lines": -9.004914, "lines.": -9.004914, "link": -7.618620, "list": -8.311767, "list.indexOf": -8.311767, "list.map": -9.004914, "list.push": -9.004914, "list.splice": -9.004914, "ll": -9.004914, "locally.": -9.004914, "long": -9.004914, "lot": -9.004914, "ls": -7.906302, "ma": -8.311767, "makeEmptyGarden": -8.311767, "makeGarden": -8.311767, "makeNewExample": -8.311767, "makeRandomGarden": -9.004914, "mapDispatchToProps": -8.311767, "mapStateToProps": -8.311767, "max": -7.618620, "maxGarden": -8.311767, "maxLength": -7.395476, "maxLength=": -7.395476, "maxPrecedence": -8.311767, "maxWidth": -8.311767, "mb": -6.807689, "menuName": -9.004914, "menuName=": -9.004914, "meters": -8.311767, "mh": -8.311767, "mid": -9.004914, "min": -7.906302, "min=": -7.618620, "minWidth": -8.311767, "ml": -9.004914, "module": -7.906302, "more": -9.004914, "mouseOver": -7.059004, "movable": -7.906302, "movable=": -9.004914, "move": -7.906302, "mt": -7.906302, "mt25": -9.004914, "multiple": -9.004914, "mutateGarden": -9.004914, "mv": -7.213154, "n": -7.618620, "name": -6.807689, "nameMap": -7.906302, "namespace": -8.311767, "nbsp": -7.906302, "need": -9.004914, "nested": -9.004914, "new": -7.395476, "newColor": -9.004914, "newShape": -8.311767, "next": -9.004914, "nextStep": -7.906302, "none": -8.311767, "normal": -7.906302, "npm": -8.311767, "null": -6.925472, "number": -5.478553, "numberOfLines": -9.004914, "obj": -7.906302, "of": -7.395476, "offset": -9.004914, "ok": -9.004914, "on": -7.618620, "onChange": -6.925472, "onChange=": -6.807689, "onChanged=": -9.004914, "onClick": -7.213154, "onClick=": -6.807689, "onDragEnd": -9.004914, "onDragEnter": -9.004914, "onDragOver": -9.004914, "onDragStart": -9.004914, "onDrop=": -9.004914, "onEdit": -9.004914, "onEdit=": -9.004914, "onLeftButtonClicked": -9.004914, "onLeftButtonClicked=": -9.004914, "onMouseEnter": -9.004914, "onMouseLeave": -9.004914, "onMouseLeave=": -9.004914, "onMouseOver": -9.004914, "onPress": -9.004914, "onRightButtonClicked": -9.004914, "onSaveClicked": -9.004914, "onSaveClicked=": -9.004914, "onSubmit": -9.004914, "onSubmit=": -9.004914, "once.": -9.004914, "op": -8.311767, "or": -9.004914, "our": -9.004914, "out": -8.311767, "outHtml": -7.906302, "overflow": -7.618620, "own": -8.311767, "p": -6.060475, "p.flex": -9.004914, "p.flexRow": -9.004914, "p.justifyCenter": -9.004914, "p.mt": -9.004914, "p.precedence": -9.004914, "p.w": -9.004914, "pa": -9.004914, "padding": -8.311767, "param": -7.213154, "param.AccountName": -9.004914, "param.AccountNumber": -9.004914, "param.BankCode": -9.004914, "param.BankName": -9.004914, "param.Email": -9.004914, "param.HomoiothermyFee": -9.004914, "param.PurchaseTotal": -9.004914, "param.RefrigerFee": -9.004914, "pass": -8.311767, "passCount": -7.906302, "passage": -9.004914, "path": -7.618620, "pb": -8.311767, "ph": -8.311767, "pl": -9.004914, "placeCount": -7.906302, "playground": -9.004914, "plural": -7.395476, "pointer": -8.311767, "pointerEvents": -7.213154, "posts": -9.004914, "pr": -9.004914, "precedence": -7.395476, "preferred": -9.004914, "prevProps": -9.004914, "prevProps.gettingStartedState.isCurrentStep": -9.004914, "prevProps.gettingStartedState.selectedExample": -9.004914, "prevState": -9.004914, "private": -7.906302, "projectId": -9.004914, "project_id": -9.004914, "props": -9.004914, "public": -7.213154, "put": -9.004914, "pv": -7.906302, "px": -9.004914, "queries": -8.311767, "queryInitData": -9.004914, "r": -7.618620, "randomColor": -7.618620, "randomElementOf": -9.004914, "randomShape": -7.618620, "randomWeightedElementOf": -7.906302, "red": -9.004914, "ref": -7.906302, "ref=": -7.906302, "refs": -9.004914, "render": -6.232325, "renderBox": -9.004914, "renderEditor": -7.906302, "renderList": -7.618620, "repository": -9.004914, "require": -6.520007, "required": -6.807689, "required/": -6.925472, "result": -5.913871, "resultLookup": -7.906302, "results": -8.311767, "results.push": -8.311767, "return": -4.505104, "rgba": -8.311767, "right": -6.296864, "rightButton": -9.004914, "rightButton=": -9.004914, "rnd": -6.925472, "role": -9.004914, "role=": -9.004914, "row": -8.311767, "rowCol": -7.906302, "rule": -9.004914, "rule.examples": -9.004914, "rule.test": -8.311767, "run": -8.311767, "s": -7.213154, "s.describe": -9.004914, "s.test": -9.004914, "sam": -9.004914, "sam.move": -9.004914, "save": -9.004914, "scroller": -9.004914, "seenAllValues": -8.311767, "seenResults": -7.906302, "selectExample": -7.906302, "selected": -9.004914, "selectedExample": -6.296864, "set": -9.004914, "setInputValue": -9.004914, "shadow": -9.004914, "shape": -6.702329, "shape=": -8.311767, "shapeName": -7.059004, "shapeWeight": -7.906302, "shapes": -7.213154, "should": -8.311767, "show": -9.004914, "sides.": -9.004914, "simple": -9.004914, "sizes": -8.311767, "snd": -9.004914, "snd.play": -9.004914, "snd.volume": -9.004914, "so": -9.004914, "some": -9.004914, "space": -8.311767, "spaces": -9.004914, "spec": -7.906302, "spec.describe": -9.004914, "spec.isAllValues": -9.004914, "spec.test": -9.004914, "src": -8.311767, "src=": -9.004914, "start": -7.395476, "started": -8.311767, "state": -7.906302, "state.gettingStarted.gettingStartedState": -9.004914, "static": -9.004914, "stoneCount": -8.311767, "string": -5.786038, "style": -5.449566, "style=": -6.925472, "styles": -8.311767, "styles.entity": -9.004914, "successfully": -9.004914, "super": -7.906302, "super.move": -8.311767, "switch": -7.059004, "target": -7.618620, "target=": -7.618620, "tc": -8.311767, "technology": -9.004914, "terms": -9.004914, "test": -5.913871, "test.description": -8.311767, "test.test": -9.004914, "test=": -7.906302, "text": -6.807689, "textAlign": -7.906302, "textStatus": -7.618620, "that": -9.004914, "the": -7.059004, "there": -9.004914, "things": -9.004914, "this": -6.171701, "this.componentDidMount": -9.004914, "this.componentDidMount.bind": -9.004914, "this.fillValues": -9.004914, "this.getExampleVideoUrl": -9.004914, "this.getValues": -9.004914, "this.handleSubmit": -8.311767, "this.handleSubmit.bind": -9.004914, "this.ignoreNextEdit": -8.311767, "this.increaseSize": -9.004914, "this.name": -9.004914, "this.props.apiInitPath": -9.004914, "this.props.apiPath": -9.004914, "this.props.caption": -9.004914, "this.props.children": -9.004914, "this.props.color": -8.311767, "this.props.color.toString": -9.004914, "this.props.gettingStartedState": -9.004914, "this.props.gettingStartedState.isCurrentStep": -7.395476, "this.props.gettingStartedState.selectedExample": -9.004914, "this.props.index": -9.004914, "this.props.menuName": -9.004914, "this.props.movable": -9.004914, "this.props.nextStep": -7.395476, "this.props.onEdit": -7.906302, "this.props.projectId": -9.004914, "this.props.selectExample": -7.618620, "this.props.shape": -8.311767, "this.props.shape.toString": -9.004914, "this.queryInitData": -8.311767, "this.queryInitData.bind": -9.004914, "this.refs.congratsAnchor.getBoundingClientRect": -9.004914, "this.refs.exampleAnchor.getBoundingClientRect": -9.004914, "this.refs.scroller.scrollTop": -8.311767, "this.render": -9.004914, "this.render.bind": -9.004914, "this.renderBox": -9.004914, "this.setInputValue": -9.004914, "this.setInputValue.bind": -6.807689, "this.setState": -6.925472, "this.sizes": -7.059004, "this.sizes.length": -7.395476, "this.state": -8.311767, "this.state.fontSize": -8.311767, "this.state.isDragging": -8.311767, "this.state.param": -7.906302, "those": -9.004914, "throw": -9.004914, "tiny": -9.004914, "title": -6.171701, "tmp": -7.618620, "to": -6.807689, "together": -9.004914, "tom": -9.004914, "tom.move": -9.004914, "top": -8.311767, "totalWeight": -8.311767, "transition": -7.618620, "transparent": -7.618620, "true": -6.439965, "ttu": -9.004914, "tutorial": -9.004914, "tutorial.description": -9.004914, "tutorial.image": -9.004914, "tutorial.link": -9.004914, "tutorial.title": -8.311767, "tutorials": -9.004914, "type": -6.807689, "type=": -6.807689, "types": -9.004914, "ultrabold": -9.004914, "ultralight": -9.004914, "undefined": -7.618620, "up": -9.004914, "user": -7.395476, "using": -9.004914, "v": -9.004914, "v.weight": -9.004914, "value": -6.925472, "value=": -6.807689, "values": -7.906302, "valuesToIndex": -9.004914, "var": -5.198251, "views.": -9.004914, "void": -7.213154, "w": -7.395476, "warning": -9.004914, "weight": -7.059004, "while": -8.311767, "white": -8.311767, "width": -7.618620, "will": -9.004914, "window.onload": -9.004914, "with": -7.618620, "withRouter": -8.311767, "work": -9.004914, "wrap": -8.311767, "x": -5.869420, "xfer": -9.004914, "xfer.setDragImage": -9.004914, "xs": -9.004914, "y": -7.059004, "yellow": -8.311767, "you": -7.618620, "you.": -9.004914, "your": -7.618620, "zero": -9.004914, "{": -2.934176, "|": -7.395476, "||": -9.004914, "}": -2.938806, "。": -8.311767, "「": -8.311767, "」": -8.311767, "『": -9.004914, "』": -9.004914, "下": -9.004914, "人": -7.906302, "付": -7.906302, "代": -9.004914, "件": -7.618620, "信": -7.618620, "儲": -9.004914, "元": -7.906302, "冒": -9.004914, "冷": -8.311767, "凍": -9.004914, "分": -8.311767, "前": -9.004914, "可": -8.311767, "名": -7.906302, "和": -9.004914, "員": -9.004914, "單": -7.906302, "基": -9.004914, "填": -9.004914, "多": -9.004914, "姓": -8.311767, "存": -9.004914, "定": -8.311767, "少": -9.004914, "帳": -7.906302, "常": -9.004914, "式": -8.311767, "必": -9.004914, "或": -9.004914, "戶": -9.004914, "擇": -9.004914, "收": -7.618620, "料": -8.311767, "方": -8.311767, "於": -9.004914, "時": -8.311767, "會": -9.004914, "本": -9.004914, "款": -8.311767, "此": -9.004914, "溫": -9.004914, "為": -9.004914, "用": -8.311767, "略": -9.004914, "當": -8.311767, "省": -9.004914, "碼": -9.004914, "筆": -9.004914, "箱": -7.618620, "維": -9.004914, "藏": -9.004914, "號": -7.618620, "行": -8.311767, "要": -9.004914, "訂": -7.906302, "設": -8.311767, "請": -9.004914, "護": -9.004914, "費": -7.906302, "資": -8.311767, "轉": -9.004914, "逗": -9.004914, "運": -7.906302, "選": -9.004914, "金": -9.004914, "銀": -8.311767, "開": -9.004914, "隔": -9.004914, "非": -9.004914, "面": -9.004914, "項": -9.004914, "須": -9.004914, "額": -9.004914, "\ufeff": -9.004914, ",": -7.395476, "🎉": -9.004914, }, "Unity3D Asset": map[string]float64{ "!": -5.142394, "%": -5.142394, ",": -3.127491, "-": -3.350635, ".": -4.177313, ":": -1.043892, "Allowed": -7.221836, "AnimationClip": -7.221836, "Canvas": -7.221836, "CanvasRenderer": -7.221836, "DefaultImporter": -7.221836, "Fader_Tint": -7.221836, "Fixed": -7.221836, "GameObject": -6.528689, "GapTile": -7.221836, "Hover": -7.221836, "Material": -7.221836, "Maximum": -7.221836, "MonoBehaviour": -6.123224, "Prefab": -7.221836, "Radius": -5.430076, "RectTransform": -6.528689, "TAG": -5.835541, "TimeManager": -7.221836, "Timestep": -6.528689, "Untagged": -6.528689, "YAML": -5.835541, "[": -4.656886, "]": -4.656886, "_Color": -7.221836, "_MainTex": -7.221836, "_fadeOnStart": -7.221836, "_fadeOnStartDelay": -7.221836, "_fadeTime": -7.221836, "_startFaded": -7.221836, "_toDeactivate": -7.221836, "a": -5.430076, "aa": -7.221836, "ab": -7.221836, "ac": -7.221836, "afd": -7.221836, "alwaysUseClearAsStartColor": -7.221836, "attribute": -5.612398, "b": -5.275926, "bf": -7.221836, "c": -5.430076, "canvas_Fullscreen_Fader": -7.221836, "ce": -7.221836, "classID": -5.612398, "curve": -5.430076, "d": -6.123224, "d.com": -5.835541, "data": -6.528689, "e": -5.430076, "fadeOut": -7.221836, "fileFormatVersion": -7.221836, "fileID": -3.178785, "first": -6.528689, "folderAsset": -7.221836, "g": -6.528689, "genericBindings": -7.221836, "guid": -5.612398, "inSlope": -4.736929, "m_AnchorMax": -6.528689, "m_AnchorMin": -6.528689, "m_AnchoredPosition": -6.528689, "m_AnimationClipSettings": -7.221836, "m_AnimationType": -7.221836, "m_Bounds": -7.221836, "m_Camera": -7.221836, "m_Center": -7.221836, "m_Children": -6.528689, "m_ClipBindingConstant": -7.221836, "m_Color": -7.221836, "m_Color.a": -6.528689, "m_Colors": -7.221836, "m_Component": -6.528689, "m_Compressed": -7.221836, "m_CompressedRotationCurves": -7.221836, "m_Curve": -5.430076, "m_CustomRenderQueue": -7.221836, "m_CycleOffset": -7.221836, "m_EditorClassIdentifier": -6.123224, "m_EditorCurves": -7.221836, "m_EditorHideFlags": -6.123224, "m_Enabled": -5.835541, "m_EulerEditorCurves": -7.221836, "m_Events": -7.221836, "m_Extent": -7.221836, "m_Father": -6.528689, "m_FillAmount": -7.221836, "m_FillCenter": -7.221836, "m_FillClockwise": -7.221836, "m_FillMethod": -7.221836, "m_FillOrigin": -7.221836, "m_FloatCurves": -7.221836, "m_Floats": -7.221836, "m_GameObject": -5.275926, "m_HeightFromFeet": -7.221836, "m_Icon": -6.528689, "m_IsActive": -6.528689, "m_IsExploded": -7.221836, "m_IsPrefabParent": -7.221836, "m_KeepOriginalOrientation": -7.221836, "m_KeepOriginalPositionXZ": -7.221836, "m_KeepOriginalPositionY": -7.221836, "m_Layer": -6.528689, "m_Level": -7.221836, "m_LocalPosition": -6.528689, "m_LocalRotation": -6.528689, "m_LocalScale": -6.528689, "m_LocalScale.x": -7.221836, "m_LocalScale.y": -7.221836, "m_LocalScale.z": -7.221836, "m_LoopBlend": -7.221836, "m_LoopBlendOrientation": -7.221836, "m_LoopBlendPositionXZ": -7.221836, "m_LoopBlendPositionY": -7.221836, "m_LoopTime": -7.221836, "m_Material": -7.221836, "m_Mirror": -7.221836, "m_Modification": -7.221836, "m_Modifications": -7.221836, "m_Name": -5.275926, "m_NavMeshLayer": -6.528689, "m_ObjectHideFlags": -4.656886, "m_Offset": -7.221836, "m_OrientationOffsetY": -7.221836, "m_OverridePixelPerfect": -7.221836, "m_OverrideSorting": -7.221836, "m_PPtrCurves": -7.221836, "m_ParentPrefab": -7.221836, "m_Pivot": -6.528689, "m_PixelPerfect": -7.221836, "m_PlaneDistance": -7.221836, "m_PositionCurves": -7.221836, "m_PostInfinity": -5.430076, "m_PreInfinity": -5.430076, "m_PrefabInternal": -4.823941, "m_PrefabParentObject": -4.823941, "m_PreserveAspect": -7.221836, "m_ReceivesEvents": -7.221836, "m_RemovedComponents": -7.221836, "m_RenderMode": -7.221836, "m_RootGameObject": -7.221836, "m_RootOrder": -6.528689, "m_RotationCurves": -7.221836, "m_SampleRate": -7.221836, "m_SavedProperties": -7.221836, "m_Scale": -7.221836, "m_ScaleCurves": -7.221836, "m_Script": -6.123224, "m_Shader": -7.221836, "m_ShaderKeywords": -7.221836, "m_SizeDelta": -6.528689, "m_SortingLayerID": -7.221836, "m_SortingOrder": -7.221836, "m_Sprite": -7.221836, "m_StartTime": -7.221836, "m_StaticEditorFlags": -6.528689, "m_StopTime": -7.221836, "m_TagString": -6.528689, "m_TexEnvs": -7.221836, "m_Texture": -7.221836, "m_TimeScale": -7.221836, "m_TransformParent": -7.221836, "m_Type": -7.221836, "m_UseHighQualityCurve": -7.221836, "m_WrapMode": -7.221836, "name": -6.528689, "outSlope": -4.736929, "path": -5.430076, "pptrCurveMapping": -7.221836, "r": -6.528689, "script": -5.612398, "second": -6.528689, "serializedVersion": -4.582778, "tag": -5.835541, "tangentMode": -4.736929, "time": -4.736929, "type": -5.835541, "u": -5.835541, "unity": -5.835541, "userData": -7.221836, "value": -4.736929, "w": -6.528689, "x": -3.963739, "y": -3.963739, "yes": -7.221836, "z": -4.582778, "{": -2.767489, "}": -2.767489, }, "Unix Assembly": map[string]float64{ "#": -3.580428, "$": -2.733130, "%": -3.985893, "(": -5.777652, ")": -5.777652, "+": -4.679040, ",": -2.194133, "-": -3.831742, ".": -5.777652, ".align": -5.084505, ".arm": -5.777652, ".ascii": -5.084505, ".asciz": -5.777652, ".byte": -2.781920, ".cstring": -5.777652, ".endm": -5.777652, ".global": -5.777652, ".globl": -5.084505, ".long": -3.985893, ".macro": -5.777652, ".p": -5.084505, ".quad": -5.084505, ".section": -5.777652, ".set": -4.168214, ".subsections_via_symbols": -5.777652, ".text": -5.777652, ".thumb": -5.777652, ".word": -5.777652, ":": -2.733130, "?": -4.679040, "@": -5.084505, "Confirm": -5.777652, "EH_frame": -5.084505, "L": -3.475067, "LASFDE": -4.679040, "LC": -5.084505, "LCFI": -4.168214, "LECIE": -5.084505, "LEFDE": -5.084505, "LFB": -4.391358, "LFE": -5.084505, "LSCIE": -5.084505, "LSFDE": -5.777652, "[": -4.679040, "]": -4.679040, "__TEXT": -5.777652, "__eh_frame": -5.777652, "_main": -5.084505, "_main.eh": -5.084505, "_puts": -5.777652, "_start": -5.084505, "add": -5.084505, "adr": -5.084505, "align": -5.084505, "angel": -5.777652, "back_to_arm": -5.084505, "beq": -5.777652, "bl": -5.777652, "bne": -5.777652, "bx": -5.084505, "call": -5.084505, "coalesced": -5.777652, "cr": -5.777652, "done": -5.084505, "eax": -5.777652, "exit_code": -5.084505, "hello_text": -5.777652, "into_thumb": -5.084505, "invalid": -5.084505, "ldr": -5.777652, "ldrb": -5.084505, "leaq": -5.777652, "leave": -5.777652, "live_support": -5.777652, "mov": -3.985893, "movl": -5.777652, "movq": -5.777652, "no_toc": -5.777652, "nop": -5.777652, "number.": -5.777652, "output_next": -5.084505, "pushq": -5.777652, "r": -2.281145, "rbp": -5.084505, "rdi": -5.777652, "ret": -5.777652, "rip": -5.777652, "rsp": -5.777652, "set": -3.475067, "skip_output": -5.084505, "stc": -5.777652, "strip_static_syms": -5.777652, "sub": -5.084505, "swi": -4.679040, "teq": -5.084505, "writec": -5.777652, }, "Uno": map[string]float64{ "!": -5.356586, "(": -2.278616, ")": -2.285217, "*": -4.817590, "+": -5.356586, ",": -3.370671, "-": -4.358057, ".GetBody": -5.916202, "/": -6.609349, "//UpdateValues": -7.302496, "//fixtureDef.friction": -7.302496, ":": -5.916202, ";": -2.312064, "<": -6.609349, "<Body>": -5.916202, "=": -2.895777, ">": -6.609349, "ActualPosition": -6.609349, "Application.Current.FrameInterval": -7.302496, "Ball": -6.203884, "Ball.BallRectangle.Intersects": -6.609349, "Ball.BallVelocity": -7.302496, "Ball.BallVelocity.X": -7.302496, "Ball.BallVelocity.Y": -7.302496, "BeginContact": -7.302496, "Body": -7.302496, "BodyDef": -6.203884, "BodyType.Dynamic": -7.302496, "Contact": -5.916202, "ContactImpulse": -7.302496, "ContactListener": -5.916202, "Context.VirtualResolution": -7.302496, "Context.VirtualResolution.X": -7.302496, "CreateBox": -6.609349, "CreateDeleteBody": -6.609349, "CreateFloor": -6.609349, "D": -6.203884, "DMath": -7.302496, "EndContact": -7.302496, "EventArgs": -7.302496, "FixtureDef": -6.203884, "Height": -5.916202, "Hide": -6.609349, "IContactListener": -7.302496, "Image": -4.817590, "Inline": -6.609349, "Input.IsKeyDown": -5.223055, "List": -5.916202, "Manifold": -7.302496, "Math.Clamp": -6.609349, "Node": -6.609349, "OnDraw": -7.302496, "OnFixedUpdate": -7.302496, "OnInitialize": -7.302496, "OnInitializeTestBed": -7.302496, "OnUpdate": -6.609349, "OnWindowResize": -7.302496, "PONG": -6.609349, "PadVelocity": -5.693059, "Player": -3.351253, "PlayerPads": -6.609349, "PolygonShape": -6.203884, "Pong": -6.609349, "Pos": -3.970292, "Pos.X": -5.916202, "Pos.Y": -5.223055, "Position": -6.609349, "PostSolve": -7.302496, "PreSolve": -7.302496, "Random": -5.916202, "Rect": -4.306764, "Rect.Position": -5.916202, "Rect.Size": -6.609349, "SpwanBall": -6.203884, "TestBed": -7.302496, "TowerBlock": -6.203884, "TowerBuilder": -7.302496, "TowerBuilder.Box": -7.302496, "Uno": -6.203884, "Uno.Collections": -6.203884, "Uno.Content": -6.203884, "Uno.Content.Models": -6.203884, "Uno.Designer": -7.302496, "Uno.Diagnostics.Clock.GetSeconds": -7.302496, "Uno.Drawing.RoundedRectangle.Draw": -6.203884, "Uno.Graphics": -6.203884, "Uno.Physics.Box": -7.302496, "Uno.Platform.Key.Down": -6.609349, "Uno.Platform.Key.S": -6.609349, "Uno.Platform.Key.Up": -6.609349, "Uno.Platform.Key.W": -6.609349, "Uno.Scenes": -6.203884, "Uno.Scenes.Input.AddGlobalListener": -7.302496, "Uno.UI": -7.302496, "UpdatePositions": -7.302496, "UpdateValues": -6.609349, "Width": -5.916202, "World.ContactListener": -7.302496, "World.CreateBody": -6.203884, "World.DestroyBody": -7.302496, "World.Gravity": -7.302496, "[": -5.916202, "]": -5.916202, "_player": -4.412125, "args": -7.302496, "b": -6.203884, "b.bodiesToDelete.Add": -6.609349, "b.deleteBody": -6.609349, "ballPosition": -6.203884, "ballRect": -6.609349, "ballRect.Intersects": -6.609349, "ballRect.Position": -6.203884, "ballRect.Position.X": -6.609349, "ballRect.Position.Y": -6.609349, "ballRect.Size": -7.302496, "ballVelocity": -6.203884, "ballVelocity.X": -7.302496, "ballVelocity.Y": -7.302496, "base.OnFixedUpdate": -7.302496, "base.OnInitialize": -7.302496, "base.OnUpdate": -6.609349, "bodies": -7.302496, "bodies.Add": -7.302496, "bodies.Clear": -7.302496, "bodies.Count": -7.302496, "bodies.Remove": -7.302496, "bodiesToDelete": -6.609349, "bodiesToDelete.Clear": -6.609349, "body": -5.693059, "body.CreateFixture": -7.302496, "bodyDef": -5.510737, "bodyDef.angularVelocity": -7.302496, "bodyDef.position": -6.203884, "bodyDef.type": -7.302496, "bodyDef.userData": -7.302496, "c": -6.609349, "class": -5.916202, "contact": -5.916202, "contact.GetFixtureA": -6.609349, "contact.GetFixtureB": -6.609349, "contactListener": -6.609349, "debug_log": -7.302496, "deleteBody": -6.609349, "deleteBody.CreateFixture": -7.302496, "else": -7.302496, "fixtureDef": -5.510737, "fixtureDef.density": -6.203884, "fixtureDef.shape": -6.203884, "float": -3.613617, "floorBody": -6.609349, "floorBody.CreateFixture": -7.302496, "foreach": -7.302496, "get": -4.999911, "if": -4.211454, "impulse": -7.302496, "in": -7.302496, "int": -6.609349, "manifold": -7.302496, "mouseBody": -7.302496, "namespace": -6.203884, "new": -4.358057, "null": -5.693059, "object": -7.302496, "override": -5.510737, "padVelocity": -5.693059, "player": -4.817590, "private": -5.693059, "protected": -5.510737, "public": -4.358057, "random": -6.609349, "random.NextFloat": -6.609349, "rectangleSize": -5.510737, "rectangleSize.X": -7.302496, "ref": -6.609349, "resolution": -6.203884, "resolution.X": -5.916202, "resolution.Y": -5.693059, "return": -5.223055, "sender": -7.302496, "set": -4.999911, "shape": -5.510737, "shape.SetAsBox": -6.203884, "this": -6.609349, "this.b": -7.302496, "using": -4.211454, "value": -5.223055, "value.Position": -6.609349, "value.Size.X": -6.609349, "value.Size.Y": -6.609349, "var": -4.817590, "void": -4.469283, "{": -3.012037, "||": -5.916202, "}": -3.012037, }, "UnrealScript": map[string]float64{ "!": -5.777033, "(": -2.598979, ")": -2.598979, "*": -7.386471, ",": -4.128374, "-": -2.369191, ".": -7.386471, ".default.bModeExclusive": -6.693324, ".static.SetFlashbangMode": -7.386471, "/*": -7.386471, "//": -6.693324, "//FirePowerMode": -7.386471, "//GE": -4.747414, "//var": -5.307029, ":": -4.678421, ";": -3.557829, "<Ammo>": -6.287859, "<CacheManager.WeaponRecord>": -7.386471, "<Weapon>": -5.440561, "<WeaponPickup>": -6.693324, "=": -2.409737, "?": -7.386471, "A.Powerups.EnergyPowerUp": -7.386471, "AmmoEnergyRifle": -7.386471, "AmmoFlameThrower": -7.386471, "AmmoPickupClassName": -7.386471, "AmmoPickupClassNames": -4.747414, "AmmoPistol": -7.386471, "AmmoRocketLauncher": -7.386471, "AmmoShotgun": -7.386471, "AmmoSniper": -7.386471, "AssaultRifleAmmoInv": -7.386471, "AssaultRifleFire": -5.777033, "AssaultRifleProjAlt": -6.000176, "BallLauncher": -7.386471, "CacheManager": -7.386471, "Class": -4.553258, "DamTypeAltPistol": -7.386471, "DamTypePistol": -7.386471, "DamageMultiplier": -7.386471, "DamagePercentage": -6.693324, "Description": -7.386471, "Error": -7.386471, "False": -7.386471, "FireMode": -7.386471, "FirePowerMode": -7.386471, "First": -7.386471, "FlashbangModeString": -6.287859, "For": -6.287859, "FriendlyName": -7.386471, "GE": -7.386471, "GUISelectOptions": -7.386471, "GameInfo": -7.386471, "Generated": -6.000176, "GroupName": -7.386471, "Has": -7.386471, "HelloWorld": -7.386471, "Here": -7.386471, "HurterProxy_Fire": -6.693324, "HurterProxy_Gas": -6.693324, "InitGame": -7.386471, "IterationNum": -7.386471, "Level.Game.bAllowVehicles": -7.386471, "MutU": -6.693324, "Mutator": -7.386471, "ONLY": -6.287859, "Opposite": -7.386471, "Options": -7.386471, "ProjectileASExplAlt": -6.693324, "ProjectileAltEnergyRifle": -5.440561, "ProjectileAltFlameThrower": -6.287859, "ProjectileAltShotgun": -6.693324, "ProjectileConcussionGrenade": -6.287859, "ProjectileEMPGrenade": -6.693324, "ProjectileEnergyRifle": -5.440561, "ProjectileFragGrenade": -5.777033, "ProjectileIncendiaryGrenade": -6.000176, "ProjectileRocket": -5.777033, "ProjectileRocketDrunken": -6.287859, "ProjectileRocketSeeking": -6.287859, "ProjectileSmokeGrenade": -6.693324, "ProjectileToxicGrenade": -6.693324, "ReplacedAmmoPickupClass": -7.386471, "ReplacedAmmoPickupClasses": -7.386471, "ReplacedWeaponClass": -7.386471, "ReplacedWeaponClassName.": -6.693324, "ReplacedWeaponClassNames": -4.128374, "ReplacedWeaponClasses": -7.386471, "ReplacedWeaponPickupClass": -7.386471, "ReplacedWeaponPickupClasses": -7.386471, "ShieldReward": -7.386471, "Structs": -7.386471, "T.Pickups.Energy_Pickup_B_FX_": -6.693324, "These": -7.386471, "Think": -7.386471, "This": -6.287859, "True": -4.613882, "U": -2.058595, "UNUSED": -7.386471, "US": -7.386471, "Weapon": -4.090634, "WeaponClass": -7.386471, "WeaponClass.": -7.386471, "WeaponClasses": -4.747414, "WeaponDescText": -3.860110, "WeaponDisplayText": -3.860110, "WeaponEnergyRifle": -7.386471, "WeaponFlameThrower": -6.693324, "WeaponInfo": -6.693324, "WeaponPickupClassName": -7.386471, "WeaponPickupClassNames": -7.386471, "WeaponRocketLauncher": -7.386471, "WeaponShotgun": -6.693324, "WeaponSniper": -7.386471, "WeaponX": -7.386471, "Weapons": -6.000176, "Weapons.Length": -7.386471, "Weapons.U": -2.732510, "WeponClass.": -7.386471, "XMPWorldItemsM.items.Pickup_TD_": -7.386471, "[": -4.821521, "]": -4.821521, "`": -7.386471, "a": -7.386471, "all": -7.386471, "are": -7.386471, "bConfigUseU": -4.090634, "bEnabled": -7.386471, "bExperimental": -7.386471, "bIntegrateShieldReward": -6.693324, "bIsVehicle": -4.613882, "bNotVehicle": -6.287859, "bUseFieldGenerator": -6.693324, "bUseProximitySensor": -6.693324, "bUseU": -7.386471, "bUseXMPFeel": -6.693324, "be": -7.386471, "bool": -4.901564, "byte": -6.693324, "can": -6.693324, "class": -4.988576, "config": -4.496099, "const": -7.386471, "d": -7.386471, "default": -6.287859, "defaultproperties": -6.693324, "deployable": -7.386471, "duh.": -7.386471, "event": -7.386471, "extends": -6.693324, "false": -6.693324, "from": -6.000176, "gametypes": -7.386471, "gametypes.": -7.386471, "going": -7.386471, "in": -6.287859, "independent": -7.386471, "indicates": -7.386471, "initialise": -7.386471, "inside": -7.386471, "int": -6.287859, "ireAltEnergyRifle": -7.386471, "ireAltFlameThrower": -7.386471, "ireAltPistol": -5.777033, "ireFlameThrower": -6.000176, "ireGrenade": -7.386471, "irePistol": -5.777033, "ireShotgun": -6.000176, "ireSniper": -5.777033, "is": -6.287859, "it": -7.386471, "localized": -6.693324, "log": -7.386471, "mutator.": -7.386471, "non": -7.386471, "of": -6.693324, "only": -6.693324, "out": -7.386471, "properties": -6.287859, "put": -7.386471, "replace.": -7.386471, "require": -7.386471, "s": -7.386471, "setting": -7.386471, "shotgun.": -7.386471, "spawns": -7.386471, "still": -7.386471, "string": -4.747414, "struct": -7.386471, "structs": -7.386471, "that": -6.693324, "the": -6.000176, "thus": -7.386471, "to": -6.693324, "turrets": -7.386471, "var": -3.985273, "vehicle": -6.287859, "we": -6.000176, "weapon": -6.693324, "what": -7.386471, "work": -7.386471, "works": -7.386471, "world.": -7.386471, "{": -6.000176, "}": -5.594711, }, "UrWeb": map[string]float64{ "'": -6.041444, "(": -3.690069, ")": -3.901378, "*": -6.734592, "*acc": -6.734592, "+": -6.734592, ",": -4.942832, "-": -2.640247, "/": -6.734592, "0": -5.635979, "01": -6.734592, "01T01": -6.734592, "1": -6.041444, "10": -6.734592, "2": -4.942832, "2012": -6.734592, "4": -6.734592, "42Z": -6.734592, "60": -6.734592, ":": -2.025061, ";": -5.348297, "<": -6.734592, "<->": -5.348297, "</a>": -6.734592, "</body>": -6.734592, "</label>": -6.734592, "</ul>": -6.734592, "</xml>": -5.635979, "<a>": -6.734592, "<body>": -6.734592, "<ctextbox>": -6.734592, "<dyn>": -6.734592, "<label>": -6.734592, "<ul>": -6.734592, "<xml>": -6.041444, "=": -3.844220, ">": -2.591457, "Blob": -6.734592, "Datetime.addMinutes": -6.734592, "Day": -6.734592, "Enter": -6.734592, "Hour": -6.041444, "ISO": -6.734592, "List": -6.734592, "List.foldl": -6.734592, "Make": -6.734592, "Minute": -6.734592, "Minute=": -6.734592, "Month": -6.734592, "None": -6.734592, "Parse.String": -6.734592, "Second": -6.734592, "Second=": -6.734592, "Some": -6.734592, "Stream": -6.734592, "Stream.t": -6.734592, "T": -6.734592, "TZOffsetMinutes": -6.041444, "Type": -3.438755, "Year": -6.734592, "Z": -6.734592, "[": -4.942832, "]": -4.942832, "`": -6.041444, "a": -2.709240, "acc": -6.041444, "an": -6.734592, "b": -5.635979, "blob": -6.734592, "bool": -6.734592, "case": -6.734592, "char": -3.901378, "con": -6.041444, "count": -5.635979, "d": -4.432007, "date": -6.041444, "datetime": -6.041444, "datetime_with_tz": -5.635979, "day": -6.041444, "decimal_of_len": -4.655150, "digit": -5.635979, "digits": -5.635979, "ds": -6.734592, "else": -6.734592, "end": -5.125154, "endOfLine": -6.734592, "eof": -6.041444, "fail": -6.041444, "fn": -6.041444, "foldl": -6.734592, "fun": -5.635979, "functor": -6.734592, "h": -5.348297, "here": -6.734592, "hour": -6.041444, "href": -6.734592, "if": -6.041444, "in": -6.041444, "input": -5.635979, "int": -5.348297, "isdigit": -6.041444, "let": -6.041444, "list": -4.942832, "m": -4.942832, "main": -6.734592, "many": -6.041444, "maybe": -4.788682, "mbind": -6.734592, "minute": -6.041444, "monad": -6.041444, "monad_parse": -6.041444, "month": -6.041444, "mreturn": -6.734592, "n": -5.635979, "none": -6.734592, "of": -6.734592, "open": -6.734592, "option": -5.348297, "or": -5.125154, "ord": -6.041444, "pad": -5.348297, "page": -6.734592, "parse": -5.635979, "permit": -6.734592, "process": -6.041444, "r": -6.041444, "r.TZOffsetMinutes": -6.734592, "representing": -6.734592, "return": -4.026541, "s": -4.432007, "satisfy": -6.734592, "second": -6.041444, "sepBy": -6.041444, "show": -6.041444, "sig": -5.635979, "sign": -6.041444, "signal": -6.041444, "skipMany": -6.041444, "skipSpace": -6.734592, "skipWhile": -6.734592, "source": -6.041444, "strcat": -6.734592, "string": -4.788682, "structure": -6.734592, "t": -2.691540, "takeRest": -6.734592, "them.": -6.734592, "then": -6.734592, "time": -6.041444, "timezone_offset": -6.041444, "transaction": -6.734592, "type": -6.734592, "tz": -6.041444, "unit": -4.655150, "unsigned_int_of_radix": -6.734592, "v": -5.348297, "val": -2.996922, "x": -5.348297, "xml": -6.734592, "y": -6.734592, "year": -6.041444, "zulu": -6.041444, "{": -4.537367, "|": -6.734592, "}": -4.655150, }, "VCL": map[string]float64{ "!": -3.530763, "&&": -3.887438, "(": -2.614472, ")": -2.614472, "+": -3.693282, "-": -3.481972, "//W": -5.833348, "//www.varnish": -6.526495, "//www.w": -5.833348, "/DTD/xhtml": -5.833348, "0": -5.833348, "1": -5.833348, ":": -5.427883, ";": -2.655294, "<": -6.526495, "<!DOCTYPE>": -5.833348, "</a>": -6.526495, "</address>": -6.526495, "</body>": -5.833348, "</head>": -5.833348, "</html>": -5.833348, "</p>": -4.917057, "</title>": -5.833348, "<?xml>": -5.833348, "<a>": -6.526495, "<address>": -6.526495, "<body>": -5.833348, "<head>": -5.833348, "<hr>": -5.833348, "<html>": -5.833348, "<p>": -4.917057, "<phk@phk.freebsd.dk>": -5.833348, "<title>": -5.833348, "=": -3.029987, "After": -6.526495, "C//DTD": -5.833348, "Cookie": -5.833348, "DTD": -5.140200, "EN": -5.833348, "For": -5.427883, "Forwarded": -5.427883, "PUBLIC": -5.833348, "Strict": -5.833348, "Strict//EN": -5.833348, "TR": -5.833348, "Type": -5.833348, "W3C": -5.833348, "XHTML": -5.140200, "beresp.http.Set": -6.526495, "beresp.http.Vary": -6.526495, "beresp.ttl": -5.833348, "cache.org/": -6.526495, "client.ip": -5.833348, "deliver": -4.447053, "discard": -5.833348, "dtd": -5.833348, "else": -5.427883, "encoding=": -5.833348, "fetch": -5.427883, "for": -6.526495, "forwarded": -6.526495, "hash": -5.833348, "hash_data": -5.427883, "hit_for_pass": -6.526495, "http": -4.917057, "if": -3.887438, "lookup": -5.833348, "obj.cacheable": -5.833348, "obj.http.Content": -5.833348, "obj.http.Retry": -6.526495, "obj.http.Set": -6.526495, "obj.prefetch": -6.526495, "obj.response": -4.734735, "obj.status": -5.140200, "ok": -5.833348, "org": -5.833348, "org/TR/xhtml": -5.833348, "pass": -4.329270, "pipe": -5.140200, "req.hash": -5.427883, "req.http.Authorization": -5.833348, "req.http.Cookie": -5.833348, "req.http.X": -5.427883, "req.http.host": -5.140200, "req.http.x": -6.526495, "req.request": -3.636123, "req.restarts": -6.526495, "req.url": -5.833348, "req.xid": -5.833348, "return": -3.029987, "s": -5.427883, "server.ip": -5.833348, "set": -4.223910, "strict": -5.833348, "strict.dtd": -5.833348, "sub": -3.391001, "synthetic": -5.833348, "utf": -5.833348, "vcl_deliver": -5.833348, "vcl_discard": -6.526495, "vcl_error": -5.833348, "vcl_fetch": -5.833348, "vcl_fini": -6.526495, "vcl_hash": -5.833348, "vcl_hit": -5.833348, "vcl_init": -6.526495, "vcl_miss": -5.833348, "vcl_pass": -5.833348, "vcl_pipe": -5.833348, "vcl_prefetch": -6.526495, "vcl_recv": -5.833348, "vcl_timeout": -6.526495, "w3": -5.833348, "www": -5.833348, "xhtml1": -5.140200, "{": -2.614472, "||": -5.140200, "}": -2.614472, }, "VHDL": map[string]float64{ "(": -3.713572, ")": -3.713572, ":": -3.020425, ";": -1.767662, "<": -3.713572, "=": -3.713572, "a": -3.020425, "all": -3.713572, "architecture": -3.020425, "b": -3.020425, "begin": -3.713572, "end": -3.020425, "entity": -3.020425, "ieee": -3.713572, "ieee.std_logic_": -3.713572, "in": -3.713572, "inverter": -3.020425, "is": -3.020425, "library": -3.713572, "not": -3.713572, "of": -3.713572, "out": -3.713572, "port": -3.713572, "rtl": -3.713572, "std_logic": -3.020425, "use": -3.713572, }, "Verilog": map[string]float64{ "!": -5.973578, "#": -4.760556, "$": -7.678326, "&": -6.579714, "&&": -7.272861, "'": -7.678326, "(": -2.436579, ")": -2.447218, "*": -6.579714, "+": -4.707912, ",": -2.615731, "-": -4.040740, ".BITS": -8.371474, ".C": -6.579714, ".CE": -6.579714, ".CLK_FREQUENCY": -8.371474, ".D": -6.579714, ".DEBOUNCE_HZ": -8.371474, ".INIT": -6.579714, ".INPUT_BITS": -8.371474, ".Q": -6.579714, ".R": -6.579714, ".S": -6.579714, ".bitmask": -7.678326, ".button": -8.371474, ".chain_four": -7.678326, ".clk": -6.579714, ".clk_i": -8.371474, ".color_compare": -7.678326, ".color_dont_care": -7.678326, ".command_was_sent": -8.371474, ".csr_adr_i": -8.371474, ".csr_adr_o": -8.371474, ".csr_dat_i": -8.371474, ".csr_dat_o": -8.371474, ".csr_stb_i": -8.371474, ".csr_stb_o": -8.371474, ".csrm_adr_o": -8.371474, ".csrm_dat_i": -8.371474, ".csrm_dat_o": -8.371474, ".csrm_sel_o": -8.371474, ".csrm_we_o": -8.371474, ".cur_end": -7.678326, ".cur_start": -7.678326, ".dac_read_data": -7.678326, ".dac_read_data_cycle": -7.678326, ".dac_read_data_register": -7.678326, ".dac_we": -7.678326, ".dac_write_data": -7.678326, ".dac_write_data_cycle": -7.678326, ".dac_write_data_register": -7.678326, ".data_valid": -7.678326, ".debounce": -8.371474, ".div_by_zero": -8.371474, ".dividend": -8.371474, ".divisor": -8.371474, ".en": -6.985179, ".enable_set_reset": -7.678326, ".end_hor_retr": -7.678326, ".end_horiz": -7.678326, ".end_ver_retr": -7.678326, ".end_vert": -7.678326, ".error_communication_timed_out": -8.371474, ".graphics_alpha": -7.678326, ".hcursor": -7.678326, ".horiz_sync": -8.371474, ".horiz_total": -7.678326, ".map_mask": -7.678326, ".memory_mapping": -7.678326, ".num": -6.985179, ".pal_addr": -7.678326, ".pal_read": -7.678326, ".pal_we": -7.678326, ".pal_write": -7.678326, ".ps": -6.425563, ".quotient": -8.371474, ".radicand": -8.371474, ".raster_op": -7.678326, ".read_map_select": -7.678326, ".read_mode": -7.678326, ".received_data": -8.371474, ".received_data_en": -8.371474, ".reset": -7.678326, ".reset_n": -7.272861, ".root": -8.371474, ".rst": -8.371474, ".rst_i": -8.371474, ".seg": -6.985179, ".send_command": -8.371474, ".set_reset": -7.678326, ".shift_reg": -7.678326, ".st_hor_retr": -7.678326, ".st_ver_retr": -7.678326, ".start": -7.678326, ".start_addr": -8.371474, ".start_receiving_data": -8.371474, ".the_command": -8.371474, ".v_retrace": -7.678326, ".vcursor": -7.678326, ".vert_sync": -8.371474, ".vert_total": -7.678326, ".vga_blue_o": -8.371474, ".vga_green_o": -8.371474, ".vga_red_o": -8.371474, ".vh_retrace": -7.678326, ".wait_for_incoming_data": -8.371474, ".wb_ack_o": -7.678326, ".wb_adr_i": -7.678326, ".wb_clk_i": -7.678326, ".wb_dat_i": -7.678326, ".wb_dat_o": -7.678326, ".wb_rst_i": -7.678326, ".wb_sel_i": -7.678326, ".wb_stb_i": -7.678326, ".wb_we_i": -7.678326, ".wbm_ack_i": -8.371474, ".wbm_adr_o": -8.371474, ".wbm_dat_i": -8.371474, ".wbm_dat_o": -8.371474, ".wbm_sel_o": -8.371474, ".wbm_stb_o": -8.371474, ".wbm_we_o": -8.371474, ".wbs_ack_o": -8.371474, ".wbs_adr_i": -8.371474, ".wbs_dat_i": -8.371474, ".wbs_dat_o": -8.371474, ".wbs_sel_i": -8.371474, ".wbs_stb_i": -8.371474, ".wbs_we_i": -8.371474, ".write_mode": -7.678326, ".x_dotclockdiv": -7.678326, "/": -5.973578, "//////////////////////////////////////////////////////////////////////////////": -5.732416, ":": -3.103615, ";": -2.705047, "<": -4.439648, "<<": -7.678326, "<dpolehn@verizon.net>": -8.371474, "<http://www.gnu.org/licenses/>": -5.806524, "<zeus@aluzina.org>": -8.371474, "<zeus@opencores.org>": -8.371474, "=": -3.129727, ">": -6.579714, "?": -6.174249, "@": -5.538260, "BITS": -7.678326, "BIT_WIDTH": -6.762036, "BIT_WIDTH*": -6.762036, "BIT_WIDTH*i": -7.678326, "CLK_FREQUENCY": -6.985179, "COUNT": -6.985179, "COUNT_VALUE": -7.678326, "DEBOUNCE_HZ": -6.985179, "DFF": -6.579714, "FDRSE": -6.579714, "FIRE": -6.985179, "INPUT_BITS": -5.280431, "INPUT_BITS*": -5.004178, "INPUT_BITS*i": -6.425563, "INPUT_WIDTH": -6.762036, "NUMBER_OF_STAGES": -6.425563, "OUTPUT_BITS": -5.886567, "OUTPUT_BITS*INPUT_BITS": -5.973578, "OUTPUT_WIDTH": -6.985179, "PS": -5.280431, "WAIT": -6.579714, "[": -3.161987, "]": -3.161987, "^": -5.806524, "_COMMAND_OUT": -7.678326, "_DATA_IN": -7.272861, "_END_DELAYED": -6.985179, "_END_TRANSFER": -7.272861, "_IDLE": -6.068888, "_STATE_": -5.280431, "_clk": -6.292032, "_clk_negedge": -6.762036, "_clk_posedge": -6.762036, "_clk_reg": -6.985179, "_dat": -6.985179, "_data": -8.371474, "_data_reg": -6.762036, "_mouse": -8.371474, "_mouse_cmdout": -8.371474, "_mouse_datain": -8.371474, "_transceiver": -5.326951, "`": -6.068888, "a": -7.272861, "always": -5.235979, "an": -6.579714, "assign": -5.235979, "b": -4.542832, "begin": -4.542832, "bitmask": -7.272861, "button": -5.193420, "button_debounce": -7.272861, "bx": -6.985179, "c": -7.272861, "case": -7.272861, "ch": -8.371474, "chain_four": -7.272861, "clk": -4.682594, "color_compare": -7.272861, "color_dont_care": -7.272861, "command_was_sent": -7.678326, "conf_wb_ack_o": -7.272861, "conf_wb_dat_o": -7.272861, "control": -8.371474, "count": -6.579714, "cout": -6.985179, "cpu_mem_iface": -8.371474, "csr_adr_i": -7.272861, "csr_adr_o": -7.678326, "csr_dat_i": -7.272861, "csr_stb_i": -7.678326, "csr_stb_o": -7.272861, "csrm_adr_o": -7.678326, "csrm_dat_i": -7.678326, "csrm_dat_o": -7.678326, "csrm_sel_o": -7.678326, "csrm_we_o": -7.678326, "cur_end": -7.272861, "cur_start": -7.272861, "d": -7.272861, "dac_read_data": -7.272861, "dac_read_data_cycle": -7.272861, "dac_read_data_register": -7.272861, "dac_we": -7.272861, "dac_write_data": -7.272861, "dac_write_data_cycle": -7.272861, "dac_write_data_register": -7.272861, "data_valid": -6.425563, "debounce": -6.579714, "default": -7.678326, "div_by_zero": -7.678326, "div_pipelined": -7.678326, "dividend": -7.272861, "divisor": -6.762036, "dsp_sel": -6.174249, "e": -6.762036, "else": -5.280431, "en": -5.806524, "enable_set_reset": -7.272861, "end": -4.500273, "end_hor_retr": -7.272861, "end_horiz": -7.272861, "end_ver_retr": -7.272861, "end_vert": -7.272861, "endcase": -7.272861, "endgenerate": -7.272861, "endmodule": -5.481102, "error_communication_timed_out": -7.272861, "f": -7.678326, "finish": -7.678326, "for": -6.985179, "g": -7.678326, "gen_sign_extend": -8.371474, "generate": -7.272861, "genvar": -7.272861, "graphics_alpha": -6.985179, "h": -6.579714, "hcursor": -7.272861, "hex": -6.292032, "hex_display": -8.371474, "hex_group": -6.985179, "horiz_sync": -7.678326, "horiz_total": -7.272861, "i": -4.311031, "i/": -7.678326, "idle_counter": -6.985179, "if": -5.235979, "initial": -7.272861, "inout": -7.678326, "input": -4.760556, "j": -7.678326, "k": -7.678326, "l": -7.678326, "last_ps": -6.985179, "lcd": -8.371474, "localparam": -6.985179, "maj": -8.371474, "map_mask": -7.272861, "mask_": -8.371474, "mask_gen": -6.174249, "mem_arbitrer": -8.371474, "mem_wb_ack_o": -7.272861, "mem_wb_dat_o": -7.272861, "memory_mapping": -7.272861, "module": -5.481102, "mouse_cmdout": -8.371474, "mouse_datain": -8.371474, "mux": -8.371474, "negedge": -6.292032, "next_state": -6.579714, "ns": -6.292032, "ns/": -7.678326, "ns_ps": -5.806524, "num": -6.762036, "o": -6.579714, "opA": -6.985179, "opB": -7.272861, "or": -5.732416, "original": -7.272861, "out": -6.762036, "output": -4.816125, "pal_addr": -7.272861, "pal_read": -7.272861, "pal_we": -7.272861, "pal_write": -7.272861, "parameter": -6.425563, "pipe_gen": -6.579714, "pipe_in": -6.985179, "pipe_out": -6.762036, "pipeline": -7.678326, "pipeline_registers": -8.371474, "pipeline_stage": -8.371474, "posedge": -5.973578, "ps": -4.845113, "quotient": -7.678326, "quotient_correct": -8.371474, "radicand": -6.068888, "radicand_gen": -6.068888, "raster_op": -7.272861, "read_map_select": -7.272861, "read_mode": -7.272861, "received_data": -7.678326, "received_data_en": -6.985179, "reg": -5.113377, "reset": -6.762036, "reset_n": -4.905738, "root": -6.579714, "root_gen": -5.663423, "s": -7.678326, "s_ps": -6.292032, "seg_": -6.985179, "send_command": -7.678326, "set_reset": -7.272861, "shift_reg": -7.272861, "sign_extend": -7.272861, "sign_extended_original": -7.678326, "sign_extender": -8.371474, "sqrt_pipelined": -7.272861, "st_hor_retr": -7.272861, "st_ver_retr": -7.272861, "start": -5.973578, "start_addr": -7.678326, "start_gen": -6.425563, "start_receiving_data": -7.272861, "state": -6.579714, "stb": -6.985179, "sum": -6.762036, "t_button_debounce": -8.371474, "t_div_pipelined": -8.371474, "t_sqrt_pipelined": -8.371474, "the_command": -7.678326, "timescale": -6.068888, "v_retrace": -7.272861, "vcursor": -7.272861, "vert_sync": -7.678326, "vert_total": -7.272861, "vga": -8.371474, "vga_blue_o": -7.678326, "vga_cpu_mem_iface": -8.371474, "vga_green_o": -7.678326, "vga_lcd": -8.371474, "vga_mem_arbitrer": -8.371474, "vga_red_o": -7.678326, "vh_retrace": -7.272861, "w_vert_sync": -7.272861, "wait_for_incoming_data": -7.272861, "wb_ack_o": -7.678326, "wb_adr_i": -7.272861, "wb_clk_i": -6.579714, "wb_cyc_i": -7.678326, "wb_dat_i": -7.272861, "wb_dat_o": -7.678326, "wb_rst_i": -6.579714, "wb_sel_i": -7.272861, "wb_stb_i": -7.678326, "wb_tga_i": -6.762036, "wb_we_i": -7.272861, "wbm_ack_i": -7.272861, "wbm_adr_o": -7.272861, "wbm_dat_i": -7.272861, "wbm_dat_o": -7.272861, "wbm_sel_o": -7.272861, "wbm_stb_o": -7.272861, "wbm_we_o": -7.272861, "wire": -4.166781, "write_mode": -7.272861, "x": -4.657901, "x_dotclockdiv": -7.272861, "y": -5.326951, "z": -6.425563, "{": -5.973578, "|": -7.678326, "||": -8.371474, "}": -5.973578, "~": -5.806524, }, "Vim script": map[string]float64{ "!": -3.979682, "\"": -8.457018, "#": -5.055821, "#af": -7.070724, "#b": -8.457018, "#cb": -7.763871, "#d": -6.847581, "#dc": -8.457018, "#define": -8.457018, "#eee": -8.457018, "#else": -8.457018, "#endif": -8.457018, "#fdf": -7.763871, "#ffffd": -7.763871, "#if": -8.457018, "$": -8.457018, "&": -4.087571, "&&": -7.358406, "(": -4.930658, ")": -4.991283, "*": -6.259794, "*Constant": -8.457018, "*Identifier": -8.457018, "*Ignore": -8.457018, "*PreProc": -8.457018, "*Todo": -8.457018, "*a": -8.457018, "*b": -8.457018, "+": -8.457018, ",": -4.222912, "-": -1.441306, ".": -4.743446, ".a": -6.847581, ".l": -6.259794, ".s": -2.888674, ".vim/autoload": -8.457018, ".vim/colors": -8.457018, ".vimrc": -8.457018, "/": -6.377577, "//ethanschoonover.com/solarized": -7.763871, "//github.com/urso/dotrc/blob/master/vim/syntax/haskell.vim": -8.457018, "//vimcasts.org/episodes/creating": -8.457018, ":": -2.232460, ";": -8.457018, "<": -8.457018, "<CR>": -5.198922, "<Nop>": -6.511108, "<es@ethanschoonover.com>": -8.457018, "=": -3.433138, ">": -8.457018, "?": -8.457018, "A": -7.763871, "ACTION": -8.457018, "AN": -8.457018, "AND": -8.457018, "ANY": -8.457018, "ARISING": -8.457018, "Apple_Terminal": -8.457018, "Author": -8.457018, "Autogenerate": -8.457018, "Background": -6.665259, "Background.": -6.847581, "Basic": -8.457018, "Boolean": -8.457018, "COLOR": -8.457018, "CONTRACT": -8.457018, "CSApprox": -8.457018, "Character": -8.457018, "ColorColumn": -8.457018, "ColorScheme": -7.763871, "Colorscheme": -8.457018, "Comment": -8.457018, "Conceal": -8.457018, "Conditional": -8.457018, "Constant": -8.457018, "Contrast": -7.070724, "Contrast.": -6.847581, "Created": -8.457018, "Currently": -8.457018, "Cursor": -8.457018, "CursorColumn": -8.457018, "CursorLine": -8.457018, "D": -7.763871, "Dark": -8.457018, "DarkCyan": -8.457018, "DarkGray": -8.457018, "DarkRed": -8.457018, "DarkYellow": -8.457018, "Debug": -8.457018, "Define": -8.457018, "Delimiter": -7.358406, "Diff": -6.665259, "DiffAdd": -7.763871, "DiffChange": -7.763871, "DiffDelete": -7.763871, "DiffText": -7.763871, "Different": -8.457018, "Do": -8.457018, "Download": -8.457018, "Due": -8.457018, "END": -8.457018, "EVENT": -8.457018, "EXPRESS": -8.457018, "Ethan": -8.457018, "Experimental": -8.457018, "Experimental.": -7.763871, "Extended": -8.457018, "FITNESS": -8.457018, "FOR": -8.457018, "FROM": -8.457018, "For": -8.457018, "Function": -7.763871, "GUI": -8.457018, "Generate": -8.457018, "Help": -6.665259, "Help.": -6.665259, "HiTrail": -8.457018, "High": -7.358406, "I": -8.457018, "IN": -7.763871, "IS": -8.457018, "Identifier": -6.847581, "Ignore": -7.763871, "In": -8.457018, "It": -8.457018, "KIND": -8.457018, "Keyword": -7.358406, "L": -8.457018, "LIABILITY": -8.457018, "Label": -8.457018, "License": -8.457018, "Light": -8.457018, "LightBlue": -8.457018, "LightGray": -8.457018, "LightGreen": -8.457018, "LightMagenta": -8.457018, "Low": -7.358406, "MatchParen": -8.457018, "Menu": -8.457018, "Menus": -8.457018, "Mode": -7.358406, "Mode.": -7.358406, "Move": -8.457018, "NO": -8.457018, "NONE": -6.665259, "NONINFRINGEMENT.": -8.457018, "Normal": -6.847581, "OF": -7.763871, "OR": -7.763871, "OTHERWISE": -8.457018, "PARTICULAR": -8.457018, "PROVIDED": -8.457018, "PURPOSE": -8.457018, "Permission": -8.457018, "Pmenu": -8.457018, "PmenuSbar": -8.457018, "PmenuSel": -8.457018, "PmenuThumb": -8.457018, "PreCondit": -8.457018, "PreProc": -8.457018, "Preprocessor": -8.457018, "Reference": -8.457018, "Removing": -8.457018, "SHALL": -8.457018, "SOFTWARE": -8.457018, "SOFTWARE.": -8.457018, "Schoonover": -8.457018, "See": -7.358406, "SetOption": -6.665259, "SignColumn": -8.457018, "Software": -7.070724, "Software.": -8.457018, "Solarized": -6.377577, "Solarized.": -5.198922, "SolarizedHiTrail": -6.847581, "SolarizedMenu": -7.763871, "SolarizedOptions": -7.070724, "Special": -8.457018, "SpecialChar": -8.457018, "SpellBad": -8.457018, "SpellCap": -8.457018, "SpellLocal": -8.457018, "SpellRare": -8.457018, "StorageClass": -8.457018, "Syntax": -8.457018, "T": -8.457018, "TERM_PROGRAM": -8.457018, "THE": -7.358406, "TODO": -8.457018, "TORT": -8.457018, "TRUE": -8.457018, "TabLine": -8.457018, "TabLineFill": -8.457018, "TabLineSel": -8.457018, "This": -8.457018, "Todo": -8.457018, "Toggle": -7.070724, "ToggleBG": -7.763871, "Type": -8.457018, "Typedef": -8.457018, "Useful": -7.763871, "VALUES": -8.457018, "Visibility": -7.070724, "Visibility.": -6.847581, "WARRANTY": -8.457018, "WHETHER": -8.457018, "WITHOUT": -8.457018, "We": -8.457018, "White": -8.457018, "[": -6.847581, "\\": -4.282631, "]": -6.847581, "`": -7.070724, "a": -5.412496, "aa": -8.457018, "above": -7.763871, "actual": -8.457018, "af": -7.763871, "afaf": -8.457018, "all": -7.358406, "also": -8.457018, "amenu": -5.461286, "an": -6.259794, "and": -6.511108, "any": -7.070724, "anything": -8.457018, "approach": -8.457018, "are": -7.358406, "as": -8.457018, "assignment": -8.457018, "at": -7.763871, "attention": -7.763871, "augroup": -7.358406, "aunmenu": -7.763871, "autocmd": -7.070724, "autocommand": -8.457018, "autogenerate": -8.457018, "autoload/togglebg.vim": -8.457018, "b": -6.847581, "back": -7.763871, "background": -7.358406, "base": -5.461286, "bb.": -7.763871, "bb.s": -7.763871, "bd": -7.763871, "be": -7.763871, "below": -8.457018, "bg_back": -6.511108, "bg_back.s": -8.457018, "bg_base": -5.512579, "bg_blue": -8.457018, "bg_cyan": -8.457018, "bg_green": -8.457018, "bg_magenta": -8.457018, "bg_none": -4.237511, "bg_orange": -8.457018, "bg_red": -8.457018, "bg_violet": -8.457018, "bg_yellow": -8.457018, "black": -8.457018, "blank": -8.457018, "blue": -7.070724, "bold": -6.665259, "boldswitch": -7.763871, "boldswitch.": -8.457018, "boolean": -8.457018, "both": -8.457018, "brcyan": -8.457018, "bright": -6.847581, "brred": -8.457018, "brwhite": -8.457018, "bryellow": -8.457018, "buffer": -8.457018, "c": -6.847581, "call": -6.154433, "canonical": -8.457018, "case": -8.457018, "cases": -8.457018, "character": -7.358406, "charge": -8.457018, "check": -8.457018, "clear": -8.457018, "color": -8.457018, "colors": -7.763871, "colors_name": -7.358406, "colorscheme": -5.892069, "colorscheme_list": -8.457018, "colorschemes": -7.358406, "command": -7.763871, "commands": -7.763871, "constant": -7.070724, "contrast": -8.457018, "copies": -7.763871, "copy": -8.457018, "could": -7.763871, "cterm": -6.847581, "cursorline": -8.457018, "customizations": -8.457018, "cyan": -7.763871, "d": -7.763871, "dark": -7.763871, "debugging": -8.457018, "deemed": -8.457018, "default": -6.847581, "default.": -8.457018, "default.l": -8.457018, "defaults_list": -8.457018, "delims": -8.457018, "details.": -8.457018, "developing": -8.457018, "diff": -8.457018, "diffLine": -8.457018, "diffmode": -8.457018, "directory.": -8.457018, "don": -8.457018, "e": -6.511108, "e.g.": -8.457018, "else": -5.623805, "elseif": -7.358406, "endfunction": -7.070724, "endif": -5.512579, "endtry": -8.457018, "entirely": -8.457018, "environment.": -8.457018, "etc.": -7.070724, "ewrap": -7.763871, "ewrap.": -7.763871, "ewrap.g": -7.763871, "excessively": -8.457018, "exe": -3.628705, "executed.": -8.457018, "exists": -7.358406, "experimental": -8.457018, "extra": -8.457018, "false": -8.457018, "fg_back": -8.457018, "fg_base": -5.055821, "fg_blue": -5.748968, "fg_cyan": -6.259794, "fg_cyan.s": -8.457018, "fg_green": -6.665259, "fg_magenta": -8.457018, "fg_magenta.s": -7.070724, "fg_none": -7.763871, "fg_orange": -7.070724, "fg_orange.s": -8.457018, "fg_red": -6.154433, "fg_violet": -7.358406, "fg_yellow": -5.684430, "files": -8.457018, "fires": -8.457018, "first": -8.457018, "fmt_bldi": -8.457018, "fmt_bold": -5.817961, "fmt_curl": -8.457018, "fmt_ital": -7.070724, "fmt_none": -4.525193, "fmt_revb": -8.457018, "fmt_revbb": -6.665259, "fmt_revr": -6.377577, "fmt_stnd": -7.358406, "fmt_undb": -7.358406, "fmt_undi": -8.457018, "fmt_undr": -6.511108, "fmt_uopt": -8.457018, "foldlevel": -8.457018, "foldmethod": -8.457018, "for": -6.154433, "force": -8.457018, "form": -8.457018, "free": -8.457018, "from": -7.358406, "function": -7.070724, "g": -5.238143, "generic": -8.457018, "get": -8.457018, "git": -7.763871, "gitDateHeader": -8.457018, "gitDiffRemoved": -8.457018, "gitEmail": -8.457018, "gitHash": -8.457018, "gitIdentity": -8.457018, "gitIdentityKeyword": -8.457018, "gitMode": -8.457018, "gitReference": -8.457018, "gitReflogHeader": -8.457018, "gitType": -8.457018, "gitcommit": -7.763871, "gitcommitBranch": -8.457018, "gitcommitComment": -8.457018, "gitcommitDiscardedFile": -8.457018, "gitcommitDiscardedType": -8.457018, "gitcommitFile": -8.457018, "gitcommitHeader": -7.763871, "gitcommitOnBranch": -8.457018, "gitcommitOverflow": -8.457018, "gitcommitSelectedFile": -8.457018, "gitcommitSelectedType": -8.457018, "gitcommitSummary": -8.457018, "gitcommitType": -8.457018, "gitcommitUnmerged": -8.457018, "gitcommitUnmergedFile": -8.457018, "gitcommitUntrackedFile": -8.457018, "gnome": -8.457018, "goes": -8.457018, "granted": -8.457018, "green": -6.847581, "group": -8.457018, "groups": -8.457018, "gui": -6.511108, "gui_running": -7.070724, "guioptions": -8.457018, "has": -6.847581, "haskell": -8.457018, "help": -6.059123, "helpSpecial": -8.457018, "here.": -8.457018, "hereby": -8.457018, "hi": -4.139530, "hidden": -8.457018, "high": -8.457018, "highlight": -7.358406, "highlighting": -6.259794, "hitrail": -8.457018, "hitrailswitch": -7.763871, "hitrailswitch.": -8.457018, "hl": -8.457018, "hlsearch": -8.457018, "homepage": -7.763871, "hsDelimTypeExport": -8.457018, "hsImportParams": -8.457018, "hsModuleStartLabel": -7.763871, "hsModuleWhereLabel": -8.457018, "hsStructure": -8.457018, "hs_highlight_delimiters": -8.457018, "html": -8.457018, "http": -7.070724, "iTerm.app": -8.457018, "if": -5.461286, "ignorecase": -7.358406, "in": -6.665259, "including": -8.457018, "incomptible.": -8.457018, "incremental": -8.457018, "incsearch": -7.763871, "information": -8.457018, "into": -8.457018, "is": -6.259794, "italic": -8.457018, "italicswitch": -7.763871, "italicswitch.": -8.457018, "items": -8.457018, "itself.": -8.457018, "jump": -8.457018, "just": -8.457018, "keyword": -8.457018, "known": -8.457018, "l": -5.972112, "latest": -8.457018, "lazycat_list": -8.457018, "left": -8.457018, "let": -3.729631, "light": -7.358406, "limitation": -8.457018, "line": -8.457018, "link": -5.623805, "links": -8.457018, "list": -8.457018, "loaded_solarized_menu": -8.457018, "low": -7.763871, "magenta": -7.358406, "magenta.": -8.457018, "make": -8.457018, "marker": -8.457018, "match": -8.457018, "menu": -7.070724, "method": -8.457018, "middle": -8.457018, "might": -8.457018, "mode": -7.763871, "modes": -8.457018, "modes.": -8.457018, "mostly": -8.457018, "name": -6.511108, "name.": -7.358406, "needs": -7.763871, "new": -8.457018, "night": -8.457018, "nocompatible": -7.358406, "non": -8.457018, "none": -8.457018, "normal": -7.358406, "not": -7.763871, "obtaining": -8.457018, "of": -6.665259, "on": -6.847581, "only": -7.070724, "option.": -8.457018, "options": -7.358406, "options_list": -7.763871, "or": -7.763871, "orange": -7.358406, "other": -7.358406, "out": -8.457018, "palettes": -8.457018, "perl": -8.457018, "permit": -8.457018, "person": -8.457018, "persons": -8.457018, "plugin": -8.457018, "poor": -8.457018, "portions": -8.457018, "possibility": -8.457018, "potential": -8.457018, "preprocessor": -7.763871, "r.s": -7.070724, "red": -7.763871, "refactor": -8.457018, "reference": -8.457018, "referenced": -8.457018, "register": -8.457018, "release": -8.457018, "require": -8.457018, "restriction": -8.457018, "results.": -8.457018, "revbb": -8.457018, "reverse": -7.763871, "rights": -8.457018, "ruby": -8.457018, "rubyClass": -8.457018, "rubyClassVariable": -8.457018, "rubyConstant": -8.457018, "rubyGlobalVariable": -8.457018, "rubyIdentifier": -8.457018, "rubyKeyword": -8.457018, "rubyPredefinedVariable": -8.457018, "rubyRepeatModifier": -8.457018, "rubySharpBang": -8.457018, "running": -8.457018, "runs": -8.457018, "rxvt": -8.457018, "s": -3.620737, "same": -8.457018, "screenshots": -7.763871, "searching": -8.457018, "section": -8.457018, "see": -7.358406, "sep": -6.511108, "set": -5.321524, "setf": -8.457018, "sets": -8.457018, "showcmd": -7.358406, "showmatch": -7.358406, "silent": -7.763871, "sizeof": -8.457018, "smartcase": -7.358406, "solarized": -5.684430, "solarized.txt": -8.457018, "solarized.vim": -8.457018, "solarizedTrailingSpace": -7.763871, "solarized_": -7.358406, "solarized_bold": -8.457018, "solarized_contrast": -7.358406, "solarized_degrade": -8.457018, "solarized_diffmode": -6.847581, "solarized_hitrail": -7.358406, "solarized_italic": -8.457018, "solarized_menu": -8.457018, "solarized_termtrans_default": -7.358406, "solarized_underline": -8.457018, "solarized_visibility": -7.070724, "sp_back": -8.457018, "sp_base": -6.259794, "sp_blue": -7.763871, "sp_cyan": -8.457018, "sp_green": -7.763871, "sp_magenta": -8.457018, "sp_none": -8.457018, "sp_orange": -8.457018, "sp_red": -7.763871, "sp_violet": -8.457018, "sp_yellow": -7.763871, "special": -8.457018, "standout": -8.457018, "statements": -8.457018, "static": -8.457018, "string": -8.457018, "subdirectory": -7.763871, "suboptimal.": -8.457018, "substantial": -8.457018, "suppose": -8.457018, "switch": -8.457018, "syn": -8.457018, "syntax": -7.070724, "syntax_on": -8.457018, "t": -8.457018, "t_Co": -7.763871, "term": -8.457018, "termcolors": -8.457018, "terminal": -7.358406, "terminal_italic": -8.457018, "terminals": -8.457018, "testing": -8.457018, "tex": -8.457018, "that": -6.665259, "the": -5.412496, "then": -8.457018, "this": -7.070724, "though": -7.763871, "to": -5.972112, "togglebg": -7.358406, "top": -8.457018, "transferring": -8.457018, "try": -8.457018, "two": -8.457018, "type": -7.763871, "typedef": -8.457018, "u.": -7.763871, "undercurl": -8.457018, "underline": -7.763871, "underlineswitch": -7.763871, "underlineswitch.": -8.457018, "url": -8.457018, "usage": -8.457018, "use": -8.457018, "used": -8.457018, "user": -8.457018, "values": -7.358406, "variable": -8.457018, "via": -8.457018, "vim": -7.358406, "vim/": -8.457018, "vimFunc": -8.457018, "vimLineComment": -8.457018, "vimSet": -8.457018, "vimSetEqual": -8.457018, "vimUserFunc": -8.457018, "vimVar": -8.457018, "violet": -7.763871, "visibility": -8.457018, "vmode.": -7.763871, "volatile": -8.457018, "we": -8.457018, "when": -8.457018, "where": -8.457018, "while": -8.457018, "whom": -8.457018, "will": -8.457018, "with": -8.457018, "without": -7.763871, "wrap": -7.763871, "wrap.": -8.457018, "wrap.a": -8.457018, "yellow": -7.763871, "your": -7.763871, "{": -4.793457, "|": -4.846101, "||": -7.763871, "}": -4.719349, }, "Visual Basic": map[string]float64{ "&": -4.600875, "'": -6.546785, "(": -3.551053, ")": -3.551053, "*************************************************************************************************************************************************************************************************************************************************": -5.853638, ",": -3.214581, "-": -4.349561, ".": -5.448173, "/": -6.546785, "//asp.net/mvc": -6.546785, "/h": -4.755026, ":": -5.853638, "<": -4.061879, "</a>": -4.937347, "</div>": -6.546785, "</hgroup>": -6.546785, "</li>": -5.448173, "</mark>": -6.546785, "</ol>": -6.546785, "</p>": -6.546785, "</section>": -6.546785, "<a>": -4.937347, "<div>": -6.546785, "<hgroup>": -6.546785, "<li>": -5.448173, "<mark>": -6.546785, "<ol>": -6.546785, "<p>": -6.546785, "<section>": -6.546785, "=": -2.909199, ">": -3.368732, "@Code": -6.546785, "@ViewData": -5.853638, "@section": -6.546785, "ASP.NET": -4.937347, "Add": -6.546785, "Alias": -5.448173, "All": -6.546785, "App.TaskVisible": -6.546785, "Applications": -6.546785, "As": -3.020425, "Attribute": -5.448173, "BEGIN": -6.546785, "Boolean": -6.546785, "Briant": -6.546785, "ByVal": -4.755026, "CLASS": -6.546785, "Code": -6.546785, "Console.Out.WriteLine": -5.853638, "Const": -4.349561, "Copyright": -6.546785, "DataBindingBehavior": -6.546785, "David": -6.546785, "Declare": -5.448173, "Dictionary": -5.448173, "Dim": -6.546785, "Else": -6.546785, "End": -4.148890, "Explicit": -6.546785, "False": -6.546785, "Find": -6.546785, "Forum": -6.546785, "Function": -4.937347, "GET_ROUTER_ID": -6.546785, "GET_ROUTER_ID_REPLY": -6.546785, "GET_SERVICES": -6.546785, "GET_SERVICES_REPLY": -6.546785, "Getting": -6.546785, "Hosting": -6.546785, "If": -5.160491, "Initialize": -6.546785, "Learn": -5.448173, "Lib": -5.448173, "Long": -4.244200, "MF_CHECKED": -6.546785, "MF_SEPARATOR": -6.546785, "MF_STRING": -5.448173, "MMFileTransports": -6.546785, "MTSTransactionMode": -6.546785, "MVC": -4.755026, "MVC.": -6.546785, "Main": -6.546785, "Manager": -6.546785, "Module": -5.448173, "MultiUse": -6.546785, "New": -4.755026, "NotPersistable": -6.546785, "Nothing": -5.853638, "NuGet": -5.853638, "Option": -6.546785, "Private": -3.327910, "REGISTER_SERVICE": -6.546785, "REGISTER_SERVICE_REPLY": -6.546785, "Release": -6.546785, "Section": -6.546785, "Set": -4.937347, "Single": -6.546785, "Started": -6.546785, "String": -3.981836, "Sub": -4.349561, "TDD": -6.546785, "TEN_MILLION": -6.546785, "Task": -6.546785, "The": -6.546785, "Then": -6.546785, "To": -6.546785, "True": -6.546785, "UNREGISTER_SERVICE": -6.546785, "UNREGISTER_SERVICE_REPLY": -6.546785, "Unload": -6.546785, "VERSION": -6.546785, "VLMAddress": -6.546785, "VLMessaging.VLMMMFileListener": -6.546785, "VLMessaging.VLMMMFileTransports": -6.546785, "ViewData": -6.546785, "We": -6.546785, "Web": -6.546785, "Website": -6.546785, "Windows": -6.546785, "WithEvents": -5.448173, "You": -6.546785, "a": -5.160491, "about": -5.853638, "address": -6.546785, "address.AgentID": -6.546785, "address.MachineID": -6.546785, "address.RouterID": -6.546785, "agile": -6.546785, "and": -4.755026, "any": -6.546785, "apiGlobalAddAtom": -5.448173, "apiSetForegroundWindow": -6.546785, "apiSetProp": -5.160491, "applications": -6.546785, "applications.": -6.546785, "based": -6.546785, "between": -6.546785, "build": -6.546785, "c": -6.546785, "cTP_AdvSysTray": -5.853638, "cTP_EasyPopupMenu": -6.546785, "can": -6.546785, "class": -4.600875, "clean": -6.546785, "coding": -6.546785, "company": -6.546785, "concerns": -6.546785, "control": -6.546785, "create": -6.546785, "creating": -6.546785, "development": -6.546785, "development.": -6.546785, "directoryEntryIDString": -5.853638, "dynamic": -6.546785, "easily": -5.853638, "easy": -6.546785, "enable": -6.546785, "enables": -6.546785, "enjoyable": -6.546785, "epm": -6.546785, "epm.addMenuItem": -5.448173, "epm.addSubmenuItem": -5.853638, "fMouseEventsForm": -5.853638, "fast": -6.546785, "featured": -6.546785, "features": -5.448173, "find": -6.546785, "following": -6.546785, "for": -5.160491, "forums": -6.546785, "found": -6.546785, "free": -6.546785, "friendly": -6.546785, "from": -5.853638, "full": -6.546785, "get": -6.546785, "gives": -5.853638, "h": -4.755026, "hData": -6.546785, "have": -6.546785, "help": -6.546785, "hide": -6.546785, "hosting": -6.546785, "href": -4.937347, "http": -6.546785, "hwnd": -5.853638, "icon": -6.546785, "id": -6.546785, "in": -6.546785, "includes": -6.546785, "install": -6.546785, "it": -6.546785, "jump": -6.546785, "just": -6.546785, "latest": -6.546785, "learn": -6.546785, "libraries": -6.546785, "list": -6.546785, "lpString": -5.853638, "machine": -6.546785, "make": -6.546785, "makes": -6.546785, "many": -6.546785, "markup": -6.546785, "menuItemSelected": -6.546785, "message": -6.546785, "message.toAddress.RouterID": -5.853638, "messageToBytes": -6.546785, "mix": -6.546785, "moment": -6.546785, "more": -5.160491, "most": -6.546785, "myAST": -5.448173, "myAST.VB_VarHelpID": -6.546785, "myAST.create": -6.546785, "myAST.destroy": -6.546785, "myAST_RButtonUp": -6.546785, "myClassName": -5.853638, "myDirectoryEntriesByIDString": -6.546785, "myListener": -6.546785, "myListener.VB_VarHelpID": -6.546785, "myMMFileTransports": -5.853638, "myMMFileTransports.VB_VarHelpID": -6.546785, "myMMFileTransports_disconnecting": -6.546785, "myMMTransportIDsByRouterID": -5.853638, "myMMTransportIDsByRouterID.Exists": -6.546785, "myMachineID": -6.546785, "myMouseEventsForm": -4.937347, "myMouseEventsForm.hwnd": -5.448173, "myMouseEventsForm.icon": -6.546785, "myRouterIDsByMMTransportID": -6.546785, "myRouterSeed": -6.546785, "myWindowName": -5.853638, "myself": -6.546785, "oReceived": -5.853638, "of": -5.853638, "offers": -6.546785, "our": -6.546785, "over": -6.546785, "packages": -6.546785, "page": -6.546785, "patterns": -6.546785, "powerful": -6.546785, "price": -6.546785, "questions": -6.546785, "remote": -6.546785, "reserved": -6.546785, "right": -6.546785, "rights": -6.546785, "route": -5.853638, "samples": -6.546785, "separation": -6.546785, "serviceType": -5.853638, "shutdown": -6.546785, "sophisticated": -6.546785, "standards.": -6.546785, "start": -6.546785, "suggest": -6.546785, "that": -4.937347, "the": -4.600875, "title": -5.853638, "title=": -5.853638, "to": -5.160491, "tools.": -6.546785, "transport": -6.546785, "transport.send": -6.546785, "tray": -6.546785, "tutorials": -6.546785, "update": -6.546785, "us": -6.546785, "use": -6.546785, "vbNone": -6.546785, "videos": -6.546785, "visit": -5.853638, "way": -6.546785, "web": -5.853638, "websites": -6.546785, "you": -5.160491, "your": -5.853638, "…": -5.448173, "\ufeff": -5.853638, }, "Volt": map[string]float64{ "!": -5.006181, "%": -5.006181, "&&": -5.411646, "(": -2.493875, ")": -2.493875, "*": -6.104793, "+": -3.465736, ",": -2.926739, "-": -5.006181, ".ptr": -3.465736, ".runTest": -6.104793, ".xmlLog": -6.104793, "/": -5.411646, ":": -5.006181, ";": -2.134501, "<": -5.006181, "</testsuites>": -6.104793, "<testsuites>": -6.104793, "=": -3.160354, "?": -5.006181, "CmdGroup": -6.104793, "Result": -5.411646, "[": -4.313034, "\\": -5.006181, "]": -4.313034, "auto": -4.313034, "bool": -4.718499, "cast": -4.495355, "cmd": -6.104793, "cmdGroup": -5.411646, "cmdGroup.waitAll": -6.104793, "compiler": -5.006181, "core.stdc.stdio": -6.104793, "core.stdc.stdlib": -6.104793, "double": -6.104793, "else": -5.006181, "failed": -4.495355, "failures=": -6.104793, "fclose": -6.104793, "fflush": -5.411646, "float": -5.411646, "fopen": -6.104793, "for": -5.006181, "fprintf": -5.411646, "getEnv": -6.104793, "i": -3.465736, "if": -4.158883, "import": -4.158883, "improved": -5.006181, "int": -4.025352, "is": -5.411646, "list": -6.104793, "main": -5.411646, "module": -6.104793, "new": -5.006181, "null": -5.006181, "passed": -4.495355, "printFailing": -5.411646, "printImprovments": -5.411646, "printOk": -5.411646, "printRegressions": -5.411646, "printf": -4.313034, "rate": -5.411646, "regressed": -4.313034, "results": -6.104793, "ret": -6.104793, "ret.hasPassed": -4.718499, "ret.msg.ptr": -4.718499, "ret.ok": -6.104793, "ret.test.ptr": -4.718499, "rets": -4.495355, "rets.length": -6.104793, "return": -5.411646, "size_t": -5.006181, "stdout": -6.104793, "string": -6.104793, "testList": -6.104793, "tests": -5.411646, "tests.length": -5.006181, "tests=": -6.104793, "total": -4.495355, "true": -4.718499, "u": -5.006181, "watt.path": -6.104793, "watt.process": -6.104793, "xml": -4.025352, "{": -3.619887, "}": -3.619887, }, "Vue": map[string]float64{ "#": -4.820282, "#f": -4.820282, "(": -4.127134, ")": -4.127134, ",": -3.721669, "-": -2.874371, ".red": -4.820282, "/h": -4.820282, ":": -2.874371, ";": -4.820282, "<": -4.127134, "</div>": -4.820282, "</script>": -4.127134, "</style>": -4.127134, "</template>": -4.127134, "<div>": -4.820282, "<script>": -4.127134, "<style>": -4.127134, "<template>": -4.127134, "=": -2.874371, ">": -3.210844, "Helvetica": -4.820282, "a": -4.820282, "b": -4.820282, "body": -4.820282, "class": -4.820282, "color": -3.433987, "comp": -4.127134, "compA": -4.127134, "compB": -4.127134, "components": -4.820282, "data": -4.127134, "default": -4.820282, "div": -4.820282, "export": -4.820282, "font": -4.127134, "from": -4.127134, "function": -4.820282, "h": -4.127134, "import": -4.127134, "lang": -3.721669, "module.exports": -4.820282, "msg": -3.433987, "primary": -4.127134, "return": -4.127134, "sans": -4.820282, "serif": -4.820282, "stack": -4.820282, "v": -4.820282, "{": -2.335375, "}": -2.335375, }, "Wavefront Material": map[string]float64{ ":": -3.332205, "C": -3.332205, "Desktop": -3.332205, "Dice": -4.718499, "Ka": -2.926739, "Kd": -2.926739, "Ke": -3.332205, "Ks": -2.926739, "Material__": -3.619887, "Ni": -3.332205, "Ns": -2.926739, "Tf": -2.926739, "Tr": -2.926739, "Users": -3.332205, "\\": -1.945910, "bump": -4.718499, "d": -2.926739, "dice.png": -3.332205, "illum": -2.926739, "johng": -3.332205, "map_Ka": -4.718499, "map_Kd": -4.718499, "map_bump": -4.718499, "newmtl": -2.926739, "wire_": -4.025352, }, "Wavefront Object": map[string]float64{ "-": -1.740074, "/": -0.614710, "//": -3.368837, "Cone": -8.874168, "Dice": -8.181021, "Hedra": -8.874168, "Line": -8.874168, "Material__": -7.487874, "Plane": -8.874168, "\\": -7.082409, "bezier": -8.181021, "bmat": -8.181021, "bmatrix": -8.874168, "bspline": -8.874168, "con": -8.874168, "cstype": -7.487874, "curv": -8.181021, "deg": -7.775556, "dice.mtl": -8.874168, "end": -7.775556, "f": -2.378903, "g": -7.264730, "l": -8.874168, "mtllib": -7.487874, "off": -8.874168, "parm": -7.487874, "rat": -8.181021, "ripple.mtl": -8.874168, "s": -5.929729, "shapes.mtl": -8.874168, "sp": -7.775556, "spline.mtl": -8.874168, "step": -8.874168, "surf": -8.874168, "trim": -8.874168, "u": -7.487874, "usemtl": -6.928258, "v": -2.516326, "vn": -3.261040, "vp": -6.571583, "vt": -3.774302, "wire_": -8.181021, }, "Web Ontology Language": map[string]float64{ "(": -7.574943, ")": -7.574943, ",": -6.188649, "-": -7.574943, ".": -8.268091, "/": -2.603396, "//www.co": -8.961238, "01": -8.268091, "02": -8.268091, "07": -8.268091, "1999": -8.268091, "2000": -8.268091, "2001": -8.268091, "2002": -8.268091, "22": -8.268091, ":": -2.220718, "<!DOCTYPE>": -8.961238, "<!ENTITY>": -7.862625, "</owl:Class>": -4.012478, "</owl:Ontology>": -8.961238, "</owl:Restriction>": -3.740882, "</owl:allValuesFrom>": -5.825744, "</owl:complementOf>": -7.862625, "</owl:equivalentClass>": -6.253188, "</owl:intersectionOf>": -6.253188, "</owl:minCardinality>": -8.961238, "</owl:oneOf>": -8.961238, "</owl:someValuesFrom>": -8.961238, "</owl:unionOf>": -5.742362, "</owl:versionInfo>": -7.862625, "</rdfs:comment>": -5.965506, "</rdfs:label>": -4.396890, "</rdfs:subClassOf>": -3.419974, "<?xml>": -8.961238, "<owl:Class>": -3.053155, "<owl:Ontology>": -8.961238, "<owl:Restriction>": -3.735491, "<owl:Thing>": -7.351800, "<owl:allValuesFrom>": -5.703141, "<owl:complementOf>": -7.862625, "<owl:equivalentClass>": -6.253188, "<owl:hasValue>": -7.351800, "<owl:intersectionOf>": -6.253188, "<owl:minCardinality>": -8.961238, "<owl:onProperty>": -3.735491, "<owl:oneOf>": -8.961238, "<owl:someValuesFrom>": -3.930800, "<owl:unionOf>": -5.742362, "<owl:versionInfo>": -7.862625, "<rdf:RDF>": -8.961238, "<rdfs:comment>": -5.965506, "<rdfs:label>": -4.396890, "<rdfs:subClassOf>": -3.416060, "=": -2.223085, ">": -2.224271, "?": -8.961238, "A": -7.169478, "Added": -8.268091, "America": -8.961238, "Americana": -8.961238, "AmericanaPicante": -8.961238, "An": -7.351800, "Any": -6.881796, "BaseDaPizza": -8.961238, "BaseEspessa": -8.961238, "BaseFinaEQuebradica": -8.961238, "Because": -8.961238, "Cajun": -8.961238, "Called": -8.961238, "Capricciosa": -8.961238, "Caprina": -8.961238, "Cheese": -8.961238, "CheeseTopping": -8.961238, "CoberturaDaPizza": -8.961238, "CoberturaDeAlho": -8.961238, "CoberturaDeAnchovies": -8.961238, "CoberturaDeArtichoke": -8.961238, "CoberturaDeAspargos": -8.961238, "CoberturaDeAzeitona": -8.961238, "CoberturaDeBifePicante": -8.961238, "CoberturaDeCajun": -8.961238, "CoberturaDeCalabreza": -8.961238, "CoberturaDeCamarao": -8.961238, "CoberturaDeCaper": -8.961238, "CoberturaDeCarne": -8.961238, "CoberturaDeCastanha": -8.961238, "CoberturaDeCebola": -8.961238, "CoberturaDeCebolaVermelha": -8.961238, "CoberturaDeCogumelo": -8.961238, "CoberturaDeErvas": -8.961238, "CoberturaDeEspinafre": -8.961238, "CoberturaDeFrango": -8.961238, "CoberturaDeFrutas": -8.961238, "CoberturaDeFrutosDoMarMistos": -8.961238, "CoberturaDeGorgonzola": -8.961238, "CoberturaDeJalapeno": -8.961238, "CoberturaDeLeek": -8.961238, "CoberturaDeMozzarella": -8.961238, "CoberturaDeParmesao": -8.961238, "CoberturaDePeixe": -8.961238, "CoberturaDePimentao": -8.961238, "CoberturaDePimentaoDoce": -8.961238, "CoberturaDePimentaoVerde": -8.961238, "CoberturaDePimentaoVerdePicante": -8.961238, "CoberturaDePresunto": -8.961238, "CoberturaDePrezuntoParma": -8.961238, "CoberturaDeQueijo": -8.961238, "CoberturaDeQueijoComVegetais": -8.961238, "CoberturaDeQueijoDeCabra": -8.961238, "CoberturaDeTomate": -8.961238, "CoberturaDeTomateFatiado": -8.961238, "CoberturaDeTomateRessecadoAoSol": -8.961238, "CoberturaDeVegetais": -8.961238, "CoberturaEmMolho": -8.961238, "CoberturaPeperonata": -8.961238, "CoberturaPetitPois": -8.961238, "CoberturaPineKernels": -8.961238, "CoberturaPrinceCarlo": -8.961238, "CoberturaQuatroQueijos": -8.961238, "CoberturaRocket": -8.961238, "CoberturaRosemary": -8.961238, "CoberturaSultana": -8.961238, "CoberturaTemperada": -8.961238, "CoberturaVegetariana": -8.961238, "Cogumelo": -8.961238, "Countries": -8.961238, "ENTITY": -8.961238, "England": -8.961238, "Fiorentina": -8.961238, "Food": -8.961238, "France": -8.961238, "FrutosDoMar": -8.961238, "Germany": -8.961238, "Giardiniera": -8.961238, "Hot": -8.268091, "However": -8.961238, "IceCream": -7.862625, "If": -8.961238, "In": -8.961238, "It": -8.961238, "Italy": -7.862625, "LaReine": -8.961238, "Made": -8.268091, "Manchester": -8.961238, "Margherita": -8.961238, "Media": -8.961238, "Medium": -8.961238, "Members": -8.961238, "Mild.": -8.961238, "MolhoTobascoPepper": -8.961238, "NB": -8.268091, "NOT": -8.961238, "NaoPicante": -8.961238, "Napoletana": -8.961238, "NonVegetarianPizza": -8.961238, "Not": -8.268091, "Note": -8.268091, "OWL.": -8.961238, "Pais": -8.961238, "Parmense": -8.961238, "Perhaps": -8.961238, "Picante": -8.961238, "Pizza": -7.169478, "Pizza.": -7.574943, "PizzaAberta": -8.961238, "PizzaComQueijo": -8.961238, "PizzaComUmNome": -8.961238, "PizzaDeCarne": -8.961238, "PizzaInteressante": -8.961238, "PizzaItalianaReal": -8.961238, "PizzaNaoVegetariana": -8.961238, "PizzaTemperada": -8.961238, "PizzaTemperadaEquivalente": -8.961238, "PizzaTopping": -8.268091, "PizzaTopping.": -8.961238, "PizzaVegetariana": -8.961238, "PizzaVegetarianaEquivalente": -8.268091, "Pizzas": -8.961238, "PolloAdAstra": -8.961238, "ProbeInconsistentTopping": -8.961238, "ProtegeOWL": -8.961238, "QCR": -8.268091, "QuatroQueijos": -8.268091, "RDF": -8.961238, "RealItalianPizza.": -8.961238, "RealItalianPizzas": -8.961238, "Removed": -8.961238, "Rosa": -8.961238, "Should": -8.961238, "Siciliana": -8.961238, "SloppyGiuseppe": -8.961238, "Soho": -8.961238, "Sorvete": -8.961238, "SpicyPizza": -8.268091, "SpicyTopping": -8.961238, "Subclasses": -8.961238, "Tempero": -8.961238, "The": -7.862625, "ThinAndCrispy": -8.268091, "This": -7.351800, "Tutorial": -8.961238, "Tutorial.": -8.961238, "URI": -8.961238, "University": -8.961238, "ValorDaParticao": -8.961238, "ValuePartition": -7.862625, "Vegetable": -8.961238, "VegetableTopping": -8.961238, "VegetarianPizza": -7.574943, "VegetarianPizza.": -8.961238, "VegetarianPizzaEquiv": -7.862625, "VegetarianTopping": -8.961238, "VegetarianTopping.": -8.961238, "VegetarianToppings": -8.961238, "Veneziana": -8.961238, "XMLSchema": -8.268091, "[": -8.961238, "]": -8.961238, "a": -5.783184, "about": -3.162145, "all": -7.169478, "all.": -8.961238, "allDifferent": -8.961238, "also": -8.268091, "alternative": -8.268091, "an": -8.961238, "and": -6.658653, "any": -7.862625, "are": -7.574943, "as": -8.268091, "asserted": -8.961238, "associated.": -8.961238, "at": -7.169478, "away": -8.961238, "axiom": -8.961238, "axiom.": -8.268091, "base": -8.268091, "bases.": -8.268091, "be": -6.070866, "be.": -8.961238, "because": -7.862625, "been": -8.961238, "both": -8.961238, "by": -8.961238, "can": -7.015328, "cannot": -8.268091, "cardinality": -8.268091, "causes": -8.961238, "cheese": -8.961238, "class": -6.764013, "class.": -8.268091, "classes": -8.961238, "co": -8.961238, "complicated": -8.961238, "conditions": -8.268091, "constraint": -8.268091, "constructs": -8.961238, "contains": -8.961238, "could": -8.961238, "country": -8.961238, "covering": -7.862625, "currently": -8.961238, "datatype": -7.574943, "date": -8.961238, "defined": -8.961238, "definition": -7.574943, "demonstrate": -8.961238, "describe": -8.961238, "described": -8.961238, "describes": -8.268091, "difficult": -8.961238, "disjoint": -7.862625, "divided": -8.961238, "do": -8.961238, "does": -7.574943, "domain": -8.961238, "domain.": -8.961238, "domain/range": -8.961238, "each": -8.961238, "eg": -8.961238, "either": -8.268091, "else.": -8.961238, "enumeration": -8.961238, "equivalent": -7.351800, "essence": -8.961238, "example": -8.268091, "extended": -8.961238, "fish": -8.961238, "for": -8.268091, "found": -8.961238, "from": -7.169478, "functional": -8.961238, "further": -8.961238, "given": -8.268091, "has": -6.476331, "hasCountryOfOrigin": -8.961238, "hasIngredient": -8.961238, "hasTopping": -7.351800, "have": -6.658653, "hot": -8.961238, "http": -6.658653, "ie": -8.268091, "import": -8.961238, "in": -7.015328, "inconsistency.": -8.961238, "inconsistent.": -8.961238, "independent": -8.961238, "individuals": -7.862625, "infer": -8.961238, "inferred": -7.862625, "into": -8.961238, "invers": -8.961238, "is": -6.322180, "it": -7.862625, "lang": -4.207648, "least": -7.351800, "made": -8.961238, "maintain.": -8.961238, "may": -8.961238, "means": -7.862625, "meat": -8.268091, "members": -7.015328, "menu": -8.961238, "merely": -8.961238, "might": -8.961238, "mistakes": -8.961238, "more": -8.268091, "must": -7.169478, "need": -8.961238, "needing": -8.961238, "never": -8.961238, "no": -8.961238, "not": -6.881796, "nothing": -8.268091, "ns": -8.268091, "ode": -8.961238, "ode.org/resources/tutorials/": -8.961238, "of": -6.016799, "on": -7.574943, "one": -8.268091, "only": -7.169478, "ontologies": -8.961238, "ontology": -8.268091, "or": -7.351800, "or....etc.": -8.961238, "org": -6.764013, "origin": -8.961238, "other": -8.961238, "other.": -8.961238, "owl": -7.169478, "parent": -8.961238, "parents": -8.961238, "parseType": -5.247666, "part": -8.961238, "partitions.": -8.961238, "pattern": -8.961238, "pizza": -6.563343, "pizzas": -8.268091, "possible": -8.961238, "property": -7.169478, "protege.owl": -8.961238, "qualified": -8.961238, "rdf": -2.369564, "rdfs": -7.862625, "reasoner": -8.961238, "references.": -8.961238, "relationship": -8.961238, "require": -8.961238, "required": -8.961238, "resource": -3.114799, "restricted": -8.961238, "restriction": -8.268091, "restrictions": -8.268091, "run": -8.961238, "schema": -8.268091, "see": -8.961238, "set": -8.268091, "setting": -8.961238, "several": -8.961238, "simultaneously": -8.961238, "slightly": -8.961238, "so": -8.961238, "specify": -8.961238, "spiciness": -8.268091, "spicy": -8.961238, "subclass": -8.961238, "subclasses": -8.268091, "supported": -8.961238, "syntax": -8.268091, "that": -5.703141, "the": -5.965506, "themselves": -8.961238, "therefore": -8.961238, "these": -8.961238, "they": -8.961238, "this": -7.169478, "to": -6.396288, "topping": -7.169478, "topping.": -8.961238, "toppings": -7.351800, "toppings.": -8.268091, "type": -8.961238, "unclosed": -8.961238, "union": -8.961238, "up": -8.961238, "updating": -8.961238, "use": -8.961238, "used": -7.862625, "uses": -8.961238, "using": -8.961238, "v.": -8.268091, "values": -8.961238, "values.": -8.961238, "various": -8.961238, "vegetarian": -8.961238, "version": -8.268091, "versions": -8.961238, "w3": -6.881796, "we": -8.961238, "were": -8.961238, "which": -7.574943, "will": -8.961238, "with": -8.268091, "without": -8.961238, "would": -8.268091, "www": -6.764013, "xml": -4.190553, "xmlns": -6.764013, "xsd": -7.862625, }, "WebAssembly": map[string]float64{ "!": -6.526983, "$": -2.342391, "'": -7.625595, "(": -1.597317, ")": -1.597317, ",": -5.060646, "-": -5.833836, ";": -3.713572, "STACKTOP": -6.932448, "STACK_MAX": -6.932448, "a": -4.986538, "add": -4.258299, "an": -7.625595, "and": -6.932448, "are": -6.239301, "as": -7.625595, "asm": -6.239301, "b": -5.060646, "bad": -6.239301, "basics": -6.932448, "be": -6.932448, "become": -7.625595, "block": -4.986538, "br": -7.625595, "br_if": -4.853006, "br_ifs": -7.625595, "but": -6.932448, "by": -7.625595, "call": -4.581073, "can": -6.932448, "changed": -7.625595, "const": -2.981204, "data": -6.016157, "do": -6.526983, "drop": -4.447541, "effect": -6.932448, "effects": -6.239301, "endl": -6.016157, "equal": -7.625595, "eqz": -6.932448, "export": -5.546154, "f": -6.526983, "fi": -6.932448, "fibonacci_iter": -6.932448, "fibonacci_rec": -6.526983, "finally": -7.625595, "float": -7.625595, "for": -7.625595, "func": -4.159859, "get": -7.625595, "get_global": -6.239301, "get_local": -3.988009, "global": -4.792382, "globals": -7.625595, "have": -6.526983, "here": -6.932448, "i": -2.322290, "if": -5.323010, "ignored": -6.526983, "implicit": -7.625595, "import": -4.986538, "imports": -6.526983, "initialized": -7.625595, "int": -7.625595, "it": -7.625595, "join": -7.625595, "keep": -6.932448, "label": -7.625595, "lhs": -6.932448, "linear": -7.625595, "load": -7.625595, "loads": -7.625595, "local": -5.140688, "locals": -7.625595, "loop": -7.625595, "main": -5.833836, "matter": -7.625595, "may": -6.526983, "means": -7.625595, "memory": -5.140688, "mine": -6.932448, "modify": -7.625595, "module": -5.833836, "must": -6.932448, "mut": -6.239301, "n": -5.679685, "names": -7.625595, "ne": -7.625595, "never": -7.625595, "no": -7.625595, "non": -7.625595, "nop": -7.625595, "not": -6.526983, "oad": -5.833836, "ok": -6.526983, "or": -7.625595, "other": -6.932448, "our": -7.625595, "out": -4.406719, "param": -4.853006, "print": -5.833836, "printFloat": -6.932448, "printInt": -5.679685, "recursive": -6.932448, "rem": -7.625595, "rem_s": -7.625595, "result": -6.016157, "return": -6.932448, "rhs": -6.932448, "sad": -7.625595, "same": -6.526983, "save": -6.932448, "select": -7.625595, "self": -7.625595, "set_global": -5.833836, "set_local": -5.833836, "should": -7.625595, "shrinking": -7.625595, "side": -5.833836, "so": -7.625595, "space": -6.526983, "special": -7.625595, "stack": -6.239301, "store": -5.679685, "sub": -6.526983, "t": -7.625595, "tee_local": -6.526983, "temp": -5.833836, "tempDoublePtr": -6.526983, "test": -5.833836, "the": -5.833836, "their": -7.625595, "they": -7.625595, "this": -6.932448, "to": -6.526983, "touched": -7.625595, "traps": -7.625595, "trunc_u/f": -7.625595, "type": -6.239301, "unless": -6.526983, "unreachable": -6.239301, "unwind": -7.625595, "us": -6.932448, "use": -6.932448, "use.": -7.625595, "used": -7.625595, "uses": -7.625595, "valid": -7.625595, "value": -6.932448, "var": -5.140688, "was": -7.625595, "wasm": -6.239301, "we": -6.932448, "which": -7.625595, "with": -7.625595, "x": -5.227700, "xor": -7.625595, "y": -5.428370, "yet": -7.625595, }, "WebIDL": map[string]float64{ "(": -2.890372, ")": -2.890372, ",": -3.141686, ":": -4.394449, ";": -2.197225, "<ArrayBuffer>": -5.087596, "<Blob>": -5.087596, "<FormData>": -5.087596, "<JSON>": -5.087596, "<Response>": -5.087596, "<USVString>": -5.087596, "=": -3.295837, "AnimationEvent": -5.087596, "AnimationEventInit": -4.394449, "ArrayBuffer": -5.087596, "ArrayBufferView": -5.087596, "Blob": -5.087596, "Body": -5.087596, "BodyInit": -5.087596, "Constructor": -5.087596, "DOMString": -3.478158, "Event": -5.087596, "EventInit": -5.087596, "Exposed": -4.394449, "Func": -5.087596, "GlobalFetch": -5.087596, "JSON": -5.087596, "NoInterfaceObject": -4.394449, "Promise": -3.478158, "RequestInfo": -5.087596, "RequestInit": -5.087596, "Throws": -3.478158, "URLSearchParams": -5.087596, "USVString": -5.087596, "Window": -4.394449, "Worker": -4.394449, "[": -3.008155, "]": -3.008155, "animationName": -4.394449, "arrayBuffer": -5.087596, "attribute": -3.701302, "blob": -5.087596, "bodyUsed": -5.087596, "boolean": -5.087596, "dictionary": -5.087596, "elapsedTime": -4.394449, "eventInitDict": -5.087596, "fetch": -5.087596, "float": -4.394449, "init": -5.087596, "input": -5.087596, "interface": -3.988984, "json": -5.087596, "object": -5.087596, "optional": -4.394449, "or": -3.701302, "pseudoElement": -4.394449, "readonly": -3.701302, "text": -5.087596, "type": -5.087596, "typedef": -4.394449, "{": -3.701302, "}": -3.701302, }, "World of Warcraft Addon Data": map[string]float64{ "#": -0.489548, "-": -2.740840, "Elk.lua": -3.433987, "Heuristics.xml": -3.433987, "Languages.xml": -3.433987, "Lotus_Vane.lua": -3.433987, "Tests.xml": -3.433987, "Vahevia.xml": -3.433987, "counter.lua": -3.433987, "h": -3.433987, "isnt.lua": -3.433987, "ruby": -3.433987, }, "X10": map[string]float64{ "!": -6.932169, "%": -8.184932, "&": -8.878079, "&&": -8.878079, "(": -2.145869, ")": -2.145869, "*": -6.393173, "*mySize": -8.878079, "*obj_max_size": -8.878079, "*result.reduce": -8.878079, "*world_size": -7.086320, "+": -3.821833, ",": -3.250458, "-": -4.324202, ".addIn": -8.878079, ".clear": -8.878079, ".computeMeans": -8.878079, ".dist": -8.184932, ".distSearch": -8.878079, ".intersects": -8.878079, ".length": -8.878079, ".makeZero": -8.878079, ".next": -8.878079, ".nextFloat": -8.878079, ".normalize": -8.878079, ".parSearch": -8.878079, ".print": -8.878079, ".reverseBytes": -8.878079, ".size": -8.878079, ".start": -8.184932, ".toString": -8.878079, "/": -6.044866, "/**": -8.878079, "//finish": -8.184932, "//if": -8.878079, "//warmup": -7.779467, ":": -3.636332, ";": -2.577293, "<": -6.105491, "</code>": -6.239022, "</pre>": -8.184932, "<code>": -6.239022, "<number>": -8.878079, "<p>": -7.779467, "<pre>": -8.184932, "=": -2.899193, ">": -4.889095, "?": -6.313130, "@Inline": -8.878079, "A": -6.313130, "A.place": -8.878079, "Array.copy": -8.184932, "Array.swap": -8.878079, "ArraySum": -8.184932, "Array_": -6.044866, "Board": -7.086320, "Boolean": -7.268641, "CLUSTERS": -5.787037, "Cancellation": -8.878079, "ClusterState": -7.779467, "Console.ERR.println": -6.932169, "Console.OUT.print": -6.680855, "Console.OUT.printf": -7.268641, "Console.OUT.println": -5.071417, "DIM": -5.619983, "DenseIterationSpace_": -8.878079, "DistArray_Block_": -8.878079, "DistArray_Unique": -7.779467, "Double": -6.680855, "E": -7.491785, "EPS": -8.184932, "EPSILON": -7.268641, "EXPECTED_SOLUTIONS": -7.491785, "Exception": -8.878079, "Fibonacci": -8.878079, "File": -8.878079, "Float": -5.240493, "Float.MAX_VALUE": -7.491785, "Float.fromIntBits": -8.878079, "Foreach.block": -8.878079, "Foreach.blockReduce": -8.878079, "GlobalRef": -8.184932, "HeatTransfer_v": -7.779467, "HelloWholeWorld": -8.878079, "HelloWorld": -8.878079, "Histogram": -8.878079, "ITERATIONS": -7.491785, "Int": -5.619983, "Int.parse": -7.779467, "IntRange": -8.878079, "Integrate": -8.184932, "K": -7.779467, "KMeans": -7.779467, "KMeansData": -7.491785, "KMeansDist": -8.878079, "KMeansDistPlh": -8.878079, "KMeansSPMD": -8.878079, "Long": -4.658572, "Long.parse": -6.575494, "LongRange": -8.878079, "Marshal.INT.read": -8.878079, "Math.abs": -6.798638, "Math.max": -8.878079, "Math.sqrtf": -8.878079, "MontyPi": -8.878079, "N": -5.381572, "N*Place.numPlaces": -8.878079, "NQueensDist": -8.184932, "NQueensDist.this.results": -8.878079, "NQueensPar": -7.491785, "NQueensPar.this.nSolutions": -8.878079, "Option": -6.680855, "OptionsParser": -8.878079, "P": -6.313130, "POINTS": -7.086320, "Place.FIRST_PLACE": -8.878079, "Place.numPlaces": -7.779467, "Place.places": -6.798638, "PlaceLocalHandle.make": -6.932169, "QSort": -8.878079, "R": -7.491785, "R.split": -8.184932, "Rail": -4.889095, "Rail.copy": -8.878079, "Random": -7.086320, "Real": -6.105491, "Runtime.cancelAll": -8.184932, "Runtime.submit": -7.491785, "S": -7.491785, "String": -5.987707, "StructSpheres": -8.878079, "SumVector": -6.798638, "System.currentTimeMillis": -8.878079, "System.nanoTime": -5.987707, "System.setExitCode": -8.878079, "System.sleep": -8.878079, "System.threadSleep": -7.779467, "Team.ADD": -8.184932, "Team.MAX": -8.878079, "Team.WORLD": -8.878079, "This": -8.878079, "Tmp": -7.086320, "V": -7.491785, "ValVector": -6.932169, "Vector": -6.313130, "WorldObject": -7.779467, "X": -8.878079, "[": -4.324202, "]": -4.324202, "a": -6.105491, "a.sum": -7.268641, "add": -8.184932, "addIn": -8.878079, "al": -7.779467, "alr": -7.779467, "an": -8.878079, "answer": -7.779467, "ar": -7.779467, "area": -8.184932, "args": -5.510783, "args.size": -6.313130, "array.*": -7.779467, "array.Array": -8.878079, "array.Array_": -8.878079, "array.DistArray_Unique": -8.184932, "as": -6.313130, "async": -6.170029, "at": -6.393173, "atomic": -6.798638, "await": -7.491785, "b": -6.044866, "b.fixed": -8.878079, "b.q": -8.878079, "b.range": -8.878079, "barrier_time": -7.779467, "barrier_time/": -8.878079, "bins": -7.779467, "blackCluster": -7.086320, "board": -8.878079, "board.searchOne": -8.878079, "boolean": -8.878079, "break": -6.932169, "c": -6.575494, "catch": -8.878079, "centralClusterCounts": -7.779467, "centralClusterCounts.clear": -8.878079, "centralCurrentClusters": -7.086320, "centralCurrentClusters.indices": -8.184932, "centralNewClusters": -7.268641, "centralNewClusters.clear": -8.878079, "centralNewClusters.indices": -8.878079, "central_cluster_counts": -7.779467, "central_cluster_counts.clear": -8.878079, "central_cluster_counts_gr": -8.184932, "central_clusters": -6.798638, "central_clusters.indices": -8.878079, "central_clusters_gr": -8.184932, "class": -5.833557, "closest": -6.239022, "closest*dim": -8.878079, "closestDist": -7.086320, "closest_dist": -7.086320, "clusterCounts": -7.779467, "clusterCounts.clear": -8.878079, "clusterState": -8.184932, "clusterState.clusterCounts": -8.878079, "clusterState.clusters": -8.878079, "clusterStatePlh": -8.184932, "clusters": -7.779467, "clusters.size/dims": -8.878079, "comm_time": -7.779467, "comm_time/": -8.878079, "compiler.Foreach": -7.779467, "compiler.Inline": -8.878079, "compute": -7.491785, "computeArea": -8.878079, "computeMeans": -8.878079, "compute_time": -7.779467, "compute_time/": -8.878079, "continue": -8.878079, "count": -6.932169, "counter": -7.491785, "currentClusters": -7.779467, "currentClustersPlh": -8.184932, "d": -5.322731, "d*num_file_points": -8.878079, "d*num_slice_points": -8.184932, "data": -5.882347, "data.range": -8.878079, "data.size/numThreads": -8.878079, "def": -4.574014, "delta": -7.268641, "dim": -5.787037, "dims": -8.184932, "dist": -5.742585, "distSearch": -8.878079, "div": -8.184932, "do": -8.878079, "double": -6.105491, "e": -7.491785, "else": -7.491785, "epsilon": -8.184932, "expected": -7.779467, "expr": -7.086320, "f": -6.393173, "false": -7.268641, "fc": -7.268641, "fib": -7.491785, "file": -8.878079, "file.openRead": -8.878079, "file.size": -8.878079, "file_points": -7.779467, "final": -8.878079, "finish": -6.170029, "fixed": -6.239022, "fl": -7.779467, "fname": -8.184932, "for": -4.471360, "fr": -7.268641, "fun": -7.268641, "getX": -8.878079, "getY": -8.878079, "getZ": -8.878079, "h": -7.268641, "h.toString": -8.878079, "here": -7.268641, "here.id": -7.268641, "hh": -7.779467, "home": -8.878079, "home.sub": -8.878079, "host_cluster_counts": -7.268641, "host_cluster_counts.clear": -8.878079, "host_cluster_counts.size": -8.878079, "host_clusters": -6.798638, "host_clusters.clear": -8.878079, "host_clusters.size": -7.779467, "host_nearest": -8.878079, "host_points": -7.779467, "how": -8.878079, "ht": -8.184932, "ht.prettyPrintResult": -8.184932, "ht.run": -8.184932, "i": -4.400742, "i/num_slice_points": -8.878079, "id": -8.184932, "if": -5.140410, "illustrating": -8.878079, "implements": -8.878079, "import": -5.381572, "in": -4.471360, "index": -7.268641, "init": -7.491785, "init_points": -8.184932, "initializer": -8.184932, "int": -7.268641, "interior": -8.878079, "intersects": -8.878079, "io.Console": -6.680855, "io.File": -8.878079, "io.IOException": -8.878079, "io.Marshal": -8.878079, "is": -7.779467, "iter": -6.932169, "iterations": -7.086320, "j": -4.703692, "job": -7.268641, "k": -4.783735, "k*dim": -8.184932, "k*dims": -8.878079, "l": -7.491785, "last": -8.184932, "left": -6.575494, "length": -7.779467, "local_cluster_counts": -7.491785, "local_curr_clusters": -7.779467, "local_new_clusters": -7.491785, "long": -5.659203, "loop": -8.878079, "main": -5.987707, "main_loop": -8.184932, "makeZero": -8.878079, "myDelta": -8.878079, "myDim": -6.239022, "myK": -6.393173, "myPiece": -8.184932, "mySize": -8.878079, "mySum": -7.268641, "myTeam.allreduce": -8.878079, "n": -5.240493, "n..": -8.184932, "nSolutions": -8.878079, "neg": -8.878079, "new": -4.767205, "newClusters": -8.184932, "newClusters.clear": -8.878079, "normalize": -8.878079, "nq": -8.184932, "nq.N": -7.779467, "nq.nSolutions": -8.184932, "nq.run": -8.878079, "nq.start": -8.878079, "null": -8.184932, "numBins": -8.184932, "numPoints": -8.878079, "numPoints/world.size": -8.878079, "numTasks": -7.491785, "numThreads": -6.798638, "num_clusters": -7.268641, "num_clusters*dim": -8.184932, "num_file_points": -8.878079, "num_file_points*dim": -8.878079, "num_global_points": -7.779467, "num_objects": -8.184932, "num_slice_points": -7.086320, "num_slice_points*dim": -8.878079, "num_slices": -7.779467, "obj": -8.878079, "obj.computeArea": -8.878079, "obj_max_size": -8.878079, "offset": -7.268641, "ok": -6.798638, "old_central_clusters": -7.779467, "old_central_clusters.indices": -8.184932, "old_clusters": -7.779467, "operator": -8.878079, "optimized": -8.878079, "opts": -6.575494, "opts.filteredArgs": -8.184932, "opts.usage": -8.878079, "other": -8.184932, "other.neg": -8.878079, "other.x": -8.878079, "other.y": -8.878079, "other.z": -8.878079, "p": -5.787037, "p*mySize": -8.878079, "p.id": -8.878079, "parSearch": -8.878079, "partition": -8.184932, "pi": -8.184932, "pivot": -7.779467, "place": -8.184932, "placeClusters": -8.878079, "placeClusters.clusterCounts": -8.878079, "placeClusters.clusters": -8.878079, "point": -7.779467, "points": -6.313130, "points.numElems_": -8.878079, "points.place": -8.184932, "pointsPlh": -7.779467, "pos": -7.268641, "prettyPrintResult": -8.184932, "print": -8.878079, "printClusters": -7.779467, "private": -8.184932, "program": -8.878079, "property": -8.184932, "protected": -8.184932, "provide": -8.878079, "ps": -8.184932, "public": -4.907787, "q": -6.575494, "qsort": -7.491785, "quiet": -8.184932, "r": -6.680855, "r.nextDouble": -8.184932, "r.nextInt": -8.878079, "ran": -8.878079, "ran.nextDouble": -6.932169, "rand": -8.878079, "rand.nextFloat": -8.878079, "recEval": -7.491785, "redCluster": -6.932169, "renderingDistance": -8.184932, "renderingDistance*renderingDistance": -8.878079, "reps": -8.184932, "result": -6.393173, "results": -8.878079, "results.reduce": -8.878079, "return": -5.545875, "right": -6.575494, "rnd": -7.779467, "rnd.nextFloat": -8.878079, "run": -7.491785, "safe": -7.491785, "sample": -8.878079, "search": -7.491785, "searchOne": -7.268641, "self": -8.184932, "self.dim": -8.878079, "self.myDim": -8.878079, "self.size": -7.779467, "size": -7.086320, "slice": -8.878079, "slice*Place.numPlaces": -8.878079, "spheres": -8.184932, "spheres.range": -8.878079, "start": -6.105491, "start..": -8.878079, "start_time": -8.878079, "static": -4.907787, "stencil": -8.184932, "stop": -7.491785, "struct": -8.184932, "sub": -8.878079, "sum": -7.086320, "swap.": -8.878079, "t": -8.878079, "team": -8.878079, "team.allreduce": -8.184932, "team.barrier": -8.184932, "there": -8.184932, "this": -6.313130, "this.N": -8.184932, "this.P": -8.184932, "this.R": -8.184932, "this.dim": -8.878079, "this.fixed": -8.878079, "this.q": -8.878079, "this.results": -8.878079, "this.x": -8.184932, "this.y": -8.184932, "this.z": -8.184932, "til.Option": -8.878079, "til.OptionsParser": -8.878079, "til.Random": -7.086320, "til.Team": -8.184932, "time": -8.184932, "time/": -8.878079, "time_start": -8.184932, "time_taken": -8.878079, "time_taken/": -8.878079, "tmp": -6.105491, "tmp*tmp": -8.184932, "tmp_cluster_counts": -8.184932, "tmp_new_clusters": -8.184932, "tmp_new_clusters.indices": -8.878079, "to": -8.878079, "true": -6.932169, "try": -8.878079, "type": -6.798638, "use": -8.878079, "v": -8.184932, "val": -3.668593, "var": -5.189200, "vec": -6.680855, "verbose": -7.779467, "void": -8.184932, "w": -7.086320, "while": -7.268641, "work": -7.491785, "world": -6.313130, "world_size": -8.878079, "x": -4.817636, "x*x": -7.779467, "xMax": -7.779467, "xrx.Runtime": -8.878079, "y": -5.987707, "y*y": -8.184932, "z": -6.798638, "z*z": -8.878079, "{": -3.470907, "||": -8.184932, "}": -3.453129, }, "XC": map[string]float64{ "(": -3.295837, ")": -3.295837, ":": -3.295837, ";": -1.686399, "<:>": -3.295837, ">": -3.295837, "c": -1.909543, "chan": -3.295837, "int": -2.602690, "main": -3.295837, "par": -3.295837, "return": -3.295837, "x": -2.197225, "{": -2.602690, "}": -2.602690, }, "XCompose": map[string]float64{ "##": -8.642592, "#Maybe": -8.642592, "#Now": -8.642592, "#SUPERSCRIPTS": -8.642592, "#To": -8.642592, "(": -8.642592, ")": -8.642592, ",": -8.642592, "...": -8.642592, ":": -2.201645, "<": -3.248964, "<%s>": -8.642592, "<A>": -5.551549, "<B>": -5.646859, "<BackSpace>": -6.563150, "<C>": -5.507097, "<D>": -5.384495, "<Down>": -6.157685, "<E>": -6.244696, "<F>": -6.244696, "<G>": -7.033154, "<Greek_PI>": -8.642592, "<Greek_SIGMA>": -8.642592, "<Greek_pi>": -8.642592, "<H>": -5.752220, "<I>": -6.563150, "<J>": -6.340007, "<K>": -6.340007, "<KP_Multiply>": -7.949444, "<L>": -5.698153, "<Left>": -5.698153, "<M>": -5.870003, "<Multi_key>": -1.648659, "<N>": -6.244696, "<O>": -5.934541, "<P>": -6.077642, "<Q>": -6.340007, "<R>": -6.003534, "<Right>": -5.809378, "<S>": -5.310387, "<T>": -6.850832, "<U>": -6.157685, "<Up>": -6.340007, "<V>": -7.033154, "<W>": -5.646859, "<X>": -6.696681, "<Y>": -6.850832, "<Z>": -6.244696, "<a>": -4.437899, "<ampersand>": -4.953712, "<apostrophe>": -5.464538, "<asciicircum>": -5.087244, "<asciitilde>": -6.157685, "<asterisk>": -3.979153, "<at>": -5.507097, "<b>": -5.310387, "<backslash>": -4.365925, "<bar>": -4.548247, "<braceleft>": -6.340007, "<braceright>": -7.949444, "<bracketleft>": -4.285883, "<bracketright>": -4.285883, "<c>": -5.005005, "<colon>": -5.031674, "<comma>": -5.423716, "<d>": -5.116231, "<dollar>": -8.642592, "<e>": -4.394096, "<equal>": -5.031674, "<exclam>": -5.646859, "<exclamdown>": -7.949444, "<f>": -5.275296, "<g>": -5.423716, "<grave>": -5.208604, "<greater>": -5.646859, "<h>": -4.953712, "<i>": -4.423084, "<j>": -6.563150, "<k>": -6.340007, "<l>": -4.979030, "<less>": -4.979030, "<m>": -5.423716, "<minus>": -4.730569, "<n>": -4.750771, "<numbersign>": -6.077642, "<o>": -4.565054, "<p>": -5.005005, "<parenleft>": -4.691348, "<parenright>": -4.710766, "<percent>": -4.750771, "<period>": -4.423084, "<plus>": -6.077642, "<q>": -6.563150, "<question>": -5.698153, "<questiondown>": -7.949444, "<quotedbl>": -6.003534, "<r>": -4.813950, "<s>": -4.929020, "<semicolon>": -7.256297, "<slash>": -5.176856, "<space>": -5.507097, "<t>": -4.835929, "<u>": -5.310387, "<underscore>": -4.452937, "<v>": -5.809378, "<w>": -5.934541, "<x>": -6.157685, "<y>": -5.646859, "<z>": -5.809378, ">": -3.248964, "?": -8.642592, "A": -4.548247, "AA": -8.642592, "AB": -8.642592, "AC": -7.949444, "AD": -8.642592, "B": -4.653608, "BA": -7.543979, "BB": -7.543979, "BC": -8.642592, "BD": -8.642592, "BE": -8.642592, "BF": -8.642592, "C": -4.813950, "CA": -8.642592, "CC": -7.949444, "CE": -8.642592, "D": -4.423084, "DA": -7.949444, "DB": -7.949444, "DC": -8.642592, "DD": -8.642592, "E": -4.298786, "EE": -8.642592, "EF": -8.642592, "I": -8.642592, "Need": -8.642592, "U": -2.265865, "UA": -6.696681, "UFB": -6.563150, "UFD": -7.949444, "UFE": -7.949444, "UFEFF": -8.642592, "WTF": -8.642592, "a": -8.642592, "able": -8.642592, "about": -8.642592, "add": -8.642592, "avoid": -8.642592, "b": -7.949444, "be": -8.642592, "c": -8.642592, "clashes": -8.642592, "d": -7.033154, "doubled": -8.642592, "downarrow": -8.642592, "e": -7.256297, "for": -8.642592, "include": -8.642592, "integrals": -8.642592, "is": -8.642592, "leftarrow": -8.642592, "namespace": -8.642592, "periodcentered": -8.642592, "regret": -8.642592, "rightarrow": -8.642592, "some": -8.642592, "talk": -8.642592, "that": -8.642592, "to": -7.949444, "uparrow": -8.642592, "will": -8.642592, "ʔ": -8.642592, "ˀ": -8.642592, "ˁ": -7.949444, "˂": -8.642592, "˃": -8.642592, "⨙": -8.642592, "⨚": -8.642592, }, "XML": map[string]float64{ "!": -10.540567, "#c": -10.540567, "#x": -8.142672, "$": -7.405073, "%": -7.596128, "&": -7.139370, "'": -10.540567, "(": -5.925446, ")": -5.997272, "*after*": -9.847420, "*always*": -10.540567, "*before*": -9.847420, "*must*": -10.540567, "+": -4.923796, ",": -4.840123, "-": -3.743743, ".": -7.106580, "..": -10.540567, "...": -9.154273, ".NET": -9.441955, ".x": -10.540567, ".xml": -10.540567, "/": -3.484392, "//github.com/github/hubot/LICENSEmd": -10.540567, "//hubot.github.com": -10.540567, "//www.freemedforms.com/": -10.540567, "//www.zotero.org/styles/modern": -10.540567, "/AALjR": -10.540567, "/AaEwRe": -10.540567, "/BViIrschKZGVtJbKyFsmKS": -10.540567, "/C": -10.540567, "/CQBTmT": -10.540567, "/CQBTmb": -10.540567, "/DwVX": -10.540567, "/Eul": -10.540567, "/Gn": -10.540567, "/NJH": -10.540567, "/NUVOyZSDbl": -10.540567, "/OLgnzj": -10.540567, "/P": -10.540567, "/PEstbNVJVKbAhvPOVTx": -10.540567, "/Prefer": -9.847420, "/TwnkalWdpzgYTPUrsX": -10.540567, "/VxEnzMR": -10.540567, "/W": -10.540567, "/WsAOrFo": -10.540567, "/YBQkRflz": -10.540567, "/ZJBpCGcs": -10.540567, "/_PlatformToolsetFriendlyNameFor_v": -10.540567, "/_PlatformToolsetShortNameFor_v": -10.540567, "/aNwbxb": -10.540567, "/ah": -10.540567, "/akgN": -10.540567, "/axcZ/": -10.540567, "/bQBzF": -10.540567, "/cmKYzGmiZHz/Vlx": -10.540567, "/ewjxLtQfcl": -10.540567, "/ggxQw": -10.540567, "/hHJDvCAZ": -10.540567, "/iUBDHV": -10.540567, "/icBDF": -10.540567, "/kQKPFV": -10.540567, "/kUsr": -10.540567, "/l": -10.540567, "/p/W": -10.540567, "/qUBTHJ": -10.540567, "/ri": -10.540567, "/tUSO": -10.540567, "/zHZ": -10.540567, "/zZjX": -10.540567, "/zwRFOQoSzEP": -10.540567, "0": -5.886607, "000000": -9.847420, "02": -10.540567, "1": -6.397432, "10": -7.208362, "100": -10.540567, "10px": -9.441955, "11": -7.544835, "113883": -7.650195, "11px": -10.540567, "12": -10.540567, "12b3c8bb": -9.847420, "13": -7.832517, "135": -8.343342, "13px": -10.540567, "14": -9.154273, "14px": -10.540567, "15": -8.343342, "15px": -8.343342, "16": -7.596128, "16px": -10.540567, "17": -10.540567, "17px": -10.540567, "18": -10.540567, "1999": -9.847420, "19px": -9.847420, "1a5f3280b8ba": -9.847420, "2": -7.321691, "20": -7.707354, "2001": -9.441955, "2004": -10.540567, "2010": -10.540567, "2011": -10.540567, "2014": -10.540567, "20px": -7.173271, "21px": -10.540567, "22": -9.847420, "25": -6.669366, "250": -8.343342, "26": -8.748807, "27px": -10.540567, "2px": -9.847420, "3": -7.405073, "30": -9.441955, "30px": -7.208362, "32": -7.650195, "36": -10.540567, "36px": -9.847420, "3px": -8.142672, "4": -9.441955, "40": -10.540567, "40px": -8.931129, "42px": -9.847420, "48px": -9.847420, "4f83": -9.847420, "5": -10.540567, "57": -8.343342, "5px": -10.540567, "6": -10.540567, "7": -10.540567, "8": -9.847420, "840": -7.650195, "88": -7.650195, "9": -10.540567, "9085": -9.847420, "9B9B9B": -9.441955, ":": -5.381512, ";": -5.434621, "<": -8.461125, "<!-->": -8.461125, "<!ATTLIST>": -9.847420, "<!DOCTYPE>": -9.154273, "<!ELEMENT>": -9.154273, "<!ENTITY>": -7.139370, "<![%body.attlist;[>": -10.540567, "<![%body.element;[>": -10.540567, "<![%head.element;[>": -10.540567, "<![%html.element;[>": -10.540567, "<![%title.attlist;[>": -10.540567, "<![%title.element;[>": -10.540567, "</App>": -9.847420, "</AppDesignerFolder>": -9.847420, "</AppliesTo>": -10.540567, "</AppxManifest>": -10.540567, "</Assembly>": -8.237982, "</AssemblyName>": -9.154273, "</Assets>": -10.540567, "</AutoGen>": -9.441955, "</AutoGenerateBindingRedirects>": -9.441955, "</BorderPane>": -10.540567, "</Button>": -9.847420, "</CLRSupport>": -9.847420, "</CharacterSet>": -9.847420, "</Choose>": -10.540567, "</ClCompile>": -8.748807, "</ClInclude>": -9.847420, "</Compile>": -9.441955, "</Configuration>": -7.832517, "</ConfigurationType>": -9.847420, "</CustomParameters>": -10.540567, "</CustomToolNamespace>": -9.847420, "</DebugSymbols>": -8.931129, "</DebugType>": -8.748807, "</DefaultLanguage>": -10.540567, "</DefaultName>": -10.540567, "</DefineConstants>": -8.594657, "</DefineDebug>": -9.847420, "</DefineTrace>": -9.847420, "</Dependencies>": -10.540567, "</DependentUpon>": -9.441955, "</Description>": -9.847420, "</DesignTime>": -10.540567, "</DesignTimeSharedInput>": -10.540567, "</DirectoryNamespaceAssociation>": -10.540567, "</DisableFastUpToDateCheck>": -10.540567, "</DisplayName>": -10.540567, "</DockPanel>": -10.540567, "</DocumentationFile>": -8.931129, "</DotNetNamingPolicy>": -10.540567, "</EdgeNavigator>": -10.540567, "</EmbeddedResource>": -10.540567, "</EnableDotNetNativeCompatibleProfile>": -10.540567, "</ErrorReport>": -9.154273, "</Extensions>": -9.441955, "</FSharpTargetsPath>": -9.847420, "</FileAlignment>": -9.441955, "</FileWidth>": -10.540567, "</Filter>": -8.237982, "</FullClassName>": -9.847420, "</GenerateDebugInformation>": -9.847420, "</Generator>": -9.441955, "</Grid>": -10.540567, "</HBox.margin>": -10.540567, "</HBox>": -10.540567, "</HintPath>": -9.847420, "</Icon>": -10.540567, "</Image>": -10.540567, "</ImportGroup>": -9.154273, "</Installation>": -10.540567, "</IntermediateOutputPath>": -9.847420, "</ItemDefinitionGroup>": -9.847420, "</ItemGroup>": -6.985219, "</Keyword>": -10.540567, "</LastGenOutput>": -9.441955, "</LayoutAnimation>": -10.540567, "</Link>": -9.847420, "</LinkIncremental>": -9.847420, "</MacroReference>": -10.540567, "</Metadata>": -10.540567, "</MinimumVisualStudioVersion>": -9.847420, "</MyType>": -10.540567, "</Name>": -9.154273, "</Nemerle>": -10.540567, "</NemerleBinPathRoot>": -10.540567, "</NemerleVersion>": -10.540567, "</NoStdLib>": -10.540567, "</NoTabsAfterNonTabs>": -10.540567, "</NoWarn>": -9.847420, "</None>": -9.847420, "</NumberOfParentCategoriesToRollUp>": -10.540567, "</Optimization>": -10.540567, "</Optimize>": -8.594657, "</OptionCompare>": -10.540567, "</OptionExplicit>": -10.540567, "</OptionInfer>": -10.540567, "</OptionStrict>": -10.540567, "</Otherwise>": -10.540567, "</OutputName>": -10.540567, "</OutputPath>": -8.237982, "</OutputType>": -8.931129, "</PackageManifest>": -10.540567, "</Panel>": -9.441955, "</Platform>": -7.832517, "</PlatformTarget>": -8.748807, "</PlatformToolset>": -9.441955, "</PolicySet>": -10.540567, "</PrecompiledHeader>": -9.154273, "</PreprocessorDefinitions>": -9.847420, "</Private>": -9.847420, "</ProductVersion>": -9.847420, "</Project>": -7.975618, "</ProjectConfiguration>": -8.237982, "</ProjectGuid>": -8.461125, "</ProjectItem>": -9.154273, "</ProjectReference>": -10.540567, "</ProjectType>": -10.540567, "</ProjectVersion>": -10.540567, "</PropertyGroup>": -7.014206, "</RealOSVersion>": -10.540567, "</Rectangle>": -9.847420, "</Reference>": -7.975618, "</References>": -10.540567, "</RequiredFrameworkVersion>": -10.540567, "</RequiredTargetFramework>": -9.441955, "</ResourceCompile>": -10.540567, "</ResourceNamePolicy>": -10.540567, "</RootNamespace>": -8.931129, "</SchemaVersion>": -9.441955, "</ShowByDefault>": -10.540567, "</SpecificVersion>": -10.540567, "</StackPanel>": -10.540567, "</StartupObject>": -10.540567, "</SubSystem>": -9.847420, "</SubType>": -9.847420, "</SupportedFramework>": -10.540567, "</Switch>": -10.540567, "</TEI>": -10.540567, "</TS>": -9.441955, "</TableView>": -10.540567, "</TabsToSpaces>": -10.540567, "</Tailcalls>": -9.847420, "</Target>": -8.142672, "</TargetFSharpCoreVersion>": -10.540567, "</TargetFrameworkVersion>": -8.931129, "</TargetOsAndVersion>": -10.540567, "</TargetPlatformIdentifier>": -10.540567, "</TargetPlatformMinVersion>": -10.540567, "</TargetPlatformVersion>": -10.540567, "</TemplateContent>": -10.540567, "</TemplateData>": -10.540567, "</TemplateID>": -10.540567, "</Text>": -9.847420, "</TextInput>": -10.540567, "</TextStylePolicy>": -10.540567, "</UniqueIdentifier>": -9.441955, "</UseDebugLibraries>": -9.847420, "</UseDotNetNativeToolchain>": -9.441955, "</VSTemplate>": -10.540567, "</VerticalText>": -8.748807, "</VisualStudioVersion>": -10.540567, "</WarningLevel>": -8.461125, "</When>": -10.540567, "</WhileKeyboardVisible>": -10.540567, "</WhilePressed>": -10.540567, "</WhileTrue>": -10.540567, "</WixTargetsPath>": -10.540567, "</WizardData>": -10.540567, "</WizardExtension>": -9.847420, "</a>": -9.154273, "</assembly>": -10.540567, "</assert>": -7.244730, "</attDef>": -8.461125, "</attList>": -8.343342, "</author>": -10.540567, "</authors>": -10.540567, "</availability>": -10.540567, "</bibliography>": -10.540567, "</body>": -10.540567, "</bottom>": -10.540567, "</buildOutputProvider>": -6.851687, "</c>": -10.540567, "</categories>": -10.540567, "</category>": -9.847420, "</cconfiguration>": -9.847420, "</center>": -10.540567, "</children>": -10.540567, "</choose>": -6.463029, "</citation>": -10.540567, "</classSpec>": -8.931129, "</columns>": -10.540567, "</component>": -10.540567, "</configuration>": -9.441955, "</configurations>": -10.540567, "</connections>": -10.540567, "</constraint>": -8.594657, "</constraintSpec>": -8.594657, "</content>": -10.540567, "</context>": -9.441955, "</copyright>": -10.540567, "</cproject>": -10.540567, "</data>": -6.985219, "</date>": -6.985219, "</dependencies>": -9.441955, "</dependencyList>": -10.540567, "</desc>": -6.051931, "</description>": -8.931129, "</directory>": -9.847420, "</disabledValue>": -10.540567, "</displayName>": -10.540567, "</div>": -8.343342, "</dllmap>": -10.540567, "</doc>": -10.540567, "</docAuthor>": -9.441955, "</docDate>": -10.540567, "</docTitle>": -10.540567, "</document>": -9.847420, "</ea:build>": -10.540567, "</echo>": -9.847420, "</elementSpec>": -5.804368, "</else-if>": -7.208362, "</else>": -6.929649, "</email>": -10.540567, "</enabledValue>": -10.540567, "</exception>": -10.540567, "</extensions>": -9.847420, "</fileDesc>": -10.540567, "</files>": -10.540567, "</filter>": -10.540567, "</folderInfo>": -9.847420, "</front>": -10.540567, "</gi>": -9.441955, "</gml:Point>": -9.847420, "</gml:pos>": -9.847420, "</group>": -9.847420, "</head>": -8.343342, "</hi>": -8.461125, "</id>": -9.847420, "</if>": -6.463029, "</image>": -7.139370, "</info>": -9.847420, "</inputType>": -9.847420, "</item>": -9.847420, "</ivy-module>": -10.540567, "</layout>": -9.847420, "</licence>": -9.847420, "</license>": -10.540567, "</licenseUrl>": -10.540567, "</list>": -10.540567, "</locale>": -10.540567, "</macro>": -7.362513, "</map>": -10.540567, "</member>": -5.728383, "</members>": -10.540567, "</message>": -7.449524, "</metadata>": -10.540567, "</mj-attributes>": -10.540567, "</mj-body>": -9.847420, "</mj-button>": -7.901510, "</mj-column>": -6.711926, "</mj-container>": -9.847420, "</mj-head>": -10.540567, "</mj-image>": -7.208362, "</mj-inline-links>": -10.540567, "</mj-link>": -9.441955, "</mj-navbar>": -10.540567, "</mj-section>": -7.282470, "</mj-social>": -10.540567, "</mj-text>": -6.877005, "</mj-title>": -10.540567, "</mjml>": -9.847420, "</model>": -6.321059, "</modelSequence>": -8.931129, "</module>": -10.540567, "</multiple>": -10.540567, "</name>": -8.931129, "</names>": -7.596128, "</node>": -7.405073, "</objects>": -10.540567, "</option>": -9.154273, "</owners>": -10.540567, "</p>": -6.497516, "</package>": -10.540567, "</packages>": -10.540567, "</param>": -6.051931, "</pattern>": -9.847420, "</phase>": -9.154273, "</phpunit>": -10.540567, "</placeholder>": -10.540567, "</plugin>": -10.540567, "</policies>": -10.540567, "</policy>": -10.540567, "</policyDefinitionResources>": -10.540567, "</policyDefinitions>": -10.540567, "</policyNamespaces>": -10.540567, "</profile>": -6.851687, "</project>": -9.847420, "</projectUrl>": -10.540567, "</publicationStmt>": -10.540567, "</publisher>": -10.540567, "</ref>": -10.540567, "</rendition>": -5.915594, "</report>": -7.767978, "</requireLicenseAcceptance>": -10.540567, "</resheader>": -8.461125, "</resources>": -10.540567, "</returns>": -6.957048, "</rights>": -10.540567, "</root>": -10.540567, "</rule>": -8.343342, "</scannerConfigBuildInfo>": -9.154273, "</scannerInfoProvider>": -6.851687, "</schema>": -9.441955, "</schemaSpec>": -10.540567, "</single>": -10.540567, "</sort>": -10.540567, "</source>": -7.449524, "</sourceDesc>": -10.540567, "</sourceEntries>": -9.847420, "</span>": -9.847420, "</specGrp>": -8.461125, "</storageModule>": -8.594657, "</string>": -9.441955, "</stringTable>": -10.540567, "</strong>": -8.931129, "</style>": -10.540567, "</substitute>": -8.931129, "</summary>": -5.712253, "</target>": -9.847420, "</teiHeader>": -10.540567, "</term>": -7.596128, "</terms>": -10.540567, "</testsuite>": -10.540567, "</testsuites>": -10.540567, "</text>": -10.540567, "</tile>": -7.139370, "</tileset>": -10.540567, "</title-short>": -10.540567, "</title>": -8.931129, "</titlePage>": -10.540567, "</titlePart>": -10.540567, "</titleStmt>": -10.540567, "</tool>": -8.461125, "</toolChain>": -9.847420, "</translation>": -7.449524, "</typeparam>": -8.055660, "</updated>": -10.540567, "</url>": -10.540567, "</valItem>": -6.263901, "</valList>": -8.594657, "</value>": -8.931129, "</vendor>": -10.540567, "</version>": -10.540567, "</whitelist>": -10.540567, "</window>": -10.540567, "</xsd:choice>": -10.540567, "</xsd:complexType>": -9.441955, "</xsd:element>": -9.441955, "</xsd:schema>": -10.540567, "</xsd:sequence>": -9.847420, "</xsl:function>": -10.540567, "</xsl:variable>": -10.540567, "<?exactMatch>": -6.570275, "<?fileVersion>": -10.540567, "<?import>": -9.154273, "<?xml-model>": -10.540567, "<?xml>": -6.929649, "<AdditionalDependencies>": -9.847420, "<App>": -9.847420, "<AppDesignerFolder>": -9.847420, "<AppliesTo>": -10.540567, "<AppxManifest>": -10.540567, "<Assembly>": -8.237982, "<AssemblyName>": -9.154273, "<Asset>": -10.540567, "<Assets>": -10.540567, "<AutoGen>": -9.441955, "<AutoGenerateBindingRedirects>": -9.441955, "<BorderPane>": -10.540567, "<Button>": -9.847420, "<CLRSupport>": -9.847420, "<Change>": -10.540567, "<CharacterSet>": -9.847420, "<Choose>": -10.540567, "<ClCompile>": -8.461125, "<ClInclude>": -9.154273, "<Compile>": -8.142672, "<Configuration>": -7.832517, "<ConfigurationType>": -9.847420, "<Content>": -7.362513, "<CustomParameter>": -8.748807, "<CustomParameters>": -10.540567, "<CustomToolNamespace>": -9.847420, "<DebugSymbols>": -8.931129, "<DebugType>": -8.748807, "<DefaultLanguage>": -10.540567, "<DefaultName>": -10.540567, "<DefineConstants>": -8.594657, "<DefineDebug>": -9.847420, "<DefineTrace>": -9.847420, "<Dependencies>": -10.540567, "<Dependency>": -9.847420, "<DependentUpon>": -9.441955, "<Description>": -9.847420, "<DesignTime>": -10.540567, "<DesignTimeSharedInput>": -10.540567, "<DirectoryNamespaceAssociation>": -10.540567, "<DisableFastUpToDateCheck>": -10.540567, "<DisplayName>": -10.540567, "<DockPanel>": -10.540567, "<DocumentationFile>": -8.931129, "<DotNetNamingPolicy>": -10.540567, "<EdgeNavigator>": -10.540567, "<EmbeddedResource>": -10.540567, "<EnableDotNetNativeCompatibleProfile>": -10.540567, "<ErrorReport>": -9.154273, "<Extensions>": -9.441955, "<FSharpTargetsPath>": -9.847420, "<FileAlignment>": -9.441955, "<FileWidth>": -10.540567, "<Filter>": -8.237982, "<Folder>": -10.540567, "<FullClassName>": -9.847420, "<GenerateDebugInformation>": -9.847420, "<Generator>": -9.441955, "<Grid>": -10.540567, "<HBox.margin>": -10.540567, "<HBox>": -10.540567, "<HintPath>": -9.847420, "<Icon>": -10.540567, "<Identity>": -10.540567, "<Image>": -9.847420, "<Import>": -7.014206, "<ImportGroup>": -9.154273, "<Insets>": -10.540567, "<Installation>": -10.540567, "<InstallationTarget>": -10.540567, "<IntermediateOutputPath>": -9.847420, "<ItemDefinitionGroup>": -9.847420, "<ItemGroup>": -6.985219, "<Keyword>": -10.540567, "<LastGenOutput>": -9.441955, "<LayoutAnimation>": -10.540567, "<Link>": -9.847420, "<LinkIncremental>": -9.847420, "<MacroReference>": -10.540567, "<Message>": -10.540567, "<Metadata>": -10.540567, "<MinimumVisualStudioVersion>": -9.847420, "<Move>": -8.931129, "<MyType>": -10.540567, "<Name>": -9.154273, "<Nemerle>": -10.540567, "<NemerleBinPathRoot>": -10.540567, "<NemerleVersion>": -10.540567, "<NoStdLib>": -10.540567, "<NoTabsAfterNonTabs>": -10.540567, "<NoWarn>": -9.847420, "<None>": -8.748807, "<NumberOfParentCategoriesToRollUp>": -10.540567, "<Optimization>": -10.540567, "<Optimize>": -8.594657, "<OptionCompare>": -10.540567, "<OptionExplicit>": -10.540567, "<OptionInfer>": -10.540567, "<OptionStrict>": -10.540567, "<Otherwise>": -10.540567, "<OutputName>": -10.540567, "<OutputPath>": -8.237982, "<OutputType>": -8.931129, "<PackageManifest>": -10.540567, "<Panel>": -9.154273, "<Platform>": -7.832517, "<PlatformTarget>": -8.748807, "<PlatformToolset>": -9.441955, "<PolicySet>": -10.540567, "<PrecompiledHeader>": -9.154273, "<PreprocessorDefinitions>": -9.847420, "<Private>": -9.847420, "<ProductVersion>": -9.847420, "<Project>": -7.901510, "<ProjectConfiguration>": -8.237982, "<ProjectGuid>": -8.461125, "<ProjectItem>": -9.154273, "<ProjectReference>": -9.154273, "<ProjectType>": -10.540567, "<ProjectVersion>": -10.540567, "<PropertyGroup>": -6.985219, "<RealOSVersion>": -10.540567, "<Rectangle>": -8.461125, "<Reference>": -6.902981, "<References>": -10.540567, "<RequiredFrameworkVersion>": -10.540567, "<RequiredTargetFramework>": -9.441955, "<ResourceCompile>": -9.847420, "<ResourceNamePolicy>": -10.540567, "<RootNamespace>": -8.931129, "<Rotation>": -10.540567, "<SchemaVersion>": -9.441955, "<ShowByDefault>": -10.540567, "<SpecificVersion>": -10.540567, "<StackPanel>": -10.540567, "<StartupObject>": -10.540567, "<SubSystem>": -9.847420, "<SubType>": -9.847420, "<SupportedFramework>": -10.540567, "<Switch>": -10.540567, "<TEI>": -10.540567, "<TS>": -9.441955, "<TableColumn>": -9.441955, "<TableView>": -10.540567, "<TabsToSpaces>": -10.540567, "<Tailcalls>": -9.847420, "<Target>": -8.748807, "<TargetFSharpCoreVersion>": -10.540567, "<TargetFrameworkVersion>": -8.931129, "<TargetOsAndVersion>": -10.540567, "<TargetPlatformIdentifier>": -10.540567, "<TargetPlatformMinVersion>": -10.540567, "<TargetPlatformVersion>": -10.540567, "<TemplateContent>": -10.540567, "<TemplateData>": -10.540567, "<TemplateID>": -10.540567, "<Text>": -9.154273, "<TextInput>": -10.540567, "<TextStylePolicy>": -10.540567, "<TopFrameBackground>": -10.540567, "<UniqueIdentifier>": -9.441955, "<UseDebugLibraries>": -9.847420, "<UseDotNetNativeToolchain>": -9.441955, "<VSTemplate>": -10.540567, "<VerticalText>": -8.748807, "<VisualStudioVersion>": -10.540567, "<WarningLevel>": -8.461125, "<When>": -10.540567, "<WhileKeyboardVisible>": -10.540567, "<WhilePressed>": -10.540567, "<WhileTrue>": -10.540567, "<WixTargetsPath>": -10.540567, "<WizardData>": -10.540567, "<WizardExtension>": -9.847420, "<a>": -9.154273, "<active>": -6.366180, "<additionalInput>": -9.154273, "<anchor>": -10.540567, "<assembly>": -10.540567, "<assert>": -7.244730, "<attDef>": -7.901510, "<attList>": -8.343342, "<author>": -10.540567, "<authors>": -10.540567, "<autodiscovery>": -8.931129, "<autoresizingMask>": -10.540567, "<availability>": -10.540567, "<bibliography>": -10.540567, "<body>": -10.540567, "<bottom>": -10.540567, "<br>": -8.931129, "<buildOutputProvider>": -6.851687, "<builder>": -9.847420, "<c>": -10.540567, "<categories>": -10.540567, "<category>": -9.154273, "<cconfiguration>": -9.847420, "<center>": -10.540567, "<children>": -10.540567, "<choose>": -6.463029, "<citation>": -10.540567, "<classRef>": -8.748807, "<classSpec>": -7.496044, "<color>": -10.540567, "<columns>": -10.540567, "<component>": -10.540567, "<conf>": -9.847420, "<configuration>": -9.441955, "<configurations>": -10.540567, "<connections>": -10.540567, "<constraint>": -8.594657, "<constraintSpec>": -8.594657, "<content>": -10.540567, "<context>": -9.441955, "<copyright/>": -10.540567, "<copyright>": -10.540567, "<cproject>": -10.540567, "<customObject>": -10.540567, "<data>": -6.985219, "<date-part>": -6.029707, "<date>": -6.985219, "<decimal>": -9.847420, "<dependencies>": -9.441955, "<dependency>": -8.931129, "<dependencyList>": -10.540567, "<desc>": -6.051931, "<description>": -8.931129, "<directory>": -9.847420, "<disabledValue>": -10.540567, "<displayName>": -10.540567, "<div>": -8.343342, "<dllentry>": -9.847420, "<dllmap>": -10.540567, "<doc>": -10.540567, "<docAuthor>": -9.441955, "<docDate>": -10.540567, "<docTitle>": -10.540567, "<document>": -9.847420, "<ea:build>": -9.847420, "<ea:plugin>": -9.847420, "<ea:property>": -10.540567, "<echo>": -9.847420, "<edge>": -7.767978, "<elementRef>": -6.779367, "<elementSpec>": -5.804368, "<else-if>": -7.208362, "<else>": -6.929649, "<email>": -10.540567, "<enabledValue>": -10.540567, "<entry>": -9.847420, "<exception>": -10.540567, "<exclude-output>": -10.540567, "<extension>": -8.055660, "<extensions>": -9.847420, "<externalSettings/>": -9.847420, "<file>": -10.540567, "<fileDesc>": -10.540567, "<files>": -10.540567, "<filter>": -10.540567, "<folderInfo>": -9.847420, "<font>": -7.405073, "<front>": -10.540567, "<gi>": -9.441955, "<gml:Point>": -9.847420, "<gml:pos>": -9.847420, "<group>": -9.847420, "<head>": -8.343342, "<hi>": -8.461125, "<hook>": -10.540567, "<id>": -9.847420, "<if>": -6.463029, "<image>": -7.139370, "<include>": -9.441955, "<info>": -9.847420, "<inputType>": -8.461125, "<item>": -9.847420, "<ivy-module>": -10.540567, "<key>": -9.847420, "<label>": -8.594657, "<layout>": -9.847420, "<let>": -7.975618, "<licence>": -9.847420, "<license>": -10.540567, "<licenseUrl>": -10.540567, "<link>": -9.847420, "<list>": -10.540567, "<listOptionValue>": -9.154273, "<locale>": -10.540567, "<location>": -7.767978, "<m:ns>": -8.931129, "<macro>": -7.362513, "<map>": -10.540567, "<member>": -5.728383, "<members>": -10.540567, "<message>": -7.449524, "<metadata>": -10.540567, "<mj-all>": -10.540567, "<mj-attributes>": -10.540567, "<mj-body>": -9.847420, "<mj-button>": -7.901510, "<mj-column>": -6.711926, "<mj-container>": -9.847420, "<mj-divider>": -9.847420, "<mj-font>": -9.847420, "<mj-head>": -10.540567, "<mj-image>": -7.208362, "<mj-inline-links>": -10.540567, "<mj-link>": -9.441955, "<mj-navbar>": -10.540567, "<mj-section>": -7.282470, "<mj-social>": -10.540567, "<mj-text>": -6.851687, "<mj-title>": -10.540567, "<mjml>": -9.847420, "<model>": -5.404768, "<modelSequence>": -8.931129, "<module>": -10.540567, "<moduleRef>": -9.847420, "<multiple>": -10.540567, "<name/>": -9.441955, "<name>": -7.362513, "<names>": -7.244730, "<node>": -7.405073, "<ns>": -8.594657, "<number>": -8.142672, "<objects>": -10.540567, "<openAction>": -6.851687, "<option>": -7.767978, "<orderEntry>": -9.441955, "<outlet>": -10.540567, "<owners>": -10.540567, "<p>": -6.497516, "<package>": -7.544835, "<packages>": -10.540567, "<param>": -6.051931, "<parentCategory>": -9.847420, "<parser>": -6.158540, "<pattern>": -9.847420, "<phase>": -9.154273, "<phpunit>": -10.540567, "<placeholder>": -9.847420, "<plugIn>": -9.847420, "<plugin>": -10.540567, "<policies>": -10.540567, "<policy>": -10.540567, "<policyDefinitionResources>": -10.540567, "<policyDefinitions>": -10.540567, "<policyNamespaces>": -10.540567, "<profile>": -6.851687, "<project>": -9.847420, "<projectUrl>": -10.540567, "<property>": -10.540567, "<publicationStmt>": -10.540567, "<publisher>": -10.540567, "<rect>": -10.540567, "<ref>": -10.540567, "<rendition>": -5.905838, "<report>": -7.767978, "<requireLicenseAcceptance>": -10.540567, "<resheader>": -8.594657, "<resources>": -9.847420, "<returns>": -6.957048, "<rights>": -10.540567, "<root>": -10.540567, "<rule>": -8.343342, "<runAction>": -6.851687, "<scannerConfigBuildInfo>": -9.154273, "<scannerInfoProvider>": -6.851687, "<scenes/>": -10.540567, "<schema>": -9.441955, "<schemaSpec>": -10.540567, "<single>": -10.540567, "<sort>": -10.540567, "<source>": -7.449524, "<sourceDesc>": -10.540567, "<sourceEntries>": -9.847420, "<sourceFolder>": -9.847420, "<span>": -9.847420, "<specGrp>": -8.461125, "<specGrpRef>": -8.343342, "<storageModule>": -7.901510, "<string>": -9.441955, "<stringTable>": -10.540567, "<strong>": -8.931129, "<style-options>": -10.540567, "<style>": -10.540567, "<substitute>": -8.931129, "<summary>": -5.712253, "<supportedOn>": -10.540567, "<target>": -9.441955, "<targetPlatform>": -9.847420, "<teiHeader>": -10.540567, "<term>": -7.596128, "<terms>": -10.540567, "<testsuite>": -10.540567, "<testsuites>": -10.540567, "<text>": -4.759823, "<tile>": -7.139370, "<tileset>": -10.540567, "<title-short>": -10.540567, "<title>": -8.931129, "<titlePage>": -10.540567, "<titlePart>": -10.540567, "<titleStmt>": -10.540567, "<tool>": -8.055660, "<toolChain>": -9.847420, "<translation>": -7.449524, "<typeparam>": -8.055660, "<updated>": -10.540567, "<url>": -10.540567, "<using>": -10.540567, "<valItem>": -6.121726, "<valList>": -8.594657, "<value-of>": -6.957048, "<value>": -8.931129, "<vendor>": -10.540567, "<version>": -10.540567, "<whitelist>": -10.540567, "<window>": -10.540567, "<xsd:attribute>": -9.154273, "<xsd:choice>": -10.540567, "<xsd:complexType>": -9.441955, "<xsd:element>": -8.748807, "<xsd:schema>": -10.540567, "<xsd:sequence>": -9.847420, "<xsl:function>": -10.540567, "<xsl:include>": -10.540567, "<xsl:param>": -10.540567, "<xsl:sequence>": -10.540567, "<xsl:value-of>": -9.441955, "<xsl:variable>": -10.540567, "=": -2.131182, ">": -2.789522, "?": -6.756377, "@align": -9.847420, "@char": -10.540567, "@charoff": -10.540567, "@colnum": -10.540567, "@cols": -9.847420, "@colwidth": -9.847420, "@colwidth.": -10.540567, "A": -6.902981, "A/": -10.540567, "AAAAAASUVORK": -10.540567, "AAAAABJRU": -10.540567, "AAAAAElFTkSuQmCC": -9.847420, "AAAAASUVORK": -9.441955, "AAD": -10.540567, "AB": -10.540567, "ABAD": -10.540567, "ABNZRANiOw": -10.540567, "ABY": -10.540567, "AC": -8.142672, "ACvKyUk": -10.540567, "AFhTiBlAzABCvEUt": -10.540567, "AH": -7.074831, "AHOfoP": -10.540567, "AHTQnuq/EpedjfCjOU": -10.540567, "AHxIzDcNxSb": -10.540567, "AINp": -10.540567, "AJYyUM": -10.540567, "AKwwNk": -10.540567, "ALDER": -10.540567, "ALHjBgFCECH": -10.540567, "ANDERSON": -10.540567, "APFOMI": -10.540567, "APfnVRznOjVXwmmZl/upfrfNUtVwAOBqFKxVC/c": -10.540567, "AQ": -9.847420, "AQMKGDI": -10.540567, "AQfg/ug": -10.540567, "ARFaQyrqz": -10.540567, "ARM": -9.847420, "AS": -10.540567, "ASZt": -10.540567, "ATgvlQ/F": -10.540567, "AUT": -10.540567, "AUcp": -10.540567, "AVlWoqYpVKPv": -10.540567, "AWem": -10.540567, "AXRtF": -10.540567, "AXc": -10.540567, "AZCSXu": -10.540567, "AZPLMmQ": -10.540567, "Aa": -10.540567, "AbapkqBjVPJSc": -10.540567, "Ad": -10.540567, "AddRange": -9.847420, "AdwmhUhAp": -10.540567, "Aenean": -8.748807, "AfUc": -10.540567, "Afr/": -10.540567, "Agp": -10.540567, "AhfFda": -10.540567, "AiEBMTFTUVFRUVT": -10.540567, "AiqfqIHZUoznbTfURwYA": -10.540567, "AjQb": -10.540567, "AkBgKtYYWHYAEgyENAHiY": -10.540567, "AkT": -10.540567, "AkmIky": -10.540567, "AkqTsdFiKTLAfUvYI": -10.540567, "Al": -10.540567, "AlHZSrgwEkFAWFjxSyNe": -10.540567, "Alice": -8.343342, "Alignment": -7.901510, "Alignment=": -8.237982, "Aliquam": -8.931129, "All": -10.540567, "AmAaEzqhq": -10.540567, "An": -7.282470, "AnYNENO": -10.540567, "Anderson": -10.540567, "Another": -9.441955, "AnyCPU": -7.544835, "AoJqPdNrZA": -10.540567, "ApO": -10.540567, "Application": -9.154273, "Application.Designer.vb": -10.540567, "Application.myapp": -10.540567, "ApplicationProject": -9.847420, "Apr.": -10.540567, "AqdW": -10.540567, "Archiver": -9.847420, "Arial": -8.237982, "Assembler": -9.847420, "AssemblyInfo": -10.540567, "AssemblyName": -10.540567, "Association": -10.540567, "AsyncGet": -10.540567, "AtHddI": -10.540567, "Attempts": -10.540567, "Attribute": -10.540567, "Attribution": -9.847420, "Aug.": -10.540567, "AwGd": -10.540567, "AwziG": -10.540567, "Ay": -10.540567, "AyDux": -10.540567, "Ayj": -10.540567, "AykpfCcbzv": -10.540567, "Azd": -10.540567, "Azure": -9.847420, "B": -8.461125, "BACKPACK": -9.847420, "BAQzkc/Yiwa": -10.540567, "BB": -10.540567, "BBF": -10.540567, "BD": -10.540567, "BE": -10.540567, "BEERgmhJvAntKLwLtJ": -10.540567, "BETp": -10.540567, "BEXKairlYSrFbiL": -10.540567, "BEYOND": -10.540567, "BF": -9.154273, "BFkfl": -10.540567, "BHQfJdA": -10.540567, "BHg/": -10.540567, "BJB": -10.540567, "BKeWMTHEAAAAASUVORK": -10.540567, "BLAKE": -10.540567, "BNaj": -10.540567, "BOD": -10.540567, "BP": -10.540567, "BRMHZxrN": -10.540567, "BSD": -9.847420, "BT": -9.847420, "BU": -10.540567, "BUY": -8.237982, "BWhS": -10.540567, "BY": -9.847420, "BZKTz": -10.540567, "BZTHTUEApqXA": -10.540567, "BZbsTlEFENAOUGToAAKuVkF": -10.540567, "BZwrcT": -10.540567, "BaV": -10.540567, "Background": -9.847420, "Background=": -10.540567, "Bb": -10.540567, "BcB": -10.540567, "BcLIHxOwJwKsGn": -10.540567, "BeWrUMuH": -10.540567, "BeZ": -10.540567, "Beach": -10.540567, "BfZOgtUvT": -10.540567, "Bh/MYCpnCu/etFOCtqntXs": -10.540567, "Binary": -10.540567, "BindTo": -10.540567, "Bit": -9.154273, "BiznjmAJ": -10.540567, "Bkyx": -10.540567, "BlD": -10.540567, "Block": -10.540567, "Blue": -10.540567, "BngynDNjR/": -10.540567, "BorderPane": -9.847420, "BorderPane.alignment": -9.847420, "Bot": -9.847420, "BpMhFh": -10.540567, "BpjkTw": -10.540567, "Brian": -10.540567, "Builder": -9.847420, "But": -10.540567, "Bv": -10.540567, "BwZFjJ/": -10.540567, "ByFBSUsgwTH": -10.540567, "ByIhoqOjj": -10.540567, "C": -7.362513, "C/": -10.540567, "C/a": -10.540567, "C3": -10.540567, "CAMDEN": -10.540567, "CAP": -10.540567, "CAiTht": -10.540567, "CAnQcpC": -10.540567, "CC": -9.441955, "CCBV": -10.540567, "CENTER": -9.847420, "CFIdOZl/f": -10.540567, "CGJxYdmTeSQK": -10.540567, "CHESTERK": -10.540567, "CHOICE": -10.540567, "CHhUN": -10.540567, "CIAGxpAiSIkiKmKhAIBD": -10.540567, "CIARt": -10.540567, "CITbW": -10.540567, "CIaRRWE": -10.540567, "CIqj": -10.540567, "CJSyCb": -10.540567, "CKoMja": -10.540567, "CKwoXU": -10.540567, "CMSf": -10.540567, "CMbdI": -10.540567, "CMpxMkRTfq": -10.540567, "COLLECTION": -10.540567, "COLOR": -7.405073, "COWNDkOiwzABEH": -10.540567, "CPJP": -10.540567, "CPU": -10.540567, "CQLBhEhI": -10.540567, "CQMWKNfN": -10.540567, "CREATED": -7.405073, "CREATED=": -7.405073, "CRHgschwPGQwZq": -10.540567, "CRykv/BD": -10.540567, "CSharp": -9.847420, "CTAESWG": -10.540567, "CTEsEAZI": -10.540567, "CTwKKPh": -10.540567, "CURRENCIES": -10.540567, "CUV/UfX": -10.540567, "CUi": -10.540567, "CVI": -10.540567, "CXSejzLweCFdrHpxwd": -10.540567, "CXdfLj": -10.540567, "CYII": -7.975618, "CZcI": -10.540567, "Call": -10.540567, "CbXcT": -10.540567, "CcYDOp": -10.540567, "Cci": -10.540567, "CdMl": -10.540567, "Cdsn": -10.540567, "Cdsrihynd": -10.540567, "Cgxy": -10.540567, "ChDMV": -10.540567, "Change": -9.847420, "ChangeTrackingEnabled": -9.847420, "Changed": -9.154273, "Changed.": -10.540567, "Changing": -8.931129, "Changing/Changed": -10.540567, "Chv": -10.540567, "CiZYdOx": -10.540567, "CkEwP": -10.540567, "CkrO": -10.540567, "Class": -10.540567, "Classes": -10.540567, "Clc": -10.540567, "CmtNKszQTkv": -10.540567, "Collection.Select": -10.540567, "Color": -8.461125, "Color=": -8.461125, "Colour": -10.540567, "ColumnCount": -10.540567, "Common": -8.748807, "Commons": -9.847420, "Compiler": -9.154273, "Conceptually": -10.540567, "Concurrency": -10.540567, "Condition": -6.690419, "Condition=": -8.461125, "Configuration": -7.596128, "Consider": -9.847420, "Console": -9.441955, "Consortium": -9.847420, "Consortium.": -10.540567, "Constructor": -9.847420, "Constructs": -9.154273, "Converts": -9.847420, "Cooking": -9.847420, "Copyright": -10.540567, "Count.": -9.154273, "Covariant": -10.540567, "CpBDtlBGMCrepTdSfjCFnZgpIA/": -10.540567, "CqlmZiaeaKICmChBlCEM": -10.540567, "Cr": -10.540567, "Create": -9.847420, "Creates": -9.441955, "Creative": -9.847420, "CrkMNJ": -10.540567, "CsQJANgoSKJosgAdGkFYgKxFcgKlZUnHn": -10.540567, "CslOmoqiV": -10.540567, "Culture": -9.154273, "Culture=": -10.540567, "Current": -10.540567, "CurrentProject": -10.540567, "CxC": -10.540567, "CyXMw": -10.540567, "D": -7.707354, "DA": -9.847420, "DBzumGHJAQ": -10.540567, "DCiF": -10.540567, "DDY": -10.540567, "DEBUG": -9.441955, "DF": -10.540567, "DGcYROKR": -10.540567, "DHgTsDrjqEfzWhZz": -10.540567, "DISCOVER": -10.540567, "DK": -10.540567, "DLYhwPU": -10.540567, "DLwIOYb": -10.540567, "DMBDsp/hHDxQcOFBwwMAgwMDEIKAgoCAgUqBhqH": -10.540567, "DMTyFYXHyPW/XVDiQt": -10.540567, "DO": -10.540567, "DPLsfvqmLbdDuCYTACnMrPzlUKPABgfPBXfeBXvb": -10.540567, "DPVhouJ": -10.540567, "DQAw": -10.540567, "DQQ": -10.540567, "DS": -10.540567, "DTes": -10.540567, "DU": -9.847420, "DUEMgWEkIGATT": -10.540567, "DVXz": -10.540567, "DcefYT": -10.540567, "DclzSa": -10.540567, "Debug": -7.496044, "Dec.": -10.540567, "DefaultTargets": -8.237982, "DefaultTargets=": -8.461125, "DeferredScheduler": -10.540567, "Degrees": -10.540567, "Delegate": -10.540567, "Delivered": -10.540567, "Designer": -8.931129, "Determins": -9.847420, "Deus": -9.847420, "Device": -10.540567, "DgTM": -10.540567, "DhckMiKMQW/": -10.540567, "DhsF": -10.540567, "DiIOZYTzzEVxFMAk": -10.540567, "DiNd": -10.540567, "Disable": -10.540567, "DisableFastUpToDateCheck": -9.847420, "Disabled": -10.540567, "Dispatcher": -9.441955, "DispatcherScheduler": -10.540567, "DisplayName": -9.847420, "DisplayName=": -9.847420, "Distributed": -10.540567, "DjJJwtwLYNMEg": -10.540567, "DkRaBTPW": -10.540567, "Dkr": -10.540567, "Dkw": -10.540567, "DmOOBORacaakZwjQt": -10.540567, "DmgAAAABJRU": -10.540567, "DoJCqsxFsr": -10.540567, "Dock": -10.540567, "Donec": -9.847420, "DqhhkHITU": -10.540567, "Drawing": -9.847420, "DtEqRriJh": -10.540567, "DuBGdhSCY": -10.540567, "Duration": -8.931129, "Duration=": -8.931129, "During": -10.540567, "Dvs/yGQU": -10.540567, "DwN": -10.540567, "DwohPN": -10.540567, "DxvyeEhGkL": -10.540567, "Dyczrd": -10.540567, "E": -7.449524, "EAOW": -10.540567, "EAt": -10.540567, "EB": -10.540567, "EBAsrP": -10.540567, "EBFB": -10.540567, "EBJxplu": -10.540567, "EBPJRG": -10.540567, "ECEq": -10.540567, "ECNTy": -10.540567, "EDSCgB": -10.540567, "EEBO": -8.931129, "EED": -10.540567, "EEDC": -10.540567, "EF": -10.540567, "EGa": -10.540567, "EHI": -10.540567, "EI": -10.540567, "EJEtETL": -10.540567, "EKMZ": -10.540567, "ELARmTvRa": -10.540567, "ELacEEAFzuQCqmDMD": -10.540567, "ELvd": -10.540567, "ENRICH": -10.540567, "ENTITY": -10.540567, "ENVRG": -10.540567, "EQAMVMZQzANAlQcUfvUpePBlrRgUD": -10.540567, "EQEC": -10.540567, "EQPKPgPU": -10.540567, "EQVR": -8.237982, "ESfRdb": -10.540567, "EU": -10.540567, "EXPRESS": -10.540567, "EYRiPlPfdooQhMJ": -10.540567, "Each": -10.540567, "Ead": -10.540567, "EbBnLm": -10.540567, "Edge": -10.540567, "EdgeNavigation": -10.540567, "EdgeNavigation.Edge": -10.540567, "EdgeNavigator": -10.540567, "EgDRNmk": -10.540567, "EgSjaQs": -10.540567, "EhtMdsFIHujZ": -10.540567, "EhuEMI": -10.540567, "Ehul": -10.540567, "Ei": -10.540567, "Elements": -10.540567, "Eli": -10.540567, "EnNR": -10.540567, "Enables": -9.847420, "Encoding": -9.847420, "England": -9.441955, "English": -9.847420, "EnrjHnjB": -10.540567, "Enrollment": -8.931129, "Ensure": -10.540567, "Entry": -9.847420, "Eo": -10.540567, "Epidoc": -10.540567, "EqhJHfMGbAsYdIgORkLjFUaNXENpCcE": -10.540567, "ErZYNvvLeEplAU": -10.540567, "Eric": -10.540567, "ErkJggg": -8.931129, "EsFChVpZ": -10.540567, "EsLye": -10.540567, "Esc": -9.847420, "Estate": -10.540567, "Et": -10.540567, "Ets": -10.540567, "EuluS": -10.540567, "European": -10.540567, "Evaluates": -10.540567, "Evi": -10.540567, "EvzuinJYiBfBty": -10.540567, "Ex": -10.540567, "Example": -9.847420, "Exception": -10.540567, "Exe": -9.154273, "Expression": -8.594657, "Ez": -10.540567, "F": -9.154273, "F#": -10.540567, "FFFFFF": -7.975618, "FIXED": -10.540567, "FLORAL": -10.540567, "FPI": -10.540567, "FREE": -10.540567, "FSharp": -9.847420, "Fabric": -9.154273, "False": -9.847420, "Feb.": -10.540567, "FileFormatDefault": -10.540567, "Files": -8.237982, "Fires": -7.901510, "FlEjmDpA": -10.540567, "Foakes": -10.540567, "For": -9.441955, "Framework": -8.931129, "FreeMedForms": -10.540567, "FreeMedForms.": -10.540567, "Freepik": -10.540567, "Functions": -9.847420, "FxD": -10.540567, "G": -8.461125, "G/": -10.540567, "GBlnZkG": -10.540567, "GCC": -9.847420, "GGDLmu/htRhtEBBruGRgqi": -10.540567, "GPLv": -10.540567, "GRlgqeqrk": -10.540567, "GS": -10.540567, "GScsqdxXrWUpBWzn": -10.540567, "GSct": -10.540567, "GUm": -10.540567, "GV/W": -10.540567, "GXD": -10.540567, "GXSvZQnCKJOu": -10.540567, "GXj/K": -10.540567, "GZ": -10.540567, "GZSWBMscVAJhjDDCTBYjAmOUTQfUysQ": -10.540567, "Gales": -9.847420, "GbA": -10.540567, "Gd": -10.540567, "GetFieldNameForProperty": -10.540567, "GetFieldNameForPropertyNameFunc.": -10.540567, "GgI": -10.540567, "GgyQnqOl": -10.540567, "GhB/pxvXNxBYq/": -10.540567, "GhwkVwyFRABvKbEkKvfI": -10.540567, "GiJXDaNvAXzsD": -10.540567, "Given": -9.441955, "GjFhB": -10.540567, "GktTQOGSHcvMA": -10.540567, "Gl": -10.540567, "GlTjly": -10.540567, "GlbfnRMDgTj": -10.540567, "GmvtY": -10.540567, "GoROT": -10.540567, "God": -9.847420, "GosOJ": -10.540567, "Guidelines": -9.441955, "GwlqLObCpk": -10.540567, "Gx": -10.540567, "GxIBDfvxeOE": -10.540567, "Gy": -10.540567, "Gyn": -10.540567, "GzVqDFvljl": -10.540567, "GzlyWGJcdEnEiIYHS": -10.540567, "H": -7.832517, "H/JQyloC/bHK": -10.540567, "HB": -10.540567, "HBgohM": -10.540567, "HBocGoBIpyyoqQnSas": -10.540567, "HBpLAxpiOZDGy": -10.540567, "HCEKRIVMDKXuLDaGuOZwCp": -10.540567, "HCsvaVn": -10.540567, "HEMIkfvkoy": -10.540567, "HEoFIoE": -10.540567, "HFCI": -10.540567, "HFGT": -10.540567, "HISmQtElmJrCUnLlWbZsWlwbHiEhAkrCEXREMQJEVsAoKkiE": -10.540567, "HITSP_C": -10.540567, "HKWVdDDpKstJB": -10.540567, "HPe": -10.540567, "HPeZZtknXG": -10.540567, "HQiyBoNdi": -10.540567, "HSSvSkC": -10.540567, "HTQKkuZByK": -10.540567, "HVBRKyPmhPKkCCT": -10.540567, "HWwc": -10.540567, "HXDYIn": -10.540567, "HYSkZYnnFjQ": -10.540567, "HYSl": -10.540567, "Haq": -10.540567, "HcY": -10.540567, "HctIlWNtqQfZM": -10.540567, "HdWjfNUiYgtxtyiYDb": -10.540567, "HeadOpts": -9.847420, "Header": -9.847420, "Height": -8.237982, "Height=": -8.237982, "Hej": -10.540567, "Helvetica": -8.237982, "Hence": -10.540567, "HgmWU": -10.540567, "Hh": -9.847420, "HiJH": -10.540567, "HitTestMode": -10.540567, "HjH": -10.540567, "HkSedItDym/ET": -10.540567, "HlFFVCq": -10.540567, "HlzMjxaXq": -10.540567, "Hm": -10.540567, "Hn": -10.540567, "HnM": -10.540567, "HnVVe": -10.540567, "HoKyU": -10.540567, "HonlgLg": -10.540567, "House": -10.540567, "However": -10.540567, "HqlUFGq": -10.540567, "HqqnFP": -10.540567, "Hss/n": -10.540567, "HtXHSclggU": -10.540567, "Hugh": -9.847420, "HvQfiMy": -10.540567, "HwRvXDd": -10.540567, "HwekVMxhzErtHWK": -10.540567, "HxEp": -10.540567, "HxtPZUAlk": -10.540567, "I": -7.832517, "I/Gk": -10.540567, "I/KnVZfvMF": -10.540567, "I/u": -10.540567, "I18n": -9.441955, "IACg": -10.540567, "IAF": -10.540567, "IAnGoU": -10.540567, "IBRQ/": -10.540567, "ICxeva/qqN": -10.540567, "ID": -7.405073, "ID=": -7.405073, "IDzBS": -10.540567, "IECgwKDAwYlc": -10.540567, "IEEwWeBdK": -10.540567, "IEJxJ": -10.540567, "IEnableLogger": -10.540567, "IFAYamrzNvN": -10.540567, "IFICItUkqgKiKiBSDCo": -10.540567, "IFe": -10.540567, "IGbE": -10.540567, "IHd": -10.540567, "IHofe": -10.540567, "IJIDLNkg": -10.540567, "IMPORTANT": -10.540567, "IMTtCN": -10.540567, "IMessageBus": -10.540567, "IN": -10.540567, "INCLUDE": -8.461125, "INotifyPropertyChanged": -10.540567, "INotifyPropertyChanged.": -10.540567, "IObservedChange": -8.931129, "IReactiveCollection": -9.441955, "IReactiveNotifyPropertyChanged": -8.748807, "IReactiveNotifyPropertyChanged.": -9.154273, "ITCJA": -10.540567, "ITXSUxwr": -10.540567, "IVDaj": -10.540567, "IVoIOZ": -10.540567, "IXlhQKsuae": -10.540567, "IYkXcRKiuBBgGvNUGfYF": -10.540567, "IZC": -10.540567, "Ib": -9.847420, "IcLAu": -10.540567, "Icon": -10.540567, "Id": -8.931129, "Id=": -10.540567, "IdRePf": -10.540567, "If": -8.343342, "IfDqAfK": -10.540567, "IfW": -10.540567, "IhgrYnu": -10.540567, "IiD": -10.540567, "IkakcGplXcRE": -10.540567, "IlF": -10.540567, "IlFqxQzwX": -10.540567, "IlJEoKoiiAksNiJSASimIlIACgwKDAoOB": -10.540567, "Illegal": -10.540567, "Illus.": -10.540567, "Immediate": -10.540567, "In": -8.237982, "InUnitTestRunner": -10.540567, "InapeW": -10.540567, "Include": -5.769882, "Ingl": -9.847420, "Inglaterra": -9.847420, "Initiative": -9.847420, "InsOaWQhGZTI": -10.540567, "Installed": -10.540567, "Interface": -10.540567, "Interview": -10.540567, "Invalidate": -9.847420, "IoENAaotyr": -10.540567, "IoabR": -10.540567, "IpU": -10.540567, "Ipsum": -8.461125, "Iq": -10.540567, "IqFlo": -10.540567, "IqWLPcBapaiWiBEtVzTpjsVK": -10.540567, "Ireland": -9.847420, "Irlanda": -9.847420, "Irto": -10.540567, "IsAotleqCCDcUZ": -10.540567, "IsDataSet": -9.847420, "IslQELiLQiEAiFhKxYkTFiBURJ": -10.540567, "Issues": -10.540567, "It": -8.931129, "Item": -9.154273, "ItemChanged": -9.847420, "ItemChanging": -9.847420, "ItemChanging/ItemChanged.": -9.847420, "ItemType": -10.540567, "ItemType=": -10.540567, "ItlxjPpCIs": -10.540567, "ItuenbbXPPueect": -10.540567, "IuSNAAAAAElFTkSuQmCC": -10.540567, "Iv": -10.540567, "IvDERYR/": -10.540567, "IxD": -10.540567, "Ixuv": -10.540567, "Izs": -10.540567, "J": -8.142672, "J//RyOiWy": -10.540567, "J/m": -10.540567, "JACKET": -10.540567, "JAIwbIihZRkrAls": -10.540567, "JCoc": -10.540567, "JENSEN": -10.540567, "JEOCIKPXFQGVmbvzI": -10.540567, "JF": -10.540567, "JFoH": -10.540567, "JJKC": -10.540567, "JK": -10.540567, "JKM": -10.540567, "JKoCLCsgkg": -10.540567, "JLCnrXHAAAAAElFTkSuQmCC": -10.540567, "JLRoddOBLv": -10.540567, "JMg": -10.540567, "JONES": -10.540567, "JP/K": -10.540567, "JRCXfeUiu": -10.540567, "JRJZ": -10.540567, "JRvClN": -10.540567, "JSAyfWh": -10.540567, "JSNJ": -10.540567, "JUwGIlSd": -10.540567, "JaRCbhCGhZwGVu": -10.540567, "Jan.": -10.540567, "January": -10.540567, "JbAN": -10.540567, "JbprAOCdh": -10.540567, "Jbz": -10.540567, "JcAAAAASUVORK": -9.847420, "JcTzCEGH": -10.540567, "JcaICWWtgAc": -10.540567, "JdODL/ilx": -10.540567, "JdWu": -10.540567, "Je/XWD": -10.540567, "JeRlbMZMf": -10.540567, "JgwigMSJ": -10.540567, "JifI": -10.540567, "JkwMZqhrS": -10.540567, "JlYXSJTquTcHmRC/MZVRN": -10.540567, "JlbodjYZ": -10.540567, "JnMeH": -10.540567, "JnaxSV": -10.540567, "JogLgCFNACM": -10.540567, "JqHaU": -10.540567, "JqqKt/O": -10.540567, "JuNSNhQiPNK": -10.540567, "July": -10.540567, "June": -10.540567, "Jz": -9.441955, "K": -8.343342, "K/ZgByVm": -10.540567, "KAAAAAElFTkSuQmCC": -10.540567, "KBeJqP": -10.540567, "KDJ": -10.540567, "KDiltqllAdnwX": -10.540567, "KEd": -10.540567, "KFYzZNkWMNA": -10.540567, "KFhZI": -10.540567, "KFu": -10.540567, "KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB": -7.139370, "KJGiFTO": -10.540567, "KK": -10.540567, "KKnmhjvvi": -10.540567, "KKsFOrFJZAZdovslLP": -10.540567, "KN/B": -10.540567, "KNhtYlUhZKnueAeAC": -10.540567, "KTAAAAABJRU": -10.540567, "KWVRzJT/": -10.540567, "KXJ": -10.540567, "KXQ": -10.540567, "KYA": -10.540567, "KYRNukSmslomP": -10.540567, "KYeJM": -10.540567, "KcW": -10.540567, "KdT/kd/": -10.540567, "KfGj": -10.540567, "KgYAZrHGw": -10.540567, "Kingdom": -9.847420, "Kiq": -10.540567, "Km/": -10.540567, "KnUfJ": -10.540567, "KpqydGpBAapTIF": -10.540567, "KqxEIjHJvNufUpSfIGT": -10.540567, "KriG": -10.540567, "Krsi": -10.540567, "KtV": -10.540567, "Ktk": -10.540567, "KtrKzEVlYikVgkshKLZMUmjBmBaAiChIomVJC": -10.540567, "Ktyw": -10.540567, "Kw": -10.540567, "KwCMHNaVe": -10.540567, "L": -10.540567, "LABEL": -10.540567, "LMukLu": -10.540567, "LSPEtO": -10.540567, "LaTeX": -10.540567, "Label": -7.901510, "Label=": -9.154273, "Language": -9.847420, "Language=": -10.540567, "LayoutMaster": -10.540567, "LayoutMaster=": -10.540567, "Left": -10.540567, "Level": -8.237982, "License": -9.847420, "Linker": -9.154273, "Listen": -9.154273, "Lite": -9.847420, "LjjH": -10.540567, "Log": -9.847420, "Lorem": -8.343342, "LwbsCqFOnMoaDvKgWEtF": -10.540567, "M": -8.343342, "M/fmmY/aZwbXGzMlmtMdWBUWIm": -10.540567, "M/vRlIM": -10.540567, "MAEKER": -10.540567, "MAeQ": -10.540567, "MAx": -10.540567, "MD": -10.540567, "MDM": -8.343342, "MEIW": -10.540567, "METHODS": -10.540567, "MFBn": -10.540567, "MHQwEKjKjqWgkgpqFSTgoCAAEs": -10.540567, "MK": -10.540567, "ML": -10.540567, "MLA": -9.847420, "MLHyAKwAAAAAElFTkSuQmCC": -10.540567, "MMgIsyk/DkSFgiswqYDgDPhFi": -10.540567, "MODIFIED": -7.405073, "MODIFIED=": -7.405073, "MP": -10.540567, "MPF": -10.540567, "MPZB": -10.540567, "MQ": -10.540567, "MRU": -10.540567, "MS": -10.540567, "MSBuildExtensionsPath": -9.441955, "MT": -10.540567, "MTpSUI": -10.540567, "MYEbsRExSMLxf/VTaHLUU": -10.540567, "MZPoU": -10.540567, "Made": -10.540567, "MainWindow": -9.847420, "Make": -9.847420, "MakeObjectReactiveHelper.": -10.540567, "Malformed": -10.540567, "ManagedCProj": -10.540567, "Management": -10.540567, "Manual": -10.540567, "Mar.": -10.540567, "Margin": -10.540567, "Margin=": -10.540567, "Martin": -9.847420, "May": -10.540567, "Message": -8.237982, "MessageBus": -9.441955, "MessageBus.Current.": -10.540567, "MfSfR": -10.540567, "Mg": -10.540567, "MgPHnCdltM": -10.540567, "Mh": -10.540567, "Michigan": -10.540567, "Microsoft": -7.975618, "Microsoft.CSharp": -10.540567, "Microsoft.Common.targets.": -8.931129, "Microsoft.FSharp.Targets": -9.847420, "Microsoft.Vsix.TemplatesPackage": -10.540567, "Microsoft.Vsix.TemplatesPackage.VsixWizard": -10.540567, "Mj": -10.540567, "MjI": -9.847420, "MjKyNjKyMjI": -10.540567, "Mobile": -10.540567, "Model": -10.540567, "Modern": -10.540567, "MrIyMjYyaoSJEepSUWhEoc": -10.540567, "MtkLkscJA": -10.540567, "MtplSJz": -10.540567, "Mueller": -10.540567, "MulN": -10.540567, "MvAem": -10.540567, "MvBeniWG/Ui": -10.540567, "Mw": -10.540567, "MxR": -10.540567, "My": -10.540567, "My.Resources": -10.540567, "MyApplicationCodeGenerator": -10.540567, "MyCommon": -10.540567, "MyqhWwJVIKqL": -10.540567, "Mz": -10.540567, "N": -8.461125, "N//pruzkdyik": -10.540567, "NAME": -7.362513, "NAcdZIcna": -10.540567, "NAw": -10.540567, "NB": -10.540567, "NCTY": -10.540567, "NCV": -10.540567, "NDEBUG": -10.540567, "NDQ": -10.540567, "NDXrKcjT/fcF": -10.540567, "NDw": -10.540567, "NET": -10.540567, "NEoWQQ": -10.540567, "NJ": -10.540567, "NJe": -10.540567, "NKcDAx/": -10.540567, "NMC": -10.540567, "NOTE": -10.540567, "NOW": -8.142672, "NQuGEUAn": -10.540567, "NQwMLCy": -10.540567, "NUaV": -10.540567, "NWFV/": -10.540567, "NZAthyg/ppjL": -10.540567, "NZDhNpDw": -10.540567, "NZU": -10.540567, "Name": -7.544835, "Name=": -8.931129, "Namespace": -9.847420, "Nascetur": -9.847420, "NdoO": -10.540567, "NeZMZ": -10.540567, "Nemerle": -9.154273, "Nemerle.Linq.dll": -10.540567, "Nemerle.dll": -10.540567, "NemerleBinPathRoot": -9.847420, "NemerleVersion": -10.540567, "Net": -10.540567, "NgIoOfAdGRyCxQEpX": -10.540567, "NgeNzJkQSbDcWdT": -10.540567, "NiHGmWPfleBxKpCWCxOHxN": -10.540567, "NizM": -10.540567, "Nj": -10.540567, "Nln": -10.540567, "NlvuRbJ": -10.540567, "NmJsdGokyH": -10.540567, "No": -10.540567, "NoZtBbcve": -10.540567, "None": -10.540567, "Norte": -9.847420, "Northern": -9.847420, "Northwestern": -10.540567, "NotCcDuD": -10.540567, "Note": -8.461125, "Nov.": -10.540567, "November": -10.540567, "Np": -10.540567, "NuGet.VisualStudio.Interop": -10.540567, "NuGet.VisualStudio.TemplateWizard": -10.540567, "NuHdKd": -10.540567, "Nullam": -10.540567, "NuqUcy": -10.540567, "NvH": -10.540567, "NvU": -10.540567, "NxJEHFVf": -10.540567, "NylER": -10.540567, "NymBS/R": -10.540567, "NzPE/POEHIopWbukFiQ/sztybgUHsM": -10.540567, "NzYPLAPSGAiRI": -10.540567, "NzmSyXt": -10.540567, "O": -8.594657, "O/": -10.540567, "OAPH": -9.847420, "OASIS/CALS": -10.540567, "OAZGut": -10.540567, "OBU": -10.540567, "OCaml": -10.540567, "ODEIFVy": -10.540567, "ODFpGKJl": -10.540567, "ODIMygeVCCcppBS": -10.540567, "OEpZWg": -10.540567, "OFFER": -10.540567, "OHBlxVgCd": -10.540567, "OHEILZyRvb": -10.540567, "OI": -10.540567, "OIpVAAAAAElFTkSuQmCC": -10.540567, "OIz": -10.540567, "OKHw": -10.540567, "OKOL": -10.540567, "OLQGSIvDRArM": -10.540567, "OM": -10.540567, "OMfgSSLUIH": -10.540567, "OMpBdDYVJCqbhJHHdmT": -10.540567, "ON": -10.540567, "ONJNwjAbUd": -10.540567, "OP": -9.847420, "OPMqWngzO": -10.540567, "OQBzW": -10.540567, "OQizxvEvpxI": -10.540567, "OR": -10.540567, "ORDER": -10.540567, "OTLF": -10.540567, "OUR": -10.540567, "OVER": -10.540567, "OW": -10.540567, "OYmbdKJe": -10.540567, "OYob": -10.540567, "OZQUe": -10.540567, "Oazv": -10.540567, "Ob": -10.540567, "Ob/V": -10.540567, "ObmQpJyEgGKoMqITlXAXssbfYCEQeysztkWMoPcXTniLCxUqz": -10.540567, "Observable": -6.515215, "Observable.": -8.748807, "Observable.Return": -10.540567, "ObservableAsPropertyHelper": -8.748807, "ObservableAsyncMRUCache": -9.847420, "ObservableAsyncMRUCache.": -10.540567, "ObservableAsyncMRUCache.AsyncGet": -10.540567, "ObservableForProperty": -7.901510, "ObservableForProperty.": -10.540567, "ObservableToProperty": -10.540567, "Observables": -9.154273, "Observables.": -9.847420, "Oc": -10.540567, "Oct.": -10.540567, "Off": -10.540567, "OfwC": -10.540567, "OhI": -10.540567, "OmPy": -10.540567, "On": -9.847420, "On/JFp": -10.540567, "OnLpNCe": -10.540567, "OpenInEditor": -10.540567, "OpenInEditor=": -10.540567, "Opff": -10.540567, "OpwVXsQyPycPO": -10.540567, "Ordinal": -8.055660, "Other": -8.237982, "Ou": -10.540567, "Oue": -10.540567, "OutputPath": -10.540567, "Owner": -10.540567, "Oxford": -9.847420, "OxoM": -10.540567, "OyCbdSRlmclBg": -10.540567, "OzFhiOIpLAC": -10.540567, "P": -6.779367, "PAYMENT": -10.540567, "PBSyB": -10.540567, "PBnfLX": -10.540567, "PCDATA": -10.540567, "PCTkPxwUHFUf": -10.540567, "PDZD": -10.540567, "PHA": -10.540567, "PI": -10.540567, "PJKO": -10.540567, "PK": -10.540567, "PLRHlGMznChKIcwiFTrlnTqxYkLbDG": -10.540567, "POIOHEBZ": -10.540567, "POLO": -10.540567, "POQ": -10.540567, "POSITION": -9.154273, "POSITION=": -9.154273, "PP": -10.540567, "PQ": -10.540567, "PQJbhwAB": -10.540567, "PROMO": -10.540567, "PRduvdsPiY": -10.540567, "PS": -10.540567, "PToi": -10.540567, "PUUhiJf": -10.540567, "PUwti": -10.540567, "PVNc": -10.540567, "PW": -10.540567, "PXJsisYwgAJAVOAFv": -10.540567, "PYwXYJI": -10.540567, "Package": -9.441955, "Package.ico": -10.540567, "Pal": -10.540567, "Path": -10.540567, "Path=": -10.540567, "Patient": -10.540567, "PbJUwiwr/AiHdeYi": -10.540567, "PcC": -10.540567, "Pd": -10.540567, "Pdx": -10.540567, "Pg": -10.540567, "Phasellus": -8.931129, "Phone": -9.441955, "PibMlUYsAJWE": -10.540567, "PiuJI": -10.540567, "PjkzzFc": -10.540567, "Pk/MdlVxTKwEe": -10.540567, "Pk/f": -10.540567, "Pl": -10.540567, "PlRh": -10.540567, "PlaceholderText": -10.540567, "Platform": -7.707354, "PmV/TyS": -10.540567, "Pn": -10.540567, "Pool": -10.540567, "Portugu": -9.847420, "Portuguese": -9.847420, "PqbvZKpRvueoCGpQFvj": -10.540567, "Prefer": -9.847420, "Prefix": -10.540567, "PreprocessorDefinitions": -9.847420, "Privacy": -10.540567, "PrmWtxRZ": -10.540567, "PrmrLStEw": -10.540567, "ProgramFiles": -10.540567, "Project": -7.044059, "Project=": -9.847420, "ProjectName": -9.847420, "Properties": -9.847420, "PropertyChangedEventArgs.": -10.540567, "PropertyGroup": -10.540567, "PropertyGroup.": -10.540567, "Provides": -9.154273, "PsVyErkvVwe": -10.540567, "PtRFLZ/m": -10.540567, "PtUBpnwDAT": -10.540567, "PublicKeyToken": -9.154273, "PublicKeyToken=": -10.540567, "Publisher": -10.540567, "Publisher=": -10.540567, "Pw": -10.540567, "PwTrQA": -10.540567, "PxqETx": -10.540567, "PxwTkBLD": -10.540567, "Pytlik": -10.540567, "Pz": -10.540567, "Q": -8.343342, "QB": -10.540567, "QBhBRDtAHYCkHyAIATRZdO": -10.540567, "QCUuWaYeS": -10.540567, "QESF": -10.540567, "QG": -10.540567, "QGKvZwEPxCqMBPcvUoQ": -10.540567, "QK": -10.540567, "QKCxJClrzD": -10.540567, "QKEAIOEJSdru": -10.540567, "QN": -10.540567, "QNNZCCfG": -10.540567, "QPQMRgGHJOv": -10.540567, "QRJJ": -10.540567, "QSW": -10.540567, "QUpIiB/WLQilRZXfgXuVziro": -10.540567, "QUwZ": -10.540567, "QVAnTTy": -10.540567, "QWKx": -10.540567, "QWc": -10.540567, "QYGAd": -10.540567, "QYi": -10.540567, "Qa": -10.540567, "QgJylT": -10.540567, "QgQTRGUgk": -10.540567, "QgVGT": -10.540567, "QgnopIehCtugaxe": -10.540567, "QgsKjgLS": -10.540567, "Qi": -10.540567, "Qiva": -10.540567, "QjWyZzfm": -10.540567, "QjhTvExFIHoWTIFnhEUnMvxmMIqT": -10.540567, "Qkge/bJpVK": -10.540567, "QldVvHmkBOGkbGzQrA": -10.540567, "QmR/": -10.540567, "QnA": -10.540567, "QnEkPqKxFdN/": -10.540567, "QoAdQcZoy": -10.540567, "Qogdvj": -10.540567, "Qq": -9.847420, "QqRd": -10.540567, "QrWtPhHMADMHf": -10.540567, "Qth": -10.540567, "Queen": -9.847420, "Quisque": -8.594657, "Qy": -10.540567, "QzFvE": -10.540567, "R": -8.461125, "R/CGHyk": -10.540567, "RDCG": -10.540567, "RDfebgWJuWQw": -10.540567, "RETu": -10.540567, "REWqhvtok": -10.540567, "RGOQ": -10.540567, "RK/chkiq": -10.540567, "RKala": -10.540567, "RLlDdJGz": -10.540567, "RMI": -10.540567, "ROJq": -10.540567, "RPB": -10.540567, "RQVTpIJWChgoKCgYGBgYGNh": -10.540567, "RQreCCNHw": -10.540567, "RRQrgix/": -10.540567, "RRuQAqOmDzkCSjdKy": -10.540567, "RSkPQMghld": -10.540567, "RWPln": -10.540567, "Rahtz": -10.540567, "Rainha": -9.847420, "RaiseAndSetIfChanged": -9.847420, "RaisePropertyChanged": -9.847420, "RaisePropertyChanging": -9.847420, "Re": -10.540567, "ReactiveCollection": -10.540567, "ReactiveCollection.": -10.540567, "ReactiveObject": -8.142672, "ReactiveObject.": -10.540567, "ReactiveUI": -9.847420, "Real": -10.540567, "RealEstate": -10.540567, "Rec": -9.847420, "Redistribution": -10.540567, "Redistributions": -9.847420, "Reference": -10.540567, "RegisterMessageSource": -9.154273, "Registers": -9.441955, "Reino": -9.847420, "RelativeNode": -9.847420, "RelativeNode=": -10.540567, "RelativeTo": -8.343342, "RelativeTo=": -9.154273, "Release": -7.832517, "ReplaceParameters": -9.154273, "Represents": -9.154273, "ResX": -9.847420, "ResXResourceReader": -10.540567, "ResXResourceWriter": -10.540567, "Resource": -9.847420, "Resources": -9.441955, "Resources.Designer.vb": -10.540567, "Resources.resx": -10.540567, "Return": -10.540567, "Returns": -8.931129, "Rev": -10.540567, "RfOuPi": -10.540567, "RgEGCpAZEcUCkFAQYFhgYHDI": -10.540567, "Rhd": -10.540567, "RhhAiPhCQB": -10.540567, "RjQmcGdtCAcrLAsxjYTZ": -10.540567, "RkPgPqaJtCHtPDCryTjYjqnzSxkUFqOn": -10.540567, "RkR": -10.540567, "RmwqJjUkQzi": -10.540567, "RoDyM": -10.540567, "Rows": -10.540567, "Rows=": -10.540567, "Rpt": -10.540567, "RqRi/fM": -10.540567, "RqUJKlgGVUMM/KtnWYh": -10.540567, "RqrQUFqFD/tvZeWQU": -10.540567, "RrJA": -10.540567, "RtXeU/": -10.540567, "Ru": -9.847420, "Rudmnx": -10.540567, "RufAnnobTnbWGdOWvuPWtvrrg": -10.540567, "Rw": -10.540567, "RwWfNO": -10.540567, "Rx.Net.": -10.540567, "RxApp": -10.540567, "RxApp.DeferredScheduler": -9.847420, "RxApp.GetFieldNameForPropertyNameFunc.": -9.847420, "S": -8.461125, "S/dQG/dg": -10.540567, "SBHCNQrrQTYPq/Vdk": -10.540567, "SBmsxPjtkign": -10.540567, "SBuso": -10.540567, "SBwkJwndUxxXZkNwnpAhSp": -10.540567, "SDKs": -9.847420, "SDjypBvG": -10.540567, "SGxyYP": -10.540567, "SHIPPING": -9.847420, "SHIRT": -10.540567, "SHOES": -10.540567, "SHOP": -10.540567, "SHORTS": -10.540567, "SHORT_PERMALINK": -9.441955, "SIEIwfBxUn": -10.540567, "SIZE": -7.405073, "SIZE=": -7.405073, "SIZkpCZxRxbxVdDd": -10.540567, "SJf": -10.540567, "SKETCH": -10.540567, "SL": -10.540567, "SLEzaxjYSe": -10.540567, "SM": -10.540567, "SMFYj": -10.540567, "SNYLivgNkYgAsHArkkwBpHBT": -10.540567, "SO": -10.540567, "SOTBV": -10.540567, "SPIFK": -10.540567, "SPRING": -10.540567, "SQRL": -10.540567, "SSCd": -10.540567, "STYLE": -7.767978, "SUMMER": -10.540567, "SUZGw": -10.540567, "SWEATER": -10.540567, "SXmMY": -10.540567, "SYAAAAASUVORK": -10.540567, "SYSTEM": -7.044059, "SZdfWA": -10.540567, "SaixVQjzQCkmQMsdOY": -10.540567, "Sample": -9.847420, "Say": -10.540567, "SbCeuPmne/oRDlC": -10.540567, "Schema": -9.847420, "Schematron": -10.540567, "Scotland": -9.847420, "Sebastian": -10.540567, "Select": -9.441955, "SelectMany": -9.847420, "SelectMany.": -10.540567, "Selector": -10.540567, "Semperin": -10.540567, "SendMessage.": -9.847420, "Sender.": -10.540567, "Sends": -9.847420, "Sept.": -10.540567, "Server.": -10.540567, "Set": -9.441955, "SetValueToProperty": -10.540567, "Setter": -9.847420, "Settings": -9.847420, "Settings.Designer.vb": -10.540567, "Settings.settings": -10.540567, "SettingsSingleFileGenerator": -10.540567, "Sf": -10.540567, "ShareAlike": -9.847420, "ShdpNJvx": -10.540567, "Silverlight": -8.931129, "Simple": -8.055660, "Simple.": -10.540567, "Since": -10.540567, "SjJIz": -10.540567, "SjNhcF": -10.540567, "Slztu": -10.540567, "SmhEajokBBDFpIqgtKzUa": -10.540567, "SnMo": -10.540567, "Some": -10.540567, "Source": -8.343342, "Specifying": -9.847420, "SqdznMxWvigVE": -10.540567, "SrRYx": -10.540567, "SrbEczr": -10.540567, "SsdeZ/DNic": -10.540567, "St": -10.540567, "Studio": -8.931129, "Style": -10.540567, "SubType": -10.540567, "SubType=": -10.540567, "Summary": -10.540567, "SutsnJtPHX/ShhxPN": -10.540567, "Sweater": -10.540567, "SwonQdMVhCejkTF": -10.540567, "SyRaTAnB": -10.540567, "System": -9.441955, "System.ComponentModel.TypeConverter": -10.540567, "System.Core": -10.540567, "System.Data": -10.540567, "System.Design": -10.540567, "System.Drawing": -10.540567, "System.Resources.ResXResourceReader": -9.847420, "System.Resources.ResXResourceWriter": -9.847420, "System.Runtime.Serialization.Formatters.Soap.SoapFormatter": -10.540567, "System.Serialization.Formatters.Binary.BinaryFormatter": -10.540567, "System.Windows.Forms": -8.931129, "System.Xml": -10.540567, "T": -8.237982, "T/WnU": -10.540567, "TANK": -10.540567, "TASK": -10.540567, "TBRb": -10.540567, "TBxVBHdOqJJM": -10.540567, "TBzSYxyF": -10.540567, "TC": -10.540567, "TCP": -9.847420, "TEI": -7.074831, "TEXT": -7.405073, "TEXT=": -7.405073, "TF": -10.540567, "TFJjORUJEZndI": -10.540567, "TGOjU": -10.540567, "TIUgaS": -10.540567, "TJeTK": -10.540567, "TKCYX": -10.540567, "TL": -10.540567, "TNqJl/tMG": -10.540567, "TOGYkha": -10.540567, "TOPAZ": -10.540567, "TOemd": -10.540567, "TP": -10.540567, "TPL": -10.540567, "TPvpCL": -10.540567, "TQOEJyP": -10.540567, "TQPJnDQTpnv": -10.540567, "TQfgF": -10.540567, "TR": -10.540567, "TRACE": -8.748807, "TREBLIoJLT": -10.540567, "TRzSfE": -10.540567, "TS": -9.441955, "TSdWCgibYA": -10.540567, "TSender": -10.540567, "TTbNpibpyNT/N": -10.540567, "TWO": -10.540567, "TX": -10.540567, "TYWuVrjA/UAfx": -10.540567, "TZjcj": -10.540567, "Tag": -10.540567, "TaggJD/xuvM": -10.540567, "Target": -8.343342, "TargetFileName": -9.154273, "TargetFileName=": -9.154273, "Targets": -10.540567, "Task": -10.540567, "TaskpoolScheduler": -9.847420, "Tb/tTknO": -10.540567, "TckrBE": -10.540567, "TeX": -10.540567, "Test": -9.847420, "Text": -9.154273, "TextColor": -10.540567, "TextColor=": -10.540567, "Tf": -10.540567, "TfAYhtJtgqMAHewWqhqrwJXu": -10.540567, "TgQO": -10.540567, "TgYrohX": -10.540567, "ThENTdax": -10.540567, "The": -5.935397, "Theme": -9.847420, "There": -10.540567, "This": -7.074831, "This.GetValue": -10.540567, "ThlApvdRyYBal": -10.540567, "Threadpool": -10.540567, "Timer.": -9.847420, "Tite": -10.540567, "TjxN": -10.540567, "Tk": -10.540567, "TlGeEqTfgbhhMEeXXwoEVa": -10.540567, "TmR": -10.540567, "Tn": -10.540567, "To": -8.237982, "ToProperty": -9.847420, "ToZBI": -10.540567, "Tools": -9.847420, "ToolsVersion": -8.237982, "ToolsVersion=": -10.540567, "TpVluyCUtcah": -10.540567, "TqU": -10.540567, "TrQ": -10.540567, "Tracking": -9.847420, "Trans": -10.540567, "Transcription": -10.540567, "Transform": -9.847420, "TransformOrigin": -10.540567, "TransformOrigin=": -10.540567, "TrtDMlIheowMUF": -10.540567, "True": -7.901510, "True.": -9.847420, "Tt": -9.441955, "TtQtKq/WtlUnie": -10.540567, "TtUYACIBHFcywHrGFsqssaY": -10.540567, "Tu": -10.540567, "TuJdIIYAklsK": -10.540567, "Tukg": -10.540567, "TuuKQaxHU": -10.540567, "TwIyvtAAAAAElFTkSuQmCC": -10.540567, "TxlEWM": -10.540567, "Ty": -10.540567, "Type": -8.055660, "Type.": -9.847420, "Type=": -10.540567, "TypeConverter": -9.441955, "U": -9.847420, "UAP": -10.540567, "UDyeCdp": -10.540567, "UFnZ": -10.540567, "UI": -9.847420, "UMlFKRaAVhUwUOvFgExMVT": -10.540567, "UQfDVVlDtcBOo": -10.540567, "URI": -9.847420, "URL": -9.847420, "US": -10.540567, "UVdKcK": -10.540567, "Uk": -10.540567, "UmV": -10.540567, "Unicode": -9.847420, "Unido": -9.847420, "Unit": -10.540567, "United": -9.847420, "Unported": -10.540567, "Unrecognized": -9.847420, "Unsubscribe": -10.540567, "UoVxGUMYaJAZaaofzvgvAG": -10.540567, "Use": -7.832517, "Using": -10.540567, "Uvqvv": -10.540567, "UzLqFMzGDa": -10.540567, "V": -8.748807, "VBC": -10.540567, "VClBDk": -10.540567, "VCpKmOmTnYk": -10.540567, "VCtPmbNY": -10.540567, "VD": -10.540567, "VERDANT": -10.540567, "VEoibbPUMWapEXQvG": -10.540567, "VFunpfeTl": -10.540567, "VGSM": -10.540567, "VGwjqbKMKkLugBXotSictylIXQHEu": -10.540567, "VIY/iYBTkZ": -10.540567, "VIg": -10.540567, "VJVr": -10.540567, "VKwoyMBvjVAYDzetFCrglkU": -10.540567, "VLOSco": -10.540567, "VLvPb": -10.540567, "VMkD": -10.540567, "VRpuX": -10.540567, "VSIX": -10.540567, "VSPackage.cs": -10.540567, "VSPackage.ico": -10.540567, "VSPackage.resx": -10.540567, "VV": -10.540567, "VVP": -10.540567, "VVaIe": -10.540567, "VWBM": -10.540567, "VWV": -10.540567, "VZSEKfNIEnpAxyuW": -10.540567, "Value": -8.343342, "Value=": -8.748807, "ValueIfNotDefault": -10.540567, "VbMyResourcesResXFileCodeGenerator": -10.540567, "VcfFcWRVVSMbQfv": -10.540567, "VcnJOx": -10.540567, "Version": -7.975618, "Version.Major": -10.540567, "Version=": -9.154273, "VersionNumberMajor": -10.540567, "VersionNumberMinor": -10.540567, "Vg": -10.540567, "VgYzoAAAAASUVORK": -10.540567, "VhAv": -10.540567, "ViewModel": -8.461125, "ViewModels": -9.441955, "Villa": -10.540567, "Visual": -9.154273, "VisualStudio": -9.441955, "VisualStudioVersion": -9.847420, "VkX": -10.540567, "Vkbqeng": -10.540567, "VoVk": -10.540567, "Vols": -10.540567, "Vq//XHvG": -10.540567, "VsPkg.cs": -10.540567, "VsixVSPackageCSharp": -10.540567, "Vsyclt": -10.540567, "Vt": -10.540567, "VvJtwd": -10.540567, "VwaXa": -10.540567, "VxPG": -10.540567, "VzUzUXlgzyPYvFWriKVbgWsERdevxXqAI/COVELiam": -10.540567, "VzWHGSqO": -10.540567, "VzqyoucsdIP": -10.540567, "W": -8.142672, "W/DzcYBXyyAAAAAElFTkSuQmCC": -10.540567, "WABmSHSTqSqlwoENUgGZ": -10.540567, "WBH": -10.540567, "WBWyaW": -10.540567, "WE": -10.540567, "WFhYGBoYGBg": -10.540567, "WGf": -10.540567, "WHURsGDNJSTHu": -10.540567, "WIDTH": -7.767978, "WIDTH=": -7.767978, "WIN": -9.847420, "WIVQcXLFGU": -10.540567, "WKTbPUoQv": -10.540567, "WL/qL": -10.540567, "WLKmZ": -10.540567, "WNmsl": -10.540567, "WODyzjKOBjFdESBxIqEzqayMaESoEXxX": -10.540567, "WP": -10.540567, "WPfCSjqK": -10.540567, "WQlFgnuzSAQhCCagGgCgqQIklYgKhAVExUTFc": -10.540567, "WQqS": -10.540567, "WUkFkPrSljAMvS": -10.540567, "WUtULud/OpHtcyb": -10.540567, "WVigKWGIkrLZJgU": -10.540567, "WVm": -10.540567, "WVwNnnFsrkc": -10.540567, "Wales": -9.847420, "WdoiV/TjBHmPEE": -10.540567, "We": -9.441955, "WebRequest": -10.540567, "When": -8.594657, "WhenAny": -8.055660, "WiX": -10.540567, "Width": -7.707354, "Width=": -8.142672, "Win": -9.847420, "Window": -10.540567, "Windows": -9.441955, "With": -10.540567, "Without": -10.540567, "Wix.targets": -10.540567, "WixProject": -10.540567, "WixTargetsPath": -10.540567, "Wjgyc": -10.540567, "WkHeCbXfDV": -10.540567, "WkbmpjCK": -10.540567, "Wl/yULCD/b": -10.540567, "WlB": -10.540567, "Wm": -10.540567, "Wo": -10.540567, "Works": -9.847420, "Wp": -10.540567, "WqB": -10.540567, "WtfZz": -10.540567, "Wu": -10.540567, "WunpQzOkL": -10.540567, "WvQRc": -10.540567, "WvfJ": -10.540567, "WwrmR": -10.540567, "WyvO": -10.540567, "X": -8.594657, "X/Cb": -10.540567, "X/SAJyeSaxOPY": -10.540567, "X/hvO": -10.540567, "X=": -10.540567, "XEBo": -10.540567, "XEUmVQgoxCe": -10.540567, "XF": -10.540567, "XFzFVBVAjcW": -10.540567, "XHTML": -8.594657, "XHTML.version.attrib": -10.540567, "XHTML.xmlns.attrib": -9.847420, "XI": -10.540567, "XJPGUG": -10.540567, "XMA/": -10.540567, "XML": -8.931129, "XMLSchema": -9.441955, "XN": -10.540567, "XO": -10.540567, "XPPOffm": -10.540567, "XPe": -10.540567, "XQJZCbuXp/": -10.540567, "XQZMm": -10.540567, "XRAuP": -10.540567, "XRrxHT": -10.540567, "XS": -10.540567, "XSL": -9.847420, "XUDYaMagwfWXhCilMsZ": -10.540567, "XUSbY": -10.540567, "XUYjEmebBXSeTYePjIdVj": -10.540567, "XUg": -10.540567, "XV/Kn": -10.540567, "XVzdQ": -10.540567, "XWVlZW": -10.540567, "XX": -10.540567, "XbJ/rU/pX": -10.540567, "Xc": -10.540567, "XdUtg": -10.540567, "XgNc": -10.540567, "XhyfIWbCOQCHEM": -10.540567, "Xj": -10.540567, "XjrDXRGWjIBO": -10.540567, "Xkkp": -10.540567, "XmMvAppMUb": -10.540567, "XnxIBIdrEnf": -10.540567, "Xs": -10.540567, "Xu": -10.540567, "XuXBkUyOx": -10.540567, "Xw": -10.540567, "Xy": -10.540567, "Y": -8.055660, "Y=": -8.931129, "YAAAAASUVORK": -10.540567, "YAunhIkT": -10.540567, "YBGRDGARACIGfU": -10.540567, "YCRCH": -10.540567, "YGJF": -10.540567, "YKgHgbWYoKEUD": -10.540567, "YMCgwKDAYKD": -10.540567, "YMYy/": -10.540567, "YMrPObHy/u": -10.540567, "YN": -10.540567, "YOQ": -10.540567, "YTtcYqSwuW": -10.540567, "YVkPUqssYU": -10.540567, "YWiFAKaHTokI": -10.540567, "YZy": -10.540567, "Ye": -10.540567, "Yfvq": -10.540567, "YgZZvx": -10.540567, "Ygc": -10.540567, "YhAF": -10.540567, "YhYJEm/": -10.540567, "YhfYAwnQzulBQdc": -10.540567, "YhuunCcp": -10.540567, "Yi": -10.540567, "YiK": -10.540567, "YiqMcT": -10.540567, "Yj": -10.540567, "YjprkLcJOo": -10.540567, "Yk": -10.540567, "YkTFmrP": -10.540567, "YnpN": -10.540567, "YnrUMzAFTMz": -10.540567, "YoJMahcQVQHBbOfAmrDsgC": -10.540567, "You": -10.540567, "YpQsF": -10.540567, "YpsYKz": -10.540567, "YrrTNcV": -10.540567, "Yrs": -10.540567, "YsQKBqFjBvzA": -10.540567, "YtI": -10.540567, "YwGS": -10.540567, "YwkPPx": -10.540567, "Yx": -10.540567, "Yy": -10.540567, "Yz": -10.540567, "Yzb": -10.540567, "Z": -8.594657, "Z/HrKPYnEj": -10.540567, "ZAAAAF": -9.847420, "ZAAAAhklEQVR": -10.540567, "ZAAAB/": -10.540567, "ZAAAB/klEQVR": -10.540567, "ZAAABYklEQVR": -10.540567, "ZAAABfElEQVR": -10.540567, "ZAAABjklEQVR": -10.540567, "ZAAABvklEQVR": -10.540567, "ZAAACIUlEQVR": -10.540567, "ZAAACK": -10.540567, "ZAAACMUlEQVR": -10.540567, "ZAAACN": -10.540567, "ZAAACNElEQVR": -10.540567, "ZAAACO": -10.540567, "ZAAACOElEQVR": -10.540567, "ZAAACOUlEQVR": -10.540567, "ZAAACP": -10.540567, "ZAAACPUlEQVR": -10.540567, "ZAAACQ": -10.540567, "ZAAACQklEQVR": -10.540567, "ZAAACS": -10.540567, "ZAAACSElEQVR": -10.540567, "ZAAACSUlEQVR": -10.540567, "ZAAACTElEQVR": -10.540567, "ZAAACUElEQVR": -10.540567, "ZAAACUklEQVR": -10.540567, "ZAAACV": -10.540567, "ZAAACYUlEQVR": -10.540567, "ZAAACjElEQVR": -10.540567, "ZAuuu": -10.540567, "ZAvLtuTd": -10.540567, "ZC": -10.540567, "ZCVwdsiun": -10.540567, "ZChWhmJN/hlcTERrXVWcq": -10.540567, "ZEb": -10.540567, "ZFJSQJk": -10.540567, "ZFPXviIWIJAHJ/S": -10.540567, "ZGA": -10.540567, "ZH": -10.540567, "ZHv": -10.540567, "ZJhH": -10.540567, "ZLbbmL": -10.540567, "ZLeVIwGFst": -10.540567, "ZPyUmZ": -10.540567, "ZQ": -10.540567, "ZQwAAAABJRU": -10.540567, "ZR": -10.540567, "ZRiESZ": -10.540567, "ZSO": -10.540567, "ZSrk/g": -10.540567, "ZTC": -10.540567, "ZUaiksejgA": -10.540567, "ZUlFIRaEShEYVUFFJREVExomLEidjv": -10.540567, "ZWc": -10.540567, "ZWoicWMkECgqQIklY": -10.540567, "ZX": -10.540567, "ZZ": -10.540567, "Zbi": -10.540567, "Zcp": -10.540567, "ZdmLWwHIv": -10.540567, "Zdvx": -10.540567, "Ze": -10.540567, "ZeTMM": -10.540567, "Zecy": -10.540567, "Zeubr": -10.540567, "Zf": -10.540567, "ZfiRIzkvYGna": -10.540567, "Zfo": -10.540567, "Zg": -10.540567, "ZgST": -10.540567, "ZhjPPElRYMEMrNItgjA": -10.540567, "Zho": -10.540567, "ZiScdCWe": -10.540567, "Zillig": -10.540567, "ZkVz": -10.540567, "ZkcyxTSC": -10.540567, "ZnFYxOhOUeqc/vGlLPpUrAKwnFDSstPPJu/": -10.540567, "ZnYzGv": -10.540567, "ZrnvSuGlIb": -10.540567, "ZvDb": -10.540567, "ZvLB/eOxTAAAAAElFTkSuQmCC": -10.540567, "ZwJqBAPZrquXujKbP": -10.540567, "Zy": -10.540567, "Zzeuq": -10.540567, "ZziW": -10.540567, "[": -8.931129, "\\": -6.608741, "]": -7.496044, "_DEBUG": -10.540567, "_PlatformToolsetFriendlyNameFor_v": -10.540567, "_PlatformToolsetShortNameFor_v": -10.540567, "_scd": -8.931129, "a": -5.232299, "aDGF": -10.540567, "aGUraCBBU": -10.540567, "aKBOADiMiarVAVEK": -10.540567, "aNIckLMnQyPIh": -10.540567, "aQUduSsanKjnVDe": -10.540567, "aRgrIw/ghE": -10.540567, "aSbNw": -10.540567, "aT": -10.540567, "aUk": -10.540567, "aWpGxYTnvvMN/STd": -10.540567, "aX": -10.540567, "aXzwZFkJzLh": -10.540567, "aYOiBj": -10.540567, "aa": -10.540567, "ab": -9.847420, "abbr": -9.847420, "able": -9.441955, "about": -8.748807, "above": -9.847420, "ac": -10.540567, "acVEBeIEomICe": -10.540567, "accept": -10.540567, "access": -9.441955, "accommodate": -10.540567, "accordingly": -10.540567, "achieve": -10.540567, "across": -9.847420, "act": -9.847420, "action": -9.441955, "actual": -8.931129, "add": -7.901510, "added": -8.594657, "added.": -8.931129, "added/removed": -10.540567, "adding": -9.441955, "addition": -9.154273, "additional": -9.441955, "additionnal": -10.540567, "adds": -9.847420, "adipiscing": -10.540567, "ado": -10.540567, "ado.net/XML": -10.540567, "adopting": -10.540567, "advised": -10.540567, "ae": -9.847420, "af": -10.540567, "after": -9.847420, "agn": -10.540567, "ahhUl": -10.540567, "ahnYcXg": -10.540567, "aims": -9.847420, "akWxuWYJxV": -10.540567, "al": -6.236502, "algorithmic": -10.540567, "align": -5.945447, "align=": -6.877005, "alignment": -9.441955, "aligns": -10.540567, "aliquam": -10.540567, "all": -8.055660, "allow": -9.441955, "allowed.": -10.540567, "allowing": -10.540567, "allows": -7.767978, "almost": -9.847420, "alongside": -10.540567, "alpVmc": -10.540567, "alpha": -10.540567, "alpha=": -10.540567, "already": -10.540567, "also": -7.650195, "alt": -7.208362, "alt=": -7.208362, "always": -7.074831, "amet": -10.540567, "amp": -10.540567, "an": -6.007967, "anQ": -10.540567, "analysis.": -10.540567, "analyze": -10.540567, "ancestor": -8.594657, "and": -5.497142, "and/or": -10.540567, "and=": -7.832517, "annotation": -10.540567, "another": -9.441955, "ant": -10.540567, "ante": -8.748807, "antlib": -9.847420, "any": -7.650195, "anything": -9.847420, "aoqjman": -10.540567, "aoxqZoF": -10.540567, "apache": -9.847420, "application": -9.441955, "application/x": -9.154273, "applications": -9.847420, "applies": -10.540567, "apply": -9.441955, "approach": -10.540567, "appropriate": -9.441955, "arbitrarily": -9.847420, "architecture": -10.540567, "architecture.": -10.540567, "archive": -10.540567, "are": -7.173271, "area": -9.847420, "areas": -10.540567, "arguments": -6.851687, "arising": -10.540567, "armHYZ": -10.540567, "array": -9.847420, "article": -9.154273, "artifact": -10.540567, "artifactName": -9.847420, "as": -6.321059, "as=": -9.847420, "asJhp": -10.540567, "asTSqV": -10.540567, "asm": -10.540567, "asmx": -10.540567, "assigned": -9.847420, "assigning": -9.847420, "associated": -9.847420, "associates": -10.540567, "association": -10.540567, "assumption": -9.154273, "async": -9.441955, "asynchronous": -9.154273, "asyncronous": -10.540567, "at": -8.931129, "attached.": -10.540567, "attaching": -10.540567, "attempt": -10.540567, "attempts": -10.540567, "attlist": -9.154273, "attrib": -8.142672, "attribute": -9.847420, "author": -9.154273, "automatically": -9.441955, "available": -9.847420, "available.": -10.540567, "avoid": -9.847420, "awesome": -10.540567, "axOHLu": -10.540567, "ay": -10.540567, "ayJ": -10.540567, "ayoutMaster": -10.540567, "b": -7.975618, "b/sYwCsPDinSuun": -10.540567, "bAwq": -10.540567, "bCXZhMq": -10.540567, "bD": -10.540567, "bDR": -10.540567, "bEiw": -10.540567, "bEjCJmbCxieBe": -10.540567, "bKOH": -10.540567, "bLWClmtuQ": -10.540567, "bLjdJXkp/dow": -10.540567, "bLm": -10.540567, "bLvC": -10.540567, "bNPFqtBz": -10.540567, "bNWqLwvMVhEOo/hu": -10.540567, "bOpVcmp/UqGS": -10.540567, "bPRp": -10.540567, "bQSY": -10.540567, "bRl": -10.540567, "bSjE": -10.540567, "bTVkkLBijuc": -10.540567, "bU": -10.540567, "bVBXwdgbukndLA": -10.540567, "bVDWta": -10.540567, "bW": -10.540567, "bZ": -10.540567, "bZRIPzDfFuj": -10.540567, "backed": -10.540567, "background": -6.366180, "backing": -8.343342, "backpack": -9.847420, "banned": -10.540567, "base": -8.343342, "based": -8.237982, "basic": -10.540567, "basis": -10.540567, "bat": -10.540567, "bbwzGcGAtrhU": -10.540567, "bc": -10.540567, "bc8a": -9.847420, "bcHvSFn/gW": -10.540567, "bccc": -10.540567, "bd": -10.540567, "bdD": -10.540567, "bdjDRn": -10.540567, "be": -6.133848, "because": -9.847420, "become": -10.540567, "been": -8.594657, "before": -8.343342, "behN": -10.540567, "behaviour": -10.540567, "behaviour=": -6.366180, "being": -9.441955, "bel": -9.847420, "believe": -10.540567, "below": -8.237982, "below.": -10.540567, "benefit": -10.540567, "between": -7.832517, "beyond": -10.540567, "bh": -10.540567, "bibl": -9.847420, "biblFull": -9.441955, "biblStruct": -9.847420, "bin": -7.975618, "binary": -9.847420, "binding.": -10.540567, "bindings": -7.832517, "bkLrxZWDtoyX": -10.540567, "bl": -10.540567, "blKxZvZlbWYOs": -10.540567, "black": -10.540567, "bllzG": -10.540567, "block": -9.441955, "blog": -10.540567, "blue": -10.540567, "blue=": -10.540567, "bmp": -10.540567, "bnQIqNlXwVynYbSzL": -10.540567, "bo": -9.847420, "body": -8.461125, "body.content": -10.540567, "body.qname": -10.540567, "bold": -8.461125, "bon": -10.540567, "book": -8.931129, "books": -9.441955, "bootstrap": -10.540567, "border": -6.350912, "border=": -7.321691, "both": -9.154273, "bottom": -5.728383, "bpDp": -10.540567, "bq": -10.540567, "bqeDju": -10.540567, "bring": -10.540567, "brings": -10.540567, "brm": -10.540567, "broadcast": -9.847420, "bt": -10.540567, "btEztdVhytfg": -10.540567, "btjcrb": -10.540567, "build": -8.055660, "buildArtefactType": -9.847420, "buildArtefactType=": -9.847420, "buildPath": -9.847420, "buildProperties": -9.847420, "buildProperties=": -9.847420, "buildSystemId": -9.847420, "built": -10.540567, "builtIn": -9.154273, "bus.": -10.540567, "business": -10.540567, "but": -8.055660, "bv": -10.540567, "bvsxXDBStU": -10.540567, "bwUbNW": -10.540567, "by": -7.074831, "byte": -9.847420, "c": -7.321691, "c/AW": -10.540567, "cCk": -10.540567, "cCkDERKQaWGBBhEVUGkBVRywCQHRDqDAIOAAwUHCgxG": -10.540567, "cDKe": -10.540567, "cDPN": -10.540567, "cDTYCjcwjYW": -10.540567, "cEG": -10.540567, "cEhhoaGpoGBgYamhoaWgOTFeaCSS": -10.540567, "cEikAlzOTMh": -10.540567, "cH": -10.540567, "cIzL": -10.540567, "cJ": -10.540567, "cJIxYisgHEatA": -10.540567, "cKov": -10.540567, "cL/wB": -10.540567, "cLbf": -10.540567, "cMz": -10.540567, "cOJLfDPsmGFNUL": -10.540567, "cPugAAAABJRU": -10.540567, "cQUrnXhXBSui": -10.540567, "cRoQcROJDYJYmHklxUBoMDcxUyAZVUg": -10.540567, "cSpyS": -10.540567, "cVcqlf/": -10.540567, "cVwZgpTAGA/WRiAYSrLwXf": -10.540567, "caI/i": -10.540567, "cache": -7.901510, "cache.": -8.931129, "cached": -9.847420, "caches": -9.847420, "calculation": -8.461125, "calculationFunc": -9.847420, "call": -8.931129, "called": -8.931129, "called.": -10.540567, "calls.": -9.847420, "can": -7.707354, "cannot": -10.540567, "cap": -10.540567, "capitalize": -6.648747, "caps": -10.540567, "case": -5.529932, "castable": -9.154273, "casting": -10.540567, "caused": -10.540567, "cb": -9.847420, "cc": -9.847420, "ccx": -10.540567, "cd": -9.847420, "cda": -9.847420, "cell": -8.931129, "center": -10.540567, "center.": -10.540567, "centric": -10.540567, "cfa": -10.540567, "cgksgxBnPhfaPERJZhX": -10.540567, "chained": -9.847420, "change": -7.282470, "change.": -8.055660, "changed": -7.650195, "changed.": -8.343342, "changes": -7.975618, "changes.": -9.847420, "char": -7.496044, "characters": -10.540567, "charoff": -9.441955, "checks.": -10.540567, "chen": -9.847420, "child": -9.154273, "choice": -10.540567, "choices": -9.441955, "ciABPZvAbNl": -10.540567, "cia": -9.847420, "cifuR/Z": -10.540567, "ciibcwPvF": -10.540567, "citation": -10.540567, "clVdZLL": -10.540567, "clarification": -10.540567, "class": -7.901510, "class=": -9.847420, "classes": -8.931129, "classes.": -9.847420, "classification": -10.540567, "clean": -10.540567, "cleanCommand": -9.847420, "cleanCommand=": -9.847420, "clear": -9.847420, "clearsContextBeforeDrawing": -10.540567, "clearsContextBeforeDrawing=": -10.540567, "client.": -9.847420, "clu": -10.540567, "cmpE": -10.540567, "co": -10.540567, "coarse": -10.540567, "code": -8.748807, "collection": -7.244730, "collection.": -8.748807, "collections": -10.540567, "colname": -9.441955, "colnum": -10.540567, "color": -5.877128, "color=": -6.826995, "colorSpace": -10.540567, "colorSpace=": -10.540567, "colors": -10.540567, "colors=": -10.540567, "colour.": -10.540567, "cols": -7.975618, "colspec": -7.650195, "colspec/@colwidth.": -10.540567, "colspecs.": -10.540567, "column": -8.931129, "colwidth": -8.461125, "com": -8.748807, "combination": -9.847420, "come": -10.540567, "command": -6.851687, "command=": -6.851687, "commercial": -10.540567, "common": -10.540567, "communicate": -9.847420, "community.": -10.540567, "compare": -10.540567, "compatVersion": -10.540567, "compatVersion=": -10.540567, "compatible": -10.540567, "compilation": -10.540567, "compile": -10.540567, "compiler": -9.847420, "complete": -9.441955, "completes": -9.154273, "compute": -10.540567, "computer": -10.540567, "concat": -9.847420, "concurrent": -8.931129, "concurrently": -9.847420, "conditions": -9.441955, "conf": -9.441955, "conf=": -9.847420, "conference": -10.540567, "configure": -10.540567, "configured": -10.540567, "consectetur": -10.540567, "consequential": -10.540567, "consistent": -10.540567, "consistently": -10.540567, "constrain": -10.540567, "constrained": -8.748807, "constructors": -8.055660, "contact": -10.540567, "contain": -10.540567, "contains": -9.847420, "content": -8.237982, "contentMode": -10.540567, "contentMode=": -10.540567, "contents": -9.154273, "context": -8.931129, "context=": -9.441955, "contract": -10.540567, "contract.": -9.847420, "contrast": -10.540567, "contributors": -9.847420, "convenient.": -10.540567, "convention": -9.847420, "conversion": -10.540567, "convert": -9.847420, "copyright": -9.154273, "core": -10.540567, "corpus": -9.847420, "corr": -9.441955, "corresp": -10.540567, "correspond": -10.540567, "corresponding": -9.847420, "corresponds": -10.540567, "cost": -9.847420, "could": -9.847420, "count": -8.142672, "coupled": -9.847420, "cover": -9.847420, "cpjPnFcT": -10.540567, "cpp": -8.142672, "cq": -10.540567, "created": -9.154273, "creating": -9.154273, "csa": -10.540567, "csproj": -10.540567, "csproj_sample": -10.540567, "cu": -10.540567, "cuWH": -10.540567, "cur": -10.540567, "currencies": -10.540567, "current": -7.832517, "currently": -9.441955, "cursive": -9.847420, "custom": -9.154273, "customClass": -9.847420, "customClass=": -9.847420, "customization": -9.154273, "customizations": -9.847420, "customizations.": -10.540567, "customize": -10.540567, "cx/": -10.540567, "cxx": -10.540567, "czYrC": -10.540567, "d": -7.044059, "d/": -10.540567, "dABowIYXxg": -10.540567, "dBHjwHIgsdaSSmA": -10.540567, "dBU": -10.540567, "dCLvBpPcHsf": -10.540567, "dD": -6.985219, "dEOfKsfPeh": -10.540567, "dETRQBmoVHnv": -10.540567, "dGr": -10.540567, "dIH": -10.540567, "dJZEgAgX": -10.540567, "dKuHpm": -10.540567, "dLMMUHSiSXMEDJBGgRJESRFkBRB": -10.540567, "dNIsPeWcD/": -10.540567, "dQ": -10.540567, "dR": -10.540567, "dTFte": -10.540567, "dUSennNZLmI": -10.540567, "dUWcSgrpv": -10.540567, "dV": -10.540567, "dVLhTI": -10.540567, "dVTfJWDtzwwgByQWEcJucRTE": -10.540567, "dWcXXEhjUkQXf": -10.540567, "dWkYceL": -10.540567, "dX/": -10.540567, "dZKgOSGzpBQIvsQZhbx": -10.540567, "dabap": -10.540567, "damage.": -10.540567, "damages": -10.540567, "dapibus": -8.748807, "dashed": -10.540567, "data": -7.832517, "datatype": -9.847420, "date": -10.540567, "daunting": -10.540567, "dbkNzCebm": -10.540567, "ddMhYfHp": -10.540567, "deMuHU": -10.540567, "deRZMRiGRsZymKJdcSlukFTey": -10.540567, "declare": -9.441955, "declared": -10.540567, "decoration": -8.461125, "deep": -9.847420, "def": -10.540567, "default": -8.237982, "default.": -9.847420, "defaultValue": -9.847420, "defaults": -10.540567, "define": -10.540567, "defined": -9.847420, "deg": -9.154273, "degree": -10.540567, "delay": -9.847420, "delay.": -9.847420, "delete": -9.847420, "delimiter": -5.955599, "delimiter=": -7.901510, "dellorus.": -10.540567, "demexp": -10.540567, "demote": -9.847420, "departure": -10.540567, "dependencies": -10.540567, "dependency": -10.540567, "depending": -10.540567, "depends": -10.540567, "depersist": -10.540567, "derive": -10.540567, "describe": -10.540567, "describes": -10.540567, "description": -8.931129, "description=": -9.154273, "descriptive": -10.540567, "design": -9.847420, "designed": -10.540567, "desirable": -10.540567, "destination": -10.540567, "destination=": -10.540567, "details": -9.847420, "determine": -10.540567, "determined": -10.540567, "developed": -10.540567, "developer": -9.847420, "dfd": -10.540567, "dgkZWVtUjkZGVt": -10.540567, "dictate": -10.540567, "dictionaries": -10.540567, "dictionary": -10.540567, "dictum": -10.540567, "difference": -10.540567, "differently": -10.540567, "differing": -10.540567, "digital": -9.441955, "digitized": -10.540567, "diplomatic": -10.540567, "diqYCduhNy": -10.540567, "dir": -8.461125, "direct": -10.540567, "directly": -10.540567, "disable": -10.540567, "disabled": -10.540567, "disambiguate": -9.847420, "discarded.": -9.154273, "disciplines": -10.540567, "disclaimed.": -10.540567, "disclaimer": -10.540567, "disclaimer.": -10.540567, "disconnects": -10.540567, "disk": -10.540567, "display": -8.748807, "display=": -10.540567, "displayName": -9.847420, "displayName=": -9.847420, "displaying": -10.540567, "disposed": -9.154273, "disposed.": -9.441955, "distinct": -10.540567, "distinguish": -8.055660, "distribution.": -10.540567, "diversity": -10.540567, "dj": -10.540567, "dk": -10.540567, "dkqq": -10.540567, "dlg": -10.540567, "dll": -9.441955, "dll=": -10.540567, "dm/syEuBnIZ/FJk": -10.540567, "dnHxXz": -10.540567, "dnZnMhGdDb": -10.540567, "do": -8.931129, "doZ": -10.540567, "document": -10.540567, "documentation": -10.540567, "documentation.": -10.540567, "documents": -10.540567, "does": -9.441955, "doesn": -9.847420, "dolor": -10.540567, "domain": -9.847420, "don": -9.847420, "done": -9.154273, "dotted": -9.441955, "double": -9.847420, "down": -10.540567, "download": -10.540567, "dq": -10.540567, "dqSxtvv": -10.540567, "drIyMrY/oOTFScrKioqKioiwhFxcBWFVhQaU": -10.540567, "drawing": -10.540567, "driver": -10.540567, "dropping": -9.847420, "dsSnFfZPDYYbh": -10.540567, "dt": -10.540567, "dtOi": -10.540567, "dtfd": -10.540567, "dtsp": -10.540567, "du/WLA": -10.540567, "dummy": -10.540567, "duplicate": -9.847420, "during": -10.540567, "dvzljzpEHqTINVaFlVVvFtDutIx": -10.540567, "dw": -10.540567, "dxto": -10.540567, "dyLaqz": -10.540567, "dzOBEHSD": -10.540567, "dzvgD": -10.540567, "e": -7.707354, "e/": -10.540567, "e/V": -10.540567, "eAHR": -10.540567, "eAraFFxrUh": -10.540567, "eCk": -10.540567, "eDQwMDDQNDIwKqqisBZbOINKZRJGBZRlY": -10.540567, "eFK": -10.540567, "eHFnSwy": -10.540567, "eHLDuBZ": -10.540567, "eHlbMe": -10.540567, "eIyc": -10.540567, "eJs": -10.540567, "eMO": -10.540567, "eMcMZP": -10.540567, "ePtGvg": -10.540567, "eSpGDNDAiPZFJmK": -10.540567, "eTP/inB": -10.540567, "eVHmVP": -10.540567, "eWXzeRuTy": -10.540567, "eXsNb": -10.540567, "eYZKz": -10.540567, "eZsl": -10.540567, "ea": -8.931129, "each": -8.594657, "early": -10.540567, "easier": -10.540567, "easily": -9.847420, "easyant": -8.461125, "ec": -10.540567, "ecVYf": -10.540567, "ed": -10.540567, "edgXgYdwvQAJsbrFvdGUDu/QQYZOXPwj": -10.540567, "edition": -10.540567, "editions": -10.540567, "editor": -10.540567, "eds": -10.540567, "edy": -10.540567, "ee": -10.540567, "efNeLi": -10.540567, "efqk": -10.540567, "ei": -10.540567, "either": -9.847420, "ejt": -10.540567, "el": -10.540567, "element": -9.154273, "elements": -8.461125, "elit": -10.540567, "else": -8.931129, "em": -8.748807, "empty": -9.154273, "en": -8.461125, "enable": -10.540567, "enabled": -5.635292, "enabled.": -10.540567, "encoded": -8.594657, "encoders": -10.540567, "encoding": -6.397432, "encoding.": -9.441955, "encoding=": -7.139370, "encountered": -10.540567, "encyclopedia": -9.847420, "endeavor.": -10.540567, "enormous": -10.540567, "enough": -9.847420, "enough.": -10.540567, "enrich": -10.540567, "enrollments.": -10.540567, "ensure": -9.441955, "ensuring": -9.847420, "ent": -6.608741, "enter": -9.847420, "entire": -10.540567, "entity": -10.540567, "entr": -10.540567, "entries": -9.441955, "entry": -7.975618, "environment": -10.540567, "environment.": -10.540567, "eoC": -10.540567, "eogWeP": -10.540567, "epigraphic": -10.540567, "eq": -9.847420, "eqWLuUbZ": -10.540567, "eqdlq": -10.540567, "equal": -9.847420, "equivalent": -9.154273, "equivalently": -10.540567, "eschewing": -10.540567, "especially": -10.540567, "et": -6.236502, "eu": -10.540567, "ev": -10.540567, "evaluate": -10.540567, "evaluated": -10.540567, "even": -10.540567, "event": -10.540567, "events.": -9.847420, "every": -10.540567, "everybody": -10.540567, "everything": -10.540567, "evicted": -9.847420, "ewJhR/D": -10.540567, "examining": -10.540567, "example": -9.441955, "exbix": -10.540567, "except": -10.540567, "exchanged.": -10.540567, "execution": -10.540567, "exemplary": -10.540567, "exist": -8.237982, "existing": -9.154273, "exists": -8.055660, "expan": -9.154273, "expected": -9.441955, "expensive": -9.847420, "explainText": -10.540567, "explainText=": -10.540567, "explicit": -10.540567, "explicitly": -10.540567, "exposes": -10.540567, "express": -10.540567, "expression": -9.441955, "expression.": -10.540567, "expressive": -10.540567, "extended": -10.540567, "extensible.": -10.540567, "extension": -8.055660, "extensionOf": -10.540567, "extensionOf=": -10.540567, "extensive": -10.540567, "extraordinary": -10.540567, "extremely": -10.540567, "eyk": -10.540567, "ezLnBQLMkkgNWR": -10.540567, "ezdlQvVNUrCJS": -10.540567, "fa8739": -10.540567, "facebook": -9.847420, "facilitates": -10.540567, "facsimile": -10.540567, "fail.": -10.540567, "fake": -9.154273, "faking": -9.154273, "false": -7.975618, "family": -7.362513, "fantasy": -10.540567, "far": -9.847420, "fashion.": -10.540567, "faster": -9.847420, "features": -10.540567, "feel": -10.540567, "felis": -9.441955, "fetch": -10.540567, "feugiat": -8.931129, "few": -10.540567, "field": -8.142672, "field.": -10.540567, "file": -8.594657, "file.": -10.540567, "filePath": -6.851687, "filePath=": -6.851687, "filename": -7.767978, "files": -9.847420, "filled": -10.540567, "filters": -10.540567, "finishes.": -10.540567, "fire": -8.142672, "fires": -8.748807, "first": -6.007967, "fitness": -10.540567, "five": -10.540567, "fixed": -10.540567, "flOQo": -10.540567, "flags": -9.847420, "flat": -10.540567, "flattened": -9.847420, "flexibility": -10.540567, "flexibleMaxX": -10.540567, "flexibleMaxX=": -10.540567, "flexibleMaxY": -10.540567, "flexibleMaxY=": -10.540567, "flight": -9.847420, "float": -9.847420, "floral": -9.847420, "focuses": -10.540567, "focusing": -10.540567, "folder": -10.540567, "follow": -10.540567, "followed": -10.540567, "following": -8.931129, "font": -5.203029, "for": -6.018778, "forTests": -10.540567, "forTests=": -10.540567, "form": -6.321059, "form=": -6.497516, "formally": -10.540567, "format": -6.957048, "formats": -10.540567, "forms": -9.847420, "found.": -10.540567, "framework": -10.540567, "framework.": -10.540567, "free": -9.847420, "friendlier": -10.540567, "from": -7.449524, "fsproj": -10.540567, "fsproj_sample": -9.847420, "fsproj_sample.XML": -9.847420, "full": -8.931129, "fully": -9.441955, "function": -7.975618, "function.": -8.748807, "furniture": -9.847420, "further": -9.847420, "future": -9.847420, "fx": -9.441955, "fxml": -10.540567, "g": -7.975618, "g/qcELLFPuOG": -10.540567, "gAQRbCyADx": -10.540567, "gBeWvCOlJdQ": -10.540567, "gJ": -10.540567, "gJR": -10.540567, "gJsOyi": -10.540567, "gJvgXzjufU": -10.540567, "gK": -10.540567, "gKAc": -10.540567, "gKBTs": -10.540567, "gLcIvGtBr/Efr": -10.540567, "gLk": -10.540567, "gNggJuQQknMFqXFLyCF": -10.540567, "gOQNdCby": -10.540567, "gORHHCSD": -10.540567, "gOcj/M": -10.540567, "gOo": -10.540567, "gSQ": -10.540567, "gStr": -10.540567, "gTXyLisFvzcgoNjXY": -10.540567, "gUOxSHbKs": -10.540567, "gVQZRpeBiuro": -10.540567, "gXyTF": -10.540567, "gXzwynIh": -10.540567, "gYOC": -10.540567, "gYRdjGR": -10.540567, "gaGhqaGgYGGpoaBgaGBvbASSmpTgVRFWCpAZFiYMkGkRxgsKDAIGBBgMGRd": -10.540567, "gaq": -10.540567, "gbcNHPLET": -10.540567, "gbdoHLh": -10.540567, "gcc": -8.237982, "geAlGBmEBM": -10.540567, "generally": -9.847420, "generate": -10.540567, "generation": -9.441955, "generic": -9.441955, "genre": -10.540567, "geography": -10.540567, "gets": -10.540567, "gfLYisADEpQE": -10.540567, "ghRM/wHEaAExgRusPml": -10.540567, "ghyJjzac": -10.540567, "gif": -10.540567, "give": -10.540567, "given": -7.650195, "givenname": -10.540567, "gkG": -10.540567, "glPrxXEmtGXYjdvOL": -10.540567, "global": -10.540567, "gm": -10.540567, "gml": -8.748807, "gnHe": -10.540567, "gnZO": -10.540567, "gnkuXAgMcajhSEjMht": -10.540567, "go": -9.847420, "goals": -9.847420, "going": -9.154273, "goods": -10.540567, "google": -9.441955, "gp": -10.540567, "gprp": -10.540567, "gq": -10.540567, "gr": -10.540567, "graphic": -10.540567, "gray": -9.154273, "greater": -10.540567, "green": -10.540567, "green=": -10.540567, "gro": -10.540567, "gt": -7.650195, "gtOv/": -10.540567, "gtZoVnT/": -10.540567, "guarantees": -8.748807, "gwx": -10.540567, "gxKCI": -10.540567, "gxyexwkSNtnJ": -10.540567, "h": -8.461125, "hACgcdUQb": -10.540567, "hBB": -10.540567, "hBW": -10.540567, "hCNtmwyOzKnII": -10.540567, "hCnKggEuMlAkjovmDtMrIRKfK": -10.540567, "hEYpGVSCwSOYmsPVnZTF": -10.540567, "hF": -10.540567, "hFEgzV": -10.540567, "hFiLCTqEUBzj": -10.540567, "hGdRf/Az": -10.540567, "hGjpmujN": -10.540567, "hH": -10.540567, "hHGEmDrXJaJlrQ": -10.540567, "hLiKvQo/x": -10.540567, "hMProfnAk": -10.540567, "hNubMGfZkgAZq": -10.540567, "hOxDNDqIZ": -10.540567, "hPXfsJpR": -10.540567, "hQiRqPNEe/sbLvX": -10.540567, "hR": -10.540567, "hRmHuDNJL/fsgNr": -10.540567, "hXRNJg/FVLrj/G": -10.540567, "hZDHBNEJqHKM": -10.540567, "hamburger": -10.540567, "hamburger=": -10.540567, "hanging": -10.540567, "has": -7.449524, "hasellus": -10.540567, "have": -7.362513, "having": -9.847420, "hbbA": -10.540567, "hbhwSJi": -10.540567, "hbt": -10.540567, "hd": -10.540567, "hdHYkpjrbGPOzk": -10.540567, "head": -8.594657, "head.content": -10.540567, "head.qname": -9.847420, "header": -8.931129, "headers": -9.847420, "height": -7.244730, "height=": -10.540567, "hello": -10.540567, "help": -10.540567, "helper": -8.931129, "helps": -10.540567, "here": -9.847420, "here.": -9.847420, "heuristically": -10.540567, "hfhTm": -10.540567, "hgXx": -10.540567, "hgfezwvcR": -10.540567, "hh": -10.540567, "hhsTlIFkLQgjIHkd": -10.540567, "high": -10.540567, "highly": -10.540567, "hjAKkjOFLt": -10.540567, "hkn": -10.540567, "hl7": -10.540567, "hlCCPFfN": -10.540567, "hm": -10.540567, "hmUvNVOD": -10.540567, "hmZ": -10.540567, "hoCt": -10.540567, "holder": -10.540567, "holders": -10.540567, "home": -10.540567, "hood": -10.540567, "how": -9.847420, "however": -9.441955, "hpj": -10.540567, "hpp": -10.540567, "hqq": -10.540567, "hr": -10.540567, "href": -7.044059, "href=": -7.767978, "hs": -10.540567, "ht": -10.540567, "html": -8.594657, "html.content": -10.540567, "html.qname": -9.847420, "http": -7.832517, "https": -10.540567, "hufc": -10.540567, "human": -9.441955, "humanities": -10.540567, "hundreds": -9.847420, "hwL": -10.540567, "hxx": -10.540567, "hyLOKh": -10.540567, "i": -8.343342, "i.e.": -7.405073, "i/": -10.540567, "i//": -10.540567, "iAj": -10.540567, "iBSDSDaw": -10.540567, "iD": -10.540567, "iEENEMEziIPMoooJHsGkSiMEHwCUpHgPRBGnQlcpcglY": -10.540567, "iFiFSoMoG": -10.540567, "iHZ": -10.540567, "iIdIYMGkvktSDLM": -10.540567, "iIfguA": -10.540567, "iIqCZl": -10.540567, "iJ": -10.540567, "iJc": -10.540567, "iKKUUG": -10.540567, "iKqBHSaNNuW": -10.540567, "iLcrZVmI": -10.540567, "iOSBSAiI": -10.540567, "iP": -10.540567, "iQIqkBiYXIM": -10.540567, "iRNV": -10.540567, "iRx/T": -10.540567, "iTOQFMzsMROMAcKSU": -10.540567, "iUyWRK": -10.540567, "iVBORw": -7.139370, "iVyA": -10.540567, "iWAqN": -10.540567, "iXMGkVaTOh": -10.540567, "iYCQ/Wz": -10.540567, "iYPD//rVZ/GsiszWS": -10.540567, "ia": -10.540567, "ici": -10.540567, "ico": -9.441955, "id": -5.003233, "id=": -8.055660, "ideas": -10.540567, "ident": -7.106580, "ident=": -5.673032, "identical": -8.142672, "identifier": -9.847420, "idl": -10.540567, "ie": -10.540567, "ies": -10.540567, "if": -7.139370, "ifXrUnXAoBo/RePsBmbc": -10.540567, "ignored.": -10.540567, "igpN": -10.540567, "iiyP": -10.540567, "ijs": -10.540567, "ikO": -10.540567, "ilGQmBabYvf": -10.540567, "image": -10.540567, "immediately": -9.441955, "impaYVg": -10.540567, "imperdiet": -10.540567, "imperdiet.": -8.931129, "implement": -8.931129, "implementing": -9.847420, "implements": -8.461125, "implied": -9.847420, "important": -8.748807, "imr": -10.540567, "in": -6.007967, "inc": -10.540567, "incidental": -10.540567, "include": -10.540567, "including": -9.154273, "incorrectly": -10.540567, "indent": -10.540567, "indicates": -10.540567, "indirect": -10.540567, "information": -10.540567, "infrastructure": -10.540567, "inherit": -9.441955, "inheritsScope": -10.540567, "inheritsScope=": -10.540567, "inheritsSet": -10.540567, "initial": -7.208362, "initialize": -8.594657, "initialize=": -9.847420, "initialized": -9.847420, "initio": -10.540567, "inl": -10.540567, "inline": -10.540567, "input": -9.847420, "inside": -8.237982, "instance": -8.931129, "instanceId": -9.154273, "instead": -9.847420, "integer": -9.154273, "integration.": -10.540567, "intend": -10.540567, "intended": -8.748807, "intends": -10.540567, "interface": -8.931129, "internal": -10.540567, "interoperability": -10.540567, "interoperability.": -10.540567, "interruption": -10.540567, "interview": -10.540567, "into": -8.931129, "introductory": -10.540567, "invoke": -9.154273, "ipb": -10.540567, "ipsum": -10.540567, "irrelevant.": -10.540567, "is": -5.477972, "isTestSource": -9.847420, "isTestSource=": -9.847420, "isVZQ": -10.540567, "issue": -9.847420, "it": -7.139370, "it.": -8.931129, "itEsskgrxDVPRILeAXFl": -10.540567, "itFzpEPXkhjb": -10.540567, "itIs": -10.540567, "italic": -6.957048, "itbfhQCPbC": -10.540567, "item": -7.596128, "item.": -9.441955, "items": -7.244730, "its": -8.461125, "itself": -9.847420, "ixsxVCR": -10.540567, "izFhgopAVMdnttHcq": -10.540567, "izGTLxFiBZOWR": -10.540567, "j": -7.901510, "j/INJbGZFfSy": -10.540567, "jABzF": -10.540567, "jCfI": -10.540567, "jCm": -10.540567, "jCnpwduAPZMvaCz": -10.540567, "jEOxvx": -10.540567, "jFMAiKb": -10.540567, "jFmrGFBMPDk": -10.540567, "jKdWQEqB": -10.540567, "jNsBJyAhCyh": -10.540567, "jO": -9.847420, "jOL": -10.540567, "jPwzYlj": -10.540567, "jQBDtp": -10.540567, "jQyOTuLcaiNO": -10.540567, "jTUTu": -10.540567, "jUBDsJwQGmhoaGpoWBhoGhgYGGp": -10.540567, "jVZuqtJtW": -10.540567, "jVrBa": -10.540567, "jW": -10.540567, "jWCZK": -10.540567, "jWqnhRT": -10.540567, "jYEIVdvQc": -10.540567, "jYWUxHS": -10.540567, "jZNiMqJJWVyt": -10.540567, "janmPczUK": -10.540567, "java": -10.540567, "java.lang.*": -10.540567, "javafx": -10.540567, "javafx.geometry.*": -10.540567, "javafx.scene.control.*": -10.540567, "javafx.scene.layout.*": -10.540567, "jbXuQNvAXFLFpzAmJ": -10.540567, "jcI": -10.540567, "jdwPuATYmXfuUh": -10.540567, "jeJgqoygWaekkQxbQOKOpnV": -10.540567, "jfRvPET/": -10.540567, "jg": -10.540567, "jiW": -10.540567, "jj": -10.540567, "jjtmQvepmgE": -10.540567, "jkDPNdf": -10.540567, "jkMRwPARx": -10.540567, "jki": -10.540567, "jl": -10.540567, "jlC": -10.540567, "jlGoXmA": -10.540567, "jn": -10.540567, "join": -10.540567, "journal": -10.540567, "jpe": -10.540567, "jpeg": -10.540567, "jpg": -10.540567, "jpgok": -10.540567, "jqLqOZUABlFViZ": -10.540567, "jtWtWAWSBwWmVBG": -10.540567, "juL": -10.540567, "jupMo": -10.540567, "just": -10.540567, "jvJWBrlVQSHWaIv": -10.540567, "jvTWkt": -10.540567, "jw/": -10.540567, "jyk": -10.540567, "jzlQTFRN": -10.540567, "k": -8.237982, "kAzhuUeg": -10.540567, "kBsBRznisUr": -10.540567, "kCiHfm/": -10.540567, "kDBmaOqczXoXgTz": -10.540567, "kES": -10.540567, "kFNlUBAQKQaRHBDJBpEcELDggMGBBQELSqbvza": -10.540567, "kFovYp": -10.540567, "kHrNL": -10.540567, "kHxtHdYFCrvY": -10.540567, "kKSw/ufSTdWakwceU": -10.540567, "kL": -10.540567, "kLJV": -10.540567, "kN": -10.540567, "kNAhVXLyYRIk": -10.540567, "kOKvzMRmPhiRYF": -10.540567, "kQ": -9.847420, "kQM": -10.540567, "kSvJGSvgTNN": -10.540567, "kSyvA": -10.540567, "kU": -10.540567, "kXQWWLZmS": -10.540567, "kXhXBjGP": -10.540567, "kY": -10.540567, "kYkIJ": -10.540567, "kZ": -10.540567, "kZOzF": -10.540567, "kbexcB/AEhbiVW/ps": -10.540567, "kc": -10.540567, "kcO": -10.540567, "kdBaoozyqKfnc": -10.540567, "keep": -10.540567, "keepEnvironmentInBuildfile": -9.847420, "keepEnvironmentInBuildfile=": -9.847420, "key": -6.306460, "key=": -10.540567, "keyboard": -10.540567, "keyword.": -9.847420, "kghGyBgpzbVujW": -10.540567, "kgqc": -10.540567, "kijXbzIc": -10.540567, "kimU": -10.540567, "kind": -8.748807, "kind=": -9.847420, "kinds": -10.540567, "kirTZ": -10.540567, "kj": -10.540567, "kjvNgDwAErjxuj": -10.540567, "kkqzhHnBjSmbROKYEbGWGEeado": -10.540567, "kl": -10.540567, "kmQEcgoTXRedObsY": -10.540567, "knnkBYSnEADRwKS": -10.540567, "koXabRrOTvvN": -10.540567, "kq": -10.540567, "kqvhICCph": -10.540567, "krCRZCQXDiY": -10.540567, "ksEB": -10.540567, "ksWFrFIgWEcixhHAVXq": -10.540567, "kt/": -10.540567, "ktlH": -10.540567, "kuYZVSOcdF": -10.540567, "kvFNwPai": -10.540567, "kvFTSSvIGnsQjiqTSIN": -10.540567, "kxyKQEDqPERwBiPs/qvBZzU/tqaTmqNUUvNge": -10.540567, "kyz": -10.540567, "l": -10.540567, "lEI": -10.540567, "lFpSTpWMx": -10.540567, "lIoAAAAASUVORK": -10.540567, "label": -8.748807, "lang": -9.441955, "language": -9.154273, "language=": -9.847420, "laoreet.": -8.594657, "largely": -10.540567, "larger": -10.540567, "last": -7.074831, "leak": -9.847420, "learned": -10.540567, "leave": -8.237982, "left": -6.223079, "left=": -10.540567, "legal_case": -10.540567, "legislation": -10.540567, "lessons": -10.540567, "letter": -10.540567, "level": -9.154273, "level=": -10.540567, "liability": -9.847420, "liable": -10.540567, "liberty": -10.540567, "licence": -9.847420, "licences.": -10.540567, "license": -10.540567, "licensed": -9.847420, "life": -10.540567, "like": -8.748807, "limit": -8.931129, "limited": -9.154273, "line": -6.756377, "line=": -7.767978, "linguistic": -9.847420, "lining": -10.540567, "lining.": -10.540567, "list": -9.154273, "list.": -9.847420, "listed": -10.540567, "listen": -8.748807, "lists": -10.540567, "literature": -10.540567, "loadable": -10.540567, "loaded": -9.441955, "loader/saver": -10.540567, "log": -9.847420, "logger": -9.847420, "logo": -9.847420, "long": -9.847420, "loosely": -9.847420, "lorem": -8.594657, "loss": -10.540567, "love": -10.540567, "low": -10.540567, "ls": -10.540567, "lsCisjMp": -10.540567, "lt": -9.154273, "m": -6.929649, "m/dYWSjAjmMqP": -10.540567, "mCBQ": -10.540567, "mDcvV": -10.540567, "mDsBLacCLfUeY": -10.540567, "mF": -10.540567, "mHASIhbAb": -10.540567, "mIs": -10.540567, "mLhXm": -10.540567, "mLlW": -10.540567, "mMmt": -10.540567, "mNOAqbTRv": -10.540567, "mNgGAWjYBSMglEwCkbBSAcACBAAAb": -9.847420, "mNgGKpgztI": -10.540567, "mOrGkCBIUIROEIEiKICmCpAiSTiAqJhAT/Rfevu/BwUZGlv": -10.540567, "mPFFyvT": -10.540567, "mPJmBxKwbv/Wf": -10.540567, "mQpkOVaxjNFzLdEXjiAtYtylP": -10.540567, "mRVjMZW": -10.540567, "mRcVUPgpoAiK": -10.540567, "mRjuDIAwYKcvUALAHhK": -10.540567, "mTjRczSuoEKunY": -10.540567, "mUjltWl": -10.540567, "mVEhkMuWYdVeZGQTrtCZTDqz": -10.540567, "mVq": -10.540567, "mWvkr": -10.540567, "mXe": -10.540567, "mYsgC": -10.540567, "mYsgFDzUcpODGN": -10.540567, "mZw": -10.540567, "machine": -10.540567, "macro": -5.563833, "made": -9.847420, "magazine": -10.540567, "maintain": -10.540567, "maintained": -10.540567, "major": -10.540567, "majors": -10.540567, "make": -9.154273, "making": -9.441955, "manage": -10.540567, "managed": -10.540567, "managedBuildOn": -9.847420, "managedBuildOn=": -9.847420, "manipulating": -10.540567, "manually": -9.154273, "manuscript": -9.847420, "many": -9.154273, "mapping": -10.540567, "maps": -10.540567, "maqdQg": -10.540567, "margin": -10.540567, "markup": -10.540567, "martin@refme.com": -10.540567, "master": -10.540567, "match": -6.097916, "match=": -6.209834, "matches": -10.540567, "material": -10.540567, "materials": -10.540567, "mathematical": -9.847420, "maxConcurrent": -10.540567, "maxHeight": -10.540567, "maxOccurs": -10.540567, "maxWidth": -10.540567, "maxWidth=": -10.540567, "maximum": -9.847420, "may": -9.154273, "mbQdVV": -10.540567, "mcaB": -10.540567, "me": -9.847420, "mean": -10.540567, "means": -10.540567, "measure": -10.540567, "meeting": -10.540567, "meets": -10.540567, "memoization": -9.847420, "memoized": -10.540567, "memoizes": -9.847420, "memoizing": -9.847420, "merchantability": -10.540567, "message": -7.139370, "message.": -10.540567, "messages": -7.449524, "met": -10.540567, "method": -7.014206, "method.": -9.847420, "methods.": -9.847420, "metus": -8.594657, "mf": -10.540567, "mfE": -10.540567, "mfcribbon": -10.540567, "mfmtmVPvDj": -10.540567, "microsoft": -9.441955, "microsoft.net.object.binary.base": -9.847420, "microsoft.net.object.bytearray.base": -10.540567, "microsoft.net.object.soap.base": -10.540567, "middle": -9.847420, "mime": -9.847420, "mimetype": -8.461125, "mimetype.": -10.540567, "mimetype=": -9.847420, "min": -7.767978, "minHeight": -10.540567, "minHeight=": -10.540567, "minOccurs": -9.441955, "minOccurs=": -9.441955, "minRequiredRevision": -10.540567, "minWidth": -9.847420, "minWidth=": -10.540567, "mirror": -10.540567, "misassigned": -10.540567, "mix": -9.441955, "mjYCSq": -10.540567, "mk": -8.931129, "mk/Ju/": -10.540567, "mmEup": -10.540567, "mml": -10.540567, "mnemonicParsing": -10.540567, "mock": -9.154273, "mode": -7.596128, "mode=": -6.733904, "model": -10.540567, "modern": -9.441955, "modes": -10.540567, "modification": -10.540567, "modifications": -10.540567, "modify": -8.142672, "module": -8.461125, "module.": -10.540567, "module.ant": -9.847420, "module.ivy": -10.540567, "module=": -8.931129, "moduleId": -7.901510, "moduleId=": -9.847420, "modules": -9.847420, "monitor": -10.540567, "monospace": -10.540567, "morNcfuQpOwP": -10.540567, "more": -7.650195, "mostly": -9.847420, "motion_picture": -9.154273, "move": -10.540567, "ms": -10.540567, "msdata": -7.707354, "mt": -10.540567, "mtpvCfXPqb": -10.540567, "mulberrytech": -9.847420, "multiple": -8.748807, "mus.": -9.847420, "must": -8.237982, "mvJ": -10.540567, "mvudofkgCyIzxffiNrPw": -10.540567, "mwStcxoPbkVQwvqsc": -10.540567, "mxGwTR": -10.540567, "mxfN": -10.540567, "my": -9.441955, "myapp": -10.540567, "myzJZL": -10.540567, "n": -7.650195, "n.attrib": -9.847420, "nASOA": -10.540567, "nDJzCqtxgXfltp": -10.540567, "nDe": -10.540567, "nDl": -10.540567, "nE": -10.540567, "nFZK": -10.540567, "nHk": -10.540567, "nIoLz": -10.540567, "nJtAuozQTDSFBnYc/EmgEBAyoxJnjITbn": -10.540567, "nLsCvvBvYXPk": -10.540567, "nOHLwO": -10.540567, "nOptV": -10.540567, "nOqG": -10.540567, "nPgJu": -10.540567, "nQv": -10.540567, "nUNqOwhmGBOLoAQP": -10.540567, "nVFIRWFrikloiwVhVQUuqLQioWuOBGxIuLE/gvfve": -10.540567, "nVqbQf": -10.540567, "nW": -10.540567, "nXLgCAQzfoSKInurCvZLpJ": -10.540567, "nYx": -10.540567, "nZLn": -10.540567, "nZqvYeuJG": -10.540567, "name": -4.352303, "name.": -10.540567, "name/value": -10.540567, "name=": -6.628544, "named": -9.154273, "nameend": -9.847420, "namespace": -7.975618, "namespace=": -9.847420, "namest": -9.441955, "naming": -10.540567, "natural": -10.540567, "nbX": -10.540567, "ncSFFESoQkcuSdbZyv": -10.540567, "ndNa": -10.540567, "ne": -10.540567, "nec": -10.540567, "necessary": -10.540567, "need": -7.901510, "needed": -10.540567, "needs": -9.847420, "negligence": -10.540567, "neither": -9.441955, "net": -9.847420, "netcore": -10.540567, "netstandardapp": -10.540567, "neutral": -9.154273, "never": -8.931129, "new": -8.055660, "newly": -9.847420, "newsletter": -10.540567, "newspaper": -10.540567, "next": -10.540567, "nivBN": -10.540567, "nkL": -10.540567, "nlRFQJAPW": -10.540567, "nnKeQb": -10.540567, "nnSFhgzOAZLqOZ": -10.540567, "no": -8.343342, "node_modules": -10.540567, "noeNhfo": -10.540567, "non": -9.441955, "none": -9.441955, "noon": -10.540567, "nor": -9.441955, "normal": -8.237982, "normalize": -9.154273, "normally": -8.748807, "not": -7.044059, "notation": -10.540567, "nothing": -10.540567, "notice": -9.847420, "notification": -8.748807, "notification.": -9.847420, "notifications": -7.449524, "notifications.": -8.931129, "notify": -9.441955, "np": -10.540567, "nproj": -10.540567, "nproj_sample": -9.847420, "nr/CmVZNk": -10.540567, "nrcV": -10.540567, "ns": -8.343342, "nsJd": -10.540567, "nu": -10.540567, "nuget": -10.540567, "null": -8.931129, "null.": -8.237982, "nulla": -8.748807, "number": -7.975618, "nvfB": -10.540567, "nvzEiH": -10.540567, "nvza": -10.540567, "nx": -10.540567, "nxGn": -10.540567, "nzebg": -10.540567, "o": -7.596128, "oButj": -10.540567, "oC": -10.540567, "oDDQNLDQMDTQMDDQNDAyqogOVUlApB": -10.540567, "oKM": -10.540567, "oMEiFNNw": -10.540567, "oMI": -10.540567, "oNPYWvn": -10.540567, "oQtb": -10.540567, "oS": -10.540567, "oT": -10.540567, "oUPCRb": -10.540567, "oYNQKb": -10.540567, "oYnWJOEgKAR": -10.540567, "oasis": -10.540567, "obj": -9.847420, "object": -6.690419, "object.": -9.154273, "objects": -8.931129, "obmGePC": -10.540567, "observe": -8.055660, "observed": -10.540567, "odl": -10.540567, "of": -5.510129, "offer": -9.847420, "often": -9.441955, "og": -10.540567, "ogDWLJADAxmxSbCKVlXsZlUFh": -10.540567, "ogO": -10.540567, "oi": -10.540567, "oi/aMR": -10.540567, "ojuXnrUFOKwHgOG": -10.540567, "okay": -8.931129, "okkRiCdGPIF": -10.540567, "oknEE": -10.540567, "okyrolgPYAAAAASUVORK": -10.540567, "old": -10.540567, "on": -6.756377, "on.": -8.748807, "onChanged": -9.847420, "onRelease": -10.540567, "once": -9.154273, "one": -6.929649, "one.": -10.540567, "ones": -9.847420, "only": -7.496044, "only.": -10.540567, "onto": -10.540567, "ontologies": -10.540567, "ooEPB": -10.540567, "op": -10.540567, "opaque": -10.540567, "operation": -9.847420, "operation.": -10.540567, "operations": -8.748807, "optional": -9.847420, "optionally": -9.847420, "optionnal": -10.540567, "options": -9.847420, "or": -6.074659, "order": -7.244730, "org": -8.055660, "organisation": -8.931129, "orig": -9.847420, "origin.": -10.540567, "os": -10.540567, "other": -7.767978, "others": -10.540567, "otherwise": -9.847420, "our": -10.540567, "out": -8.931129, "out.": -10.540567, "outgrow": -10.540567, "output": -9.441955, "output=": -10.540567, "outsourcing": -10.540567, "over": -9.441955, "overload": -9.847420, "override": -10.540567, "own": -9.441955, "ox": -10.540567, "oxford": -10.540567, "oxim": -10.540567, "oxojqHlnvBCWCN": -10.540567, "oz": -10.540567, "p": -7.362513, "pAAAAAElFTkSuQmCC": -10.540567, "pAeStjNjzDxip/KFyX": -10.540567, "pD": -10.540567, "pDH": -10.540567, "pE": -10.540567, "pFxff": -10.540567, "pGRKyPXVlZWHeXEQc": -10.540567, "pJXV": -10.540567, "pKfJtL": -10.540567, "pKq": -10.540567, "pMNwZakBJHEq": -10.540567, "pOgkpBo": -10.540567, "pPEPJlUSZDMMBp": -10.540567, "pRm": -10.540567, "pTEPjObefdhf": -10.540567, "pVgHNQxaMqHATdvm": -10.540567, "pVp": -10.540567, "pWbLT": -10.540567, "pYM": -10.540567, "pYb": -10.540567, "package": -9.847420, "packageName": -9.847420, "padding": -4.479110, "padding=": -6.851687, "pairs.": -10.540567, "pamphlet": -9.847420, "paper": -10.540567, "parameter": -8.748807, "parameter.": -10.540567, "parameters": -10.540567, "parameters.": -10.540567, "parent": -8.343342, "parent=": -9.847420, "parsing": -9.847420, "part": -9.847420, "particle": -9.847420, "particular": -8.931129, "pass": -9.847420, "passed": -10.540567, "path": -10.540567, "path.": -9.847420, "paths": -8.343342, "paths=": -9.154273, "pattern": -6.366180, "pay": -10.540567, "payments": -10.540567, "pbH": -10.540567, "pdbonly": -9.441955, "pdtNd": -10.540567, "pecQs": -10.540567, "pede": -10.540567, "per": -9.441955, "performance": -10.540567, "performs": -10.540567, "permit": -9.847420, "permitted": -10.540567, "personal_communication": -9.847420, "phase": -10.540567, "phases": -10.540567, "philosophy": -10.540567, "pifiGWz": -10.540567, "pjHcxeJ/": -10.540567, "place": -9.441955, "placed": -10.540567, "placeholderIdentifier": -9.847420, "places": -10.540567, "please": -10.540567, "plug": -10.540567, "plugin_state_location": -6.985219, "pn/": -10.540567, "png": -10.540567, "pockets": -10.540567, "point": -7.975618, "point=": -8.055660, "points": -8.237982, "policy": -8.931129, "politics": -10.540567, "polo": -10.540567, "populate": -10.540567, "populated": -9.154273, "positive": -10.540567, "possibility": -10.540567, "possible": -9.441955, "post": -9.847420, "posted": -9.441955, "potential": -9.847420, "potentially": -9.847420, "pre": -10.540567, "precedes": -6.515215, "preceding": -9.154273, "predicate=": -8.594657, "prefHeight": -9.847420, "prefHeight=": -10.540567, "prefWidth": -8.748807, "prefWidth=": -9.154273, "prefix": -5.728383, "prefix=": -5.915594, "prefixes": -8.931129, "prescriptive": -9.441955, "present": -9.847420, "preserve": -10.540567, "previous": -9.847420, "primarily": -10.540567, "primary": -9.847420, "print": -10.540567, "printed": -10.540567, "private": -10.540567, "problemReportingEnabled": -8.931129, "problemReportingEnabled=": -8.931129, "process": -8.237982, "processes": -10.540567, "processing": -9.847420, "processing.": -10.540567, "procurement": -10.540567, "produce": -10.540567, "production": -10.540567, "profile": -9.154273, "profile.attrib": -10.540567, "profits": -10.540567, "programmer": -10.540567, "programmers": -10.540567, "progress": -10.540567, "project": -8.461125, "project.": -10.540567, "projectType": -10.540567, "projectType=": -10.540567, "project_name": -8.931129, "projects": -9.847420, "projects.": -10.540567, "promise": -10.540567, "prompt": -9.154273, "properties": -7.173271, "properties/methods": -10.540567, "property": -6.223079, "property.": -8.055660, "propertyAccessControl": -9.847420, "propertyAccessControl=": -9.847420, "props": -8.931129, "prosopography": -10.540567, "prototype": -10.540567, "provide": -9.441955, "provided": -7.707354, "provided.": -8.931129, "provider": -10.540567, "provides": -8.748807, "providing": -7.544835, "psWgUGHq": -10.540567, "psgvkDGLIBYgAGKogIwjrm": -10.540567, "pt": -8.142672, "public": -10.540567, "published": -10.540567, "publisher": -10.540567, "punctuation": -10.540567, "purpose": -8.142672, "purposes": -10.540567, "put": -9.847420, "pvIx": -10.540567, "pvvueV": -10.540567, "pw": -10.540567, "pwBJykGyBj": -10.540567, "px": -10.540567, "pxomsm": -10.540567, "q": -8.461125, "qA/EgvMogJryB": -10.540567, "qAHAOigBoAFXio/": -10.540567, "qEJ": -10.540567, "qFBf": -10.540567, "qG": -10.540567, "qGb": -10.540567, "qGlLDYdBlTUVYjKtKKAqUAEhpPko/": -10.540567, "qH": -10.540567, "qJyq": -10.540567, "qLzudCOhJjaxX": -10.540567, "qO": -10.540567, "qOAAPvZJcvAoJlHnRz": -10.540567, "qPSlq": -10.540567, "qPi": -10.540567, "qS": -10.540567, "qT": -9.847420, "qYVUvpmci": -10.540567, "qYo": -10.540567, "qbV": -10.540567, "qck": -10.540567, "qeJjZrFRUij/yfo//WhArI/vaKDhxbbRqqdgsSzyntmKGsoCgUjLVe": -10.540567, "qgyvPZIgmA": -10.540567, "qkr": -10.540567, "qnAcPbLZlMU": -10.540567, "qname": -8.343342, "qoUMoHQL": -10.540567, "quNAw": -10.540567, "quam": -9.847420, "queried": -10.540567, "query": -9.441955, "queryBinding": -9.847420, "queryBinding=": -9.847420, "querying": -10.540567, "queued": -10.540567, "queues": -9.847420, "quis": -8.931129, "quite": -9.847420, "quot": -7.139370, "quote": -10.540567, "quotes": -7.975618, "quotes=": -7.975618, "qw": -10.540567, "qwHDYutqtRtrqSnkim": -10.540567, "qwl": -10.540567, "qySPGyjyEAhXMzBiHy": -10.540567, "qznsmlVeCKxv": -10.540567, "r": -7.975618, "r/kEfQ": -10.540567, "rAczoRMDBZ": -10.540567, "rBgCuDrl": -10.540567, "rCN": -10.540567, "rEB/F": -10.540567, "rEsbvcrETybvIJ": -10.540567, "rGKA": -10.540567, "rGlvf": -10.540567, "rIIABjc": -10.540567, "rLUQxX": -10.540567, "rQS": -10.540567, "rRWAMJ": -10.540567, "rTYa": -10.540567, "rTcj": -10.540567, "rUv": -10.540567, "rWWlUHFVjgjXbPN": -10.540567, "rXB": -10.540567, "rYZ": -10.540567, "rZb": -10.540567, "raKlM": -10.540567, "raTSFuB": -10.540567, "raWbyOOyl": -10.540567, "radius": -7.208362, "raise": -9.847420, "raiseAndSetIfChanged": -10.540567, "raisePropertyChanging": -9.154273, "raised": -10.540567, "range": -9.441955, "rather": -10.540567, "rbS/gvtaNtGV": -10.540567, "rc": -9.847420, "rct": -10.540567, "rdp": -10.540567, "re": -10.540567, "reWzJOQKiAxGKlVMKNauZ": -10.540567, "reached": -9.847420, "read": -9.154273, "readable": -10.540567, "readable.": -10.540567, "reader": -10.540567, "reason": -10.540567, "reasons": -10.540567, "rebroadcast": -9.847420, "receives": -10.540567, "recently": -9.441955, "recipe": -10.540567, "recommending": -10.540567, "rect": -10.540567, "red": -9.441955, "red=": -10.540567, "reenables": -9.441955, "ref": -9.441955, "reflection": -10.540567, "reg": -9.154273, "regardless": -9.847420, "registered": -10.540567, "registered.": -9.847420, "rel": -9.847420, "rel=": -9.847420, "relativeNode": -10.540567, "relatively": -10.540567, "reliably.": -10.540567, "religion": -10.540567, "remotely": -10.540567, "removed": -9.154273, "removed.": -9.154273, "rend": -8.594657, "rendered": -10.540567, "rendition": -9.441955, "repeat": -8.748807, "replace": -10.540567, "replaces": -10.540567, "report": -10.540567, "repository": -10.540567, "repositoryId": -10.540567, "repositoryId=": -10.540567, "representation": -9.847420, "representing": -7.496044, "represents": -9.154273, "reproduce": -10.540567, "request": -9.441955, "requested": -10.540567, "requests": -9.154273, "requests.": -9.847420, "required": -9.847420, "reserved.": -10.540567, "resheader": -10.540567, "resourcePath": -9.847420, "resourcePath=": -9.847420, "respective": -10.540567, "response": -9.847420, "rest.": -9.847420, "result": -9.441955, "result.": -9.847420, "resulting": -10.540567, "results": -8.343342, "resx": -9.154273, "retain": -10.540567, "retrieve": -9.441955, "return": -7.650195, "returned": -9.847420, "returned.": -9.847420, "returning": -10.540567, "returns": -8.931129, "rev": -9.847420, "rev=": -9.847420, "review": -8.931129, "revision": -8.461125, "revision=": -8.594657, "rf": -9.847420, "rgb": -8.343342, "rgs": -10.540567, "rh": -10.540567, "riTUQIzNntZzjlMxxzn": -10.540567, "richness": -10.540567, "ridiculus": -9.847420, "rifoq": -10.540567, "right": -6.196761, "right=": -10.540567, "rights": -10.540567, "riwFzpHDi": -10.540567, "rj": -10.540567, "rjos": -10.540567, "rmPg": -10.540567, "rnD/NFCxuaQAv": -10.540567, "ro": -10.540567, "role": -9.847420, "role=": -8.055660, "roman": -10.540567, "rotate": -9.154273, "row": -8.142672, "rowno": -10.540567, "rows": -9.847420, "rq": -10.540567, "rqO": -10.540567, "rqR": -10.540567, "rrVW/pWaoZNrLcjfGqhC": -10.540567, "rtg": -10.540567, "rtsQ": -10.540567, "ru": -10.540567, "rule": -9.847420, "rule.": -10.540567, "rules": -10.540567, "run": -8.594657, "running": -9.154273, "running.": -10.540567, "rutrum": -10.540567, "rutrum.": -8.748807, "rvAL": -10.540567, "rwmFqUu": -10.540567, "rwxuMP": -10.540567, "rxEc": -10.540567, "rz": -9.847420, "s": -7.405073, "s/TIlQWbYgA": -10.540567, "sD": -10.540567, "sDed": -10.540567, "sE/E": -10.540567, "sF": -10.540567, "sGc": -10.540567, "sHc": -10.540567, "sIDZ": -10.540567, "sLT": -10.540567, "sN": -10.540567, "sNWxBKP": -10.540567, "sO": -10.540567, "sRLV/ty": -10.540567, "sYcUR": -10.540567, "salve": -9.847420, "same": -8.343342, "sample": -8.748807, "sample.xml": -9.847420, "sans": -8.237982, "satisfies": -8.931129, "save": -9.441955, "say": -10.540567, "scenarios": -9.154273, "schedule": -9.847420, "scheduler": -8.142672, "schema": -8.748807, "schemaVersion": -9.847420, "schemaVersion=": -9.847420, "schemas": -9.441955, "schematypens": -10.540567, "schematypens=": -10.540567, "scheme=": -8.594657, "science": -10.540567, "scope": -9.441955, "scope=": -10.540567, "sdESBxYyAQhH": -10.540567, "sdk": -9.847420, "sdkextension": -10.540567, "section": -9.847420, "see": -8.237982, "seems": -10.540567, "select": -7.496044, "select=": -9.847420, "selectedProfileId": -8.931129, "selectedProfileId=": -8.931129, "selector": -8.931129, "selector.": -9.847420, "selectors": -9.847420, "semantically": -9.441955, "send": -9.441955, "send.": -9.154273, "sending": -9.847420, "sense": -10.540567, "sense.": -10.540567, "sent": -9.847420, "ser": -10.540567, "serialized": -8.748807, "serif": -8.237982, "server": -9.847420, "server.": -9.847420, "service": -10.540567, "services": -9.441955, "set": -6.608741, "set.": -9.154273, "setting": -9.154273, "settings": -10.540567, "setup.": -8.055660, "several": -10.540567, "sfTQAIYjwupvXUhvRjOBwEXY": -10.540567, "sg": -10.540567, "sgL": -10.540567, "sgM": -10.540567, "sgatIDAFhaSXctxLkRoKjfV": -10.540567, "shN": -10.540567, "shall": -10.540567, "shipping": -10.540567, "shirt": -10.540567, "shoes": -10.540567, "shorts": -10.540567, "should": -7.767978, "show": -10.540567, "sibling": -9.154273, "sic": -9.847420, "side": -10.540567, "similar": -7.975618, "similarly": -10.540567, "simple": -8.343342, "simpleelementspm": -10.540567, "simpler": -10.540567, "simplify": -10.540567, "single": -9.441955, "sit": -9.847420, "size": -6.063230, "skos": -9.441955, "sleSGS": -10.540567, "slot": -10.540567, "small": -9.847420, "smaller": -9.154273, "so": -9.441955, "so.": -10.540567, "software": -9.441955, "solid": -10.540567, "some": -8.931129, "song": -10.540567, "sort": -7.282470, "source": -7.362513, "source.extension.vsixmanifest": -10.540567, "sourcedoc": -10.540567, "spAyr": -10.540567, "space": -8.748807, "spacing": -9.847420, "spacing=": -10.540567, "spamming": -9.847420, "special": -10.540567, "specialist": -10.540567, "specific": -8.142672, "specified": -8.594657, "specifies": -10.540567, "specify": -10.540567, "specs": -7.544835, "specs_file": -7.832517, "speech": -9.847420, "srKyticWeuJga": -10.540567, "src": -7.139370, "src=": -10.540567, "srsName": -9.847420, "srsName=": -9.847420, "sryoWq": -10.540567, "ssxBx": -10.540567, "standalone": -9.154273, "standalone=": -9.154273, "standard": -10.540567, "standardized": -10.540567, "start": -9.441955, "start=": -10.540567, "starts": -8.931129, "startup.": -10.540567, "status": -9.847420, "status=": -10.540567, "step": -10.540567, "steps": -10.540567, "still": -9.847420, "storage": -10.540567, "storage_type_id": -10.540567, "store": -10.540567, "stored": -10.540567, "stream": -8.594657, "stream.": -9.441955, "strict": -10.540567, "string": -7.767978, "structure": -10.540567, "style": -5.831037, "style=": -9.154273, "stylesheets": -10.540567, "su": -10.540567, "subscribed": -9.847420, "subscribing": -10.540567, "subsequent": -8.931129, "subset": -9.441955, "substitute": -8.931129, "substring": -9.441955, "success": -10.540567, "successful": -10.540567, "such": -8.594657, "suffice.": -10.540567, "suffix": -4.651689, "suffix=": -4.654463, "suit": -10.540567, "suited": -10.540567, "sum": -9.847420, "super": -10.540567, "superClass": -6.802897, "superClass=": -6.802897, "support": -9.441955, "svGZRjkHFBSejevtuU": -10.540567, "svenhaustein.de": -10.540567, "swIs": -10.540567, "sx": -10.540567, "sxAMnoPtuMYiCAiSQQlCCdpPaTIKLxXxOSIdr": -10.540567, "symbols": -9.154273, "synchronous": -10.540567, "systemVersion": -9.847420, "systemVersion=": -9.847420, "szGJbCfSALeJCRjSKmgOQncAKL": -10.540567, "t": -7.496044, "t/mx": -10.540567, "tAAAAAElFTkSuQmCC": -10.540567, "tBpzgrJ": -10.540567, "tBynmiZI": -10.540567, "tEi": -10.540567, "tGftufJlD": -10.540567, "tIiqseI": -10.540567, "tK": -10.540567, "tKDIYkMMwBY": -10.540567, "tLQbjMAAAAASUVORK": -10.540567, "tMC": -10.540567, "tMq": -10.540567, "tN": -10.540567, "tQi": -10.540567, "tRBmAil": -10.540567, "tRSe/qqWflbLuzXu": -10.540567, "tTHdUJew": -10.540567, "tUf": -10.540567, "tUmk": -10.540567, "tVUr": -9.441955, "tVVLU/DUBTlp": -10.540567, "tVVLW/CUBRFIpGVWGRlZW": -10.540567, "tVVLW/jQBTsT": -10.540567, "tVVLY/iUBSdn": -10.540567, "tVVLYvDQBBduTJy": -10.540567, "tVVoW": -9.441955, "tVVq": -10.540567, "tVVr": -9.441955, "tVVrW/bQBTvnzBYGDpoaBgaaGhoaHrw": -10.540567, "tVVsWrDMBDNp": -10.540567, "tVdvPg": -10.540567, "tVlSJgNd": -10.540567, "tWVoW/qUBjF": -10.540567, "tWVr": -9.154273, "tWVrW/bUBTF": -10.540567, "tWVrW/jQBDFCwsPFi": -10.540567, "tWVrY/bQBDF": -10.540567, "tWVrY/bQBTEAwMNDU": -10.540567, "tWft": -10.540567, "tWx": -10.540567, "tX": -10.540567, "tYnGU": -10.540567, "table": -9.441955, "tagged": -10.540567, "tagging": -10.540567, "take": -9.441955, "taken": -10.540567, "takes": -10.540567, "tank": -10.540567, "target": -7.321691, "target.": -10.540567, "target.property": -10.540567, "target=": -9.154273, "targetRuntime": -9.847420, "targetRuntime=": -9.847420, "targets": -7.544835, "task": -8.142672, "tcygiDPzeuBDCuR": -10.540567, "technology": -10.540567, "tei": -7.975618, "teiCorpus": -10.540567, "tells": -10.540567, "tellus": -10.540567, "tellus.": -9.154273, "templates": -7.707354, "temporary": -10.540567, "term": -8.343342, "test": -7.244730, "test=": -9.154273, "tests": -10.540567, "tests.": -10.540567, "text": -5.370083, "text.": -10.540567, "text/microsoft": -9.847420, "text/value": -10.540567, "text=": -9.154273, "texts": -8.461125, "texts.": -10.540567, "tgroup": -7.901510, "tgroup/@cols": -9.847420, "th": -9.441955, "thGodg": -10.540567, "than": -8.594657, "that": -5.804368, "the": -4.665636, "their": -9.441955, "them": -9.441955, "then": -7.975618, "theory": -10.540567, "there": -9.847420, "therein": -10.540567, "these": -9.847420, "they": -9.154273, "think": -9.847420, "this": -5.976219, "those": -9.847420, "thread.": -9.441955, "through": -8.461125, "thrown": -10.540567, "tif": -10.540567, "tiff": -10.540567, "time": -9.154273, "times.": -9.154273, "title": -7.014206, "title.content": -10.540567, "title.qname": -10.540567, "tj": -10.540567, "tjNvuvr": -10.540567, "tkzEghoAYPYjElZX": -10.540567, "tmZ": -10.540567, "tnyQ/qufk": -10.540567, "to": -5.174591, "to.": -8.594657, "tokenize": -9.441955, "tomorrow": -10.540567, "too": -10.540567, "toolsVersion": -9.847420, "toolsVersion=": -9.847420, "top": -5.769882, "top=": -10.540567, "tort": -10.540567, "total": -9.847420, "tp": -10.540567, "tpGAR": -10.540567, "tpKi/TV": -10.540567, "traditional": -9.441955, "trans.": -10.540567, "transcription": -10.540567, "transcriptional": -10.540567, "transform": -8.931129, "translator": -10.540567, "travelling": -10.540567, "traversal": -9.847420, "treat": -10.540567, "true": -7.106580, "tu": -10.540567, "tuhTTjf": -10.540567, "tv": -10.540567, "twitter": -9.441955, "two": -9.847420, "tx": -10.540567, "tyF": -10.540567, "type": -6.146118, "type.": -9.441955, "type=": -7.767978, "typed": -9.847420, "types": -7.975618, "types.": -10.540567, "typically": -10.540567, "u": -10.540567, "uCGWWFMx": -10.540567, "uDQqZH": -10.540567, "uOdBctgHB": -10.540567, "ultricies": -9.847420, "uncomment": -8.237982, "undeclared": -10.540567, "under": -9.441955, "underline": -9.441955, "understood": -10.540567, "undertaken": -10.540567, "unenroll": -10.540567, "unique": -8.055660, "unit": -8.237982, "units": -10.540567, "unless": -10.540567, "unlike": -7.975618, "unpredictable.": -10.540567, "unprefixed": -10.540567, "until": -8.594657, "up": -7.321691, "updated": -10.540567, "updated.": -10.540567, "upon": -10.540567, "uppercase": -10.540567, "uri": -7.767978, "uri=": -7.975618, "url": -8.594657, "urn": -9.847420, "usUygMoCw": -10.540567, "usage": -10.540567, "usages": -10.540567, "use": -6.779367, "use=": -10.540567, "useAutolayout": -9.847420, "useAutolayout=": -9.847420, "useDefault": -6.851687, "useDefault=": -6.851687, "useSourceRendition=": -8.237982, "useTraitCollections": -9.847420, "useTraitCollections=": -9.847420, "used": -7.405073, "useful": -9.847420, "user": -9.441955, "userLabel": -9.847420, "userLabel=": -9.847420, "users": -9.441955, "users.": -9.847420, "uses": -9.847420, "using": -8.055660, "usually": -10.540567, "ut": -8.594657, "util": -9.847420, "uuid": -9.847420, "ux": -8.343342, "v": -6.533234, "v/": -9.847420, "v/WeP": -10.540567, "v3": -10.540567, "v4": -10.540567, "vA": -10.540567, "vAXxPEe": -10.540567, "vAwaQJ": -10.540567, "vCbChH": -10.540567, "vGNxeEilWMVSVSM": -10.540567, "vGTAulhguppjof": -10.540567, "vH": -10.540567, "vHlxrq": -10.540567, "vI": -10.540567, "vIEt/cM": -10.540567, "vIwLBI": -10.540567, "vKYSA": -10.540567, "vM": -10.540567, "vMYWA/O": -10.540567, "vMsUnNiwaZQ": -10.540567, "vOu": -10.540567, "vPMkEZ": -10.540567, "vRtiqctC": -10.540567, "vT": -10.540567, "vUsDiKsHQjCCQga": -10.540567, "vVSsiZ": -10.540567, "vXfz": -10.540567, "vXzZjkiQhkvGhPBQHKZwAMwKAHg": -10.540567, "vZ": -10.540567, "vZYgeYJJhHW": -10.540567, "val": -9.154273, "validation": -10.540567, "value": -6.183858, "value.": -9.441955, "value=": -7.321691, "valueName": -10.540567, "valueName=": -10.540567, "valueType": -8.055660, "valueType=": -8.055660, "values": -9.154273, "varables": -10.540567, "variable": -4.884575, "variable=": -7.014206, "variant": -10.540567, "variation": -10.540567, "various": -9.441955, "varius": -8.594657, "vb": -9.154273, "vbproj": -9.441955, "vbproj_sample": -10.540567, "vbproj_sample.Module": -10.540567, "vc": -10.540567, "vc/": -10.540567, "vcK": -10.540567, "vcxprojsample": -10.540567, "veP": -10.540567, "veTEzXm": -10.540567, "vendors": -10.540567, "version": -6.158540, "version=": -7.074831, "versions": -9.441955, "vertical": -7.707354, "very": -9.154273, "vfFznwktzPqsavY": -10.540567, "vfd": -10.540567, "vfiHRCyjB": -10.540567, "vgmY": -10.540567, "vhkEq": -10.540567, "via": -8.461125, "view": -9.441955, "viewed": -10.540567, "vinFLQX": -10.540567, "virtue": -10.540567, "visibility": -9.847420, "visibility=": -9.847420, "viverra": -8.055660, "vjQBReWVkZGRsZGRlbWVkZOXY": -10.540567, "vjQBTePyV": -10.540567, "vjQBjdPyU": -10.540567, "vlm": -10.540567, "vmsD": -10.540567, "vn": -10.540567, "vols": -9.154273, "vote": -9.847420, "votes": -9.847420, "voting": -10.540567, "voypwiHgurVx": -10.540567, "vpCG": -10.540567, "vpREjLn": -10.540567, "vqg": -10.540567, "vr": -9.847420, "vrUBSenKyMjI": -10.540567, "vsArRsRicf": -10.540567, "vsmuestt": -10.540567, "vss": -10.540567, "vstemplate": -10.540567, "vsx": -10.540567, "vuoyvzmGMiOOz": -10.540567, "vv": -10.540567, "vw": -10.540567, "vyLgwIGCgIAAEwMD": -10.540567, "vydxC": -10.540567, "vzheDplJC": -10.540567, "w": -8.461125, "w3": -8.748807, "wASqnIuKNk": -10.540567, "wAr": -10.540567, "wBMXUFQeC": -10.540567, "wDlGEwr": -10.540567, "wGPIJOT": -10.540567, "wHlq": -10.540567, "wJ/ZSrfUYvujCO": -10.540567, "wL": -10.540567, "wLbjO": -10.540567, "wLhpRvLWN": -10.540567, "wMyHwZuLyPqNiEdDgktJh": -10.540567, "wNVjJjsNvLuLpXxIpX": -10.540567, "wP/xAiRtD": -10.540567, "wQdaKa": -10.540567, "wR": -10.540567, "wSmTBDT": -10.540567, "wV": -10.540567, "wWoVRVrgzoehU": -10.540567, "wXmwjz": -10.540567, "waUQPvZL": -10.540567, "wait": -9.441955, "want": -9.847420, "warranties": -9.847420, "was": -8.748807, "wav": -10.540567, "wavy": -10.540567, "way": -9.154273, "way.": -9.847420, "ways": -10.540567, "wbIj/bkvASQnoLQIZTzzZTiFAjgDjHGOMey": -10.540567, "wbtdSCr": -10.540567, "wcjoHkb": -10.540567, "wcksN": -10.540567, "wdX": -10.540567, "we": -9.441955, "web": -8.594657, "webkit": -9.847420, "webpage": -9.847420, "weight": -7.707354, "well": -9.847420, "weoXiCRUQ": -10.540567, "were": -10.540567, "what": -10.540567, "when": -6.851687, "whenever": -7.650195, "where": -8.748807, "whether": -9.847420, "which": -7.596128, "who": -9.847420, "whom": -10.540567, "whose": -8.594657, "wide": -9.847420, "width": -6.463029, "width=": -7.139370, "will": -6.171119, "with": -6.480124, "withDelay": -9.847420, "without": -9.847420, "wkFxqMdK/qYrQJdEzVlJHIWYpyAkqnRovnaKkMWL": -10.540567, "wmnu/": -10.540567, "wn": -10.540567, "wnrz": -10.540567, "work": -8.748807, "working": -10.540567, "works": -9.847420, "would": -9.441955, "wpa": -10.540567, "wqJsqBJm": -10.540567, "write": -9.847420, "writing": -10.540567, "www": -8.461125, "www.flaticon.com": -10.540567, "wxGQ": -10.540567, "wxLE": -10.540567, "wyZk/WnQnrvJ": -10.540567, "wyubKS": -10.540567, "wzi": -10.540567, "x": -7.362513, "x.Foo.Bar.Baz": -10.540567, "x.SomeProperty": -10.540567, "x86": -9.847420, "x=": -10.540567, "xBmNE": -10.540567, "xD": -10.540567, "xGWMbJUgLfsodkbX": -10.540567, "xGhLjKOYPiWT": -10.540567, "xHyBC": -10.540567, "xIIomuHUb": -10.540567, "xISBEglOD": -10.540567, "xJVS": -10.540567, "xLMYEksMbfC/HuP": -10.540567, "xNUz": -10.540567, "xNgu": -10.540567, "xPzSg": -10.540567, "xRMIPrgFxpHk": -10.540567, "xSiCcE": -10.540567, "xTS": -10.540567, "xVr": -10.540567, "xZ": -10.540567, "xZ/": -10.540567, "xZwEifOrBKU": -10.540567, "xeqPPgT": -10.540567, "xg": -10.540567, "xgvRzNqvLuaUQ": -10.540567, "xiMlp": -10.540567, "xj": -10.540567, "xlQ": -10.540567, "xldbWJQhHy": -10.540567, "xml": -6.648747, "xmlns": -6.366180, "xmlns=": -7.707354, "xnodpQZVmmKBq": -10.540567, "xo": -10.540567, "xq/Wgox": -10.540567, "xrHUo": -10.540567, "xs": -8.931129, "xsd": -8.931129, "xsi": -9.154273, "xsl": -9.154273, "xslt": -9.847420, "y": -7.901510, "y=": -10.540567, "yBOS": -10.540567, "yBR": -10.540567, "yD": -10.540567, "yDfywLBX": -10.540567, "yEDAJpH": -10.540567, "yEomdRCKRtVUvVUsz": -10.540567, "yGYC": -10.540567, "yHCCvg": -10.540567, "yHX": -10.540567, "yHezIeUfUZx": -10.540567, "yHfvHFPtdiuZliL": -10.540567, "yI": -10.540567, "yIzwQKVJgErfUmsakwnM": -10.540567, "yJ": -10.540567, "yLg": -10.540567, "yMbo": -10.540567, "yNYO": -10.540567, "yPI": -10.540567, "yR": -10.540567, "yRxC": -10.540567, "yTIZ": -10.540567, "yWRMvTUGcg": -10.540567, "yWv": -10.540567, "yXTlE": -10.540567, "yZPga": -10.540567, "yZjEUwInD": -10.540567, "yajiP": -10.540567, "ycGd": -10.540567, "ycMBoYaFgaGBhoGGoYaGgZN": -10.540567, "yczOTDKT": -10.540567, "ydCZeUukbYtNWDnituXUrrwjcUZOB": -10.540567, "ye": -10.540567, "years": -9.847420, "yfb": -10.540567, "ylcC": -10.540567, "ym": -10.540567, "ymQrynjqSXeLQCOCG/bpR": -10.540567, "yoBcGAg": -10.540567, "you": -7.282470, "your": -7.173271, "ypvKVMnI": -10.540567, "yr": -10.540567, "ysrURWYpFIJBKLRJJTVZsUQcKKTajZEAQhCBIqmrSCpAiSIhCfQFQgKk": -10.540567, "yt": -10.540567, "yufHKmkiiheTIUMnEk": -10.540567, "ywkAgRd": -10.540567, "yx": -9.847420, "yzo": -10.540567, "z": -8.343342, "zA": -10.540567, "zC": -10.540567, "zD": -10.540567, "zIdGX": -10.540567, "zLfjfXMXUipklk": -10.540567, "zLuxyR": -10.540567, "zMV/": -10.540567, "zQN": -10.540567, "zQxmED": -10.540567, "zUyM": -10.540567, "zV": -10.540567, "zVATM": -10.540567, "zWlZb": -10.540567, "zZPRfOJagN": -10.540567, "zaTX": -10.540567, "zauhiEvMOy": -10.540567, "zcDuhpOynFWhwP": -10.540567, "zcUTqrSK": -10.540567, "zdAcqI": -10.540567, "zdbBVnXZDb": -10.540567, "zeaE": -10.540567, "zero": -10.540567, "zfTnvfO/cMErAQxjpINkbUKd": -10.540567, "zh": -10.540567, "zi": -10.540567, "zip": -10.540567, "zkw": -10.540567, "zl": -10.540567, "zmJmgFn/": -10.540567, "zmkIb": -10.540567, "zn": -10.540567, "zoTPLVy": -10.540567, "zpC": -10.540567, "zq": -10.540567, "zqRfBsr": -10.540567, "zstcuAu": -10.540567, "zszOzL": -10.540567, "zt": -10.540567, "zvmeJKzcDAxRqoRSK": -10.540567, "zwh": -10.540567, "zwr": -10.540567, "zyBe": -10.540567, "zytUAlydFzDXJeIGGBsgbByC": -10.540567, "zyv": -10.540567, "{": -8.594657, "}": -8.594657, "ê": -9.154273, "ó": -9.847420, "ö": -9.847420, "ü": -9.847420, "–": -9.154273, "‘": -10.540567, "’": -10.540567, "“": -10.540567, "”": -10.540567, "⚊": -10.540567, "\ufeff": -8.461125, }, "XPages": map[string]float64{ ",": -3.508556, "-": -3.508556, "//www.ibm.com/xsp/custom": -5.117994, "/navbar.xsp": -5.117994, ":": -5.117994, ";": -5.117994, "</addedtofile>": -5.117994, "</component-type>": -5.117994, "</composite-component>": -5.117994, "</composite-extension>": -5.117994, "</composite-file>": -5.117994, "</composite-name>": -5.117994, "</created>": -5.117994, "</datetime>": -3.508556, "</default-prefix>": -5.117994, "</designer-extension>": -5.117994, "</faces-config-extension>": -5.117994, "</faces-config>": -5.117994, "</in-palette>": -5.117994, "</item>": -3.731699, "</lastaccessed>": -5.117994, "</modified>": -5.117994, "</name>": -4.424847, "</namespace-uri>": -5.117994, "</note>": -5.117994, "</noteinfo>": -5.117994, "</revised>": -5.117994, "</text>": -3.731699, "</updatedby>": -5.117994, "</wassignedby>": -5.117994, "<?xml>": -4.424847, "<addedtofile>": -5.117994, "<component-type>": -5.117994, "<composite-component>": -5.117994, "<composite-extension>": -5.117994, "<composite-file>": -5.117994, "<composite-name>": -5.117994, "<created>": -5.117994, "<datetime>": -3.508556, "<default-prefix>": -5.117994, "<designer-extension>": -5.117994, "<faces-config-extension>": -5.117994, "<faces-config>": -5.117994, "<in-palette>": -5.117994, "<item>": -3.731699, "<lastaccessed>": -5.117994, "<modified>": -5.117994, "<name>": -4.424847, "<namespace-uri>": -5.117994, "<note>": -5.117994, "<noteinfo>": -5.117994, "<revised>": -5.117994, "<text>": -3.731699, "<updatedby>": -5.117994, "<wassignedby>": -5.117994, "=": -2.073471, ">": -3.038552, "?": -4.424847, "CN": -4.424847, "Eric": -3.731699, "McCormick": -4.424847, "McCormick/O": -4.424847, "T": -3.508556, "class": -5.117994, "encoding": -4.424847, "encoding=": -4.424847, "gC": -5.117994, "http": -5.117994, "maintenanceversion": -5.117994, "maintenanceversion=": -5.117994, "name": -3.731699, "navbar": -4.424847, "navbar.xsp": -4.424847, "noteid": -5.117994, "replicaid": -5.117994, "replicaid=": -5.117994, "sequence": -5.117994, "sequence=": -5.117994, "sign": -5.117994, "sign=": -5.117994, "true": -5.117994, "unid": -5.117994, "unid=": -5.117994, "version": -4.019382, "version=": -5.117994, "xc": -5.117994, "xmlns": -5.117994, "xmlns=": -5.117994, "~": -5.117994, }, "XProc": map[string]float64{ "!": -3.891820, "/": -3.891820, ":": -3.198673, "</doc>": -3.891820, "</p:declare-step>": -3.891820, "</p:inline>": -3.891820, "</p:input>": -3.891820, "<?xml>": -3.891820, "<doc>": -3.891820, "<p:declare-step>": -3.891820, "<p:identity/>": -3.891820, "<p:inline>": -3.891820, "<p:input>": -3.891820, "<p:output>": -3.891820, "=": -1.945910, ">": -2.505526, "?": -3.891820, "Hello": -3.891820, "c": -3.198673, "encoding": -3.891820, "encoding=": -3.891820, "http": -3.891820, "ns": -3.891820, "org": -3.891820, "p": -3.891820, "port": -3.198673, "step": -3.891820, "version": -3.198673, "version=": -3.891820, "w3": -3.891820, "world": -3.891820, "www": -3.891820, "xmlns": -2.793208, "xproc": -3.891820, }, "XQuery": map[string]float64{ "$": -3.360809, "(": -3.188959, ")": -3.330038, ",": -4.747104, "-": -0.665338, ":": -2.578050, ";": -3.607669, "</dummy>": -6.826545, "</namespace>": -6.826545, "<dummy>": -6.826545, "<namespace>": -6.826545, "=": -3.530708, ">": -6.826545, "AST": -6.133398, "I": -6.826545, "II": -6.826545, "III": -6.826545, "STEP": -5.727933, "all": -6.826545, "and": -5.727933, "ast": -6.826545, "at": -5.440251, "bindings": -6.133398, "boundary": -6.826545, "c": -6.826545, "catch": -6.826545, "choose": -6.826545, "const": -6.826545, "contains": -6.826545, "control": -6.826545, "core": -6.826545, "declare": -3.648491, "declared": -6.826545, "dflag": -6.826545, "each": -6.826545, "element": -6.826545, "encoding": -6.826545, "entry": -6.133398, "enum": -5.727933, "err": -6.826545, "eval": -5.727933, "eval_result": -6.826545, "explicit": -5.727933, "for": -6.826545, "function": -5.727933, "functions": -6.826545, "functions.": -6.826545, "group": -6.826545, "import": -5.440251, "imports": -6.826545, "let": -5.034786, "library": -6.826545, "list": -6.826545, "module": -5.034786, "name": -6.133398, "namespace": -4.747104, "namespaces": -5.217107, "ns": -6.826545, "option": -6.826545, "options": -6.133398, "output": -6.826545, "p": -6.133398, "parse": -4.747104, "parse/*": -6.826545, "parse/@*": -6.826545, "pipeline": -4.747104, "point": -6.826545, "points": -6.826545, "preprocess": -6.826545, "preserve": -6.826545, "primary": -6.826545, "results": -6.826545, "return": -6.133398, "run": -6.133398, "run#": -6.826545, "saxon": -6.826545, "serialize": -6.826545, "serialized_result": -6.133398, "sort": -6.826545, "space": -6.826545, "stdin": -6.826545, "step": -5.217107, "tflag": -6.826545, "try": -6.826545, "type": -6.826545, "u": -6.133398, "util": -6.826545, "validate": -6.826545, "variable": -4.261596, "version": -6.826545, "viewport": -6.826545, "xproc": -3.993332, "xproc.xqm": -6.826545, "xqm": -6.826545, "xquery": -6.826545, "{": -5.217107, "}": -5.217107, }, "XS": map[string]float64{ "!": -4.526848, "#define": -5.848604, "#endif": -6.541751, "#error": -7.234898, "#if": -6.541751, "#include": -5.625461, "&": -7.234898, "(": -2.191473, ")": -2.191473, "*buffer": -6.136286, "*class_name": -7.234898, "*cv": -7.234898, "*file": -7.234898, "*from": -7.234898, "*iter": -5.625461, "*new_obj": -7.234898, "*new_parent": -7.234898, "*node": -4.595841, "*obj": -5.848604, "*old_node": -6.541751, "*old_parent": -6.541751, "*other": -7.234898, "*package": -5.037674, "*parent": -7.234898, "*parser": -6.136286, "*perl_io": -7.234898, "*root": -7.234898, "*stash": -7.234898, "*stream": -7.234898, "*string": -6.136286, "*sub_name": -7.234898, "*sv": -7.234898, "*to": -7.234898, "*value": -7.234898, "*var_name": -7.234898, "+": -6.541751, ",": -3.450709, ":": -3.227565, ";": -2.552767, "<": -6.541751, "<cmark.h>": -7.234898, "<stdlib.h>": -7.234898, "<wellnhofer@aevum.de>": -7.234898, "=": -2.986403, "BOOT": -7.234898, "CMARK_EVENT_DONE": -7.234898, "CMARK_VERSION": -6.136286, "CMARK_VERSION_STRING": -6.541751, "CODE": -4.595841, "CV": -7.234898, "CommonMark": -5.155457, "CvGV": -5.848604, "DESTROY": -6.136286, "DISABLE": -7.234898, "FILE": -7.234898, "GIMME_V": -7.234898, "GV_ADD": -7.234898, "G_ARRAY": -6.541751, "GvNAME": -5.848604, "HV": -7.234898, "HV*": -7.234898, "I": -7.234898, "INIT": -6.136286, "INT": -7.234898, "INTERFACE": -5.288988, "IV": -6.136286, "IoIFP": -7.234898, "Iterator": -7.234898, "MODULE": -5.848604, "NO_INIT": -5.037674, "NO_OUTPUT": -6.136286, "NULL": -6.136286, "Node": -7.234898, "OUTPUT": -4.932313, "PACKAGE": -5.848604, "PERL_NO_GET_CONTEXT": -7.234898, "PERL_VERSION": -7.234898, "PL_sv_objcount": -7.234898, "PL_sv_undef": -7.234898, "POSTCALL": -5.848604, "PPCODE": -7.234898, "PREFIX": -5.848604, "PREINIT": -5.155457, "PROTOTYPES": -7.234898, "PTR": -6.541751, "Parser": -7.234898, "PerlIO": -7.234898, "PerlIO_findFILE": -7.234898, "RETVAL": -4.099404, "ST": -6.136286, "STRLEN": -5.848604, "SV": -4.290459, "SV*": -5.848604, "SVt_PVMG": -7.234898, "S_create_or_incref_node_sv": -5.625461, "S_decref_node_sv": -5.155457, "S_node": -7.234898, "S_sv": -7.234898, "S_transfer_refcount": -5.848604, "SvIV": -7.234898, "SvOBJECT_on": -7.234898, "SvPVutf": -6.136286, "SvREFCNT_dec_NN": -7.234898, "SvREFCNT_inc": -7.234898, "SvREFCNT_inc_simple_void_NN": -6.541751, "SvROK": -7.234898, "SvRV": -7.234898, "SvSTASH_set": -7.234898, "SvUPGRADE": -7.234898, "XSRETURN": -6.136286, "XSRETURN_EMPTY": -7.234898, "aTHX_": -4.595841, "break": -7.234898, "buffer": -5.443139, "c": -7.234898, "char": -5.288988, "char*": -5.625461, "class_name": -6.541751, "cmark_": -7.234898, "cmark_compile_time_version": -7.234898, "cmark_compile_time_version_string": -7.234898, "cmark_event_type": -6.136286, "cmark_iter": -5.625461, "cmark_iter*": -7.234898, "cmark_iter_": -7.234898, "cmark_iter_free": -7.234898, "cmark_iter_get_event_type": -7.234898, "cmark_iter_get_node": -5.625461, "cmark_iter_get_root": -7.234898, "cmark_iter_new": -7.234898, "cmark_iter_next": -6.541751, "cmark_iter_reset": -7.234898, "cmark_markdown_to_html": -6.541751, "cmark_node": -4.056845, "cmark_node*": -5.443139, "cmark_node_": -7.234898, "cmark_node_append_child": -7.234898, "cmark_node_first_child": -7.234898, "cmark_node_free": -7.234898, "cmark_node_get_end_column": -7.234898, "cmark_node_get_end_line": -7.234898, "cmark_node_get_fence_info": -7.234898, "cmark_node_get_header_level": -7.234898, "cmark_node_get_list_delim": -7.234898, "cmark_node_get_list_start": -7.234898, "cmark_node_get_list_tight": -7.234898, "cmark_node_get_list_type": -7.234898, "cmark_node_get_literal": -7.234898, "cmark_node_get_start_column": -7.234898, "cmark_node_get_start_line": -7.234898, "cmark_node_get_title": -7.234898, "cmark_node_get_type": -7.234898, "cmark_node_get_type_string": -7.234898, "cmark_node_get_url": -7.234898, "cmark_node_get_user_data": -6.541751, "cmark_node_insert_after": -7.234898, "cmark_node_insert_before": -7.234898, "cmark_node_last_child": -7.234898, "cmark_node_new": -7.234898, "cmark_node_next": -7.234898, "cmark_node_parent": -5.443139, "cmark_node_prepend_child": -7.234898, "cmark_node_previous": -7.234898, "cmark_node_render_html": -6.541751, "cmark_node_render_man": -6.541751, "cmark_node_render_xml": -6.541751, "cmark_node_set_fence_info": -7.234898, "cmark_node_set_header_level": -7.234898, "cmark_node_set_list_delim": -7.234898, "cmark_node_set_list_start": -7.234898, "cmark_node_set_list_tight": -7.234898, "cmark_node_set_list_type": -7.234898, "cmark_node_set_literal": -7.234898, "cmark_node_set_title": -7.234898, "cmark_node_set_url": -7.234898, "cmark_node_set_user_data": -6.541751, "cmark_node_type": -7.234898, "cmark_node_unlink": -7.234898, "cmark_parse_document": -6.541751, "cmark_parse_file": -6.541751, "cmark_parser": -6.136286, "cmark_parser*": -7.234898, "cmark_parser_": -7.234898, "cmark_parser_feed": -6.541751, "cmark_parser_finish": -7.234898, "cmark_parser_free": -7.234898, "cmark_parser_new": -6.541751, "cmark_render_html": -7.234898, "cmark_render_man": -7.234898, "cmark_render_xml": -7.234898, "cmark_version": -6.136286, "cmark_version_string": -6.136286, "const": -4.932313, "croak": -5.443139, "cv": -5.848604, "else": -5.848604, "ev_type": -5.625461, "event_type": -6.541751, "file": -6.541751, "from": -6.541751, "gimme": -5.848604, "gv_stashpvn": -7.234898, "if": -4.290459, "int": -5.288988, "interface_get_int": -7.234898, "interface_get_node": -7.234898, "interface_get_utf": -7.234898, "interface_move_node": -7.234898, "interface_render": -7.234898, "interface_set_int": -7.234898, "interface_set_utf": -7.234898, "io": -7.234898, "is": -7.234898, "iter": -5.155457, "iterator": -7.234898, "len": -4.837003, "libcmark": -7.234898, "long": -7.234898, "mortal": -6.136286, "new": -7.234898, "newRV_noinc": -6.541751, "newSViv": -6.136286, "new_obj": -5.625461, "new_parent": -6.541751, "node": -4.190376, "obj": -4.401685, "old_node": -5.288988, "old_parent": -5.848604, "options": -7.234898, "other": -6.541751, "pTHX_": -5.625461, "package": -4.344527, "parent": -6.541751, "parser": -6.541751, "perl_io": -6.136286, "required.": -7.234898, "return": -5.625461, "stash": -6.541751, "static": -5.625461, "stream": -6.136286, "string": -5.625461, "sub_name": -7.234898, "sv": -5.848604, "sv_": -5.848604, "sv_derived_from_pvn": -7.234898, "to": -6.541751, "type": -6.136286, "value": -7.234898, "var_name": -7.234898, "void": -4.344527, "void*": -6.541751, "warn": -7.234898, "while": -7.234898, "{": -3.867603, "||": -7.234898, "}": -3.867603, }, "XSLT": map[string]float64{ "/": -3.663562, "/h": -4.356709, "1999": -4.356709, ":": -4.356709, "<": -3.663562, "</body>": -4.356709, "</html>": -4.356709, "</table>": -4.356709, "</td>": -3.663562, "</th>": -3.663562, "</tr>": -3.663562, "</xsl:for-each>": -4.356709, "</xsl:stylesheet>": -4.356709, "</xsl:template>": -4.356709, "<?xml>": -4.356709, "<body>": -4.356709, "<html>": -4.356709, "<table>": -4.356709, "<td>": -3.663562, "<th>": -3.663562, "<tr>": -3.663562, "<xsl:for-each>": -4.356709, "<xsl:stylesheet>": -4.356709, "<xsl:template>": -4.356709, "<xsl:value-of>": -3.663562, "=": -2.159484, ">": -2.054124, "?": -4.356709, "Artist": -4.356709, "CD": -4.356709, "Collection": -4.356709, "My": -4.356709, "Title": -4.356709, "Transform": -4.356709, "XSL": -4.356709, "bgcolor": -4.356709, "border": -4.356709, "h": -4.356709, "http": -4.356709, "match": -4.356709, "org": -4.356709, "select": -3.258097, "version": -3.663562, "w3": -4.356709, "www": -4.356709, "xmlns": -3.663562, "xsl": -3.663562, }, "Xojo": map[string]float64{ "#Tag": -5.462135, "#tag": -2.594237, "&": -7.071573, "(": -5.125663, ")": -5.125663, "+": -5.462135, ",": -3.670376, "-": -4.432516, "=": -1.263431, "AboutItem": -7.071573, "Action": -7.071573, "App": -7.071573, "AppleMenuItem": -7.071573, "Application": -7.071573, "As": -5.685279, "AutoDeactivate": -7.071573, "AutoEnable": -4.506624, "BackColor": -7.071573, "Backdrop": -7.071573, "Begin": -3.936079, "BillingReport": -7.071573, "Body": -7.071573, "Bold": -7.071573, "ButtonStyle": -7.071573, "Cancel": -7.071573, "Caption": -5.972961, "Class": -5.972961, "CloseButton": -7.071573, "Compatibility": -6.378426, "Composite": -7.071573, "Constant": -5.972961, "Default": -4.874349, "Definition": -5.462135, "Dim": -5.972961, "Dynamic": -5.972961, "EditClear": -7.071573, "EditCopy": -7.071573, "EditCut": -7.071573, "EditMenu": -7.071573, "EditPaste": -7.071573, "EditSelectAll": -7.071573, "EditSeparator": -6.378426, "EditUndo": -7.071573, "EditorType": -4.432516, "Else": -6.378426, "Enabled": -7.071573, "End": -3.775736, "EndClass": -7.071573, "EndConstant": -5.972961, "EndEnumValues": -6.378426, "EndEvent": -7.071573, "EndEvents": -7.071573, "EndMenu": -7.071573, "EndReport": -7.071573, "EndReportCode": -7.071573, "EndToolbar": -7.071573, "EndViewBehavior": -6.378426, "EndViewProperty": -3.739369, "EndWindow": -7.071573, "EndWindowCode": -7.071573, "EnumValues": -6.378426, "Event": -7.071573, "Events": -7.071573, "False": -4.432516, "FileMenu": -7.071573, "FileQuit": -7.071573, "FirstItem": -7.071573, "FolderItem": -7.071573, "For": -7.071573, "Frame": -7.071573, "FullScreen": -7.071573, "FullScreenButton": -7.071573, "GetFolderItem": -7.071573, "Group": -3.739369, "HasBackColor": -7.071573, "Height": -5.462135, "HelloWorldButton": -6.378426, "HelpTag": -5.972961, "If": -5.685279, "ImplicitInstance": -7.071573, "Index": -4.432516, "Inherits": -7.071573, "InitialParent": -7.071573, "InitialValue": -3.936079, "Instance": -5.462135, "Integer": -6.378426, "Italic": -7.071573, "Language": -5.462135, "Left": -7.071573, "Linux": -6.378426, "LiveResize": -7.071573, "LockBottom": -7.071573, "LockLeft": -7.071573, "LockRight": -7.071573, "LockTop": -7.071573, "LockedInPosition": -7.071573, "Mac": -7.071573, "MacProcID": -7.071573, "MainMenuBar": -7.071573, "MaxHeight": -7.071573, "MaxWidth": -7.071573, "MaximizeButton": -7.071573, "Menu": -6.378426, "MenuBar": -7.071573, "MenuBarVisible": -7.071573, "MenuItem": -4.673678, "MenuModifier": -5.462135, "MinHeight": -7.071573, "MinWidth": -7.071573, "MinimizeButton": -7.071573, "MsgBox": -5.972961, "MyToolbar": -7.071573, "Name": -3.637586, "New": -7.071573, "Next": -7.071573, "OS": -7.071573, "PageFooter": -7.071573, "PageHeader": -7.071573, "Placement": -7.071573, "Platform": -5.462135, "Protected": -7.071573, "Public": -5.972961, "PushButton": -7.071573, "QuitMenuItem": -7.071573, "Report": -6.378426, "ReportCode": -7.071573, "Resizeable": -7.071573, "SQLiteDatabase": -7.071573, "Scope": -5.685279, "SecondItem": -7.071573, "Shortcut": -5.279814, "ShortcutKey": -5.279814, "SpecialMenu": -4.506624, "Str": -7.071573, "String": -5.972961, "Style": -6.378426, "Sub": -6.378426, "TabIndex": -7.071573, "TabPanelIndex": -7.071573, "TabStop": -7.071573, "Text": -4.506624, "TextFont": -7.071573, "TextSize": -7.071573, "TextUnit": -7.071573, "Then": -7.071573, "Title": -7.071573, "To": -7.071573, "ToolButton": -6.378426, "Toolbar": -6.378426, "Top": -7.071573, "True": -3.242932, "Type": -3.545213, "Underline": -7.071573, "Units": -7.071573, "UntitledSeparator": -7.071573, "ViewBehavior": -6.378426, "ViewProperty": -3.739369, "Visible": -3.358001, "Width": -5.972961, "Window": -5.972961, "WindowCode": -7.071573, "Windows": -6.378426, "\\": -4.992132, "_": -7.071573, "cFFFFFF": -7.071573, "db": -7.071573, "db.Commit": -7.071573, "db.Connect": -7.071573, "db.DatabaseFile": -7.071573, "db.Error": -7.071573, "db.ErrorMessage": -6.378426, "db.Rollback": -7.071573, "db.SQLExecute": -6.378426, "dbFile": -5.972961, "i": -6.378426, "kEditClear": -7.071573, "kFileQuit": -7.071573, "kFileQuitShortcut": -7.071573, "then": -7.071573, "total": -5.685279, "true": -3.813477, }, "Xtend": map[string]float64{ "!": -5.953243, "(": -2.239671, ")": -2.239671, "*": -5.953243, "+": -4.161484, ",": -2.621039, "-": -4.566949, "..": -5.953243, ".contains": -5.953243, ".head": -5.953243, ".iterator": -5.260096, ".last.year": -5.953243, ".length": -5.953243, ".map": -5.953243, ".readLines.map": -5.953243, ".reduce": -5.953243, ".size": -5.260096, ".sortBy": -5.953243, ".take": -5.953243, ":": -3.756019, "<String>": -5.953243, "=": -3.180655, ">": -4.566949, "@Data": -5.953243, "@Test": -4.007333, "BasicExpressions": -5.260096, "Double": -5.953243, "FileReader": -5.953243, "Integer": -5.953243, "Long": -5.953243, "Movie": -5.260096, "Movies": -5.953243, "Number": -5.953243, "Object": -5.953243, "Set": -5.953243, "String": -5.260096, "[": -3.756019, "]": -3.756019, "_": -5.953243, "a": -5.260096, "assertEquals": -3.314186, "b": -5.260096, "bd": -4.854631, "categories": -5.953243, "categories.contains": -5.953243, "class": -4.854631, "collections": -5.953243, "com.google.common.io.CharStreams.*": -5.953243, "controlStructures": -5.953243, "counter": -3.873802, "def": -4.007333, "double": -5.953243, "example": -5.260096, "extension": -5.953243, "false": -5.953243, "for": -5.953243, "getClass": -5.953243, "i": -4.566949, "ies": -5.953243, "if": -5.953243, "import": -4.007333, "int": -5.953243, "it": -5.953243, "iterator": -5.953243, "iterator.hasNext": -5.953243, "iterator.next": -5.953243, "java.io.FileReader": -5.953243, "java.util.Set": -5.953243, "line": -5.953243, "line.split": -5.953243, "list": -5.953243, "list.map": -5.953243, "literals": -5.953243, "long": -5.260096, "loops": -5.953243, "map": -5.953243, "map.get": -5.953243, "movies": -4.854631, "movies.filter": -5.260096, "movies.sortBy": -5.953243, "new": -5.260096, "newArrayList": -5.260096, "newHashMap": -5.953243, "newHashSet": -5.953243, "numberOfActionMovies": -5.953243, "numberOfVotes": -5.260096, "org.junit.Assert.*": -5.260096, "org.junit.Test": -5.260096, "package": -5.260096, "parseDouble": -5.953243, "parseInt": -5.953243, "parseLong": -5.953243, "rating": -4.854631, "return": -5.953243, "segments": -5.953243, "segments.next": -4.566949, "segments.toSet": -5.953243, "set": -5.953243, "set.filter": -5.953243, "someValue": -5.260096, "static": -4.854631, "sumOfVotesOfTop": -5.953243, "switch": -5.953243, "title": -5.953243, "toUpperCase": -5.953243, "true": -5.953243, "typeof": -5.953243, "val": -3.756019, "var": -5.953243, "void": -4.007333, "while": -5.953243, "year": -5.260096, "yearOfBestMovieFrom": -5.953243, "{": -3.314186, "|": -5.260096, "}": -3.388294, }, "YAML": map[string]float64{ "#": -6.313548, "$": -5.214936, "%": -6.313548, "&": -6.313548, "(": -3.605498, ")": -3.605498, "*": -4.704110, "+": -4.704110, ",": -6.313548, "-": -2.154665, ".": -6.313548, ".*": -5.620401, "...": -6.313548, "//example.com/": -6.313548, "/home/gavin/.rubygems": -6.313548, "/usr/local/rubygems": -6.313548, ":": -1.493266, ";": -6.313548, "=": -5.620401, "?": -5.620401, "A": -6.313548, "Ansible": -6.313548, "B": -6.313548, "C": -5.214936, "Console": -6.313548, "Content": -5.620401, "DisableFormat": -6.313548, "EEE": -6.313548, "F": -6.313548, "G": -6.313548, "GMT": -6.313548, "Hex": -6.313548, "Inspect": -6.313548, "Length": -6.313548, "Nov": -6.313548, "OK": -6.313548, "R": -5.620401, "This": -6.313548, "Tue": -6.313548, "Type": -6.313548, "VCR": -6.313548, "YAML": -6.313548, "Z_": -6.313548, "[": -4.367638, "\\": -3.055452, "]": -4.367638, "^": -4.521789, "_general_ci": -5.214936, "a": -5.620401, "adapter": -5.214936, "ae": -5.620401, "b": -5.620401, "bec": -6.313548, "begin": -5.620401, "beginCaptures": -6.313548, "body": -5.214936, "captures": -4.521789, "charset": -6.313548, "children": -6.313548, "code": -6.313548, "collation": -5.214936, "comment.line.number": -5.620401, "console": -5.214936, "constant.other.ansible": -6.313548, "contentName": -6.313548, "contexts": -6.313548, "data.inspect": -6.313548, "database": -5.214936, "e": -6.313548, "encoding": -5.214936, "end": -6.313548, "f": -6.313548, "false": -5.214936, "fileTypes": -5.620401, "file_extensions": -6.313548, "gem": -6.313548, "gempath": -6.313548, "gen": -6.313548, "get": -6.313548, "git": -6.313548, "gitlabhq_development": -6.313548, "gitlabhq_production": -6.313548, "gitlabhq_test": -6.313548, "headers": -5.620401, "hidden": -6.313548, "http": -6.313548, "http_version": -6.313548, "include": -5.214936, "info.inspect": -6.313548, "inline": -6.313548, "is": -6.313548, "item.inspect": -5.620401, "keyEquivalent": -6.313548, "keyword.other.ansible": -6.313548, "keyword.title": -6.313548, "keyword.title.inspect": -6.313548, "line": -6.313548, "local": -6.313548, "main": -6.313548, "match": -4.010963, "mb": -4.521789, "message": -6.313548, "meta_scope": -5.620401, "method": -6.313548, "mysql": -5.214936, "n": -6.313548, "name": -3.540959, "numbers": -6.313548, "password": -5.214936, "patterns": -4.927254, "pool": -5.214936, "pop": -5.620401, "punctuation.definition.comment.line.ansible": -6.313548, "punctuation.inspect": -6.313548, "punctuation.section.embedded.r": -6.313548, "push": -5.620401, "rdoc": -5.620401, "reconnect": -5.214936, "recorded_at": -6.313548, "recorded_with": -6.313548, "request": -6.313548, "response": -5.620401, "root": -5.620401, "run": -6.313548, "s": -6.313548, "s*": -6.313548, "scope": -5.620401, "scopeName": -5.620401, "self": -6.313548, "sign.ansible": -5.620401, "source": -6.313548, "source.ansible": -6.313548, "source.inspect": -6.313548, "source.r": -5.620401, "source.r.embedded.r": -6.313548, "status": -6.313548, "storage.type.ansible": -6.313548, "string.other.ansible": -6.313548, "string.quoted.double.ansible": -5.620401, "support.function.key.inspect": -6.313548, "support.function.punctuation.inspect": -6.313548, "test": -5.620401, "tests": -6.313548, "text/html": -6.313548, "the": -6.313548, "title": -6.313548, "true": -4.927254, "uri": -6.313548, "username": -5.214936, "utf": -4.367638, "uuid": -5.620401, "variable.complex.ansible": -6.313548, "variable.parameter.ansible": -6.313548, "w": -5.620401, "z": -6.313548, "zA": -6.313548, "{": -4.010963, "|": -4.521789, "}": -4.010963, "~": -6.313548, }, "YANG": map[string]float64{ "-": -1.659588, "//wires": -5.214936, ":": -3.135494, ";": -2.324564, "SfcLisp": -5.214936, "async": -5.214936, "augment": -5.214936, "base": -5.214936, "binding": -4.116323, "broker": -4.116323, "case": -5.214936, "config": -3.135494, "container": -4.521789, "context": -5.214936, "data": -4.116323, "date": -4.116323, "description": -4.521789, "false": -5.214936, "identity": -4.116323, "impl": -4.116323, "import": -4.116323, "in": -5.214936, "java": -5.214936, "lisp": -4.116323, "mandatory": -4.521789, "md": -5.214936, "mdsal": -4.116323, "module": -4.521789, "name": -5.214936, "namespace": -5.214936, "opendaylight": -5.214936, "prefix": -3.605498, "ref": -4.521789, "refine": -4.521789, "registry": -4.521789, "required": -4.521789, "revision": -3.828641, "rpc": -4.116323, "rpcx": -5.214936, "sal": -5.214936, "service": -4.116323, "sfc": -4.116323, "the": -5.214936, "true": -5.214936, "type": -4.116323, "uses": -4.521789, "version": -5.214936, "when": -5.214936, "yang": -5.214936, "{": -2.575878, "}": -2.575878, }, "Zephir": map[string]float64{ "!": -4.794287, "#define": -7.192182, "#include": -7.192182, "%": -5.582744, "&&": -5.246272, "(": -3.081308, ")": -3.081308, "+": -4.627233, ",": -2.874694, "-": -4.196450, ".": -4.627233, ":": -6.093570, ";": -2.519353, "<": -5.246272, "</code>": -5.805888, "<code>": -5.805888, "=": -2.272201, ">": -4.196450, "Cblock": -7.192182, "Exception": -6.499035, "MAX_FACTOR": -6.093570, "Route": -7.192182, "Router": -7.192182, "Test": -6.499035, "[": -4.247743, "\\": -7.192182, "]": -4.247743, "__construct": -7.192182, "_beforeMatch": -6.093570, "_compiledPattern": -7.192182, "_converters": -6.093570, "_hostname": -6.093570, "_id": -7.192182, "_methods": -6.093570, "_name": -6.499035, "_paths": -6.499035, "_pattern": -6.499035, "a": -5.400423, "actionName": -5.400423, "array_merge": -7.192182, "beforeMatch": -7.192182, "boolean": -7.192182, "bracketCount": -5.246272, "break": -4.994957, "callback": -6.499035, "case": -6.093570, "ch": -3.896345, "char": -7.192182, "class": -6.499035, "compilePattern": -7.192182, "compiledPattern": -7.192182, "continue": -7.192182, "controllerName": -4.889597, "convert": -7.192182, "converter": -6.499035, "count": -7.192182, "cursor": -5.805888, "cursorVar": -5.582744, "else": -4.627233, "explode": -7.192182, "extractNamedParams": -6.499035, "extracted": -5.805888, "false": -6.093570, "fibonacci": -5.805888, "for": -6.093570, "foundPattern": -5.400423, "function": -4.484132, "getBeforeMatch": -7.192182, "getConverters": -7.192182, "getHostname": -7.192182, "getPattern": -7.192182, "get_class_ns": -7.192182, "get_ns_class": -7.192182, "hostname": -6.499035, "httpMethods": -5.805888, "idPattern": -5.400423, "if": -3.407992, "in": -6.093570, "int": -6.093570, "intermediate": -5.805888, "item": -5.246272, "let": -3.221890, "long": -6.093570, "marker": -5.805888, "matches": -5.582744, "memstr": -4.794287, "moduleName": -5.582744, "n": -5.582744, "name": -5.805888, "namespace": -6.499035, "namespaceName": -5.805888, "new": -6.499035, "notValid": -5.582744, "null": -4.707275, "numberMatches": -5.805888, "parenthesesCount": -5.582744, "parts": -4.994957, "paths": -5.246272, "pattern": -3.581264, "pcrePattern": -6.093570, "protected": -4.994957, "public": -4.484132, "reConfigure": -6.499035, "realClassName": -5.805888, "regexp": -5.246272, "return": -4.301810, "route": -4.889597, "routePaths": -4.707275, "setHostname": -7.192182, "setName": -7.192182, "starts_with": -7.192182, "static": -7.192182, "str_replace": -5.400423, "string": -5.582744, "strlen": -7.192182, "substr": -6.093570, "switch": -7.192182, "testCblock": -6.499035, "this": -4.301810, "throw": -6.499035, "tmp": -5.805888, "true": -6.499035, "typeof": -6.093570, "uncamelize": -7.192182, "var": -6.093570, "variable": -5.582744, "via": -7.192182, "{": -2.785463, "||": -5.400423, "}": -2.797733, }, "Zimpl": map[string]float64{ "!": -4.290459, "(": -3.191847, ")": -3.191847, "*": -4.290459, ",": -3.191847, "-": -3.884994, "..": -4.983607, ":": -3.037696, ";": -3.191847, "<i,j>": -3.884994, "<m,n>": -4.290459, "=": -2.498700, ">": -4.983607, "I": -3.884994, "IxI": -3.191847, "TABU": -3.597312, "[": -2.904165, "]": -2.904165, "abs": -4.290459, "and": -4.983607, "binary": -4.983607, "c": -4.983607, "card": -4.290459, "columns": -4.983607, "do": -4.983607, "forall": -4.983607, "i": -2.904165, "in": -3.374169, "j": -2.904165, "m": -3.597312, "maximize": -4.983607, "n": -3.597312, "or": -3.884994, "queens": -4.983607, "set": -3.884994, "subto": -4.983607, "sum": -4.290459, "var": -4.983607, "with": -4.983607, "x": -3.597312, "{": -4.290459, "}": -4.290459, }, "desktop": map[string]float64{ "!": -3.761200, "%": -4.454347, "-": -2.508437, ";": -3.355735, "=": -1.815290, "Action": -3.761200, "Actions": -4.454347, "Application": -4.454347, "Browse": -4.454347, "Comment": -4.454347, "Create": -3.355735, "Desktop": -3.355735, "Entry": -4.454347, "Exec": -3.355735, "F": -4.454347, "Foo": -3.355735, "Gallery": -3.355735, "Icon": -3.761200, "MimeType": -4.454347, "Name": -3.355735, "The": -4.454347, "TryExec": -4.454347, "Type": -4.454347, "Version": -4.454347, "Viewer": -4.454347, "[": -3.355735, "]": -3.355735, "a": -4.454347, "available": -4.454347, "best": -4.454347, "create": -4.454347, "foo": -4.454347, "fooview": -2.662588, "for": -4.454347, "gallery": -4.454347, "image/x": -4.454347, "new": -3.355735, "objects": -4.454347, "viewer": -4.454347, }, "eC": map[string]float64{ "!": -4.290459, "#endif": -7.123673, "#ifdef": -7.123673, "$": -5.737378, "&&": -4.638766, "(": -2.196419, ")": -2.189199, "*": -5.514235, "*object": -6.430526, ",": -2.980538, "-": -7.123673, ".next": -7.123673, ".toolBox.AddControl": -7.123673, "//className": -7.123673, "//if": -6.430526, ":": -4.926448, ";": -2.423192, "<": -7.123673, "=": -2.934018, ">": -7.123673, "Activate": -7.123673, "AddDefaultMethod": -7.123673, "AddObject": -7.123673, "AddToolBoxClass": -7.123673, "Anchor": -6.430526, "BTNode": -7.123673, "Class": -6.025060, "ClassDesignerBase": -5.177763, "CloseConfirmation": -7.123673, "CodeAddObject": -7.123673, "CodeEditor": -7.123673, "Code_IsFunctionEmpty": -7.123673, "CreateObject": -7.123673, "DeleteObject": -7.123673, "Designer": -6.430526, "DesignerBase": -7.123673, "DestroyObject": -7.123673, "DroppedObject": -7.123673, "FillToolBox": -7.123673, "FindObject": -7.123673, "FixProperty": -7.123673, "GetActiveDesigner": -7.123673, "IDEWorkSpace": -7.123673, "Instance": -4.484615, "Key": -7.123673, "MAXINT": -7.123673, "MembersInit": -7.123673, "Menu": -6.430526, "MenuItem": -5.737378, "Method": -5.737378, "Modifiers": -6.430526, "ModifyCode": -7.123673, "NotifySelect": -6.430526, "ObjectContainsCode": -7.123673, "ObjectInfo": -4.638766, "OnActivate": -7.123673, "OnClose": -7.123673, "OnFileModified": -7.123673, "OnKeyHit": -7.123673, "PostCreateObject": -7.123673, "PrepareTestObject": -7.123673, "ProcessTypeString": -7.123673, "Property": -7.123673, "RenameObject": -7.123673, "Reset": -7.123673, "SelectObject": -7.123673, "SelectObjectFromDesigner": -7.123673, "SetActiveDesigner": -7.123673, "SheetAddObject": -7.123673, "ToolBox": -7.123673, "UpdateProperties": -7.123673, "Window": -7.123673, "_DEBUG": -7.123673, "_class": -5.514235, "_class.base": -7.123673, "_class.methods.first": -7.123673, "a": -7.123673, "active": -6.430526, "anchor": -7.123673, "bool": -4.415623, "borderStyle": -7.123673, "bottom": -6.430526, "break": -6.025060, "ch": -6.430526, "char": -6.430526, "check": -5.514235, "check.instance": -7.123673, "check.name": -6.430526, "check.next": -7.123673, "class": -7.123673, "classDesigner": -4.558723, "classDesigner.AddObject": -7.123673, "classDesigner.Create": -7.123673, "classDesigner.Destroy": -6.430526, "classDesigner.ListToolBoxClasses": -7.123673, "classDesigner.Reset": -7.123673, "classDesigner.SelectObject": -6.025060, "classDesigner._class": -7.123673, "classDesigner.anchor": -7.123673, "classDesigner.parent": -6.430526, "classInstance": -6.430526, "classInstance._class": -7.123673, "classObject": -5.737378, "classObject.instance": -7.123673, "classObject.instances.first": -7.123673, "classObject.name": -6.430526, "classObject.next": -7.123673, "closing": -7.123673, "codeEditor": -5.514235, "codeEditor.Activate": -7.123673, "codeEditor.AddMethod": -7.123673, "codeEditor.AddObject": -7.123673, "codeEditor.DeleteObject": -7.123673, "codeEditor.DesignerModifiedObject": -7.123673, "codeEditor.Destroy": -7.123673, "codeEditor.EnsureUpToDate": -7.123673, "codeEditor.MenuFileSave": -7.123673, "codeEditor.MenuFileSaveAs": -7.123673, "codeEditor.ModifyCode": -7.123673, "codeEditor.RenameObject": -7.123673, "codeEditor.SelectObjectFromDesigner": -7.123673, "codeEditor.classes.first": -7.123673, "codeEditor.closing": -7.123673, "codeEditor.fileName": -7.123673, "codeEditor.fixCaret": -7.123673, "codeEditor.inUseDebug": -7.123673, "codeEditor.privateModule": -7.123673, "codeEditor.sheet.AddObject": -7.123673, "codeEditor.sheet.OnKeyHit": -7.123673, "codeEditor.visible": -7.123673, "const": -6.430526, "ctrlS": -7.123673, "debugClosing": -5.514235, "defaultMethod": -5.737378, "delete": -6.025060, "designerClass": -4.638766, "designerClass.CreateObject": -7.123673, "designerClass.DestroyObject": -7.123673, "designerClass.DroppedObject": -7.123673, "designerClass.FixProperty": -7.123673, "designerClass.PostCreateObject": -7.123673, "designerClass.PrepareTestObject": -7.123673, "direct": -7.123673, "eClass_IsDerived": -7.123673, "eInstance_GetDesigner": -5.044231, "eInstance_New": -7.123673, "else": -6.025060, "f": -7.123673, "false": -4.725778, "fileMenu": -6.025060, "fileSaveAsItem": -7.123673, "fileSaveItem": -7.123673, "fileSaveItem.disabled": -7.123673, "first": -7.123673, "for": -5.514235, "goOnWithActivation": -7.123673, "hasClose": -7.123673, "hasHorzScroll": -7.123673, "hasMaximize": -7.123673, "hasMinimize": -7.123673, "hasVertScroll": -7.123673, "iclass": -5.331913, "if": -3.512755, "import": -7.123673, "incref": -7.123673, "instance": -3.756377, "instance._class": -7.123673, "instance._class.module.application": -7.123673, "int": -7.123673, "isActiveClient": -7.123673, "isClass": -5.331913, "key": -6.430526, "left": -6.430526, "master": -7.123673, "members": -5.737378, "members.function": -7.123673, "members.next": -7.123673, "members.type": -7.123673, "menu": -6.430526, "method": -5.331913, "method.dataType": -6.430526, "method.dataType.thisClass": -7.123673, "method.dataType.thisClass.registered": -7.123673, "method.dataTypeString": -7.123673, "method.type": -7.123673, "method.vid": -6.430526, "methodMembersInit": -7.123673, "minID": -6.025060, "modified": -7.123673, "modifiedDocument": -6.025060, "mods": -5.737378, "name": -6.025060, "null": -4.926448, "object": -4.079150, "object.classDefinition": -7.123673, "object.instCode": -7.123673, "object.instCode.members": -6.430526, "object.name": -7.123673, "parentClosing": -6.430526, "previous": -7.123673, "printf": -7.123673, "prop": -6.430526, "return": -4.638766, "right": -6.430526, "s": -7.123673, "selection": -5.737378, "sizable": -7.123673, "strcmp": -6.430526, "string": -6.025060, "subclass": -5.331913, "text": -7.123673, "this": -5.331913, "this.classDesigner": -6.025060, "toolBox": -7.123673, "top": -6.430526, "true": -4.415623, "typeData": -7.123673, "unichar": -7.123673, "virtualMethod": -7.123673, "visible": -6.025060, "void": -4.179234, "watch": -7.123673, "{": -2.996538, "||": -5.737378, "}": -2.996538, "~": -7.123673, }, "edn": map[string]float64{ "#db/id": -2.661530, ":": -1.275236, "[": -2.574519, "]": -2.574519, "data/source": -5.059425, "db.cardinality/one": -4.653960, "db.install/_attribute": -4.653960, "db.part/db": -3.960813, "db.part/tx": -5.059425, "db.part/user": -2.919359, "db.type/double": -5.752573, "db.type/string": -5.059425, "db/cardinality": -4.653960, "db/doc": -4.366278, "db/id": -2.661530, "db/ident": -4.653960, "db/index": -4.653960, "db/valueType": -4.653960, "object/meanRadius": -2.862201, "object/name": -2.862201, "true": -4.653960, "{": -2.661530, "}": -2.661530, }, "fish": map[string]float64{ "$": -2.490101, "%": -5.668155, "&": -6.361302, "(": -4.415392, ")": -4.569543, "-": -2.043814, ".": -5.668155, "/.config": -6.361302, "/bin": -4.751865, "/dev/null": -5.668155, "/sbin": -6.361302, "/tmp": -6.361302, "/usr/X": -6.361302, "/usr/bin": -6.361302, "/usr/local/bin": -6.361302, "/usr/local/sbin": -6.361302, "/usr/sbin": -6.361302, "/usr/xpg": -5.262690, ";": -4.415392, "<": -6.361302, "=": -6.361302, ">": -5.262690, "EDITOR": -6.361302, "IFS": -4.975008, "PATH": -4.569543, "R": -6.361302, "S": -6.361302, "TMPDIR": -5.668155, "USER": -6.361302, "XDG_CONFIG_HOME": -5.668155, "[": -3.876396, "\\": -4.751865, "]": -3.876396, "_": -5.262690, "__fish_bin_dir": -6.361302, "__fish_config_interactive": -6.361302, "__fish_datadir/completions": -5.262690, "__fish_datadir/functions": -5.262690, "__fish_on_interactive": -6.361302, "__fish_print_help": -6.361302, "__fish_sysconfdir/completions": -6.361302, "__fish_sysconfdir/functions": -6.361302, "argv": -4.281861, "begin": -5.668155, "breakpoint": -6.361302, "c": -6.361302, "case": -4.164078, "cmd": -5.668155, "configdir": -5.668155, "configdir/fish/completions": -6.361302, "configdir/fish/functions": -6.361302, "contains": -4.975008, "control": -4.975008, "d": -5.262690, "description": -6.361302, "e": -4.569543, "echo": -5.262690, "editor": -4.415392, "editor_cmd": -5.668155, "else": -5.262690, "end": -2.864795, "eval": -4.975008, "f": -5.262690, "fish": -5.262690, "fish_complete_path": -4.975008, "fish_function_path": -4.975008, "fish_indent": -6.361302, "for": -6.361302, "full": -5.262690, "funced": -5.262690, "funcname": -4.415392, "function": -4.975008, "functions": -4.751865, "g": -6.361302, "h": -6.361302, "help": -6.361302, "i": -4.751865, "if": -3.316780, "in": -6.361302, "init": -4.751865, "interactive": -4.415392, "is": -5.262690, "job": -4.975008, "l": -3.653252, "mode": -4.751865, "n": -4.975008, "nend": -6.361302, "none": -6.361302, "normal": -5.668155, "not": -4.281861, "or": -5.262690, "p": -6.361302, "path_list": -4.975008, "printf": -5.262690, "prompt": -5.668155, "q": -4.164078, "random": -5.668155, "read": -6.361302, "red": -5.668155, "res": -5.668155, "return": -4.569543, "rm": -6.361302, "root": -6.361302, "s": -6.361302, "self": -5.668155, "set": -2.490101, "set_color": -4.975008, "stat": -5.668155, "status": -4.415392, "switch": -5.262690, "t": -6.361302, "test": -4.415392, "tmpname": -4.415392, "type": -6.361302, "while": -5.668155, "z": -6.361302, "|": -5.668155, "~": -6.361302, }, "reStructuredText": map[string]float64{ "$": -5.460801, "%": -7.406711, "(": -5.209486, ")": -5.104126, "*": -6.308098, "*Can": -7.406711, "*How": -6.713564, "*There": -7.406711, "*documentation*": -7.406711, "*mailing": -7.406711, "*website*": -7.406711, "+": -6.020416, ",": -3.363659, "-": -3.102646, ".": -6.308098, "..": -4.315668, ".bash_login": -7.406711, "/": -7.406711, "//docs.scipy.org/doc/numpy/dev/gitwash/index.html": -7.406711, "//docs.scipy.org/doc/scipy/reference/api.html": -7.406711, "//docs.scipy.org/scipy/Front": -7.406711, "//github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt": -7.406711, "//github.com/numpy/numpy/blob/master/doc/TESTS.rst.txt": -7.406711, "//github.com/scipy/scipy": -7.406711, "//github.com/scipy/scipy.git": -7.406711, "//github.com/scipy/scipy.org": -7.406711, "//github.com/scipy/scipy/blob/master/doc/MAINTAINERS.rst.txt": -7.406711, "//projects.scipy.org/scipy/timeline": -7.406711, "//pypi.python.org/pypi/pep": -7.406711, "//pypi.python.org/pypi/pyflakes": -7.406711, "//scikit": -7.406711, "//scikits": -7.406711, "//scipy": -7.406711, "//scipy.github.com/": -7.406711, "//scipy.org/": -7.406711, "//statsmodels.sourceforge.net/": -7.406711, "//www.doughellmann.com/PyMOTW/doctest/": -7.406711, "//www.doughellmann.com/projects/virtualenvwrapper/": -7.406711, "//www.python.org/dev/peps/pep": -7.406711, "//www.scipy.org/License_Compatibility": -7.406711, "//www.virtualenv.org/": -7.406711, "/Fortran": -7.406711, ":": -3.399378, ";": -7.406711, "<submodule>": -6.713564, "=": -4.271217, ">": -5.614951, "?": -5.797273, "A": -7.406711, "API": -7.406711, "Add": -7.406711, "After": -7.406711, "All": -6.713564, "Alternatively": -7.406711, "Another": -7.406711, "Anyone": -7.406711, "Assuming": -6.713564, "Before": -7.406711, "Bento": -7.406711, "C": -6.713564, "C/C": -7.406711, "Central": -7.406711, "Code": -6.713564, "Contributing": -6.713564, "Cython": -7.406711, "FAQ": -7.406711, "First": -7.406711, "For": -7.406711, "Fortran.": -7.406711, "GPL": -7.406711, "Github": -6.020416, "HOME": -7.406711, "I": -5.797273, "IDEs": -7.406711, "If": -6.713564, "In": -6.308098, "It": -6.308098, "Linux": -7.406711, "Note": -7.406711, "Now": -6.308098, "NumPy": -7.406711, "OK.": -7.406711, "OS": -7.406711, "OSes": -7.406711, "On": -7.406711, "Once": -6.713564, "One": -7.406711, "Other": -7.406711, "PR": -6.020416, "PR.": -7.406711, "PYTHONPATH": -6.713564, "PYTHONPATH.": -7.406711, "Page/": -7.406711, "Participating": -7.406711, "Perhaps": -7.406711, "Python": -5.209486, "Readers": -7.406711, "SciPy": -4.921804, "SciPy.": -5.797273, "See": -7.406711, "Some": -6.713564, "Sphinx": -7.406711, "Spyder": -7.406711, "That": -7.406711, "The": -5.460801, "Then": -7.406711, "There": -7.406711, "This": -6.020416, "To": -6.713564, "Trac": -7.406711, "Unit": -7.406711, "Unlike": -7.406711, "Use": -7.406711, "When": -7.406711, "With": -7.406711, "X": -7.406711, "Yes.": -7.406711, "You": -6.713564, "_": -5.327269, "_.": -6.308098, "_Github": -7.406711, "_PEP": -7.406711, "_SciPy": -6.713564, "_Trac": -7.406711, "_doctest": -7.406711, "_documentation": -7.406711, "_git": -7.406711, "_how": -7.406711, "_license": -7.406711, "_maintainers": -7.406711, "_pep": -7.406711, "_pyflakes": -7.406711, "_scikit": -7.406711, "_scikits": -7.406711, "_scipy.github.com": -7.406711, "_scipy.org": -6.713564, "_statsmodels": -7.406711, "_testing": -7.406711, "_virtualenv": -7.406711, "_virtualenvwrapper": -7.406711, "`": -4.005513, "a": -4.315668, "about": -7.406711, "above": -6.308098, "above.": -7.406711, "academic": -7.406711, "achieve": -7.406711, "activated": -7.406711, "actually": -7.406711, "add": -6.020416, "added": -6.713564, "adding": -6.713564, "adding.": -7.406711, "advantage": -7.406711, "after": -7.406711, "again": -7.406711, "aim": -7.406711, "aims": -7.406711, "all": -7.406711, "allows": -7.406711, "already": -6.713564, "also": -6.020416, "always": -7.406711, "amount": -7.406711, "an": -6.020416, "and": -4.005513, "answer": -7.406711, "anymore.": -7.406711, "application": -7.406711, "are": -5.209486, "around": -7.406711, "as": -6.020416, "ask": -6.713564, "asked": -7.406711, "at": -6.713564, "automatically": -7.406711, "back": -7.406711, "based": -7.406711, "be": -5.104126, "because": -7.406711, "been": -7.406711, "before": -6.713564, "behavior": -7.406711, "behavior.": -7.406711, "being": -7.406711, "binary": -7.406711, "branch": -6.713564, "brings": -7.406711, "bug": -7.406711, "build": -6.308098, "build.": -7.406711, "build_ext": -7.406711, "building": -7.406711, "but": -6.308098, "by": -6.020416, "can": -4.634122, "cases": -7.406711, "catch": -7.406711, "cd": -7.406711, "central.org/": -7.406711, "changed": -7.406711, "changes": -6.308098, "checking": -7.406711, "citation": -7.406711, "clear": -7.406711, "clearly": -7.406711, "clone": -7.406711, "code": -4.362188, "code.": -6.713564, "code/feature": -7.406711, "coders": -7.406711, "command": -6.713564, "commits": -7.406711, "common.": -7.406711, "commonly": -7.406711, "community": -6.308098, "compatibility": -6.713564, "compatible": -7.406711, "completed": -7.406711, "confidence": -7.406711, "cons.": -7.406711, "constantly": -7.406711, "contains": -7.406711, "contribute": -6.020416, "contributing": -7.406711, "contribution": -7.406711, "correct": -6.713564, "correctly": -7.406711, "couple": -7.406711, "create": -6.308098, "day": -7.406711, "deactivate": -7.406711, "decided": -7.406711, "degree": -7.406711, "deprecation": -7.406711, "described": -7.406711, "describes": -7.406711, "details": -6.713564, "dev": -5.327269, "develop": -7.406711, "developers": -7.406711, "development": -6.020416, "dir": -6.308098, "directory": -7.406711, "discuss": -6.713564, "discussed": -7.406711, "discussing": -7.406711, "discussion": -6.713564, "discussions": -7.406711, "distributed": -7.406711, "do": -5.460801, "docs": -7.406711, "docstrings": -7.406711, "document": -6.713564, "documentation": -5.797273, "documentation.": -7.406711, "does": -6.713564, "doesn": -6.308098, "domain": -7.406711, "domains": -7.406711, "don": -7.406711, "easily": -7.406711, "edit": -6.308098, "editing": -7.406711, "edits": -7.406711, "edits.": -7.406711, "efficient": -7.406711, "either": -7.406711, "enough": -7.406711, "ensure": -7.406711, "environment": -6.308098, "environments": -7.406711, "errors.": -7.406711, "etc.": -7.406711, "every": -7.406711, "everything": -7.406711, "example": -6.308098, "examples": -7.406711, "exercise": -7.406711, "existing": -6.308098, "exits": -7.406711, "experienced": -7.406711, "export": -7.406711, "familiar": -7.406711, "far": -7.406711, "faster": -7.406711, "feature": -7.406711, "features": -7.406711, "feedback": -7.406711, "file": -6.713564, "files": -7.406711, "find": -7.406711, "fine": -7.406711, "finished.": -7.406711, "first": -7.406711, "first.": -7.406711, "fits": -7.406711, "fix": -7.406711, "fixed.": -7.406711, "flexible": -7.406711, "focus": -7.406711, "follow": -7.406711, "for": -4.573497, "formatting": -7.406711, "free": -7.406711, "from": -7.406711, "function": -7.406711, "general": -7.406711, "get": -7.406711, "git": -5.614951, "give": -7.406711, "gives": -7.406711, "global": -7.406711, "go": -6.713564, "good": -6.713564, "got": -7.406711, "guidelines": -7.406711, "hands.": -7.406711, "happens": -7.406711, "hardware": -7.406711, "has": -6.308098, "have": -5.209486, "having": -7.406711, "help": -6.713564, "here": -6.308098, "how": -5.797273, "html": -7.406711, "http": -4.573497, "https": -5.614951, "i": -7.406711, "idea": -7.406711, "if": -6.308098, "image": -6.713564, "image.org/": -7.406711, "immediately": -6.713564, "import": -7.406711, "improved": -7.406711, "improves": -7.406711, "in": -4.410978, "included": -7.406711, "included.": -7.406711, "incorrect": -7.406711, "information": -7.406711, "inside": -7.406711, "insight": -7.406711, "install": -6.020416, "installer": -7.406711, "instead": -7.406711, "interested": -7.406711, "interpreter": -7.406711, "interpreter.": -7.406711, "into": -5.797273, "is": -4.228657, "issue.": -7.406711, "it": -5.209486, "it.": -7.406711, "itself.": -7.406711, "job/research": -7.406711, "jump": -7.406711, "knowledge": -7.406711, "language": -7.406711, "languages": -7.406711, "latest": -7.406711, "learn": -6.713564, "learn.org": -7.406711, "least": -7.406711, "less": -7.406711, "license": -6.308098, "licensed": -7.406711, "like": -7.406711, "line": -7.406711, "list": -6.020416, "list.": -6.713564, "lists*": -7.406711, "local": -6.713564, "look": -7.406711, "lot": -7.406711, "lying": -7.406711, "mailing": -5.614951, "maintain": -7.406711, "make": -6.713564, "manage": -7.406711, "many": -6.308098, "master": -7.406711, "master.": -7.406711, "may": -5.797273, "meets": -7.406711, "mention": -7.406711, "merged": -6.713564, "message": -7.406711, "method": -7.406711, "mkvirtualenv": -7.406711, "more": -6.713564, "most": -7.406711, "multiple": -6.713564, "my": -6.713564, "named": -7.406711, "narrower": -7.406711, "necessary": -6.308098, "need": -6.713564, "new": -5.209486, "next": -7.406711, "no": -6.713564, "not": -6.713564, "numscons": -7.406711, "object": -7.406711, "of": -4.148614, "old": -7.406711, "on": -4.634122, "one": -7.406711, "ongoing": -7.406711, "only": -6.713564, "or": -5.327269, "other": -6.308098, "outcome": -7.406711, "outlined": -7.406711, "overview": -7.406711, "package": -7.406711, "packages": -6.308098, "pages.": -7.406711, "pair": -7.406711, "parallel": -7.406711, "part": -7.406711, "pass.": -7.406711, "passed": -7.406711, "patches.": -7.406711, "people": -7.406711, "perfectly": -7.406711, "piece": -7.406711, "pip": -7.406711, "place": -6.020416, "please": -7.406711, "positive": -6.713564, "potentially": -7.406711, "practice.": -7.406711, "preferred": -7.406711, "prefix": -6.713564, "previous": -7.406711, "principle": -6.713564, "probably": -6.713564, "procedure": -7.406711, "process": -6.713564, "process.": -7.406711, "programming": -7.406711, "project": -7.406711, "prompt": -7.406711, "pros": -7.406711, "provide": -7.406711, "purpose": -7.406711, "python": -6.308098, "questions": -7.406711, "quickly": -7.406711, "reST": -7.406711, "reStructuredText": -7.406711, "really": -7.406711, "reasonable": -7.406711, "reasons": -6.713564, "redesign": -7.406711, "redesigned": -7.406711, "register": -7.406711, "regularly": -7.406711, "relatively": -7.406711, "released": -6.713564, "rendered": -7.406711, "repo": -7.406711, "reports": -7.406711, "require": -7.406711, "requirements": -6.713564, "requires": -7.406711, "restarting": -7.406711, "review": -5.614951, "reviewed": -7.406711, "rights": -7.406711, "run": -6.713564, "runs": -7.406711, "s": -6.020416, "say": -7.406711, "scientific": -6.713564, "scikit": -7.406711, "scikits": -6.713564, "scipy": -4.841761, "scipy.github.com": -7.406711, "scipy.org": -6.713564, "scipy/": -7.406711, "scope": -7.406711, "section": -7.406711, "see": -6.020416, "send": -6.713564, "sending": -7.406711, "set": -5.797273, "setting": -7.406711, "setup.py": -7.406711, "setupegg.py": -7.406711, "shell.": -7.406711, "should": -5.797273, "simple": -7.406711, "simplest": -7.406711, "simply": -7.406711, "single": -7.406711, "site": -6.020416, "so": -6.020416, "some": -6.020416, "source": -6.713564, "sources": -7.406711, "sp": -7.406711, "sp.test": -7.406711, "specific": -6.308098, "speed": -7.406711, "start": -6.713564, "started": -7.406711, "startup": -7.406711, "static": -7.406711, "statsmodels": -7.406711, "step": -7.406711, "straight": -7.406711, "straightforward": -7.406711, "style.": -7.406711, "submodules": -7.406711, "submodules.": -7.406711, "sure": -7.406711, "switch": -7.406711, "symlink": -6.308098, "t": -5.797273, "t.": -7.406711, "terminal.": -7.406711, "test": -6.308098, "tests": -5.797273, "than": -6.308098, "that": -4.362188, "the": -3.263576, "their": -7.406711, "then": -7.406711, "there": -6.308098, "there.": -7.406711, "these": -7.406711, "they": -7.406711, "think": -7.406711, "this": -5.008815, "those": -7.406711, "time": -7.406711, "to": -3.600048, "too": -7.406711, "toolstack": -7.406711, "tries": -7.406711, "under": -7.406711, "unit": -6.713564, "up": -5.460801, "updated": -7.406711, "use": -5.209486, "used": -7.406711, "useful": -7.406711, "user": -7.406711, "username": -7.406711, "users.": -7.406711, "using": -6.713564, "utilities": -7.406711, "variable": -7.406711, "version": -5.797273, "versions": -7.406711, "versions.": -7.406711, "virtual": -6.713564, "virtualenv": -6.308098, "virtualenv.": -7.406711, "virtualenvwrapper": -7.406711, "want": -6.020416, "warning": -7.406711, "way": -6.713564, "ways": -6.713564, "website": -6.713564, "weeks": -7.406711, "well": -6.713564, "what": -6.713564, "when": -7.406711, "whenever": -7.406711, "which": -6.713564, "while": -6.308098, "who": -7.406711, "why": -7.406711, "wiki": -6.020416, "will": -7.406711, "with": -5.460801, "work": -7.406711, "workflow": -6.308098, "working": -7.406711, "workon": -7.406711, "works": -6.713564, "would": -7.406711, "you": -4.228657, "your": -4.698661, "yourself": -7.406711, "{": -7.406711, "}": -7.406711, }, "wisp": map[string]float64{ "!": -6.586172, "\"": -7.279319, "#": -6.586172, "&": -5.487559, "'": -7.279319, "(": -2.935513, ")": -2.961831, "+": -5.082094, ",": -3.912023, "-": -3.782811, ".": -5.487559, ".log": -7.279319, "/": -7.279319, ":": -4.881424, ";": -1.986014, "<": -7.279319, "=": -4.881424, ">": -4.640262, "?": -6.180707, "@body": -7.279319, "API": -7.279319, "Also": -7.279319, "Although": -7.279319, "Any": -7.279319, "As": -7.279319, "Bindings": -7.279319, "Booleans": -7.279319, "Characters": -6.586172, "Class": -7.279319, "Commas": -6.586172, "Compbining": -7.279319, "Docstring": -7.279319, "Else": -7.279319, "For": -6.586172, "Functions": -7.279319, "If": -6.586172, "In": -5.669881, "Instantiation": -7.279319, "Instead": -7.279319, "JS": -4.446105, "JS.": -6.586172, "JSONs": -7.279319, "Keywords": -6.180707, "Let": -7.279319, "Lists": -7.279319, "Macros": -6.586172, "Making": -7.279319, "Maps": -6.586172, "Method": -7.279319, "More": -7.279319, "Not": -7.279319, "Note": -6.180707, "Now": -7.279319, "Numbers": -7.279319, "Overloads": -7.279319, "Since": -7.279319, "Strings": -6.586172, "The": -7.279319, "Type.": -7.279319, "Unfortunately": -7.279319, "Vectors": -7.279319, "Via": -7.279319, "We": -7.279319, "Wisp": -4.714369, "You": -7.279319, "[": -4.188276, "\\": -7.279319, "]": -4.188276, "__privates__": -7.279319, "`": -4.234796, "a": -4.101265, "above": -7.279319, "access": -7.279319, "achieve": -7.279319, "added": -7.279319, "all": -5.893024, "also": -6.586172, "although": -7.279319, "an": -7.279319, "and": -5.082094, "anyway": -7.279319, "arbitary": -7.279319, "are": -4.640262, "args": -7.279319, "argument": -7.279319, "arguments": -5.333409, "arguments.": -6.586172, "array.": -7.279319, "arrays.": -7.279319, "as": -5.893024, "assemble": -7.279319, "associated": -6.586172, "at": -7.279319, "available": -7.279319, "b": -5.669881, "bar": -5.893024, "baz": -6.586172, "be": -4.571269, "because": -7.279319, "beep": -7.279319, "before": -7.279319, "being": -7.279319, "bindings": -7.279319, "body": -5.893024, "booleans": -6.586172, "bop": -7.279319, "bound": -7.279319, "build": -7.279319, "but": -5.333409, "by": -6.586172, "c": -7.279319, "called.": -7.279319, "calls": -6.180707, "can": -4.714369, "capture": -7.279319, "capturing": -7.279319, "case": -7.279319, "chaining": -7.279319, "chaining.": -7.279319, "chanining": -7.279319, "char": -7.279319, "character": -7.279319, "choose": -7.279319, "class.": -7.279319, "clojure": -6.586172, "clojurescript.": -7.279319, "code": -6.180707, "come": -7.279319, "comments": -7.279319, "common": -7.279319, "compatible": -7.279319, "compbine": -7.279319, "compile": -6.180707, "compiled": -6.586172, "compiles": -7.279319, "condition": -5.893024, "conditional": -7.279319, "cons": -6.586172, "consice": -7.279319, "console": -7.279319, "console.log": -6.586172, "constats": -7.279319, "contain": -7.279319, "containing": -7.279319, "context": -7.279319, "conventions": -6.180707, "dash": -7.279319, "dashDelimited": -7.279319, "def": -7.279319, "define": -5.893024, "defined": -7.279319, "defmacro": -6.180707, "defn": -6.586172, "delimited": -7.279319, "depending": -7.279319, "desired": -7.279319, "desugars": -7.279319, "dialect": -7.279319, "diff": -7.279319, "differenc": -7.279319, "differences": -7.279319, "different": -7.279319, "do": -5.893024, "documentation": -7.279319, "does": -7.279319, "doesn": -7.279319, "dsl": -7.279319, "ease": -7.279319, "easier": -7.279319, "effect": -7.279319, "effects": -7.279319, "effort": -7.279319, "encouraning": -7.279319, "enter": -7.279319, "equivalent": -6.586172, "evaluate": -6.586172, "evaluated.": -7.279319, "evaluates": -6.586172, "evaluating": -7.279319, "evaluation": -7.279319, "everything": -7.279319, "example": -7.279319, "exception.": -7.279319, "exectued": -7.279319, "execute": -7.279319, "expanded": -6.586172, "expressed": -6.180707, "expression": -5.487559, "expression.": -7.279319, "expressions": -5.487559, "expressions.": -7.279319, "false": -6.586172, "few": -7.279319, "filter": -6.586172, "first": -5.893024, "fn": -4.571269, "following": -6.586172, "follows": -7.279319, "foo": -5.487559, "for": -5.669881, "form": -4.976734, "form.": -7.279319, "forms": -7.279319, "from": -6.586172, "fulfill": -7.279319, "function": -5.333409, "function.": -7.279319, "functional": -7.279319, "functions": -5.199877, "future": -6.586172, "get": -6.586172, "getInputText": -7.279319, "hand": -7.279319, "handler": -7.279319, "handy": -7.279319, "has": -6.586172, "hash": -7.279319, "have": -6.586172, "homoiconic": -7.279319, "how": -7.279319, "human": -7.279319, "identifiers": -6.586172, "if": -5.333409, "immediately.": -7.279319, "implemented.": -7.279319, "implemting": -7.279319, "in": -4.506730, "incerement": -7.279319, "increment": -7.279319, "input": -7.279319, "instance": -7.279319, "instantiation": -7.279319, "instead.": -7.279319, "into": -6.586172, "introspection": -7.279319, "invoked": -6.586172, "is": -4.283587, "isEnterKey": -7.279319, "isPredicate": -7.279319, "it": -4.976734, "item": -6.586172, "items": -6.586172, "jQuery": -7.279319, "javascript": -7.279319, "js": -7.279319, "just": -6.180707, "key": -6.180707, "keypress": -6.586172, "keys": -7.279319, "keyword": -7.279319, "keywords": -7.279319, "language": -7.279319, "less": -7.279319, "let": -6.586172, "lexical": -7.279319, "like": -6.586172, "limited.": -7.279319, "lisp": -7.279319, "list": -6.586172, "listToVector": -7.279319, "lists": -7.279319, "load": -7.279319, "log": -7.279319, "lot": -6.586172, "macro": -5.333409, "macros": -6.586172, "macros.": -7.279319, "made": -6.586172, "makes": -7.279319, "making": -7.279319, "many.": -7.279319, "map": -6.180707, "maps": -7.279319, "may": -7.279319, "message": -6.586172, "metadata": -7.279319, "metadata.": -7.279319, "method": -6.586172, "methods": -7.279319, "might": -7.279319, "missing": -7.279319, "monday": -7.279319, "more": -6.180707, "more.reduce": -7.279319, "multiline": -7.279319, "multiple": -7.279319, "name": -6.586172, "named": -7.279319, "names": -7.279319, "naming": -7.279319, "need": -7.279319, "needs": -7.279319, "new": -6.586172, "nil": -5.893024, "nil.": -7.279319, "no": -7.279319, "not": -5.893024, "number": -6.180707, "numbers": -6.586172, "object": -7.279319, "objects.": -7.279319, "of": -4.506730, "on": -7.279319, "one": -6.180707, "open": -6.586172, "operation": -6.180707, "operations": -6.180707, "optional": -6.586172, "options": -6.586172, "or": -6.586172, "output.": -7.279319, "overload": -7.279319, "overloaded": -7.279319, "pairs.": -7.279319, "party": -7.279319, "passed": -7.279319, "pioneered": -7.279319, "plain": -6.586172, "popular": -7.279319, "predicate": -7.279319, "presented": -7.279319, "prevent": -7.279319, "print": -7.279319, "problem": -7.279319, "program": -7.279319, "purpose": -6.586172, "puts": -7.279319, "quoted": -7.279319, "readable": -7.279319, "reduce": -6.180707, "render": -6.586172, "representing": -7.279319, "requires": -7.279319, "respective": -7.279319, "rest": -5.333409, "rest.reduce": -7.279319, "result": -6.586172, "resulting": -7.279319, "results.": -7.279319, "return": -7.279319, "s": -5.333409, "second": -7.279319, "separating": -7.279319, "shortcut": -7.279319, "side": -6.586172, "simbol": -7.279319, "simbols": -7.279319, "similar": -6.586172, "since": -7.279319, "single": -7.279319, "solve": -7.279319, "some": -6.586172, "sometimes": -7.279319, "space": -7.279319, "special": -5.893024, "string": -7.279319, "strings": -6.180707, "strings.": -7.279319, "such": -7.279319, "suffixed": -7.279319, "sugar": -7.279319, "sum": -6.180707, "symbolic": -6.586172, "syntax": -6.586172, "syntax.": -7.279319, "t": -7.279319, "tagret": -7.279319, "take": -6.586172, "target": -7.279319, "templating": -7.279319, "text": -7.279319, "than": -7.279319, "that": -5.333409, "the": -5.082094, "their": -6.586172, "them": -7.279319, "themselves.": -7.279319, "then": -7.279319, "there": -7.279319, "they": -6.180707, "third": -6.586172, "this": -6.586172, "though": -7.279319, "throws": -7.279319, "time": -7.279319, "to": -4.234796, "today": -7.279319, "tradeoffs.": -7.279319, "translating": -7.279319, "transparent": -7.279319, "true": -5.487559, "try": -7.279319, "type": -6.586172, "types.": -7.279319, "undefined": -7.279319, "understand": -7.279319, "unless": -5.669881, "unlike": -7.279319, "up": -7.279319, "use": -6.586172, "used": -7.279319, "usually": -6.180707, "value": -6.586172, "variadic": -7.279319, "vector": -7.279319, "vectors": -7.279319, "verbose": -7.279319, "version": -7.279319, "very": -6.586172, "via": -6.586172, "void": -6.586172, "want": -6.586172, "ways": -7.279319, "we": -6.586172, "when": -7.279319, "which": -6.180707, "white": -7.279319, "will": -5.487559, "window.addEventListener": -7.279319, "wisp": -5.893024, "with": -5.487559, "without": -6.586172, "x": -4.188276, "y": -5.487559, "yet": -7.279319, "you": -7.279319, "{": -5.893024, "}": -5.893024, "~": -6.586172, "’": -7.279319, }, "xBase": map[string]float64{ "!": -6.741701, "#command": -5.355406, "#define": -4.949941, "#elif": -6.741701, "#else": -6.741701, "#endif": -4.795791, "#if": -6.741701, "#ifdef": -6.048554, "#ifndef": -5.355406, "#include": -6.741701, "#pragma": -6.741701, "#require": -6.741701, "#stdout": -6.741701, "#undef": -6.741701, "#warning": -6.741701, "#xtranslate": -5.355406, "$": -6.741701, "&&": -6.741701, "'": -6.741701, "(": -2.752717, ")": -2.752717, "*": -4.544476, "**": -6.741701, "+": -4.102643, ",": -2.347252, "-": -3.797262, ".F.": -5.643088, ".OR.": -6.741701, ".T.": -5.643088, "/": -6.741701, "/**": -6.741701, "//reseta": -6.741701, ":": -3.745968, ";": -4.033650, "<": -4.949941, "<(x)>": -6.741701, "<*x*>": -6.741701, "<clr>": -6.048554, "<col>": -6.048554, "<exp>": -6.048554, "<pic>": -6.048554, "<row>": -6.048554, "<t>": -6.048554, "<v>": -5.643088, "<x,...>": -6.741701, "<x:ON,OFF,&>": -6.741701, "<x>": -4.949941, "=": -3.130783, ">": -3.374405, "?": -3.606206, "@": -5.643088, "@hHash": -6.741701, "A": -6.741701, "ANNOUNCE": -6.741701, "AllTrim": -6.741701, "BEGIN": -6.741701, "BREAK": -6.741701, "CASE": -5.643088, "CLASS": -5.355406, "CLS": -6.741701, "COLOR": -6.741701, "CREATE": -6.048554, "CRLF": -5.355406, "DELETED": -6.048554, "DESCEND": -6.741701, "DO": -6.048554, "DevOutPict": -6.741701, "DevPos": -6.741701, "E": -4.256794, "EACH": -6.741701, "ELSE": -6.741701, "ELSEIF": -6.741701, "END": -6.741701, "ENDCASE": -6.741701, "ENDCLASS": -6.048554, "ENDDO": -6.048554, "ENDIF": -5.643088, "ENDSWITCH": -6.741701, "EXIT": -5.643088, "Environment": -6.741701, "FAT": -6.741701, "FC_HIDDEN": -6.741701, "FC_NORMAL": -6.741701, "FC_READONLY": -6.741701, "FC_SYSTEM": -6.741701, "FIELD": -6.741701, "FINA": -6.741701, "FOR": -6.048554, "FUNCTION": -5.643088, "File": -6.741701, "FlagShip": -6.741701, "IF": -6.048554, "IN": -6.741701, "INHERIT": -6.741701, "INIT": -6.741701, "INLINE": -6.741701, "If": -6.741701, "It": -6.741701, "LOCAL": -5.355406, "LOOP": -6.741701, "Linguist.": -6.741701, "MEMVAR": -6.741701, "METHOD": -4.795791, "MSErroString": -6.741701, "MSExecAuto": -6.741701, "MSUNLOCK": -6.741701, "MYCONST": -6.048554, "Main": -6.741701, "MemoWrit": -6.741701, "MethProc": -6.048554, "NEXT": -6.048554, "NIL": -6.741701, "NOR": -6.741701, "NOTE": -6.048554, "New": -4.949941, "Next": -6.741701, "Nil": -4.102643, "ORIG": -5.355406, "OTHERWISE": -6.048554, "One": -4.949941, "PARAMETERS": -6.741701, "PARC": -6.741701, "PICTURE": -6.741701, "PRIVATE": -6.741701, "PROCEDURE": -5.132263, "PUBLIC": -6.741701, "QOut": -6.048554, "RECOVER": -6.741701, "REQUEST": -6.741701, "RETURN": -4.439116, "Reset": -6.741701, "Return": -6.741701, "S": -6.741701, "SAY": -6.048554, "SE": -3.745968, "SEQUENCE": -6.741701, "SET": -6.048554, "STATIC": -5.643088, "STEP": -6.741701, "SWITCH": -6.741701, "Self": -6.048554, "Set": -5.643088, "StrTran": -6.048554, "THREAD": -6.741701, "TO": -6.741701, "TParent": -5.643088, "TTest": -5.643088, "Test": -6.741701, "This": -5.132263, "Two": -6.741701, "USING": -6.741701, "VAR": -6.048554, "ValType": -6.048554, "WHILE": -6.048554, "WITH": -6.741701, "[": -4.949941, "]": -4.949941, "^": -6.741701, "_DESCONT": -6.741701, "_FILIAL": -5.643088, "_JUROS": -6.741701, "_MULTA": -6.741701, "_NUM": -6.741701, "_PARCELA": -6.741701, "_PREFIXO": -6.741701, "_SET_DATEFORMAT": -6.741701, "_SET_DELETED": -6.048554, "_TIPO": -6.741701, "_VALOR": -6.741701, "_VLRREAL": -6.741701, "__BreakBlock": -6.741701, "__CLIPPER__": -6.048554, "__CLIP__": -6.741701, "__HARBOUR__": -5.355406, "__XPP__": -6.741701, "__dbPack": -6.741701, "a": -5.132263, "aBaixa": -5.643088, "bBlock": -6.741701, "comment": -5.355406, "d": -6.741701, "date": -6.048554, "dbskip": -6.741701, "defined": -6.048554, "else": -6.741701, "end": -6.741701, "endif": -6.048554, "exit_proc": -6.741701, "fWrite": -6.048554, "file": -6.741701, "fld": -6.741701, "for": -6.741701, "hHash": -5.643088, "hb_MemoWrit": -6.741701, "hb_ValToExp": -6.741701, "hb_dbExists": -6.741701, "hb_dbPack": -6.741701, "hb_default": -6.741701, "iif": -6.741701, "init_proc": -6.741701, "is": -5.132263, "lMsErroAuto": -5.643088, "linenumber": -6.741701, "local_func": -6.048554, "m": -6.741701, "m_var": -6.048554, "my_module": -6.741701, "nFileLog": -6.048554, "nI": -6.741701, "note": -6.741701, "o": -6.048554, "oError": -6.048554, "on": -6.741701, "p": -6.048554, "p_var": -6.048554, "pub_func": -6.048554, "return": -6.741701, "returning_nothing": -6.741701, "s_test": -6.741701, "sample": -6.741701, "super": -6.741701, "t_var": -6.741701, "tmp": -3.797262, "tojson": -6.741701, "x": -6.048554, "y": -6.048554, "{": -3.797262, "|": -5.355406, "}": -3.797262, }, }, tokensTotal: 1684174.000000, }
type Strategy ¶ added in v1.2.1
Strategy type fix the signature for the functions that can be used as a strategy.
type Type ¶
type Type int
Type represent language's type. Either data, programming, markup, prose, or unknown.
func GetLanguageType ¶
GetLanguageType returns the type of the given language.